From 69f21bbc709aefbcdfcd4083a1bb4bd3bf9f8d96 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 8 Jul 2023 21:20:52 +0100 Subject: [PATCH 01/41] missingcpus --- specs/.gitignore | 2 + tmp/.gitignore | 1 + tmp/find-missing-intel-cpus.py | 69 ++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 specs/.gitignore create mode 100644 tmp/find-missing-intel-cpus.py diff --git a/specs/.gitignore b/specs/.gitignore new file mode 100644 index 00000000..04ecdf15 --- /dev/null +++ b/specs/.gitignore @@ -0,0 +1,2 @@ +MISSINGCPUS.yaml +MISSINGCPUS/* \ No newline at end of file diff --git a/tmp/.gitignore b/tmp/.gitignore index d6b7ef32..1a4320af 100644 --- a/tmp/.gitignore +++ b/tmp/.gitignore @@ -1,2 +1,3 @@ * !.gitignore +!find-missing-intel-cpus.py diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py new file mode 100644 index 00000000..16aafb3f --- /dev/null +++ b/tmp/find-missing-intel-cpus.py @@ -0,0 +1,69 @@ +import os +import json +import yaml + +def format_string(input_string): + # Remove whitespace and hyphens + formatted_string = input_string.replace(" ", "-") + + # Convert to lowercase + formatted_string = formatted_string.lower() + + return formatted_string + + +script_directory = os.path.dirname(os.path.abspath(__file__)) +parent_directory = os.path.dirname(script_directory) +folder_path = os.path.join(parent_directory, 'specs', 'MISSINGCPUS') +specs_path = os.path.join(parent_directory, 'specs') +json_file_path = os.path.join(script_directory, 'specs.js') +json_geekbench_path = os.path.join(script_directory, 'geekbench-parse.json') + +listOfCPUs = [] +# Load JSON data from the file +with open(json_file_path, 'r') as file: + json_data = json.load(file) + +with open(json_geekbench_path, 'r') as file: + json_geekbench_data = json.load(file) + +for cpu_name, cpu_data in json_data.items(): + if cpu_data.get('type') == 'CPU': + listOfCPUs.append(format_string(cpu_name)) + +cpu_names = [format_string(item['combineMetadata']['matcherInfo']['name'].strip().replace('Intel ','').replace('AMD ','')) for item in json_geekbench_data] +for item in cpu_names: + if "core" not in item: + cpu_names.remove(item) + +missingcpus = [] +# Print the CPU names +for cpu_name in cpu_names: + if(cpu_name not in listOfCPUs): + missingcpus.append(cpu_name) + +def create_yaml_files(missingcpus): + # Create the folder if it doesn't exist + if not os.path.exists(folder_path): + os.makedirs(folder_path) + + # Generate the file path + file_path1 = os.path.join(specs_path, f'MISSINGCPUS.yaml') + + # Write the YAML data to the file + with open(file_path1, 'w') as file: + yaml.dump(missingcpus, file) + + # Create a YAML file for each string in the list + for cpu_name in missingcpus: + data = {'name': cpu_name,'humanName':cpu_name.replace("-"," ")} + + # Generate the file path + file_path = os.path.join(folder_path, f'{cpu_name}.yaml') + + # Write the YAML data to the file + with open(file_path, 'w') as file: + yaml.dump(data, file) + + +create_yaml_files(missingcpus) From 016aa9ec61337b57258632e010261dea6f7a12eb Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 8 Jul 2023 22:10:16 +0100 Subject: [PATCH 02/41] Correctly gets cpus but no benchmark data --- specs/Root.yaml | 1 + tmp/find-missing-intel-cpus.py | 50 ++++++++++++++++++++++++++++++++-- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/specs/Root.yaml b/specs/Root.yaml index e748ece0..1d94847c 100644 --- a/specs/Root.yaml +++ b/specs/Root.yaml @@ -6,6 +6,7 @@ topHeader: "SELECT CATEGORY:" sections: - header: AMD members: + - MISSINGCPUS - CPUs-DESKTOP - CPUs-SERVER - GPUs-CONSUMER diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py index 16aafb3f..0ffb59d8 100644 --- a/tmp/find-missing-intel-cpus.py +++ b/tmp/find-missing-intel-cpus.py @@ -50,20 +50,64 @@ def create_yaml_files(missingcpus): # Generate the file path file_path1 = os.path.join(specs_path, f'MISSINGCPUS.yaml') + data = {'name': 'MISSINGCPUS', + 'humanName' : 'MISSINGCPUS', + 'type' : 'Generic Container', + 'isPart' : False, + 'topHeader' : "", + 'sections' : [ + { + 'header' : 'MISSINGCPUS', + 'members' : ['MISSINGCPUSAGAIN'] + } + ]} # Write the YAML data to the file with open(file_path1, 'w') as file: - yaml.dump(missingcpus, file) + yaml.dump(data, file,default_flow_style=False, sort_keys=False) + + # Generate the file path + file_path1 = os.path.join(specs_path,'MISSINGCPUS', f'MISSINGCPUSAGAIN.yaml') + + data = {'name': 'MISSINGCPUSAGAIN', + 'humanName' : 'MISSINGCPUSAGAIN', + 'type' : 'CPU Architecture', + 'topHeader' : "", + 'data' : { + 'Lithography' : '30nm', + 'Sockets' : ['idk lol'], + 'Release Date' : '0000-00-00' + }, + 'sections' : [ + { + 'header' : 'MISSINGCPUS', + 'members' : missingcpus + } + ]} + # Write the YAML data to the file + with open(file_path1, 'w') as file: + yaml.dump(data, file,default_flow_style=False, sort_keys=False) # Create a YAML file for each string in the list for cpu_name in missingcpus: - data = {'name': cpu_name,'humanName':cpu_name.replace("-"," ")} + data = {'name': cpu_name, + 'humanName':cpu_name.replace("-"," "), + 'isPart' : True, + 'type' : 'CPU', + 'data' : { + 'Manufacturer' : 'Intel', + 'Core Count' : 0, + 'Thread Count' : 0, + 'Base Frequency' : 'not complete', + 'TDP' : 'not complete' + } + } # Generate the file path file_path = os.path.join(folder_path, f'{cpu_name}.yaml') # Write the YAML data to the file with open(file_path, 'w') as file: - yaml.dump(data, file) + yaml.dump(data, file,default_flow_style=False, sort_keys=False) create_yaml_files(missingcpus) From 2db097119d657d8830ebd7c71a12c9df98d7add7 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 8 Jul 2023 23:50:12 +0100 Subject: [PATCH 03/41] Updated names and readme --- README.md | 47 ++-------------------------------- build/combine-util.js | 2 +- tmp/find-missing-intel-cpus.py | 3 ++- 3 files changed, 5 insertions(+), 47 deletions(-) diff --git a/README.md b/README.md index 9f06a461..94e9dfbb 100644 --- a/README.md +++ b/README.md @@ -1,46 +1,3 @@ -# SpecDB +This branch identifies missing CPUs -SpecDB is a beautiful and easy-to-use AMD equivalent to Intel's ARK. It's powered by Mithril and Browserify on the front-end, and has no backend (just static files). - -SpecDB (master branch) is live at https://specdb.info/, and the beta branch is deployed at https://beta.specdb.info/ - -Visit our [Discord channel](https://discord.gg/xfVHZAb) to chat with other developers! - -Look at the [wiki](https://github.com/markasoftware/SpecDB/wiki) for more detailed technical info than this readme! - -## Prerequisites - -* Unix-like system. Linux, Mac, and some sort of BSD are all ok. -* GNU `make`: This comes out-of-the-box on Linux and Mac. -* `curl`: Also comes out-of-the-box on Mac and *most* Linux distributions. -* Optionally: [entr](https://bitbucket.org/eradman/entr). This will allow you to automatically rebuild SpecDB when you modify a file. - -## Setting up - -1. Clone the repo — `git clone https://github.com/markasoftware/SpecDB.git` -1. `cd SpecDB` -1. `make` — generate front end resources from source code. This must be run after every change to the source code or specs. - -The `make` command will take a while to run the first time -- it has to do all the scraping as well as installing NPM dependencies. However, `make` is smart (thank [RMS](https://rms.sexy)), so subsequent runs will only build the minimum amount necessary. - -Then, you can view SpecDB at file:///home/markasoftware/whatever/specdb/, which should be good enough for development. - -### Bonus Commands - -* `make watch`: Start auto-rebuild daemon. You still need to manually. Requires [entr](https://bitbucket.org/eradman/entr) -* `make test`: Run unit tests. If any of these fail, do not commit! Fix them! -* `make production`: Build for production. If you previously ran `make` without `production`, run `make clean-nonet` before this. -* `make clean`: Destroy all generated files. This will trigger a rescrape the next time you run `make`. -* `make clean-nonet`: Destroy all generated files that can be re-generated without a network connection (i.e, it will not trigger a re-scrape). - -## Contributing - -Specs are in the specs/ folder. You can probably see how they're done by looking at the files there, but there's more detailed documentation in the [wiki](https://github.com/markasoftware/SpecDB/wiki). Additionally, some rudimentary Node.js scripts which can be used to make part creation a bit easier are there. - -To contribute, please make a fork, and in your fork branch off from master to something like `myusername-bulldozer-cpus`, and when making a pull request, go from that branch to `beta`. - -## BrowserStack - -![BrowserStack logo](https://www.browserstack.com/images/layout/browserstack-logo-600x315.png) - -Browserstack won't let me get their open-source plan without including their logo here. I can tell they really love open source and aren't just trying to get free advertising. Especially since the Browserstack backend/whatever is used to do real-device testing remotely isn't open source. But whatever, they're the only ones who provide decent real-device testing so I guess I have to use them because I don't want to buy Apple shit. +It also serves as a quick fix for the pcpartrank ranker, as it finds benchmark results for the missing cpus too. \ No newline at end of file diff --git a/build/combine-util.js b/build/combine-util.js index b5c74906..d355e07d 100644 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -165,7 +165,7 @@ const combineUtil = { }, // simple Intel { - nameTest: /^(Pentium|Core|Xeon|Celeron|Atom)/, + nameTest: /^(Pentium|Core|Xeon|Celeron|Atom|core)/, brand: 'intel', type: 'cpu', parser: () => { diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py index 0ffb59d8..828fe159 100644 --- a/tmp/find-missing-intel-cpus.py +++ b/tmp/find-missing-intel-cpus.py @@ -40,7 +40,8 @@ def format_string(input_string): # Print the CPU names for cpu_name in cpu_names: if(cpu_name not in listOfCPUs): - missingcpus.append(cpu_name) + missingcpus.append(cpu_name.replace('core','Core').replace('0ks','0KS').replace('0kf','0KF').replace('0k','0K').replace('0f','0F').replace('0t','0T').replace('0h','0H')) +#print(cpu_names) def create_yaml_files(missingcpus): # Create the folder if it doesn't exist From 55a5d2c508a590a3ea38ab5693e45c05af898751 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 8 Jul 2023 23:52:05 +0100 Subject: [PATCH 04/41] Updated readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 94e9dfbb..8859f8c0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ This branch identifies missing CPUs -It also serves as a quick fix for the pcpartrank ranker, as it finds benchmark results for the missing cpus too. \ No newline at end of file +It also serves as a quick fix for the pcpartrank ranker, as it finds benchmark results for the missing cpus too. + +run make, then run the python file in tmp, then run make again. \ No newline at end of file From 19a3adcfdf2cb225e0c765f6c1969d861095d11f Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Fri, 27 Oct 2023 19:01:45 +0100 Subject: [PATCH 05/41] added todo --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8859f8c0..a86b6d47 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,7 @@ This branch identifies missing CPUs It also serves as a quick fix for the pcpartrank ranker, as it finds benchmark results for the missing cpus too. -run make, then run the python file in tmp, then run make again. \ No newline at end of file +run make, then run the python file in tmp, then run make again. + +TODO +* make a file of known missing cpus, so next time its ran we dont miss any of the missing ones alreadp found. (geekbench has a limit on their table so as new cpus get on it, others get pushed off) \ No newline at end of file From 171e7c3bea282352fe5ec998bfe79b66aceca03b Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 21 Dec 2023 20:40:28 +0000 Subject: [PATCH 06/41] added initial intel data --- specs/intel/Desktop-CPUs-Intel.yaml | 53 ++++++++ .../Desktop-Apollo-Lake.yaml | 22 ++++ .../Desktop-Apollo-Lake/Pentium-J3355.yaml | 27 ++++ .../Desktop-Apollo-Lake/Pentium-J3355E.yaml | 27 ++++ .../Desktop-Apollo-Lake/Pentium-J3455.yaml | 27 ++++ .../Desktop-Apollo-Lake/Pentium-J3455E.yaml | 28 +++++ .../Desktop-Apollo-Lake/Pentium-J4205.yaml | 30 +++++ .../Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml | 23 ++++ .../Desktop-Bay-Trail/Pentium-J1750.yaml | 24 ++++ .../Desktop-Bay-Trail/Pentium-J1800.yaml | 24 ++++ .../Desktop-Bay-Trail/Pentium-J1850.yaml | 24 ++++ .../Desktop-Bay-Trail/Pentium-J1900.yaml | 24 ++++ .../Desktop-Bay-Trail/Pentium-J2850.yaml | 24 ++++ .../Desktop-Bay-Trail/Pentium-J2900.yaml | 26 ++++ .../Desktop-Bloomfield.yaml | 21 ++++ .../Desktop-Bloomfield/Core-i7-920.yaml | 28 +++++ .../Desktop-Bloomfield/Core-i7-930.yaml | 28 +++++ .../Desktop-Bloomfield/Core-i7-940.yaml | 26 ++++ .../Desktop-Bloomfield/Core-i7-950.yaml | 28 +++++ .../Desktop-Bloomfield/Core-i7-960.yaml | 28 +++++ .../Desktop-Bloomfield/Core-i7-965.yaml | 25 ++++ .../Desktop-Bloomfield/Core-i7-975.yaml | 26 ++++ .../Desktop-CPUs-Intel/Desktop-Braswell.yaml | 20 +++ .../Desktop-Braswell/Pentium-J3060.yaml | 27 ++++ .../Desktop-Braswell/Pentium-J3160.yaml | 27 ++++ .../Desktop-Braswell/Pentium-J3710.yaml | 29 +++++ .../Desktop-Broadwell-E.yaml | 21 ++++ .../Desktop-Broadwell-E/Core-i7-6800K.yaml | 27 ++++ .../Desktop-Broadwell-E/Core-i7-6850K.yaml | 27 ++++ .../Desktop-Broadwell-E/Core-i7-6900K.yaml | 26 ++++ .../Desktop-Broadwell-E/Core-i7-6950X.yaml | 27 ++++ .../Desktop-CPUs-Intel/Desktop-Broadwell.yaml | 23 ++++ .../Desktop-Broadwell/Core-i5-5575R.yaml | 32 +++++ .../Desktop-Broadwell/Core-i5-5675C.yaml | 31 +++++ .../Desktop-Broadwell/Core-i5-5675R.yaml | 30 +++++ .../Desktop-Broadwell/Core-i7-5775C.yaml | 33 +++++ .../Desktop-Broadwell/Core-i7-5775R.yaml | 31 +++++ .../Desktop-Cascade-Lake.yaml | 17 +++ .../Desktop-Cascade-Lake/Core-i9-10900X.yaml | 24 ++++ .../Desktop-Cascade-Lake/Core-i9-10920X.yaml | 24 ++++ .../Desktop-Cascade-Lake/Core-i9-10940X.yaml | 24 ++++ .../Desktop-Cascade-Lake/Core-i9-10980XE.yaml | 24 ++++ .../Desktop-CPUs-Intel/Desktop-Cedarmill.yaml | 25 ++++ .../Desktop-Cedarmill/Pentium-347.yaml | 20 +++ .../Desktop-Cedarmill/Pentium-352.yaml | 20 +++ .../Desktop-Cedarmill/Pentium-356.yaml | 20 +++ .../Desktop-Cedarmill/Pentium-365.yaml | 20 +++ .../Desktop-Cedarmill/Pentium-631.yaml | 19 +++ .../Desktop-Cedarmill/Pentium-641.yaml | 19 +++ .../Desktop-Cedarmill/Pentium-651.yaml | 19 +++ .../Desktop-Cedarmill/Pentium-661.yaml | 19 +++ .../Desktop-CPUs-Intel/Desktop-Cedarview.yaml | 20 +++ .../Desktop-Cedarview/Atom-D2500.yaml | 23 ++++ .../Desktop-Cedarview/Atom-D2550.yaml | 23 ++++ .../Desktop-Cedarview/Atom-D2700.yaml | 24 ++++ .../Desktop-CPUs-Intel/Desktop-Clarkdale.yaml | 30 +++++ .../Desktop-Clarkdale/Core-i3-530.yaml | 28 +++++ .../Desktop-Clarkdale/Core-i3-540.yaml | 28 +++++ .../Desktop-Clarkdale/Core-i3-550.yaml | 28 +++++ .../Desktop-Clarkdale/Core-i3-560.yaml | 25 ++++ .../Desktop-Clarkdale/Core-i5-650.yaml | 29 +++++ .../Desktop-Clarkdale/Core-i5-655K.yaml | 26 ++++ .../Desktop-Clarkdale/Core-i5-660.yaml | 29 +++++ .../Desktop-Clarkdale/Core-i5-661.yaml | 27 ++++ .../Desktop-Clarkdale/Core-i5-670.yaml | 26 ++++ .../Desktop-Clarkdale/Core-i5-680.yaml | 27 ++++ .../Desktop-Clarkdale/Pentium-G6950.yaml | 25 ++++ .../Desktop-Clarkdale/Pentium-G6951.yaml | 24 ++++ .../Desktop-Clarkdale/Pentium-G6960.yaml | 24 ++++ .../Desktop-Coffee-Lake.yaml | 85 +++++++++++++ .../Desktop-Coffee-Lake/Core-i3-8100.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i3-8100T.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i3-8300.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i3-8300T.yaml | 29 +++++ .../Desktop-Coffee-Lake/Core-i3-8350K.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i3-9100.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i3-9100F.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i3-9100T.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i3-9300.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i3-9300T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i3-9320.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i3-9350K.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i3-9350KF.yaml | 25 ++++ .../Desktop-Coffee-Lake/Core-i5-8400.yaml | 35 ++++++ .../Desktop-Coffee-Lake/Core-i5-8400T.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i5-8500.yaml | 35 ++++++ .../Desktop-Coffee-Lake/Core-i5-8500T.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i5-8600.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i5-8600K.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i5-8600T.yaml | 31 +++++ .../Desktop-Coffee-Lake/Core-i5-9400.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i5-9400F.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i5-9400T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i5-9500.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i5-9500F.yaml | 24 ++++ .../Desktop-Coffee-Lake/Core-i5-9500T.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i5-9600.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i5-9600K.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i5-9600KF.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i5-9600T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Core-i7-8086K.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i7-8700.yaml | 35 ++++++ .../Desktop-Coffee-Lake/Core-i7-8700K.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i7-8700T.yaml | 33 +++++ .../Desktop-Coffee-Lake/Core-i7-9700.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i7-9700F.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i7-9700K.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i7-9700KF.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i7-9700T.yaml | 32 +++++ .../Desktop-Coffee-Lake/Core-i9-9900.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i9-9900K.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i9-9900KF.yaml | 28 +++++ .../Desktop-Coffee-Lake/Core-i9-9900KS.yaml | 34 +++++ .../Desktop-Coffee-Lake/Core-i9-9900T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Pentium-G4900.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G4900T.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G4920.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G4930.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G4930T.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G4950.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5400.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5400T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Pentium-G5420.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5420T.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5500.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5500T.yaml | 30 +++++ .../Desktop-Coffee-Lake/Pentium-G5600.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5600T.yaml | 29 +++++ .../Desktop-Coffee-Lake/Pentium-G5620.yaml | 29 +++++ .../Desktop-CPUs-Intel/Desktop-Conroe.yaml | 49 ++++++++ .../Desktop-Conroe/Core-E4300.yaml | 20 +++ .../Desktop-Conroe/Core-E4400.yaml | 20 +++ .../Desktop-Conroe/Core-E4500.yaml | 20 +++ .../Desktop-Conroe/Core-E4600.yaml | 20 +++ .../Desktop-Conroe/Core-E4700.yaml | 20 +++ .../Desktop-Conroe/Core-E6300.yaml | 20 +++ .../Desktop-Conroe/Core-E6320.yaml | 20 +++ .../Desktop-Conroe/Core-E6400.yaml | 20 +++ .../Desktop-Conroe/Core-E6420.yaml | 20 +++ .../Desktop-Conroe/Core-E6540.yaml | 20 +++ .../Desktop-Conroe/Core-E6550.yaml | 20 +++ .../Desktop-Conroe/Core-E6600.yaml | 20 +++ .../Desktop-Conroe/Core-E6700.yaml | 20 +++ .../Desktop-Conroe/Core-E6750.yaml | 20 +++ .../Desktop-Conroe/Core-E6850.yaml | 20 +++ .../Desktop-Conroe/Core-X6800.yaml | 20 +++ .../Desktop-Conroe/Pentium-220.yaml | 20 +++ .../Desktop-Conroe/Pentium-420.yaml | 20 +++ .../Desktop-Conroe/Pentium-430.yaml | 20 +++ .../Desktop-Conroe/Pentium-440.yaml | 20 +++ .../Desktop-Conroe/Pentium-450.yaml | 20 +++ .../Desktop-Conroe/Pentium-E1200.yaml | 20 +++ .../Desktop-Conroe/Pentium-E1400.yaml | 20 +++ .../Desktop-Conroe/Pentium-E1500.yaml | 20 +++ .../Desktop-Conroe/Pentium-E1600.yaml | 20 +++ .../Desktop-Conroe/Pentium-E2140.yaml | 20 +++ .../Desktop-Conroe/Pentium-E2160.yaml | 20 +++ .../Desktop-Conroe/Pentium-E2180.yaml | 20 +++ .../Desktop-Conroe/Pentium-E2200.yaml | 20 +++ .../Desktop-Conroe/Pentium-E2220.yaml | 20 +++ .../Desktop-Crystal-Well.yaml | 20 +++ .../Desktop-Crystal-Well/Core-i5-4570R.yaml | 33 +++++ .../Desktop-Crystal-Well/Core-i5-4670R.yaml | 30 +++++ .../Desktop-Crystal-Well/Core-i7-4770R.yaml | 30 +++++ .../Desktop-Devils-Canyon.yaml | 19 +++ .../Desktop-Devils-Canyon/Core-i5-4690K.yaml | 34 +++++ .../Desktop-Devils-Canyon/Core-i7-4790K.yaml | 34 +++++ .../Desktop-Diamondville.yaml | 19 +++ .../Desktop-Diamondville/Atom-230.yaml | 21 ++++ .../Desktop-Diamondville/Atom-330.yaml | 21 ++++ .../Desktop-Gemini-Lake-Refresh.yaml | 20 +++ .../Pentium-J4025.yaml | 28 +++++ .../Pentium-J4125.yaml | 28 +++++ .../Pentium-J5040.yaml | 28 +++++ .../Desktop-Gemini-Lake.yaml | 20 +++ .../Desktop-Gemini-Lake/Pentium-J4005.yaml | 28 +++++ .../Desktop-Gemini-Lake/Pentium-J4105.yaml | 28 +++++ .../Desktop-Gemini-Lake/Pentium-J5005.yaml | 28 +++++ .../Desktop-CPUs-Intel/Desktop-Gulftown.yaml | 18 +++ .../Desktop-Gulftown/Core-i7-970.yaml | 28 +++++ .../Desktop-Gulftown/Core-i7-980.yaml | 26 ++++ .../Desktop-Gulftown/Core-i7-980X.yaml | 27 ++++ .../Desktop-Gulftown/Core-i7-990X.yaml | 27 ++++ .../Desktop-CPUs-Intel/Desktop-Haswell-E.yaml | 17 +++ .../Desktop-Haswell-E/Core-i7-5820K.yaml | 28 +++++ .../Desktop-Haswell-E/Core-i7-5930K.yaml | 28 +++++ .../Desktop-Haswell-E/Core-i7-5960X.yaml | 28 +++++ .../Desktop-CPUs-Intel/Desktop-Haswell.yaml | 92 ++++++++++++++ .../Desktop-Haswell/Core-i3-4130.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4130T.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4150.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4150T.yaml | 31 +++++ .../Desktop-Haswell/Core-i3-4160.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4160T.yaml | 31 +++++ .../Desktop-Haswell/Core-i3-4170.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4170T.yaml | 31 +++++ .../Desktop-Haswell/Core-i3-4330.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4330T.yaml | 29 +++++ .../Desktop-Haswell/Core-i3-4340.yaml | 30 +++++ .../Desktop-Haswell/Core-i3-4350.yaml | 30 +++++ .../Desktop-Haswell/Core-i3-4350T.yaml | 29 +++++ .../Desktop-Haswell/Core-i3-4360.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4360T.yaml | 29 +++++ .../Desktop-Haswell/Core-i3-4370.yaml | 32 +++++ .../Desktop-Haswell/Core-i3-4370T.yaml | 29 +++++ .../Desktop-Haswell/Core-i5-4430.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4430S.yaml | 32 +++++ .../Desktop-Haswell/Core-i5-4440.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4440S.yaml | 30 +++++ .../Desktop-Haswell/Core-i5-4460.yaml | 34 +++++ .../Desktop-Haswell/Core-i5-4460S.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4460T.yaml | 32 +++++ .../Desktop-Haswell/Core-i5-4570.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4570S.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4570T.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4590.yaml | 34 +++++ .../Desktop-Haswell/Core-i5-4590S.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4590T.yaml | 32 +++++ .../Desktop-Haswell/Core-i5-4670.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4670K.yaml | 34 +++++ .../Desktop-Haswell/Core-i5-4670S.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4670T.yaml | 32 +++++ .../Desktop-Haswell/Core-i5-4690.yaml | 33 +++++ .../Desktop-Haswell/Core-i5-4690S.yaml | 32 +++++ .../Desktop-Haswell/Core-i5-4690T.yaml | 30 +++++ .../Desktop-Haswell/Core-i7-4765T.yaml | 32 +++++ .../Desktop-Haswell/Core-i7-4770.yaml | 34 +++++ .../Desktop-Haswell/Core-i7-4770K.yaml | 34 +++++ .../Desktop-Haswell/Core-i7-4770S.yaml | 33 +++++ .../Desktop-Haswell/Core-i7-4770T.yaml | 33 +++++ .../Desktop-Haswell/Core-i7-4771.yaml | 33 +++++ .../Desktop-Haswell/Core-i7-4785T.yaml | 32 +++++ .../Desktop-Haswell/Core-i7-4790.yaml | 34 +++++ .../Desktop-Haswell/Core-i7-4790S.yaml | 33 +++++ .../Desktop-Haswell/Core-i7-4790T.yaml | 33 +++++ .../Desktop-Haswell/Pentium-G1820.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G1820T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G1830.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G1840.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G1840T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G1850.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3220.yaml | 32 +++++ .../Desktop-Haswell/Pentium-G3220T.yaml | 31 +++++ .../Desktop-Haswell/Pentium-G3240.yaml | 32 +++++ .../Desktop-Haswell/Pentium-G3240T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3250.yaml | 32 +++++ .../Desktop-Haswell/Pentium-G3250T.yaml | 31 +++++ .../Desktop-Haswell/Pentium-G3258.yaml | 33 +++++ .../Desktop-Haswell/Pentium-G3260.yaml | 32 +++++ .../Desktop-Haswell/Pentium-G3260T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3420.yaml | 30 +++++ .../Desktop-Haswell/Pentium-G3420T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3430.yaml | 30 +++++ .../Desktop-Haswell/Pentium-G3440.yaml | 30 +++++ .../Desktop-Haswell/Pentium-G3440T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3450.yaml | 30 +++++ .../Desktop-Haswell/Pentium-G3450T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3460.yaml | 30 +++++ .../Desktop-Haswell/Pentium-G3460T.yaml | 29 +++++ .../Desktop-Haswell/Pentium-G3470.yaml | 30 +++++ .../Desktop-Ivy-Bridge-E.yaml | 20 +++ .../Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml | 27 ++++ .../Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml | 27 ++++ .../Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml | 27 ++++ .../Desktop-Ivy-Bridge.yaml | 65 ++++++++++ .../Desktop-Ivy-Bridge/Core-i3-3210.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3220.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3220T.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3225.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3240.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3240T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Core-i3-3245.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Core-i3-3250.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i3-3250T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Core-i5-3330.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3330S.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3340.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3340S.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i5-3350P.yaml | 27 ++++ .../Desktop-Ivy-Bridge/Core-i5-3450.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3450S.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3470.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3470S.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3470T.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3475S.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3550.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3550S.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Core-i5-3570.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i5-3570K.yaml | 30 +++++ .../Desktop-Ivy-Bridge/Core-i5-3570S.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Core-i5-3570T.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Core-i7-3770.yaml | 30 +++++ .../Desktop-Ivy-Bridge/Core-i7-3770K.yaml | 30 +++++ .../Desktop-Ivy-Bridge/Core-i7-3770S.yaml | 29 +++++ .../Desktop-Ivy-Bridge/Core-i7-3770T.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Pentium-G1610.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G1610T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G1620.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G1620T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G1630.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G2010.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Pentium-G2020.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Pentium-G2020T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G2030.yaml | 28 +++++ .../Desktop-Ivy-Bridge/Pentium-G2030T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G2100T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G2120.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Pentium-G2120T.yaml | 25 ++++ .../Desktop-Ivy-Bridge/Pentium-G2130.yaml | 26 ++++ .../Desktop-Ivy-Bridge/Pentium-G2140.yaml | 25 ++++ .../Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml | 51 ++++++++ .../Desktop-Kaby-Lake/Core-i3-7100.yaml | 32 +++++ .../Desktop-Kaby-Lake/Core-i3-7100T.yaml | 32 +++++ .../Desktop-Kaby-Lake/Core-i3-7101E.yaml | 30 +++++ .../Desktop-Kaby-Lake/Core-i3-7101TE.yaml | 29 +++++ .../Desktop-Kaby-Lake/Core-i3-7300.yaml | 30 +++++ .../Desktop-Kaby-Lake/Core-i3-7300T.yaml | 30 +++++ .../Desktop-Kaby-Lake/Core-i3-7320.yaml | 30 +++++ .../Desktop-Kaby-Lake/Core-i3-7350K.yaml | 30 +++++ .../Desktop-Kaby-Lake/Core-i5-7400.yaml | 34 +++++ .../Desktop-Kaby-Lake/Core-i5-7400T.yaml | 33 +++++ .../Desktop-Kaby-Lake/Core-i5-7500.yaml | 34 +++++ .../Desktop-Kaby-Lake/Core-i5-7500T.yaml | 33 +++++ .../Desktop-Kaby-Lake/Core-i5-7600.yaml | 33 +++++ .../Desktop-Kaby-Lake/Core-i5-7600K.yaml | 34 +++++ .../Desktop-Kaby-Lake/Core-i5-7600T.yaml | 33 +++++ .../Desktop-Kaby-Lake/Core-i5-7640X.yaml | 25 ++++ .../Desktop-Kaby-Lake/Core-i7-7700.yaml | 34 +++++ .../Desktop-Kaby-Lake/Core-i7-7700K.yaml | 34 +++++ .../Desktop-Kaby-Lake/Core-i7-7700T.yaml | 33 +++++ .../Desktop-Kaby-Lake/Core-i7-7740X.yaml | 27 ++++ .../Desktop-Kaby-Lake/Pentium-G3930.yaml | 29 +++++ .../Desktop-Kaby-Lake/Pentium-G3930E.yaml | 28 +++++ .../Desktop-Kaby-Lake/Pentium-G3930T.yaml | 29 +++++ .../Desktop-Kaby-Lake/Pentium-G3930TE.yaml | 28 +++++ .../Desktop-Kaby-Lake/Pentium-G3950.yaml | 29 +++++ .../Desktop-Kaby-Lake/Pentium-G4560.yaml | 32 +++++ .../Desktop-Kaby-Lake/Pentium-G4560T.yaml | 30 +++++ .../Desktop-Kaby-Lake/Pentium-G4600.yaml | 32 +++++ .../Desktop-Kaby-Lake/Pentium-G4600T.yaml | 29 +++++ .../Desktop-Kaby-Lake/Pentium-G4620.yaml | 30 +++++ .../Desktop-Kentsfield.yaml | 19 +++ .../Desktop-Kentsfield/Core-Q6600.yaml | 20 +++ .../Desktop-Kentsfield/Core-Q6700.yaml | 20 +++ .../Desktop-Kentsfield/Core-QX6700.yaml | 20 +++ .../Desktop-Kentsfield/Core-QX6800.yaml | 20 +++ .../Desktop-Kentsfield/Core-QX6850.yaml | 20 +++ .../Desktop-CPUs-Intel/Desktop-Lynnfield.yaml | 26 ++++ .../Desktop-Lynnfield/Core-i5-750.yaml | 28 +++++ .../Desktop-Lynnfield/Core-i5-750S.yaml | 25 ++++ .../Desktop-Lynnfield/Core-i5-760.yaml | 28 +++++ .../Desktop-Lynnfield/Core-i7-860.yaml | 28 +++++ .../Desktop-Lynnfield/Core-i7-860S.yaml | 25 ++++ .../Desktop-Lynnfield/Core-i7-870.yaml | 28 +++++ .../Desktop-Lynnfield/Core-i7-870S.yaml | 25 ++++ .../Desktop-Lynnfield/Core-i7-875K.yaml | 27 ++++ .../Desktop-Lynnfield/Core-i7-880.yaml | 26 ++++ .../Desktop-CPUs-Intel/Desktop-Pineview.yaml | 21 ++++ .../Desktop-Pineview/Atom-D410.yaml | 25 ++++ .../Desktop-Pineview/Atom-D425.yaml | 24 ++++ .../Desktop-Pineview/Atom-D510.yaml | 25 ++++ .../Desktop-Pineview/Atom-D525.yaml | 25 ++++ .../Desktop-CPUs-Intel/Desktop-Prescott.yaml | 68 ++++++++++ .../Desktop-Prescott/Pentium-315.yaml | 19 +++ .../Desktop-Prescott/Pentium-315J.yaml | 19 +++ .../Desktop-Prescott/Pentium-320.yaml | 19 +++ .../Desktop-Prescott/Pentium-325.yaml | 18 +++ .../Desktop-Prescott/Pentium-325J.yaml | 19 +++ .../Desktop-Prescott/Pentium-326.yaml | 21 ++++ .../Desktop-Prescott/Pentium-330J.yaml | 19 +++ .../Desktop-Prescott/Pentium-331.yaml | 19 +++ .../Desktop-Prescott/Pentium-335.yaml | 19 +++ .../Desktop-Prescott/Pentium-335J.yaml | 19 +++ .../Desktop-Prescott/Pentium-336.yaml | 19 +++ .../Desktop-Prescott/Pentium-340J.yaml | 19 +++ .../Desktop-Prescott/Pentium-341.yaml | 20 +++ .../Desktop-Prescott/Pentium-345.yaml | 19 +++ .../Desktop-Prescott/Pentium-345J.yaml | 19 +++ .../Desktop-Prescott/Pentium-346.yaml | 19 +++ .../Desktop-Prescott/Pentium-350J.yaml | 18 +++ .../Desktop-Prescott/Pentium-351.yaml | 20 +++ .../Desktop-Prescott/Pentium-355.yaml | 20 +++ .../Desktop-Prescott/Pentium-505.yaml | 18 +++ .../Desktop-Prescott/Pentium-505J.yaml | 19 +++ .../Desktop-Prescott/Pentium-506.yaml | 19 +++ .../Desktop-Prescott/Pentium-511.yaml | 20 +++ .../Desktop-Prescott/Pentium-515.yaml | 18 +++ .../Desktop-Prescott/Pentium-516.yaml | 19 +++ .../Desktop-Prescott/Pentium-517.yaml | 19 +++ .../Desktop-Prescott/Pentium-519.yaml | 17 +++ .../Desktop-Prescott/Pentium-519K.yaml | 19 +++ .../Desktop-Prescott/Pentium-520J.yaml | 18 +++ .../Desktop-Prescott/Pentium-521.yaml | 19 +++ .../Desktop-Prescott/Pentium-524.yaml | 19 +++ .../Desktop-Prescott/Pentium-530J.yaml | 18 +++ .../Desktop-Prescott/Pentium-531.yaml | 19 +++ .../Desktop-Prescott/Pentium-540J.yaml | 18 +++ .../Desktop-Prescott/Pentium-541.yaml | 19 +++ .../Desktop-Prescott/Pentium-550J.yaml | 17 +++ .../Desktop-Prescott/Pentium-551.yaml | 19 +++ .../Desktop-Prescott/Pentium-560J.yaml | 17 +++ .../Desktop-Prescott/Pentium-561.yaml | 19 +++ .../Desktop-Prescott/Pentium-571.yaml | 19 +++ .../Desktop-Prescott/Pentium-620.yaml | 18 +++ .../Desktop-Prescott/Pentium-630.yaml | 19 +++ .../Desktop-Prescott/Pentium-640.yaml | 19 +++ .../Desktop-Prescott/Pentium-650.yaml | 19 +++ .../Desktop-Prescott/Pentium-660.yaml | 19 +++ .../Desktop-Prescott/Pentium-662.yaml | 19 +++ .../Desktop-Prescott/Pentium-670.yaml | 19 +++ .../Desktop-Prescott/Pentium-672.yaml | 19 +++ .../Desktop-CPUs-Intel/Desktop-Presler.yaml | 27 ++++ .../Desktop-Presler/Pentium-915.yaml | 20 +++ .../Desktop-Presler/Pentium-920.yaml | 21 ++++ .../Desktop-Presler/Pentium-930.yaml | 20 +++ .../Desktop-Presler/Pentium-935.yaml | 20 +++ .../Desktop-Presler/Pentium-940.yaml | 20 +++ .../Desktop-Presler/Pentium-945.yaml | 20 +++ .../Desktop-Presler/Pentium-950.yaml | 20 +++ .../Desktop-Presler/Pentium-955.yaml | 20 +++ .../Desktop-Presler/Pentium-960.yaml | 20 +++ .../Desktop-Presler/Pentium-965.yaml | 20 +++ .../Desktop-Sandy-Bridge-E.yaml | 21 ++++ .../Desktop-Sandy-Bridge-E/Core-i7-3820.yaml | 27 ++++ .../Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml | 27 ++++ .../Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml | 27 ++++ .../Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml | 27 ++++ .../Desktop-Sandy-Bridge.yaml | 75 +++++++++++ .../Desktop-Sandy-Bridge/Core-i3-2100.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Core-i3-2100T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Core-i3-2102.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Core-i3-2105.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Core-i3-2120.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Core-i3-2120T.yaml | 26 ++++ .../Desktop-Sandy-Bridge/Core-i3-2125.yaml | 26 ++++ .../Desktop-Sandy-Bridge/Core-i3-2130.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Core-i5-2300.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2310.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2320.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2380P.yaml | 24 ++++ .../Desktop-Sandy-Bridge/Core-i5-2390T.yaml | 26 ++++ .../Desktop-Sandy-Bridge/Core-i5-2400.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2400S.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2405S.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2450P.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Core-i5-2500.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2500K.yaml | 30 +++++ .../Desktop-Sandy-Bridge/Core-i5-2500S.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i5-2500T.yaml | 26 ++++ .../Desktop-Sandy-Bridge/Core-i5-2550K.yaml | 27 ++++ .../Desktop-Sandy-Bridge/Core-i7-2600.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i7-2600K.yaml | 30 +++++ .../Desktop-Sandy-Bridge/Core-i7-2600S.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Core-i7-2700K.yaml | 29 +++++ .../Desktop-Sandy-Bridge/Pentium-G440.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G460.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G465.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G470.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G530.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G530T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G540.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G540T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G550.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G550T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G555.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G620.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G620T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G622.yaml | 24 ++++ .../Desktop-Sandy-Bridge/Pentium-G630.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G630T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G632.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G640.yaml | 26 ++++ .../Desktop-Sandy-Bridge/Pentium-G640T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G645.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G645T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G840.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G850.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G860.yaml | 28 +++++ .../Desktop-Sandy-Bridge/Pentium-G860T.yaml | 25 ++++ .../Desktop-Sandy-Bridge/Pentium-G870.yaml | 26 ++++ .../Desktop-CPUs-Intel/Desktop-Skylake.yaml | 71 +++++++++++ .../Desktop-Skylake/Core-i3-6098P.yaml | 32 +++++ .../Desktop-Skylake/Core-i3-6100.yaml | 32 +++++ .../Desktop-Skylake/Core-i3-6100T.yaml | 32 +++++ .../Desktop-Skylake/Core-i3-6300.yaml | 30 +++++ .../Desktop-Skylake/Core-i3-6300T.yaml | 32 +++++ .../Desktop-Skylake/Core-i3-6320.yaml | 32 +++++ .../Desktop-Skylake/Core-i5-6400.yaml | 33 +++++ .../Desktop-Skylake/Core-i5-6400T.yaml | 32 +++++ .../Desktop-Skylake/Core-i5-6402P.yaml | 32 +++++ .../Desktop-Skylake/Core-i5-6500.yaml | 34 +++++ .../Desktop-Skylake/Core-i5-6500T.yaml | 32 +++++ .../Desktop-Skylake/Core-i5-6585R.yaml | 29 +++++ .../Desktop-Skylake/Core-i5-6600.yaml | 33 +++++ .../Desktop-Skylake/Core-i5-6600K.yaml | 34 +++++ .../Desktop-Skylake/Core-i5-6600T.yaml | 33 +++++ .../Desktop-Skylake/Core-i5-6685R.yaml | 29 +++++ .../Desktop-Skylake/Core-i7-6700.yaml | 34 +++++ .../Desktop-Skylake/Core-i7-6700K.yaml | 34 +++++ .../Desktop-Skylake/Core-i7-6700T.yaml | 33 +++++ .../Desktop-Skylake/Core-i7-6785R.yaml | 29 +++++ .../Desktop-Skylake/Core-i7-7800X.yaml | 27 ++++ .../Desktop-Skylake/Core-i7-7820X.yaml | 28 +++++ .../Desktop-Skylake/Core-i7-9800X.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-7900X.yaml | 28 +++++ .../Desktop-Skylake/Core-i9-7920X.yaml | 27 ++++ .../Desktop-Skylake/Core-i9-7940X.yaml | 24 ++++ .../Desktop-Skylake/Core-i9-7960X.yaml | 24 ++++ .../Desktop-Skylake/Core-i9-7980XE.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-9820X.yaml | 23 ++++ .../Desktop-Skylake/Core-i9-9900X.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-9920X.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-9940X.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-9960X.yaml | 25 ++++ .../Desktop-Skylake/Core-i9-9980XE.yaml | 25 ++++ .../Desktop-Skylake/Pentium-G3900.yaml | 29 +++++ .../Desktop-Skylake/Pentium-G3900T.yaml | 28 +++++ .../Desktop-Skylake/Pentium-G3920.yaml | 29 +++++ .../Desktop-Skylake/Pentium-G4400.yaml | 32 +++++ .../Desktop-Skylake/Pentium-G4400T.yaml | 31 +++++ .../Desktop-Skylake/Pentium-G4500.yaml | 30 +++++ .../Desktop-Skylake/Pentium-G4500T.yaml | 29 +++++ .../Desktop-Skylake/Pentium-G4520.yaml | 30 +++++ .../Desktop-Skylake/Xeon-W-3175X.yaml | 24 ++++ .../Desktop-Smithfield.yaml | 21 ++++ .../Desktop-Smithfield/Pentium-805.yaml | 20 +++ .../Desktop-Smithfield/Pentium-820.yaml | 20 +++ .../Desktop-Smithfield/Pentium-830.yaml | 20 +++ .../Desktop-Smithfield/Pentium-840.yaml | 21 ++++ .../Desktop-CPUs-Intel/Desktop-Wolfdale.yaml | 41 ++++++ .../Desktop-Wolfdale/Core-E7200.yaml | 20 +++ .../Desktop-Wolfdale/Core-E7300.yaml | 20 +++ .../Desktop-Wolfdale/Core-E7400.yaml | 20 +++ .../Desktop-Wolfdale/Core-E7500.yaml | 20 +++ .../Desktop-Wolfdale/Core-E7600.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8190.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8200.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8300.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8400.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8500.yaml | 20 +++ .../Desktop-Wolfdale/Core-E8600.yaml | 20 +++ .../Desktop-Wolfdale/Pentium-E3200.yaml | 19 +++ .../Desktop-Wolfdale/Pentium-E3300.yaml | 19 +++ .../Desktop-Wolfdale/Pentium-E3400.yaml | 19 +++ .../Desktop-Wolfdale/Pentium-E3500.yaml | 20 +++ .../Desktop-Wolfdale/Pentium-E5200.yaml | 23 ++++ .../Desktop-Wolfdale/Pentium-E5300.yaml | 21 ++++ .../Desktop-Wolfdale/Pentium-E5400.yaml | 23 ++++ .../Desktop-Wolfdale/Pentium-E5500.yaml | 23 ++++ .../Desktop-Wolfdale/Pentium-E5700.yaml | 23 ++++ .../Desktop-Wolfdale/Pentium-E5800.yaml | 23 ++++ .../Desktop-Wolfdale/Pentium-E6300.yaml | 21 ++++ .../Desktop-Wolfdale/Pentium-E6500.yaml | 21 ++++ .../Desktop-Wolfdale/Pentium-E6500K.yaml | 20 +++ .../Desktop-Wolfdale/Pentium-E6600.yaml | 21 ++++ .../Desktop-Wolfdale/Pentium-E6700.yaml | 21 ++++ .../Desktop-Wolfdale/Pentium-E6800.yaml | 22 ++++ .../Desktop-CPUs-Intel/Desktop-Yorkfield.yaml | 33 +++++ .../Desktop-Yorkfield/Core-Q8200.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q8200S.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q8300.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q8400.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q8400S.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9300.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9400.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9400S.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9450.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9500.yaml | 18 +++ .../Desktop-Yorkfield/Core-Q9505.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9505S.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9550.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9550S.yaml | 20 +++ .../Desktop-Yorkfield/Core-Q9650.yaml | 20 +++ .../Desktop-Yorkfield/Core-QX9650.yaml | 20 +++ .../Desktop-Yorkfield/Core-QX9770.yaml | 20 +++ .../Desktop-Yorkfield/Core-QX9775.yaml | 20 +++ specs/intel/Embedded-CPUs-Intel.yaml | 40 ++++++ .../Embedded-Apollo-Lake.yaml | 20 +++ .../Embedded-Apollo-Lake/Atom-E3930.yaml | 27 ++++ .../Embedded-Apollo-Lake/Atom-E3940.yaml | 27 ++++ .../Embedded-Apollo-Lake/Atom-E3950.yaml | 27 ++++ .../Embedded-Arrandale.yaml | 17 +++ .../Embedded-Arrandale/Core-i5-520E.yaml | 27 ++++ .../Embedded-Arrandale/Core-i7-620LE.yaml | 27 ++++ .../Embedded-Arrandale/Core-i7-620UE.yaml | 27 ++++ .../Embedded-Bay-Trail.yaml | 26 ++++ .../Embedded-Bay-Trail/Atom-E3805.yaml | 22 ++++ .../Embedded-Bay-Trail/Atom-E3815.yaml | 23 ++++ .../Embedded-Bay-Trail/Atom-E3825.yaml | 23 ++++ .../Embedded-Bay-Trail/Atom-E3826.yaml | 23 ++++ .../Embedded-Bay-Trail/Atom-E3827.yaml | 23 ++++ .../Embedded-Bay-Trail/Atom-E3845.yaml | 23 ++++ .../Embedded-Braswell.yaml | 15 +++ .../Embedded-Braswell/Atom-E8000.yaml | 25 ++++ .../Embedded-Broadwell.yaml | 32 +++++ .../Embedded-Broadwell/Core-i7-5700EQ.yaml | 30 +++++ .../Embedded-Broadwell/Core-i7-5850EQ.yaml | 30 +++++ .../Embedded-Broadwell/Xeon-E3-1258LV4.yaml | 28 +++++ .../Embedded-Broadwell/Xeon-E3-1278LV4.yaml | 30 +++++ .../Embedded-Broadwell/Xeon-E5-2608LV4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-2618LV4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-2628LV4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-2648LV4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-2658V4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-2699RV4.yaml | 24 ++++ .../Embedded-Broadwell/Xeon-E5-4628LV4.yaml | 23 ++++ .../Embedded-Coffee-Lake.yaml | 45 +++++++ .../Embedded-Coffee-Lake/Core-i3-9100E.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i3-9100HL.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i3-9100TE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i5-9500E.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i5-9500TE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i7-9700E.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i7-9700TE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i7-9850HE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Core-i7-9850HL.yaml | 30 +++++ .../Embedded-Coffee-Lake/Pentium-G4930E.yaml | 30 +++++ .../Embedded-Coffee-Lake/Pentium-G4932E.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2226GE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2254ME.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2254ML.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2276ME.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2276ML.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2278GE.yaml | 30 +++++ .../Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml | 30 +++++ .../Embedded-Harpertown.yaml | 15 +++ .../Embedded-Harpertown/Xeon-L5408.yaml | 19 +++ .../Embedded-CPUs-Intel/Embedded-Haswell.yaml | 62 ++++++++++ .../Embedded-Haswell/Core-i3-4100E.yaml | 25 ++++ .../Embedded-Haswell/Core-i3-4102E.yaml | 25 ++++ .../Embedded-Haswell/Core-i3-4110E.yaml | 25 ++++ .../Embedded-Haswell/Core-i3-4112E.yaml | 25 ++++ .../Embedded-Haswell/Core-i3-4330TE.yaml | 27 ++++ .../Embedded-Haswell/Core-i3-4340TE.yaml | 27 ++++ .../Embedded-Haswell/Core-i5-4400E.yaml | 28 +++++ .../Embedded-Haswell/Core-i5-4402E.yaml | 28 +++++ .../Embedded-Haswell/Core-i5-4402EC.yaml | 25 ++++ .../Embedded-Haswell/Core-i5-4410E.yaml | 27 ++++ .../Embedded-Haswell/Core-i5-4422E.yaml | 28 +++++ .../Embedded-Haswell/Core-i5-4570TE.yaml | 28 +++++ .../Embedded-Haswell/Core-i7-4700EC.yaml | 27 ++++ .../Embedded-Haswell/Core-i7-4700EQ.yaml | 30 +++++ .../Embedded-Haswell/Core-i7-4702EC.yaml | 27 ++++ .../Embedded-Haswell/Core-i7-4770TE.yaml | 30 +++++ .../Embedded-Haswell/Pentium-2000E.yaml | 27 ++++ .../Embedded-Haswell/Pentium-2002E.yaml | 27 ++++ .../Embedded-Haswell/Pentium-G1820TE.yaml | 27 ++++ .../Embedded-Haswell/Pentium-G3320TE.yaml | 27 ++++ .../Embedded-Haswell/Xeon-E3-1268LV3.yaml | 26 ++++ .../Embedded-Haswell/Xeon-E5-1428LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2408LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2418LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2428LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2438LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2608LV3.yaml | 23 ++++ .../Embedded-Haswell/Xeon-E5-2618LV3.yaml | 24 ++++ .../Embedded-Haswell/Xeon-E5-2628LV3.yaml | 24 ++++ .../Embedded-Haswell/Xeon-E5-2648LV3.yaml | 24 ++++ .../Embedded-Haswell/Xeon-E5-2658AV3.yaml | 24 ++++ .../Embedded-Haswell/Xeon-E5-2658V3.yaml | 24 ++++ .../Embedded-Haswell/Xeon-E5-4648V3.yaml | 23 ++++ .../Embedded-Ivy-Bridge-EN.yaml | 21 ++++ .../Xeon-E5-1428LV2.yaml | 24 ++++ .../Xeon-E5-2418LV2.yaml | 24 ++++ .../Xeon-E5-2428LV2.yaml | 24 ++++ .../Xeon-E5-2448LV2.yaml | 24 ++++ .../Embedded-Ivy-Bridge-EP.yaml | 22 ++++ .../Xeon-E5-2618LV2.yaml | 24 ++++ .../Xeon-E5-2628LV2.yaml | 24 ++++ .../Xeon-E5-2648LV2.yaml | 24 ++++ .../Xeon-E5-2658V2.yaml | 24 ++++ .../Xeon-E5-4624LV2.yaml | 24 ++++ .../Embedded-Ivy-Bridge.yaml | 37 ++++++ .../Embedded-Ivy-Bridge/Core-i3-3120ME.yaml | 25 ++++ .../Embedded-Ivy-Bridge/Core-i3-3217UE.yaml | 25 ++++ .../Embedded-Ivy-Bridge/Core-i5-3610ME.yaml | 26 ++++ .../Embedded-Ivy-Bridge/Core-i7-3517UE.yaml | 26 ++++ .../Embedded-Ivy-Bridge/Core-i7-3555LE.yaml | 26 ++++ .../Embedded-Ivy-Bridge/Core-i7-3610QE.yaml | 28 +++++ .../Embedded-Ivy-Bridge/Core-i7-3612QE.yaml | 26 ++++ .../Embedded-Ivy-Bridge/Core-i7-3615QE.yaml | 26 ++++ .../Embedded-Ivy-Bridge/Pentium-1020E.yaml | 25 ++++ .../Embedded-Ivy-Bridge/Pentium-1047UE.yaml | 24 ++++ .../Embedded-Ivy-Bridge/Pentium-1405V2.yaml | 23 ++++ .../Embedded-Ivy-Bridge/Pentium-927UE.yaml | 22 ++++ .../Embedded-Jasper-Forest.yaml | 32 +++++ .../Embedded-Jasper-Forest/Pentium-P1053.yaml | 21 ++++ .../Embedded-Jasper-Forest/Xeon-EC3539.yaml | 19 +++ .../Embedded-Jasper-Forest/Xeon-EC5509.yaml | 19 +++ .../Embedded-Jasper-Forest/Xeon-EC5539.yaml | 19 +++ .../Embedded-Jasper-Forest/Xeon-EC5549.yaml | 22 ++++ .../Embedded-Jasper-Forest/Xeon-LC3518.yaml | 19 +++ .../Embedded-Jasper-Forest/Xeon-LC3528.yaml | 20 +++ .../Embedded-Jasper-Forest/Xeon-LC5518.yaml | 20 +++ .../Embedded-Jasper-Forest/Xeon-LC5528.yaml | 20 +++ .../Embedded-Kaby-Lake.yaml | 25 ++++ .../Embedded-Kaby-Lake/Core-i3-7100E.yaml | 29 +++++ .../Embedded-Kaby-Lake/Core-i3-7102E.yaml | 29 +++++ .../Embedded-Kaby-Lake/Core-i5-7440EQ.yaml | 30 +++++ .../Embedded-Kaby-Lake/Core-i5-7442EQ.yaml | 30 +++++ .../Embedded-Kaby-Lake/Core-i7-7820EQ.yaml | 30 +++++ .../Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml | 30 +++++ .../Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml | 30 +++++ .../Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml | 28 +++++ .../Embedded-Nehalem-EP.yaml | 19 +++ .../Embedded-Nehalem-EP/Xeon-L5508.yaml | 23 ++++ .../Embedded-Nehalem-EP/Xeon-L5518.yaml | 23 ++++ .../Embedded-Rangeley.yaml | 32 +++++ .../Embedded-Rangeley/Atom-C2308.yaml | 20 +++ .../Embedded-Rangeley/Atom-C2316.yaml | 20 +++ .../Embedded-Rangeley/Atom-C2338.yaml | 23 ++++ .../Embedded-Rangeley/Atom-C2358.yaml | 23 ++++ .../Embedded-Rangeley/Atom-C2508.yaml | 20 +++ .../Embedded-Rangeley/Atom-C2516.yaml | 20 +++ .../Embedded-Rangeley/Atom-C2518.yaml | 22 ++++ .../Embedded-Rangeley/Atom-C2538.yaml | 22 ++++ .../Embedded-Rangeley/Atom-C2558.yaml | 22 ++++ .../Embedded-Rangeley/Atom-C2718.yaml | 22 ++++ .../Embedded-Rangeley/Atom-C2738.yaml | 22 ++++ .../Embedded-Rangeley/Atom-C2758.yaml | 22 ++++ .../Embedded-Sandy-Bridge-EN.yaml | 20 +++ .../Xeon-E5-2418L.yaml | 21 ++++ .../Xeon-E5-2428L.yaml | 23 ++++ .../Xeon-E5-2448L.yaml | 23 ++++ .../Embedded-Sandy-Bridge-EP.yaml | 16 +++ .../Xeon-E5-2648L.yaml | 23 ++++ .../Xeon-E5-2658.yaml | 23 ++++ .../Embedded-Sandy-Bridge.yaml | 33 +++++ .../Embedded-Sandy-Bridge/Core-i3-2310E.yaml | 25 ++++ .../Embedded-Sandy-Bridge/Core-i3-2340UE.yaml | 25 ++++ .../Embedded-Sandy-Bridge/Core-i5-2515E.yaml | 26 ++++ .../Embedded-Sandy-Bridge/Core-i7-2610UE.yaml | 26 ++++ .../Embedded-Sandy-Bridge/Core-i7-2655LE.yaml | 26 ++++ .../Embedded-Sandy-Bridge/Core-i7-2715QE.yaml | 26 ++++ .../Embedded-Sandy-Bridge/Pentium-807UE.yaml | 24 ++++ .../Embedded-Sandy-Bridge/Pentium-827E.yaml | 24 ++++ .../Embedded-Sandy-Bridge/Pentium-847E.yaml | 24 ++++ .../Embedded-Sandy-Bridge/Pentium-B810E.yaml | 24 ++++ .../Embedded-CPUs-Intel/Embedded-Skylake.yaml | 38 ++++++ .../Embedded-Skylake/Core-i3-6100E.yaml | 29 +++++ .../Embedded-Skylake/Core-i3-6100TE.yaml | 29 +++++ .../Embedded-Skylake/Core-i3-6102E.yaml | 29 +++++ .../Embedded-Skylake/Core-i5-6440EQ.yaml | 30 +++++ .../Embedded-Skylake/Core-i5-6442EQ.yaml | 30 +++++ .../Embedded-Skylake/Core-i5-6500TE.yaml | 30 +++++ .../Embedded-Skylake/Core-i7-6700TE.yaml | 30 +++++ .../Embedded-Skylake/Core-i7-6820EQ.yaml | 30 +++++ .../Embedded-Skylake/Core-i7-6822EQ.yaml | 30 +++++ .../Embedded-Skylake/Pentium-G3900E.yaml | 29 +++++ .../Embedded-Skylake/Pentium-G3900TE.yaml | 29 +++++ .../Embedded-Skylake/Pentium-G3902E.yaml | 29 +++++ .../Embedded-Skylake/Pentium-G4400TE.yaml | 29 +++++ .../Embedded-Skylake/Xeon-E3-1268LV5.yaml | 30 +++++ .../Embedded-Skylake/Xeon-E3-1505LV5.yaml | 30 +++++ .../Embedded-Skylake/Xeon-E3-1558LV5.yaml | 28 +++++ .../Embedded-Skylake/Xeon-E3-1578LV5.yaml | 28 +++++ .../Embedded-Stellarton.yaml | 18 +++ .../Embedded-Stellarton/Atom-E645C.yaml | 21 ++++ .../Embedded-Stellarton/Atom-E645CT.yaml | 21 ++++ .../Embedded-Stellarton/Atom-E665C.yaml | 21 ++++ .../Embedded-Stellarton/Atom-E665CT.yaml | 21 ++++ .../Embedded-Tunnel-Creek.yaml | 22 ++++ .../Embedded-Tunnel-Creek/Atom-E620.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E620T.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E640.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E640T.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E660.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E660T.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E680.yaml | 21 ++++ .../Embedded-Tunnel-Creek/Atom-E680T.yaml | 21 ++++ .../Embedded-Whiskey-Lake.yaml | 24 ++++ .../Embedded-Whiskey-Lake/Core-i3-8145UE.yaml | 27 ++++ .../Embedded-Whiskey-Lake/Core-i5-8365UE.yaml | 27 ++++ .../Embedded-Whiskey-Lake/Core-i7-8665UE.yaml | 28 +++++ .../Embedded-Whiskey-Lake/Pentium-4305UE.yaml | 27 ++++ .../Embedded-Wolfdale.yaml | 20 +++ .../Embedded-Wolfdale/Xeon-E5240.yaml | 19 +++ .../Embedded-Wolfdale/Xeon-L3014.yaml | 18 +++ .../Embedded-Wolfdale/Xeon-L5238.yaml | 19 +++ specs/intel/Mobile-CPUs-Intel.yaml | 63 ++++++++++ .../Mobile-Amber-Lake-Y.yaml | 27 ++++ .../Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml | 30 +++++ .../Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml | 31 +++++ .../Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml | 30 +++++ .../Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml | 31 +++++ .../Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml | 33 +++++ .../Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml | 30 +++++ .../Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml | 31 +++++ .../Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml | 31 +++++ .../Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml | 31 +++++ .../Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml | 15 +++ .../Mobile-Amber-Lake/Pentium-4425Y.yaml | 29 +++++ .../Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml | 22 ++++ .../Mobile-Apollo-Lake/Pentium-N3350.yaml | 27 ++++ .../Mobile-Apollo-Lake/Pentium-N3350E.yaml | 28 +++++ .../Mobile-Apollo-Lake/Pentium-N3450.yaml | 27 ++++ .../Mobile-Apollo-Lake/Pentium-N4200.yaml | 29 +++++ .../Mobile-Apollo-Lake/Pentium-N4200E.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Arrandale.yaml | 62 ++++++++++ .../Mobile-Arrandale/Core-i3-330E.yaml | 26 ++++ .../Mobile-Arrandale/Core-i3-330M.yaml | 28 +++++ .../Mobile-Arrandale/Core-i3-330UM.yaml | 26 ++++ .../Mobile-Arrandale/Core-i3-350M.yaml | 28 +++++ .../Mobile-Arrandale/Core-i3-370M.yaml | 28 +++++ .../Mobile-Arrandale/Core-i3-380M.yaml | 28 +++++ .../Mobile-Arrandale/Core-i3-380UM.yaml | 26 ++++ .../Mobile-Arrandale/Core-i3-390M.yaml | 26 ++++ .../Mobile-Arrandale/Core-i5-430M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-430UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i5-450M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-460M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-470UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i5-480M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-520M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-520UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i5-540M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-540UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i5-560M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i5-560UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i5-580M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i7-610E.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-620LM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-620M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i7-620UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-640LM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-640M.yaml | 29 +++++ .../Mobile-Arrandale/Core-i7-640UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-660LM.yaml | 26 ++++ .../Mobile-Arrandale/Core-i7-660UE.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-660UM.yaml | 27 ++++ .../Mobile-Arrandale/Core-i7-680UM.yaml | 27 ++++ .../Mobile-Arrandale/Pentium-P4500.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-P4505.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-P4600.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-P6000.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-P6100.yaml | 26 ++++ .../Mobile-Arrandale/Pentium-P6200.yaml | 28 +++++ .../Mobile-Arrandale/Pentium-P6300.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-U3400.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-U3405.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-U3600.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-U5400.yaml | 25 ++++ .../Mobile-Arrandale/Pentium-U5600.yaml | 24 ++++ .../Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml | 53 ++++++++ .../Mobile-Bay-Trail/Pentium-A1020.yaml | 25 ++++ .../Mobile-Bay-Trail/Pentium-N2805.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2806.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2807.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2808.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2810.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2815.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2820.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2830.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2840.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2910.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2920.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2930.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N2940.yaml | 24 ++++ .../Mobile-Bay-Trail/Pentium-N3510.yaml | 25 ++++ .../Mobile-Bay-Trail/Pentium-N3520.yaml | 25 ++++ .../Mobile-Bay-Trail/Pentium-N3530.yaml | 27 ++++ .../Mobile-Bay-Trail/Pentium-N3540.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Braswell.yaml | 25 ++++ .../Mobile-Braswell/Pentium-N3000.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3010.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3050.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3060.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3150.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3160.yaml | 27 ++++ .../Mobile-Braswell/Pentium-N3700.yaml | 30 +++++ .../Mobile-Braswell/Pentium-N3710.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Broadwell.yaml | 56 +++++++++ .../Mobile-Broadwell/Core-5Y10.yaml | 29 +++++ .../Mobile-Broadwell/Core-5Y10a.yaml | 29 +++++ .../Mobile-Broadwell/Core-5Y10c.yaml | 30 +++++ .../Mobile-Broadwell/Core-5Y31.yaml | 30 +++++ .../Mobile-Broadwell/Core-5Y51.yaml | 30 +++++ .../Mobile-Broadwell/Core-5Y70.yaml | 29 +++++ .../Mobile-Broadwell/Core-5Y71.yaml | 30 +++++ .../Mobile-Broadwell/Core-i3-5005U.yaml | 32 +++++ .../Mobile-Broadwell/Core-i3-5010U.yaml | 32 +++++ .../Mobile-Broadwell/Core-i3-5015U.yaml | 32 +++++ .../Mobile-Broadwell/Core-i3-5020U.yaml | 31 +++++ .../Mobile-Broadwell/Core-i3-5157U.yaml | 29 +++++ .../Mobile-Broadwell/Core-i5-5200U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i5-5250U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i5-5257U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i5-5287U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i5-5300U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i5-5350H.yaml | 30 +++++ .../Mobile-Broadwell/Core-i5-5350U.yaml | 32 +++++ .../Mobile-Broadwell/Core-i7-5500U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i7-5550U.yaml | 31 +++++ .../Mobile-Broadwell/Core-i7-5557U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i7-5600U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i7-5650U.yaml | 33 +++++ .../Mobile-Broadwell/Core-i7-5700HQ.yaml | 33 +++++ .../Mobile-Broadwell/Core-i7-5750HQ.yaml | 30 +++++ .../Mobile-Broadwell/Core-i7-5850HQ.yaml | 31 +++++ .../Mobile-Broadwell/Core-i7-5950HQ.yaml | 31 +++++ .../Mobile-Broadwell/Pentium-3205U.yaml | 26 ++++ .../Mobile-Broadwell/Pentium-3215U.yaml | 26 ++++ .../Mobile-Broadwell/Pentium-3755U.yaml | 26 ++++ .../Mobile-Broadwell/Pentium-3765U.yaml | 26 ++++ .../Mobile-Broadwell/Pentium-3805U.yaml | 29 +++++ .../Mobile-Broadwell/Pentium-3825U.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Cedarview.yaml | 16 +++ .../Mobile-Cedarview/Atom-N2600.yaml | 23 ++++ .../Mobile-Cedarview/Atom-N2800.yaml | 23 ++++ .../Mobile-Cherry-Trail.yaml | 22 ++++ .../Mobile-CPUs-Intel/Mobile-Clarksfield.yaml | 20 +++ .../Mobile-Clarksfield/Core-i7-720QM.yaml | 27 ++++ .../Mobile-Clarksfield/Core-i7-740QM.yaml | 27 ++++ .../Mobile-Clarksfield/Core-i7-820QM.yaml | 25 ++++ .../Mobile-Clarksfield/Core-i7-840QM.yaml | 27 ++++ .../Mobile-Clarksfield/Core-i7-920XM.yaml | 25 ++++ .../Mobile-Clarksfield/Core-i7-940XM.yaml | 25 ++++ .../Mobile-CPUs-Intel/Mobile-Cloverview.yaml | 18 +++ .../Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml | 54 ++++++++ .../Mobile-Coffee-Lake/Core-i3-8100B.yaml | 31 +++++ .../Mobile-Coffee-Lake/Core-i3-8100H.yaml | 29 +++++ .../Mobile-Coffee-Lake/Core-i3-8109U.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i5-8257U.yaml | 32 +++++ .../Mobile-Coffee-Lake/Core-i5-8259U.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i5-8269U.yaml | 30 +++++ .../Mobile-Coffee-Lake/Core-i5-8279U.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i5-8300H.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i5-8400B.yaml | 30 +++++ .../Mobile-Coffee-Lake/Core-i5-8400H.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i5-8500B.yaml | 32 +++++ .../Mobile-Coffee-Lake/Core-i5-9300H.yaml | 34 +++++ .../Mobile-Coffee-Lake/Core-i5-9300HF.yaml | 26 ++++ .../Mobile-Coffee-Lake/Core-i5-9400H.yaml | 31 +++++ .../Mobile-Coffee-Lake/Core-i7-8557U.yaml | 30 +++++ .../Mobile-Coffee-Lake/Core-i7-8559U.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i7-8569U.yaml | 32 +++++ .../Mobile-Coffee-Lake/Core-i7-8700B.yaml | 32 +++++ .../Mobile-Coffee-Lake/Core-i7-8750H.yaml | 34 +++++ .../Mobile-Coffee-Lake/Core-i7-8850H.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i7-9750H.yaml | 34 +++++ .../Mobile-Coffee-Lake/Core-i7-9750HF.yaml | 24 ++++ .../Mobile-Coffee-Lake/Core-i7-9850H.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i9-8950HK.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i9-9880H.yaml | 33 +++++ .../Mobile-Coffee-Lake/Core-i9-9980HK.yaml | 33 +++++ .../Mobile-Coffee-Lake/Xeon-E-2176M.yaml | 32 +++++ .../Mobile-Coffee-Lake/Xeon-E-2186M.yaml | 30 +++++ .../Mobile-Coffee-Lake/Xeon-E-2276M.yaml | 32 +++++ .../Mobile-Coffee-Lake/Xeon-E-2286M.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml | 29 +++++ .../Mobile-Comet-Lake/Core-i3-10110U.yaml | 33 +++++ .../Mobile-Comet-Lake/Core-i5-10210U.yaml | 33 +++++ .../Mobile-Comet-Lake/Core-i7-10510U.yaml | 33 +++++ .../Mobile-Comet-Lake/Core-i7-10710U.yaml | 31 +++++ .../Mobile-Comet-Lake/Pentium-5205U.yaml | 29 +++++ .../Mobile-Comet-Lake/Pentium-6405U.yaml | 29 +++++ .../Mobile-Crystal-Well.yaml | 23 ++++ .../Mobile-Crystal-Well/Core-i7-4750HQ.yaml | 33 +++++ .../Mobile-Crystal-Well/Core-i7-4760HQ.yaml | 30 +++++ .../Mobile-Crystal-Well/Core-i7-4770HQ.yaml | 33 +++++ .../Mobile-Crystal-Well/Core-i7-4850HQ.yaml | 33 +++++ .../Mobile-Crystal-Well/Core-i7-4860HQ.yaml | 30 +++++ .../Mobile-Crystal-Well/Core-i7-4870HQ.yaml | 32 +++++ .../Mobile-Crystal-Well/Core-i7-4950HQ.yaml | 30 +++++ .../Mobile-Crystal-Well/Core-i7-4960HQ.yaml | 33 +++++ .../Mobile-Crystal-Well/Core-i7-4980HQ.yaml | 32 +++++ .../Mobile-Diamondville.yaml | 16 +++ .../Mobile-Diamondville/Atom-N270.yaml | 20 +++ .../Mobile-Diamondville/Atom-N280.yaml | 20 +++ .../Mobile-CPUs-Intel/Mobile-Dothan.yaml | 44 +++++++ .../Mobile-Dothan/Pentium-350.yaml | 19 +++ .../Mobile-Dothan/Pentium-353.yaml | 17 +++ .../Mobile-Dothan/Pentium-360.yaml | 20 +++ .../Mobile-Dothan/Pentium-370.yaml | 18 +++ .../Mobile-Dothan/Pentium-373.yaml | 18 +++ .../Mobile-Dothan/Pentium-380.yaml | 17 +++ .../Mobile-Dothan/Pentium-383.yaml | 17 +++ .../Mobile-Dothan/Pentium-390.yaml | 17 +++ .../Mobile-Dothan/Pentium-715.yaml | 17 +++ .../Mobile-Dothan/Pentium-725.yaml | 18 +++ .../Mobile-Dothan/Pentium-730.yaml | 17 +++ .../Mobile-Dothan/Pentium-733.yaml | 17 +++ .../Mobile-Dothan/Pentium-735.yaml | 17 +++ .../Mobile-Dothan/Pentium-738.yaml | 18 +++ .../Mobile-Dothan/Pentium-740.yaml | 17 +++ .../Mobile-Dothan/Pentium-745.yaml | 18 +++ .../Mobile-Dothan/Pentium-745A.yaml | 17 +++ .../Mobile-Dothan/Pentium-750.yaml | 17 +++ .../Mobile-Dothan/Pentium-753.yaml | 17 +++ .../Mobile-Dothan/Pentium-755.yaml | 17 +++ .../Mobile-Dothan/Pentium-758.yaml | 17 +++ .../Mobile-Dothan/Pentium-760.yaml | 18 +++ .../Mobile-Dothan/Pentium-765.yaml | 17 +++ .../Mobile-Dothan/Pentium-770.yaml | 17 +++ .../Mobile-Dothan/Pentium-773.yaml | 17 +++ .../Mobile-Dothan/Pentium-778.yaml | 17 +++ .../Mobile-Dothan/Pentium-780.yaml | 17 +++ .../Mobile-Gemini-Lake-Refresh.yaml | 20 +++ .../Pentium-N4020.yaml | 28 +++++ .../Pentium-N4120.yaml | 28 +++++ .../Pentium-N5030.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml | 20 +++ .../Mobile-Gemini-Lake/Pentium-N4000.yaml | 28 +++++ .../Mobile-Gemini-Lake/Pentium-N4100.yaml | 28 +++++ .../Mobile-Gemini-Lake/Pentium-N5000.yaml | 28 +++++ .../Mobile-CPUs-Intel/Mobile-Haswell.yaml | 101 +++++++++++++++ .../Mobile-Haswell/Core-i3-4000M.yaml | 32 +++++ .../Mobile-Haswell/Core-i3-4005U.yaml | 32 +++++ .../Mobile-Haswell/Core-i3-4010U.yaml | 32 +++++ .../Mobile-Haswell/Core-i3-4010Y.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4012Y.yaml | 30 +++++ .../Mobile-Haswell/Core-i3-4020Y.yaml | 31 +++++ .../Mobile-Haswell/Core-i3-4025U.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4030U.yaml | 32 +++++ .../Mobile-Haswell/Core-i3-4030Y.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4100M.yaml | 31 +++++ .../Mobile-Haswell/Core-i3-4100U.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4110M.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4120U.yaml | 29 +++++ .../Mobile-Haswell/Core-i3-4158U.yaml | 29 +++++ .../Mobile-Haswell/Core-i5-4200H.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4200M.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4200U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4200Y.yaml | 30 +++++ .../Mobile-Haswell/Core-i5-4202Y.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4210H.yaml | 32 +++++ .../Mobile-Haswell/Core-i5-4210M.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4210U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4210Y.yaml | 31 +++++ .../Mobile-Haswell/Core-i5-4220Y.yaml | 30 +++++ .../Mobile-Haswell/Core-i5-4250U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4258U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4260U.yaml | 32 +++++ .../Mobile-Haswell/Core-i5-4278U.yaml | 32 +++++ .../Mobile-Haswell/Core-i5-4288U.yaml | 32 +++++ .../Mobile-Haswell/Core-i5-4300M.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4300U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4300Y.yaml | 31 +++++ .../Mobile-Haswell/Core-i5-4302Y.yaml | 29 +++++ .../Mobile-Haswell/Core-i5-4308U.yaml | 32 +++++ .../Mobile-Haswell/Core-i5-4310M.yaml | 31 +++++ .../Mobile-Haswell/Core-i5-4310U.yaml | 33 +++++ .../Mobile-Haswell/Core-i5-4330M.yaml | 30 +++++ .../Mobile-Haswell/Core-i5-4340M.yaml | 30 +++++ .../Mobile-Haswell/Core-i5-4350U.yaml | 30 +++++ .../Mobile-Haswell/Core-i5-4360U.yaml | 29 +++++ .../Mobile-Haswell/Core-i7-4500U.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4510U.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4550U.yaml | 31 +++++ .../Mobile-Haswell/Core-i7-4558U.yaml | 31 +++++ .../Mobile-Haswell/Core-i7-4578U.yaml | 32 +++++ .../Mobile-Haswell/Core-i7-4600M.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4600U.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4610M.yaml | 32 +++++ .../Mobile-Haswell/Core-i7-4610Y.yaml | 30 +++++ .../Mobile-Haswell/Core-i7-4650U.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4700HQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4700MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4702HQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4702MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4710HQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4710MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4712HQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4712MQ.yaml | 32 +++++ .../Mobile-Haswell/Core-i7-4720HQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4722HQ.yaml | 31 +++++ .../Mobile-Haswell/Core-i7-4800MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4810MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4900MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4910MQ.yaml | 33 +++++ .../Mobile-Haswell/Core-i7-4930MX.yaml | 31 +++++ .../Mobile-Haswell/Core-i7-4940MX.yaml | 30 +++++ .../Mobile-Haswell/Pentium-2950M.yaml | 25 ++++ .../Mobile-Haswell/Pentium-2955U.yaml | 25 ++++ .../Mobile-Haswell/Pentium-2957U.yaml | 25 ++++ .../Mobile-Haswell/Pentium-2961Y.yaml | 24 ++++ .../Mobile-Haswell/Pentium-2970M.yaml | 25 ++++ .../Mobile-Haswell/Pentium-2980U.yaml | 25 ++++ .../Mobile-Haswell/Pentium-2981U.yaml | 24 ++++ .../Mobile-Haswell/Pentium-3550M.yaml | 26 ++++ .../Mobile-Haswell/Pentium-3556U.yaml | 24 ++++ .../Mobile-Haswell/Pentium-3558U.yaml | 25 ++++ .../Mobile-Haswell/Pentium-3560M.yaml | 25 ++++ .../Mobile-Haswell/Pentium-3560Y.yaml | 24 ++++ .../Mobile-Haswell/Pentium-3561Y.yaml | 25 ++++ .../Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i3-1000G1.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i3-1000G4.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i3-1005G1.yaml | 31 +++++ .../Mobile-Ice-Lake/Core-i5-1030G4.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i5-1030G7.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i5-1035G1.yaml | 29 +++++ .../Mobile-Ice-Lake/Core-i5-1035G4.yaml | 29 +++++ .../Mobile-Ice-Lake/Core-i5-1035G7.yaml | 29 +++++ .../Mobile-Ice-Lake/Core-i7-1060G7.yaml | 27 ++++ .../Mobile-Ice-Lake/Core-i7-1065G7.yaml | 29 +++++ .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml | 72 +++++++++++ .../Mobile-Ivy-Bridge/Core-i3-3110M.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Core-i3-3120M.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Core-i3-3130M.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Core-i3-3217U.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Core-i3-3227U.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Core-i3-3229Y.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Core-i5-3210M.yaml | 30 +++++ .../Mobile-Ivy-Bridge/Core-i5-3230M.yaml | 30 +++++ .../Mobile-Ivy-Bridge/Core-i5-3317U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3320M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3337U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3339Y.yaml | 27 ++++ .../Mobile-Ivy-Bridge/Core-i5-3340M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3360M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3380M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3427U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3437U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i5-3439Y.yaml | 26 ++++ .../Mobile-Ivy-Bridge/Core-i7-3517U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3520M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3537U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3540M.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3610QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3612QM.yaml | 30 +++++ .../Mobile-Ivy-Bridge/Core-i7-3615QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3630QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3632QM.yaml | 30 +++++ .../Mobile-Ivy-Bridge/Core-i7-3635QM.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Core-i7-3667U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3687U.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3689Y.yaml | 27 ++++ .../Mobile-Ivy-Bridge/Core-i7-3720QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3740QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3820QM.yaml | 27 ++++ .../Mobile-Ivy-Bridge/Core-i7-3840QM.yaml | 29 +++++ .../Mobile-Ivy-Bridge/Core-i7-3920XM.yaml | 27 ++++ .../Mobile-Ivy-Bridge/Core-i7-3940XM.yaml | 27 ++++ .../Mobile-Ivy-Bridge/Pentium-1000M.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1005M.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1007U.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1017U.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1019Y.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1020M.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-1037U.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-2020M.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Pentium-2030M.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-2117U.yaml | 28 +++++ .../Mobile-Ivy-Bridge/Pentium-2127U.yaml | 26 ++++ .../Mobile-Ivy-Bridge/Pentium-2129Y.yaml | 25 ++++ .../Mobile-Ivy-Bridge/Pentium-A1018.yaml | 25 ++++ .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml | 19 +++ .../Mobile-Kaby-Lake-G/Core-i5-8305G.yaml | 32 +++++ .../Mobile-Kaby-Lake-G/Core-i7-8705G.yaml | 33 +++++ .../Mobile-Kaby-Lake-G/Core-i7-8706G.yaml | 32 +++++ .../Mobile-Kaby-Lake-G/Core-i7-8709G.yaml | 30 +++++ .../Mobile-Kaby-Lake-G/Core-i7-8809G.yaml | 33 +++++ .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml | 26 ++++ .../Mobile-Kaby-Lake-R/Core-i5-8250U.yaml | 32 +++++ .../Mobile-Kaby-Lake-R/Core-i5-8350U.yaml | 31 +++++ .../Mobile-Kaby-Lake-R/Core-i7-8550U.yaml | 31 +++++ .../Mobile-Kaby-Lake-R/Core-i7-8650U.yaml | 31 +++++ .../Mobile-Kaby-Lake-R/Pentium-3867U.yaml | 29 +++++ .../Mobile-Kaby-Lake-R/Pentium-4417U.yaml | 30 +++++ .../Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml | 58 +++++++++ .../Mobile-Kaby-Lake/Core-M3-7Y30.yaml | 30 +++++ .../Mobile-Kaby-Lake/Core-M3-7Y32.yaml | 30 +++++ .../Mobile-Kaby-Lake/Core-i3-7020U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Core-i3-7100H.yaml | 27 ++++ .../Mobile-Kaby-Lake/Core-i3-7100U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Core-i3-7130U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Core-i3-7167U.yaml | 29 +++++ .../Mobile-Kaby-Lake/Core-i3-8130U.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i5-7200U.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i5-7260U.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i5-7267U.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i5-7287U.yaml | 29 +++++ .../Mobile-Kaby-Lake/Core-i5-7300HQ.yaml | 34 +++++ .../Mobile-Kaby-Lake/Core-i5-7300U.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i5-7360U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Core-i5-7440HQ.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i5-7Y54.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i5-7Y57.yaml | 30 +++++ .../Mobile-Kaby-Lake/Core-i7-7500U.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i7-7560U.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i7-7567U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Core-i7-7600U.yaml | 31 +++++ .../Mobile-Kaby-Lake/Core-i7-7660U.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i7-7700HQ.yaml | 34 +++++ .../Mobile-Kaby-Lake/Core-i7-7820HK.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i7-7820HQ.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i7-7920HQ.yaml | 33 +++++ .../Mobile-Kaby-Lake/Core-i7-7Y75.yaml | 31 +++++ .../Mobile-Kaby-Lake/Pentium-3865U.yaml | 29 +++++ .../Mobile-Kaby-Lake/Pentium-3965U.yaml | 29 +++++ .../Mobile-Kaby-Lake/Pentium-3965Y.yaml | 29 +++++ .../Mobile-Kaby-Lake/Pentium-4410Y.yaml | 30 +++++ .../Mobile-Kaby-Lake/Pentium-4415U.yaml | 32 +++++ .../Mobile-Kaby-Lake/Pentium-4415Y.yaml | 31 +++++ .../Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml | 30 +++++ .../Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml | 30 +++++ .../Mobile-CPUs-Intel/Mobile-Lincroft.yaml | 19 +++ .../Mobile-Lincroft/Atom-Z600.yaml | 24 ++++ .../Mobile-Lincroft/Atom-Z615.yaml | 24 ++++ .../Mobile-Lincroft/Atom-Z625.yaml | 22 ++++ .../Mobile-Lincroft/Atom-Z650.yaml | 22 ++++ .../Mobile-Lincroft/Atom-Z670.yaml | 22 ++++ .../intel/Mobile-CPUs-Intel/Mobile-Merom.yaml | 71 +++++++++++ .../Mobile-Merom/Core-L7200.yaml | 19 +++ .../Mobile-Merom/Core-L7300.yaml | 19 +++ .../Mobile-Merom/Core-L7400.yaml | 19 +++ .../Mobile-Merom/Core-L7500.yaml | 19 +++ .../Mobile-Merom/Core-L7700.yaml | 18 +++ .../Mobile-Merom/Core-T5200.yaml | 17 +++ .../Mobile-Merom/Core-T5250.yaml | 18 +++ .../Mobile-Merom/Core-T5270.yaml | 18 +++ .../Mobile-Merom/Core-T5300.yaml | 18 +++ .../Mobile-Merom/Core-T5450.yaml | 18 +++ .../Mobile-Merom/Core-T5470.yaml | 18 +++ .../Mobile-Merom/Core-T5500.yaml | 18 +++ .../Mobile-Merom/Core-T5550.yaml | 18 +++ .../Mobile-Merom/Core-T5600.yaml | 18 +++ .../Mobile-Merom/Core-T5670.yaml | 18 +++ .../Mobile-Merom/Core-T5750.yaml | 18 +++ .../Mobile-Merom/Core-T5800.yaml | 19 +++ .../Mobile-Merom/Core-T5870.yaml | 17 +++ .../Mobile-Merom/Core-T7100.yaml | 19 +++ .../Mobile-Merom/Core-T7200.yaml | 18 +++ .../Mobile-Merom/Core-T7250.yaml | 19 +++ .../Mobile-Merom/Core-T7300.yaml | 19 +++ .../Mobile-Merom/Core-T7400.yaml | 19 +++ .../Mobile-Merom/Core-T7500.yaml | 19 +++ .../Mobile-Merom/Core-T7600.yaml | 19 +++ .../Mobile-Merom/Core-T7700.yaml | 19 +++ .../Mobile-Merom/Core-T7800.yaml | 19 +++ .../Mobile-Merom/Core-U2100.yaml | 18 +++ .../Mobile-Merom/Core-U2200.yaml | 18 +++ .../Mobile-Merom/Core-U7500.yaml | 20 +++ .../Mobile-Merom/Core-U7600.yaml | 20 +++ .../Mobile-Merom/Core-U7700.yaml | 18 +++ .../Mobile-Merom/Core-X7800.yaml | 19 +++ .../Mobile-Merom/Core-X7900.yaml | 19 +++ .../Mobile-Merom/Pentium-520.yaml | 19 +++ .../Mobile-Merom/Pentium-523.yaml | 18 +++ .../Mobile-Merom/Pentium-530.yaml | 20 +++ .../Mobile-Merom/Pentium-540.yaml | 19 +++ .../Mobile-Merom/Pentium-550.yaml | 19 +++ .../Mobile-Merom/Pentium-560.yaml | 19 +++ .../Mobile-Merom/Pentium-570.yaml | 19 +++ .../Mobile-Merom/Pentium-573.yaml | 19 +++ .../Mobile-Merom/Pentium-575.yaml | 19 +++ .../Mobile-Merom/Pentium-585.yaml | 19 +++ .../Mobile-Merom/Pentium-T1600.yaml | 19 +++ .../Mobile-Merom/Pentium-T1700.yaml | 19 +++ .../Mobile-Merom/Pentium-T2310.yaml | 19 +++ .../Mobile-Merom/Pentium-T2330.yaml | 19 +++ .../Mobile-Merom/Pentium-T2370.yaml | 19 +++ .../Mobile-Merom/Pentium-T2390.yaml | 18 +++ .../Mobile-Merom/Pentium-T3200.yaml | 17 +++ .../Mobile-Merom/Pentium-T3400.yaml | 19 +++ .../Mobile-CPUs-Intel/Mobile-Merrifield.yaml | 15 +++ .../Mobile-CPUs-Intel/Mobile-Moorefield.yaml | 19 +++ .../Mobile-CPUs-Intel/Mobile-Penryn.yaml | 78 ++++++++++++ .../Mobile-Penryn/Core-P7350.yaml | 19 +++ .../Mobile-Penryn/Core-P7370.yaml | 19 +++ .../Mobile-Penryn/Core-P7450.yaml | 19 +++ .../Mobile-Penryn/Core-P7550.yaml | 19 +++ .../Mobile-Penryn/Core-P7570.yaml | 19 +++ .../Mobile-Penryn/Core-P8400.yaml | 19 +++ .../Mobile-Penryn/Core-P8600.yaml | 19 +++ .../Mobile-Penryn/Core-P8700.yaml | 19 +++ .../Mobile-Penryn/Core-P8800.yaml | 19 +++ .../Mobile-Penryn/Core-P9500.yaml | 19 +++ .../Mobile-Penryn/Core-P9600.yaml | 19 +++ .../Mobile-Penryn/Core-P9700.yaml | 19 +++ .../Mobile-Penryn/Core-Q9000.yaml | 19 +++ .../Mobile-Penryn/Core-Q9100.yaml | 19 +++ .../Mobile-Penryn/Core-QX9300.yaml | 19 +++ .../Mobile-Penryn/Core-SL9300.yaml | 19 +++ .../Mobile-Penryn/Core-SL9380.yaml | 19 +++ .../Mobile-Penryn/Core-SL9400.yaml | 19 +++ .../Mobile-Penryn/Core-SL9600.yaml | 19 +++ .../Mobile-Penryn/Core-SP9300.yaml | 19 +++ .../Mobile-Penryn/Core-SP9400.yaml | 19 +++ .../Mobile-Penryn/Core-SP9600.yaml | 19 +++ .../Mobile-Penryn/Core-SU3500.yaml | 20 +++ .../Mobile-Penryn/Core-SU9300.yaml | 19 +++ .../Mobile-Penryn/Core-SU9400.yaml | 19 +++ .../Mobile-Penryn/Core-SU9600.yaml | 19 +++ .../Mobile-Penryn/Core-T6400.yaml | 19 +++ .../Mobile-Penryn/Core-T6500.yaml | 18 +++ .../Mobile-Penryn/Core-T6600.yaml | 19 +++ .../Mobile-Penryn/Core-T6670.yaml | 19 +++ .../Mobile-Penryn/Core-T8100.yaml | 19 +++ .../Mobile-Penryn/Core-T8300.yaml | 19 +++ .../Mobile-Penryn/Core-T9300.yaml | 19 +++ .../Mobile-Penryn/Core-T9400.yaml | 19 +++ .../Mobile-Penryn/Core-T9500.yaml | 19 +++ .../Mobile-Penryn/Core-T9550.yaml | 19 +++ .../Mobile-Penryn/Core-T9600.yaml | 19 +++ .../Mobile-Penryn/Core-T9800.yaml | 19 +++ .../Mobile-Penryn/Core-T9900.yaml | 19 +++ .../Mobile-Penryn/Core-X9000.yaml | 19 +++ .../Mobile-Penryn/Core-X9100.yaml | 19 +++ .../Mobile-Penryn/Pentium-722.yaml | 19 +++ .../Mobile-Penryn/Pentium-723.yaml | 19 +++ .../Mobile-Penryn/Pentium-743.yaml | 19 +++ .../Mobile-Penryn/Pentium-763.yaml | 16 +++ .../Mobile-Penryn/Pentium-900.yaml | 19 +++ .../Mobile-Penryn/Pentium-925.yaml | 21 ++++ .../Mobile-Penryn/Pentium-SU2300.yaml | 17 +++ .../Mobile-Penryn/Pentium-T3100.yaml | 19 +++ .../Mobile-Penryn/Pentium-T3300.yaml | 18 +++ .../Mobile-Penryn/Pentium-T3500.yaml | 19 +++ .../Mobile-Penryn/Pentium-T4200.yaml | 22 ++++ .../Mobile-Penryn/Pentium-T4300.yaml | 21 ++++ .../Mobile-Penryn/Pentium-T4400.yaml | 22 ++++ .../Mobile-Penryn/Pentium-T4500.yaml | 19 +++ .../Mobile-CPUs-Intel/Mobile-Penwell.yaml | 16 +++ .../Mobile-CPUs-Intel/Mobile-Pineview.yaml | 23 ++++ .../Mobile-Pineview/Atom-N450.yaml | 24 ++++ .../Mobile-Pineview/Atom-N455.yaml | 24 ++++ .../Mobile-Pineview/Atom-N470.yaml | 24 ++++ .../Mobile-Pineview/Atom-N475.yaml | 23 ++++ .../Mobile-Pineview/Atom-N550.yaml | 23 ++++ .../Mobile-Pineview/Atom-N570.yaml | 23 ++++ .../Mobile-Sandy-Bridge.yaml | 94 ++++++++++++++ .../Mobile-Sandy-Bridge/Core-i3-2310M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2312M.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Core-i3-2328M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2330E.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Core-i3-2330M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2348M.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i3-2350M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2357M.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Core-i3-2365M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2367M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i3-2370M.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Core-i3-2375M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i3-2377M.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Core-i5-2410M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2430M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2435M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2450M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2467M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2510E.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i5-2520M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2537M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2540M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i5-2557M.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i7-2617M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i7-2620M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2629M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i7-2630QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2635QM.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i7-2637M.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i7-2640M.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2649M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i7-2657M.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i7-2670QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2675QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2677M.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i7-2710QE.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Core-i7-2720QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2760QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2820QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2860QM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Core-i7-2920XM.yaml | 27 ++++ .../Mobile-Sandy-Bridge/Core-i7-2960XM.yaml | 29 +++++ .../Mobile-Sandy-Bridge/Pentium-787.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-797.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-807.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-847.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-857.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-867.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-877.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-887.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-957.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-967.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-977.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-987.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Pentium-997.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B710.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-B720.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-B800.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B810.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B815.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B820.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B830.yaml | 25 ++++ .../Mobile-Sandy-Bridge/Pentium-B840.yaml | 24 ++++ .../Mobile-Sandy-Bridge/Pentium-B940.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Pentium-B950.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Pentium-B960.yaml | 28 +++++ .../Mobile-Sandy-Bridge/Pentium-B970.yaml | 26 ++++ .../Mobile-Sandy-Bridge/Pentium-B980.yaml | 28 +++++ .../Mobile-Silverthorne.yaml | 30 +++++ .../Mobile-Silverthorne/Atom-Z500.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z510.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z510P.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z510PT.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z515.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z520.yaml | 20 +++ .../Mobile-Silverthorne/Atom-Z520PT.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z530.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z530P.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z540.yaml | 19 +++ .../Mobile-Silverthorne/Atom-Z550.yaml | 18 +++ .../Mobile-Silverthorne/Atom-Z560.yaml | 19 +++ .../Mobile-CPUs-Intel/Mobile-Skylake.yaml | 62 ++++++++++ .../Mobile-Skylake/Core-M3-6Y30.yaml | 30 +++++ .../Mobile-Skylake/Core-M5-6Y54.yaml | 30 +++++ .../Mobile-Skylake/Core-M5-6Y57.yaml | 30 +++++ .../Mobile-Skylake/Core-M7-6Y75.yaml | 30 +++++ .../Mobile-Skylake/Core-i3-6006U.yaml | 32 +++++ .../Mobile-Skylake/Core-i3-6100H.yaml | 29 +++++ .../Mobile-Skylake/Core-i3-6100U.yaml | 32 +++++ .../Mobile-Skylake/Core-i3-6157U.yaml | 32 +++++ .../Mobile-Skylake/Core-i3-6167U.yaml | 30 +++++ .../Mobile-Skylake/Core-i5-6200U.yaml | 31 +++++ .../Mobile-Skylake/Core-i5-6260U.yaml | 33 +++++ .../Mobile-Skylake/Core-i5-6267U.yaml | 32 +++++ .../Mobile-Skylake/Core-i5-6287U.yaml | 30 +++++ .../Mobile-Skylake/Core-i5-6300HQ.yaml | 33 +++++ .../Mobile-Skylake/Core-i5-6300U.yaml | 31 +++++ .../Mobile-Skylake/Core-i5-6350HQ.yaml | 30 +++++ .../Mobile-Skylake/Core-i5-6360U.yaml | 32 +++++ .../Mobile-Skylake/Core-i5-6440HQ.yaml | 32 +++++ .../Mobile-Skylake/Core-i7-6500U.yaml | 31 +++++ .../Mobile-Skylake/Core-i7-6560U.yaml | 31 +++++ .../Mobile-Skylake/Core-i7-6567U.yaml | 31 +++++ .../Mobile-Skylake/Core-i7-6600U.yaml | 31 +++++ .../Mobile-Skylake/Core-i7-6650U.yaml | 33 +++++ .../Mobile-Skylake/Core-i7-6660U.yaml | 30 +++++ .../Mobile-Skylake/Core-i7-6700HQ.yaml | 34 +++++ .../Mobile-Skylake/Core-i7-6770HQ.yaml | 32 +++++ .../Mobile-Skylake/Core-i7-6820HK.yaml | 33 +++++ .../Mobile-Skylake/Core-i7-6820HQ.yaml | 33 +++++ .../Mobile-Skylake/Core-i7-6870HQ.yaml | 30 +++++ .../Mobile-Skylake/Core-i7-6920HQ.yaml | 33 +++++ .../Mobile-Skylake/Core-i7-6970HQ.yaml | 30 +++++ .../Mobile-Skylake/Pentium-3855U.yaml | 29 +++++ .../Mobile-Skylake/Pentium-3955U.yaml | 29 +++++ .../Mobile-Skylake/Pentium-4405U.yaml | 32 +++++ .../Mobile-Skylake/Pentium-4405Y.yaml | 30 +++++ .../Mobile-Skylake/Xeon-E3-1505MV5.yaml | 30 +++++ .../Mobile-Skylake/Xeon-E3-1515MV5.yaml | 30 +++++ .../Mobile-Skylake/Xeon-E3-1535MV5.yaml | 30 +++++ .../Mobile-Skylake/Xeon-E3-1545MV5.yaml | 30 +++++ .../Mobile-Skylake/Xeon-E3-1575MV5.yaml | 30 +++++ .../Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml | 20 +++ .../Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml | 15 +++ .../Mobile-Whiskey-Lake.yaml | 28 +++++ .../Mobile-Whiskey-Lake/Core-i3-8145U.yaml | 31 +++++ .../Mobile-Whiskey-Lake/Core-i5-8265U.yaml | 31 +++++ .../Mobile-Whiskey-Lake/Core-i5-8365U.yaml | 31 +++++ .../Mobile-Whiskey-Lake/Core-i7-8565U.yaml | 31 +++++ .../Mobile-Whiskey-Lake/Core-i7-8665U.yaml | 31 +++++ .../Mobile-Whiskey-Lake/Pentium-4205U.yaml | 29 +++++ .../Mobile-Whiskey-Lake/Pentium-4305U.yaml | 29 +++++ .../Mobile-Whiskey-Lake/Pentium-5405U.yaml | 30 +++++ .../intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml | 47 +++++++ .../Mobile-Yonah/Core-L2300.yaml | 17 +++ .../Mobile-Yonah/Core-L2400.yaml | 18 +++ .../Mobile-Yonah/Core-L2500.yaml | 17 +++ .../Mobile-Yonah/Core-T1250.yaml | 16 +++ .../Mobile-Yonah/Core-T1300.yaml | 17 +++ .../Mobile-Yonah/Core-T1350.yaml | 17 +++ .../Mobile-Yonah/Core-T1400.yaml | 17 +++ .../Mobile-Yonah/Core-T2050.yaml | 17 +++ .../Mobile-Yonah/Core-T2250.yaml | 18 +++ .../Mobile-Yonah/Core-T2300.yaml | 18 +++ .../Mobile-Yonah/Core-T2300E.yaml | 17 +++ .../Mobile-Yonah/Core-T2350.yaml | 17 +++ .../Mobile-Yonah/Core-T2400.yaml | 18 +++ .../Mobile-Yonah/Core-T2450.yaml | 17 +++ .../Mobile-Yonah/Core-T2500.yaml | 19 +++ .../Mobile-Yonah/Core-T2600.yaml | 18 +++ .../Mobile-Yonah/Core-T2700.yaml | 17 +++ .../Mobile-Yonah/Core-U1300.yaml | 17 +++ .../Mobile-Yonah/Core-U1400.yaml | 17 +++ .../Mobile-Yonah/Core-U1500.yaml | 17 +++ .../Mobile-Yonah/Core-U2400.yaml | 17 +++ .../Mobile-Yonah/Core-U2500.yaml | 18 +++ .../Mobile-Yonah/Pentium-215.yaml | 17 +++ .../Mobile-Yonah/Pentium-410.yaml | 17 +++ .../Mobile-Yonah/Pentium-423.yaml | 18 +++ .../Mobile-Yonah/Pentium-443.yaml | 17 +++ .../Mobile-Yonah/Pentium-T2060.yaml | 18 +++ .../Mobile-Yonah/Pentium-T2080.yaml | 18 +++ .../Mobile-Yonah/Pentium-T2130.yaml | 18 +++ specs/intel/Server-CPUs-Intel.yaml | 56 +++++++++ .../Server-CPUs-Intel/Server-Avoton.yaml | 25 ++++ .../Server-Avoton/Atom-C2350.yaml | 23 ++++ .../Server-Avoton/Atom-C2530.yaml | 23 ++++ .../Server-Avoton/Atom-C2550.yaml | 23 ++++ .../Server-Avoton/Atom-C2730.yaml | 23 ++++ .../Server-Avoton/Atom-C2750.yaml | 23 ++++ .../Server-CPUs-Intel/Server-Bloomfield.yaml | 21 ++++ .../Server-Bloomfield/Xeon-W3520.yaml | 26 ++++ .../Server-Bloomfield/Xeon-W3530.yaml | 28 +++++ .../Server-Bloomfield/Xeon-W3540.yaml | 25 ++++ .../Server-Bloomfield/Xeon-W3550.yaml | 28 +++++ .../Server-Bloomfield/Xeon-W3565.yaml | 28 +++++ .../Server-Bloomfield/Xeon-W3570.yaml | 26 ++++ .../Server-Bloomfield/Xeon-W3580.yaml | 25 ++++ .../Server-CPUs-Intel/Server-Briarwood.yaml | 17 +++ .../Server-Briarwood/Atom-S1269.yaml | 22 ++++ .../Server-Briarwood/Atom-S1279.yaml | 22 ++++ .../Server-Briarwood/Atom-S1289.yaml | 22 ++++ .../Server-CPUs-Intel/Server-Broadwell.yaml | 111 +++++++++++++++++ .../Server-Broadwell/Pentium-D1507.yaml | 22 ++++ .../Server-Broadwell/Pentium-D1508.yaml | 23 ++++ .../Server-Broadwell/Pentium-D1509.yaml | 22 ++++ .../Server-Broadwell/Pentium-D1517.yaml | 23 ++++ .../Server-Broadwell/Pentium-D1519.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1513N.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1518.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1520.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1521.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1523N.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1527.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1528.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1529.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1531.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1533N.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1537.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1539.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1540.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1541.yaml | 25 ++++ .../Server-Broadwell/Xeon-D-1543N.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1548.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1553N.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1557.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1559.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1567.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1571.yaml | 23 ++++ .../Server-Broadwell/Xeon-D-1577.yaml | 23 ++++ .../Server-Broadwell/Xeon-E3-1265LV4.yaml | 28 +++++ .../Server-Broadwell/Xeon-E3-1285LV4.yaml | 28 +++++ .../Server-Broadwell/Xeon-E3-1285V4.yaml | 28 +++++ .../Server-Broadwell/Xeon-E5-1620V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-1630V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-1650V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-1660V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-1680V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2603V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-2609V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-2620V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2623V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2630LV4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2630V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2637V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2640V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2643V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2650LV4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2650V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2660V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2667V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2680V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2683V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2687WV4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2690V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2695V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2697AV4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2697V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2698V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2699AV4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-2699V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E5-4610V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4620V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4627V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4640V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4650V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4655V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4660V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4667V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E5-4669V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E7-4809V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E7-4820V4.yaml | 23 ++++ .../Server-Broadwell/Xeon-E7-4830V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-4850V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8860V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8867V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8870V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8880V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8890V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8891V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8893V4.yaml | 24 ++++ .../Server-Broadwell/Xeon-E7-8894V4.yaml | 24 ++++ .../Server-Cascade-Lake.yaml | 86 +++++++++++++ .../Server-Cascade-Lake/Xeon-3204.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4208.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4209T.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4210.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4214.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4214Y.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4215.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-4216.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5215.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5215L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5215M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5217.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5218.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5218B.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5218N.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5218T.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5220.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5220S.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5220T.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-5222.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6222V.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6226.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6230.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6230N.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6230T.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6234.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6238.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6238L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6238M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6238T.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6240.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6240L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6240M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6240Y.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6242.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6244.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6246.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6248.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6252.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6252N.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6254.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-6262V.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8253.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8256.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8260.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8260L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8260M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8260Y.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8268.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8270.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8276.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8276L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8276M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8280.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8280L.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-8280M.yaml | 22 ++++ .../Server-Cascade-Lake/Xeon-9221.yaml | 20 +++ .../Server-Cascade-Lake/Xeon-9222.yaml | 20 +++ .../Server-Cascade-Lake/Xeon-9242.yaml | 20 +++ .../Server-Cascade-Lake/Xeon-9282.yaml | 20 +++ .../Server-CPUs-Intel/Server-Centerton.yaml | 17 +++ .../Server-Centerton/Atom-S1220.yaml | 21 ++++ .../Server-Centerton/Atom-S1240.yaml | 21 ++++ .../Server-Centerton/Atom-S1260.yaml | 21 ++++ .../Server-CPUs-Intel/Server-Clarkdale.yaml | 15 +++ .../Server-Clarkdale/Xeon-L3406.yaml | 25 ++++ .../Server-CPUs-Intel/Server-Clovertown.yaml | 25 ++++ .../Server-Clovertown/Xeon-E5310.yaml | 20 +++ .../Server-Clovertown/Xeon-E5320.yaml | 20 +++ .../Server-Clovertown/Xeon-E5335.yaml | 20 +++ .../Server-Clovertown/Xeon-E5345.yaml | 20 +++ .../Server-Clovertown/Xeon-L5310.yaml | 19 +++ .../Server-Clovertown/Xeon-L5318.yaml | 19 +++ .../Server-Clovertown/Xeon-L5320.yaml | 19 +++ .../Server-Clovertown/Xeon-L5335.yaml | 19 +++ .../Server-Clovertown/Xeon-X5355.yaml | 19 +++ .../Server-Clovertown/Xeon-X5365.yaml | 19 +++ .../Server-CPUs-Intel/Server-Coffee-Lake.yaml | 45 +++++++ .../Server-Coffee-Lake/Xeon-E-2124.yaml | 24 ++++ .../Server-Coffee-Lake/Xeon-E-2124G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2126G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2134.yaml | 24 ++++ .../Server-Coffee-Lake/Xeon-E-2136.yaml | 26 ++++ .../Server-Coffee-Lake/Xeon-E-2144G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2146G.yaml | 32 +++++ .../Server-Coffee-Lake/Xeon-E-2174G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2176G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2186G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2224.yaml | 26 ++++ .../Server-Coffee-Lake/Xeon-E-2224G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2226G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2234.yaml | 26 ++++ .../Server-Coffee-Lake/Xeon-E-2236.yaml | 26 ++++ .../Server-Coffee-Lake/Xeon-E-2244G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2246G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2274G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2276G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2278G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2286G.yaml | 30 +++++ .../Server-Coffee-Lake/Xeon-E-2288G.yaml | 30 +++++ .../Server-CPUs-Intel/Server-Conroe.yaml | 20 +++ .../Server-Conroe/Xeon-3040.yaml | 18 +++ .../Server-Conroe/Xeon-3050.yaml | 18 +++ .../Server-Conroe/Xeon-3060.yaml | 18 +++ .../Server-Conroe/Xeon-3065.yaml | 19 +++ .../Server-Conroe/Xeon-3070.yaml | 18 +++ .../Server-CPUs-Intel/Server-Denverton.yaml | 39 ++++++ .../Server-Denverton/Atom-C3308.yaml | 23 ++++ .../Server-Denverton/Atom-C3336.yaml | 22 ++++ .../Server-Denverton/Atom-C3338.yaml | 23 ++++ .../Server-Denverton/Atom-C3508.yaml | 23 ++++ .../Server-Denverton/Atom-C3538.yaml | 23 ++++ .../Server-Denverton/Atom-C3558.yaml | 23 ++++ .../Server-Denverton/Atom-C3708.yaml | 23 ++++ .../Server-Denverton/Atom-C3750.yaml | 23 ++++ .../Server-Denverton/Atom-C3758.yaml | 23 ++++ .../Server-Denverton/Atom-C3808.yaml | 23 ++++ .../Server-Denverton/Atom-C3830.yaml | 23 ++++ .../Server-Denverton/Atom-C3850.yaml | 23 ++++ .../Server-Denverton/Atom-C3858.yaml | 23 ++++ .../Server-Denverton/Atom-C3950.yaml | 23 ++++ .../Server-Denverton/Atom-C3955.yaml | 23 ++++ .../Server-Denverton/Atom-C3958.yaml | 23 ++++ .../Server-CPUs-Intel/Server-Dunnington.yaml | 24 ++++ .../Server-Dunnington/Xeon-E7420.yaml | 19 +++ .../Server-Dunnington/Xeon-E7430.yaml | 19 +++ .../Server-Dunnington/Xeon-E7440.yaml | 19 +++ .../Server-Dunnington/Xeon-E7450.yaml | 19 +++ .../Server-Dunnington/Xeon-L7445.yaml | 19 +++ .../Server-Dunnington/Xeon-L7455.yaml | 19 +++ .../Server-Dunnington/Xeon-X7460.yaml | 19 +++ .../Server-CPUs-Intel/Server-Gulftown.yaml | 15 +++ .../Server-Gulftown/Xeon-W3690.yaml | 28 +++++ .../Server-CPUs-Intel/Server-Harpertown.yaml | 31 +++++ .../Server-Harpertown/Xeon-E5405.yaml | 20 +++ .../Server-Harpertown/Xeon-E5410.yaml | 19 +++ .../Server-Harpertown/Xeon-E5420.yaml | 20 +++ .../Server-Harpertown/Xeon-E5430.yaml | 20 +++ .../Server-Harpertown/Xeon-E5440.yaml | 22 ++++ .../Server-Harpertown/Xeon-E5450.yaml | 22 ++++ .../Server-Harpertown/Xeon-E5462.yaml | 20 +++ .../Server-Harpertown/Xeon-E5472.yaml | 20 +++ .../Server-Harpertown/Xeon-L5410.yaml | 19 +++ .../Server-Harpertown/Xeon-L5420.yaml | 20 +++ .../Server-Harpertown/Xeon-L5430.yaml | 19 +++ .../Server-Harpertown/Xeon-X5450.yaml | 20 +++ .../Server-Harpertown/Xeon-X5460.yaml | 22 ++++ .../Server-Harpertown/Xeon-X5470.yaml | 20 +++ .../Server-Harpertown/Xeon-X5472.yaml | 20 +++ .../Server-Harpertown/Xeon-X5482.yaml | 19 +++ .../Server-Harpertown/Xeon-X5492.yaml | 19 +++ .../Server-CPUs-Intel/Server-Haswell.yaml | 100 +++++++++++++++ .../Server-Haswell/Xeon-E3-1220-v3.yaml | 27 ++++ .../Server-Haswell/Xeon-E3-1220LV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1225V3.yaml | 26 ++++ .../Server-Haswell/Xeon-E3-1226V3.yaml | 30 +++++ .../Server-Haswell/Xeon-E3-1230-v3.yaml | 27 ++++ .../Server-Haswell/Xeon-E3-1230Lv3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1231V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1240-v3.yaml | 27 ++++ .../Server-Haswell/Xeon-E3-1240LV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1241V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1245-v3.yaml | 29 +++++ .../Server-Haswell/Xeon-E3-1246V3.yaml | 30 +++++ .../Server-Haswell/Xeon-E3-1265Lv3.yaml | 26 ++++ .../Server-Haswell/Xeon-E3-1270-v3.yaml | 27 ++++ .../Server-Haswell/Xeon-E3-1271V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1275-v3.yaml | 29 +++++ .../Server-Haswell/Xeon-E3-1275LV3.yaml | 30 +++++ .../Server-Haswell/Xeon-E3-1276V3.yaml | 30 +++++ .../Server-Haswell/Xeon-E3-1280-v3.yaml | 26 ++++ .../Server-Haswell/Xeon-E3-1281V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E3-1285-v3.yaml | 26 ++++ .../Server-Haswell/Xeon-E3-1285Lv3.yaml | 27 ++++ .../Server-Haswell/Xeon-E3-1286LV3.yaml | 30 +++++ .../Server-Haswell/Xeon-E3-1286V3.yaml | 30 +++++ .../Server-Haswell/Xeon-E5-1620V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-1630V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-1650V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-1660V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-1680V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2603V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-2609V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-2620V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2623V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2630LV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2630V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2637V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2640V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2643V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2650LV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2650V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2660V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2667V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2670V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2680V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2683V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2687WV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2690V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2695V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2697V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2698V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-2699V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E5-4610V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4620V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4627V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4640V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4650V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4655V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4660V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4667V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E5-4669V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E7-4809V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E7-4820V3.yaml | 23 ++++ .../Server-Haswell/Xeon-E7-4830V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-4850V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8860V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8867V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8870V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8880LV3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8880V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8890V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8891V3.yaml | 24 ++++ .../Server-Haswell/Xeon-E7-8893V3.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Hewitt-Lake.yaml | 28 +++++ .../Server-Hewitt-Lake/Xeon-D-1602.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1622.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1623N.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1627.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1633N.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1637.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1649N.yaml | 23 ++++ .../Server-Hewitt-Lake/Xeon-D-1653N.yaml | 23 ++++ .../Server-Ivy-Bridge-EN.yaml | 29 +++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP.yaml | 52 ++++++++ .../Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml | 23 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml | 24 ++++ .../Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Ivy-Bridge.yaml | 55 ++++++++ .../Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E3-1220V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E3-1225V2.yaml | 26 ++++ .../Server-Ivy-Bridge/Xeon-E3-1230V2.yaml | 26 ++++ .../Server-Ivy-Bridge/Xeon-E3-1240V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E3-1245V2.yaml | 26 ++++ .../Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml | 26 ++++ .../Server-Ivy-Bridge/Xeon-E3-1270V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E3-1275V2.yaml | 26 ++++ .../Server-Ivy-Bridge/Xeon-E3-1280V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E3-1290V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-2850V2.yaml | 23 ++++ .../Server-Ivy-Bridge/Xeon-E7-2870V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-2880V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-2890V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4809V2.yaml | 23 ++++ .../Server-Ivy-Bridge/Xeon-E7-4820V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4830V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4850V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4860V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4870V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4880V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-4890V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8850V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8857V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8870V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8880V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8890V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8891V2.yaml | 24 ++++ .../Server-Ivy-Bridge/Xeon-E7-8893V2.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Kaby-Lake.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1220V6.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1225V6.yaml | 30 +++++ .../Server-Kaby-Lake/Xeon-E3-1230V6.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1240V6.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1245V6.yaml | 30 +++++ .../Server-Kaby-Lake/Xeon-E3-1270V6.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1275V6.yaml | 30 +++++ .../Server-Kaby-Lake/Xeon-E3-1280V6.yaml | 26 ++++ .../Server-Kaby-Lake/Xeon-E3-1285V6.yaml | 30 +++++ .../Server-CPUs-Intel/Server-Kentsfield.yaml | 17 +++ .../Server-Kentsfield/Xeon-X3210.yaml | 19 +++ .../Server-Kentsfield/Xeon-X3220.yaml | 20 +++ .../Server-Kentsfield/Xeon-X3230.yaml | 19 +++ .../Server-CPUs-Intel/Server-Lynnfield.yaml | 24 ++++ .../Server-Lynnfield/Xeon-L3426.yaml | 25 ++++ .../Server-Lynnfield/Xeon-X3430.yaml | 26 ++++ .../Server-Lynnfield/Xeon-X3440.yaml | 28 +++++ .../Server-Lynnfield/Xeon-X3450.yaml | 28 +++++ .../Server-Lynnfield/Xeon-X3460.yaml | 26 ++++ .../Server-Lynnfield/Xeon-X3470.yaml | 26 ++++ .../Server-Lynnfield/Xeon-X3480.yaml | 25 ++++ .../Server-CPUs-Intel/Server-Nehalem-EP.yaml | 36 ++++++ .../Server-Nehalem-EP/Xeon-E5502.yaml | 21 ++++ .../Server-Nehalem-EP/Xeon-E5503.yaml | 22 ++++ .../Server-Nehalem-EP/Xeon-E5504.yaml | 22 ++++ .../Server-Nehalem-EP/Xeon-E5506.yaml | 22 ++++ .../Server-Nehalem-EP/Xeon-E5507.yaml | 22 ++++ .../Server-Nehalem-EP/Xeon-E5520.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-E5530.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-E5540.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-L5506.yaml | 21 ++++ .../Server-Nehalem-EP/Xeon-L5520.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-L5530.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-W5580.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-W5590.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-X5550.yaml | 23 ++++ .../Server-Nehalem-EP/Xeon-X5560.yaml | 24 ++++ .../Server-Nehalem-EP/Xeon-X5570.yaml | 24 ++++ .../Server-Sandy-Bridge-EN.yaml | 31 +++++ .../Server-Sandy-Bridge-EN/Pentium-1405.yaml | 24 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml | 23 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml | 23 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml | 23 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml | 26 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml | 26 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml | 24 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml | 24 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml | 24 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml | 24 ++++ .../Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml | 24 ++++ .../Server-Sandy-Bridge-EP.yaml | 51 ++++++++ .../Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml | 23 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml | 23 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml | 27 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml | 26 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml | 23 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml | 23 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml | 24 ++++ .../Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml | 24 ++++ .../Server-Sandy-Bridge.yaml | 29 +++++ .../Server-Sandy-Bridge/Xeon-E3-1220.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1220L.yaml | 24 ++++ .../Server-Sandy-Bridge/Xeon-E3-1225.yaml | 28 +++++ .../Server-Sandy-Bridge/Xeon-E3-1230.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1235.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1240.yaml | 27 ++++ .../Server-Sandy-Bridge/Xeon-E3-1245.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1260L.yaml | 28 +++++ .../Server-Sandy-Bridge/Xeon-E3-1270.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1275.yaml | 26 ++++ .../Server-Sandy-Bridge/Xeon-E3-1280.yaml | 24 ++++ .../Server-Sandy-Bridge/Xeon-E3-1290.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Skylake.yaml | 117 ++++++++++++++++++ .../Server-Skylake/Xeon-3104.yaml | 21 ++++ .../Server-Skylake/Xeon-3106.yaml | 21 ++++ .../Server-Skylake/Xeon-4108.yaml | 22 ++++ .../Server-Skylake/Xeon-4109T.yaml | 22 ++++ .../Server-Skylake/Xeon-4110.yaml | 22 ++++ .../Server-Skylake/Xeon-4112.yaml | 22 ++++ .../Server-Skylake/Xeon-4114.yaml | 22 ++++ .../Server-Skylake/Xeon-4114T.yaml | 22 ++++ .../Server-Skylake/Xeon-4116.yaml | 22 ++++ .../Server-Skylake/Xeon-4116T.yaml | 22 ++++ .../Server-Skylake/Xeon-5115.yaml | 22 ++++ .../Server-Skylake/Xeon-5118.yaml | 22 ++++ .../Server-Skylake/Xeon-5119T.yaml | 22 ++++ .../Server-Skylake/Xeon-5120.yaml | 25 ++++ .../Server-Skylake/Xeon-5120T.yaml | 22 ++++ .../Server-Skylake/Xeon-5122.yaml | 22 ++++ .../Server-Skylake/Xeon-6126.yaml | 22 ++++ .../Server-Skylake/Xeon-6126F.yaml | 22 ++++ .../Server-Skylake/Xeon-6126T.yaml | 22 ++++ .../Server-Skylake/Xeon-6128.yaml | 22 ++++ .../Server-Skylake/Xeon-6130.yaml | 22 ++++ .../Server-Skylake/Xeon-6130F.yaml | 22 ++++ .../Server-Skylake/Xeon-6130T.yaml | 22 ++++ .../Server-Skylake/Xeon-6132.yaml | 22 ++++ .../Server-Skylake/Xeon-6134.yaml | 22 ++++ .../Server-Skylake/Xeon-6136.yaml | 22 ++++ .../Server-Skylake/Xeon-6138.yaml | 22 ++++ .../Server-Skylake/Xeon-6138F.yaml | 22 ++++ .../Server-Skylake/Xeon-6138P.yaml | 22 ++++ .../Server-Skylake/Xeon-6138T.yaml | 22 ++++ .../Server-Skylake/Xeon-6140.yaml | 22 ++++ .../Server-Skylake/Xeon-6142.yaml | 22 ++++ .../Server-Skylake/Xeon-6142F.yaml | 22 ++++ .../Server-Skylake/Xeon-6144.yaml | 22 ++++ .../Server-Skylake/Xeon-6146.yaml | 22 ++++ .../Server-Skylake/Xeon-6148.yaml | 22 ++++ .../Server-Skylake/Xeon-6148F.yaml | 22 ++++ .../Server-Skylake/Xeon-6150.yaml | 22 ++++ .../Server-Skylake/Xeon-6152.yaml | 22 ++++ .../Server-Skylake/Xeon-6154.yaml | 22 ++++ .../Server-Skylake/Xeon-8153.yaml | 22 ++++ .../Server-Skylake/Xeon-8156.yaml | 22 ++++ .../Server-Skylake/Xeon-8158.yaml | 22 ++++ .../Server-Skylake/Xeon-8160.yaml | 22 ++++ .../Server-Skylake/Xeon-8160F.yaml | 22 ++++ .../Server-Skylake/Xeon-8160T.yaml | 22 ++++ .../Server-Skylake/Xeon-8164.yaml | 22 ++++ .../Server-Skylake/Xeon-8168.yaml | 22 ++++ .../Server-Skylake/Xeon-8170.yaml | 22 ++++ .../Server-Skylake/Xeon-8176.yaml | 22 ++++ .../Server-Skylake/Xeon-8176F.yaml | 22 ++++ .../Server-Skylake/Xeon-8180.yaml | 22 ++++ .../Server-Skylake/Xeon-D-2123IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2141I.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2142IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2143IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2145NT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2146NT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2161I.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2163IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2166NT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2173IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2177NT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2183IT.yaml | 23 ++++ .../Server-Skylake/Xeon-D-2187NT.yaml | 23 ++++ .../Server-Skylake/Xeon-E3-1220V5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1225V5.yaml | 30 +++++ .../Server-Skylake/Xeon-E3-1230V5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1235LV5.yaml | 29 +++++ .../Server-Skylake/Xeon-E3-1240LV5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1240V5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1245V5.yaml | 30 +++++ .../Server-Skylake/Xeon-E3-1260LV5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1270V5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1275V5.yaml | 30 +++++ .../Server-Skylake/Xeon-E3-1280V5.yaml | 26 ++++ .../Server-Skylake/Xeon-E3-1565LV5.yaml | 28 +++++ .../Server-Skylake/Xeon-E3-1585LV5.yaml | 28 +++++ .../Server-Skylake/Xeon-E3-1585V5.yaml | 28 +++++ .../Server-Skylake/Xeon-W-2123.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2125.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2133.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2135.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2145.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2155.yaml | 26 ++++ .../Server-Skylake/Xeon-W-2175.yaml | 24 ++++ .../Server-Skylake/Xeon-W-2195.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Tigerton.yaml | 26 ++++ .../Server-Tigerton/Xeon-E7210.yaml | 19 +++ .../Server-Tigerton/Xeon-E7220.yaml | 19 +++ .../Server-Tigerton/Xeon-E7310.yaml | 19 +++ .../Server-Tigerton/Xeon-E7320.yaml | 19 +++ .../Server-Tigerton/Xeon-E7330.yaml | 19 +++ .../Server-Tigerton/Xeon-E7340.yaml | 19 +++ .../Server-Tigerton/Xeon-L7345.yaml | 19 +++ .../Server-Tigerton/Xeon-X7350.yaml | 19 +++ .../Server-CPUs-Intel/Server-Westmere-EP.yaml | 46 +++++++ .../Server-Westmere-EP/Xeon-E5603.yaml | 23 ++++ .../Server-Westmere-EP/Xeon-E5606.yaml | 23 ++++ .../Server-Westmere-EP/Xeon-E5607.yaml | 23 ++++ .../Server-Westmere-EP/Xeon-E5620.yaml | 27 ++++ .../Server-Westmere-EP/Xeon-E5630.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-E5640.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-E5645.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-E5649.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-L5609.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-L5618.yaml | 18 +++ .../Server-Westmere-EP/Xeon-L5630.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-L5638.yaml | 18 +++ .../Server-Westmere-EP/Xeon-L5640.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-W3670.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-W3680.yaml | 27 ++++ .../Server-Westmere-EP/Xeon-X5647.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-X5650.yaml | 27 ++++ .../Server-Westmere-EP/Xeon-X5660.yaml | 27 ++++ .../Server-Westmere-EP/Xeon-X5667.yaml | 25 ++++ .../Server-Westmere-EP/Xeon-X5670.yaml | 26 ++++ .../Server-Westmere-EP/Xeon-X5672.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-X5675.yaml | 26 ++++ .../Server-Westmere-EP/Xeon-X5677.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-X5680.yaml | 26 ++++ .../Server-Westmere-EP/Xeon-X5687.yaml | 24 ++++ .../Server-Westmere-EP/Xeon-X5690.yaml | 27 ++++ .../Server-CPUs-Intel/Server-Westmere-EX.yaml | 38 ++++++ .../Server-Westmere-EX/Xeon-E7-2803.yaml | 23 ++++ .../Server-Westmere-EX/Xeon-E7-2820.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-2830.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-2850.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-2860.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-2870.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-4807.yaml | 23 ++++ .../Server-Westmere-EX/Xeon-E7-4820.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-4830.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-4850.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-4860.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-4870.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8830.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8837.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8850.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8860.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8867L.yaml | 24 ++++ .../Server-Westmere-EX/Xeon-E7-8870.yaml | 24 ++++ .../Server-CPUs-Intel/Server-Wolfdale.yaml | 25 ++++ .../Server-Wolfdale/Xeon-E3110.yaml | 20 +++ .../Server-Wolfdale/Xeon-E3120.yaml | 19 +++ .../Server-Wolfdale/Xeon-E5205.yaml | 19 +++ .../Server-Wolfdale/Xeon-E5220.yaml | 19 +++ .../Server-Wolfdale/Xeon-L3110.yaml | 19 +++ .../Server-Wolfdale/Xeon-L5215.yaml | 18 +++ .../Server-Wolfdale/Xeon-L5240.yaml | 19 +++ .../Server-Wolfdale/Xeon-X5260.yaml | 19 +++ .../Server-Wolfdale/Xeon-X5270.yaml | 19 +++ .../Server-Wolfdale/Xeon-X5272.yaml | 19 +++ .../Server-CPUs-Intel/Server-Woodcrest.yaml | 24 ++++ .../Server-Woodcrest/Xeon-5110.yaml | 18 +++ .../Server-Woodcrest/Xeon-5113.yaml | 17 +++ .../Server-Woodcrest/Xeon-5128.yaml | 19 +++ .../Server-Woodcrest/Xeon-5130.yaml | 18 +++ .../Server-Woodcrest/Xeon-5133.yaml | 18 +++ .../Server-Woodcrest/Xeon-5138.yaml | 19 +++ .../Server-Woodcrest/Xeon-5140.yaml | 19 +++ .../Server-Woodcrest/Xeon-5148.yaml | 19 +++ .../Server-Woodcrest/Xeon-5150.yaml | 18 +++ .../Server-Woodcrest/Xeon-5160.yaml | 18 +++ .../Server-CPUs-Intel/Server-Yorkfield.yaml | 21 ++++ .../Server-Yorkfield/Xeon-L3360.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3320.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3330.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3350.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3360.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3370.yaml | 19 +++ .../Server-Yorkfield/Xeon-X3380.yaml | 19 +++ specs/intel/undefined-CPUs-Intel.yaml | 11 ++ .../undefined-Cascade-Lake.yaml | 37 ++++++ .../undefined-Cascade-Lake/Xeon-W-2223.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2225.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2235.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2245.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2255.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2265.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2275.yaml | 22 ++++ .../undefined-Cascade-Lake/Xeon-W-2295.yaml | 24 ++++ .../undefined-Cascade-Lake/Xeon-W-3223.yaml | 23 ++++ .../undefined-Cascade-Lake/Xeon-W-3225.yaml | 21 ++++ .../undefined-Cascade-Lake/Xeon-W-3235.yaml | 23 ++++ .../undefined-Cascade-Lake/Xeon-W-3245.yaml | 23 ++++ .../undefined-Cascade-Lake/Xeon-W-3245M.yaml | 21 ++++ .../undefined-Cascade-Lake/Xeon-W-3265.yaml | 21 ++++ .../undefined-Cascade-Lake/Xeon-W-3265M.yaml | 23 ++++ .../undefined-Cascade-Lake/Xeon-W-3275.yaml | 21 ++++ .../undefined-Cascade-Lake/Xeon-W-3275M.yaml | 23 ++++ 2176 files changed, 56243 insertions(+) create mode 100644 specs/intel/Desktop-CPUs-Intel.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml create mode 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml create mode 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml create mode 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml create mode 100644 specs/intel/Server-CPUs-Intel.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Centerton.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml create mode 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml create mode 100644 specs/intel/undefined-CPUs-Intel.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml create mode 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml diff --git a/specs/intel/Desktop-CPUs-Intel.yaml b/specs/intel/Desktop-CPUs-Intel.yaml new file mode 100644 index 00000000..4946e373 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel.yaml @@ -0,0 +1,53 @@ +humanName: 'Desktop CPUs (Intel)' +sections: + - + header: '2015 - 2019' + members: + - Desktop-Gemini-Lake-Refresh + - Desktop-Cascade-Lake + - Desktop-Gemini-Lake + - Desktop-Coffee-Lake + - Desktop-Kaby-Lake + - Desktop-Apollo-Lake + - Desktop-Broadwell-E + - Desktop-Braswell + - Desktop-Skylake + - Desktop-Broadwell + - + header: '2010 - 2014' + members: + - Desktop-Haswell-E + - Desktop-Devils-Canyon + - Desktop-Bay-Trail + - Desktop-Ivy-Bridge-E + - Desktop-Crystal-Well + - Desktop-Haswell + - Desktop-Ivy-Bridge + - Desktop-Sandy-Bridge-E + - Desktop-Cedarview + - Desktop-Sandy-Bridge + - Desktop-Gulftown + - Desktop-Clarkdale + - Desktop-Pineview + - + header: '2005 - 2009' + members: + - Desktop-Lynnfield + - Desktop-Bloomfield + - Desktop-Diamondville + - Desktop-Wolfdale + - Desktop-Yorkfield + - Desktop-Kentsfield + - Desktop-Conroe + - Desktop-Cedarmill + - Desktop-Presler + - Desktop-Smithfield + - + header: '2000 - 2004' + members: + - Desktop-Prescott +type: 'Generic Container' +topHeader: 'SELECT ARCHITECTURE:' +data: + Manufacturer: Intel +name: Desktop-CPUs-Intel diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml new file mode 100644 index 00000000..2e426fc4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml @@ -0,0 +1,22 @@ +humanName: 'Apollo Lake' +sections: + - + header: '4 Threads' + members: + - Pentium-J4205 + - Pentium-J3455E + - Pentium-J3455 + - + header: '2 Threads' + members: + - Pentium-J3355E + - Pentium-J3355 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-08-30' + Sockets: + - BGA1296 +name: Desktop-Apollo-Lake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml new file mode 100644 index 00000000..d3039a2b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3355' +name: Pentium-J3355 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml new file mode 100644 index 00000000..5856d34b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-07-29' + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3355E' +name: Pentium-J3355E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml new file mode 100644 index 00000000..c295d5fc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3455' +name: Pentium-J3455 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml new file mode 100644 index 00000000..fe3f33db --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-07-22' + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '250 MHz' + 'GPU Boost Frequency': '750 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3455E' +name: Pentium-J3455E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml new file mode 100644 index 00000000..b68aba6b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' + 'Geekbench Single-Core Score': 242 + 'Geekbench Multi-Core Score': 613 + 'UserBenchmark CPU Score': '32.9' +isPart: true +type: CPU +humanName: 'Pentium J4205' +name: Pentium-J4205 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml new file mode 100644 index 00000000..2b441997 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml @@ -0,0 +1,23 @@ +humanName: 'Bay Trail' +sections: + - + header: '4 Threads' + members: + - Pentium-J2900 + - Pentium-J2850 + - Pentium-J1900 + - Pentium-J1850 + - + header: '2 Threads' + members: + - Pentium-J1800 + - Pentium-J1750 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-11' + Sockets: + - BGA1170 +name: Desktop-Bay-Trail diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml new file mode 100644 index 00000000..cbfa7d09 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.41 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '750 MHz' +isPart: true +type: CPU +humanName: 'Pentium J1750' +name: Pentium-J1750 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml new file mode 100644 index 00000000..40b27e6b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.41 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-11-04' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '792 MHz' +isPart: true +type: CPU +humanName: 'Pentium J1800' +name: Pentium-J1800 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml new file mode 100644 index 00000000..f8a97100 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '792 MHz' +isPart: true +type: CPU +humanName: 'Pentium J1850' +name: Pentium-J1850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml new file mode 100644 index 00000000..4134b89e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-11-04' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '854 MHz' +isPart: true +type: CPU +humanName: 'Pentium J1900' +name: Pentium-J1900 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml new file mode 100644 index 00000000..c49844e9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.41 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '854 MHz' +isPart: true +type: CPU +humanName: 'Pentium J2850' +name: Pentium-J2850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml new file mode 100644 index 00000000..10b9fcdd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Desktop + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.41 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-11-04' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '896 MHz' + 'DirectX Support': '11.2' + 'UserBenchmark CPU Score': '35.2' +isPart: true +type: CPU +humanName: 'Pentium J2900' +name: Pentium-J2900 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml new file mode 100644 index 00000000..9dbd58d1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml @@ -0,0 +1,21 @@ +humanName: Bloomfield +sections: + - + header: '8 Threads' + members: + - Core-i7-975 + - Core-i7-965 + - Core-i7-960 + - Core-i7-950 + - Core-i7-940 + - Core-i7-930 + - Core-i7-920 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-11-17' + Sockets: + - LGA1366 +name: Desktop-Bloomfield diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml new file mode 100644 index 00000000..3e1451d6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2008-11-17' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 419 + 'Geekbench Multi-Core Score': 1476 + 'UserBenchmark CPU Score': '61.6' +isPart: true +type: CPU +humanName: 'Core i7-920' +name: Core-i7-920 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml new file mode 100644 index 00000000..16ff7275 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 423 + 'Geekbench Multi-Core Score': 1487 + 'UserBenchmark CPU Score': '64' +isPart: true +type: CPU +humanName: 'Core i7-930' +name: Core-i7-930 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml new file mode 100644 index 00000000..6ddfe77a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2008-11-17' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '65.5' +isPart: true +type: CPU +humanName: 'Core i7-940' +name: Core-i7-940 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml new file mode 100644 index 00000000..a69f81f4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-06-03' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 458 + 'Geekbench Multi-Core Score': 1578 + 'UserBenchmark CPU Score': '65.9' +isPart: true +type: CPU +humanName: 'Core i7-950' +name: Core-i7-950 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml new file mode 100644 index 00000000..eeae1ace --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-10-19' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 492 + 'Geekbench Multi-Core Score': 1673 + 'UserBenchmark CPU Score': '67.6' +isPart: true +type: CPU +humanName: 'Core i7-960' +name: Core-i7-960 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml new file mode 100644 index 00000000..7d5151c8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2008-11-17' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-965' +name: Core-i7-965 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml new file mode 100644 index 00000000..90628f76 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-06-03' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '72.4' +isPart: true +type: CPU +humanName: 'Core i7-975' +name: Core-i7-975 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml new file mode 100644 index 00000000..0b3e5390 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml @@ -0,0 +1,20 @@ +humanName: Braswell +sections: + - + header: '4 Threads' + members: + - Pentium-J3710 + - Pentium-J3160 + - + header: '2 Threads' + members: + - Pentium-J3060 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-01-10' + Sockets: + - BGA1170 +name: Desktop-Braswell diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml new file mode 100644 index 00000000..7b98e68f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Desktop + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3060' +name: Pentium-J3060 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml new file mode 100644 index 00000000..6b533945 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Desktop + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium J3160' +name: Pentium-J3160 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml new file mode 100644 index 00000000..6b525642 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Desktop + Lithography: '14 nm' + TDP: '6.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-11' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' + 'Geekbench Single-Core Score': 197 + 'Geekbench Multi-Core Score': 568 +isPart: true +type: CPU +humanName: 'Pentium J3710' +name: Pentium-J3710 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml new file mode 100644 index 00000000..7f288115 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml @@ -0,0 +1,21 @@ +humanName: 'Broadwell E' +sections: + - + header: '17 - 64 Threads' + members: + - Core-i7-6950X + - + header: '9 - 16 Threads' + members: + - Core-i7-6900K + - Core-i7-6850K + - Core-i7-6800K +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-05-30' + Sockets: + - LGA20113 +name: Desktop-Broadwell-E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml new file mode 100644 index 00000000..05e5ca98 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Broadwell E' + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2016-05-30' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 1197 + 'Geekbench Multi-Core Score': 5565 + '3DMark Fire Strike Physics Score': 3688 + 'UserBenchmark CPU Score': '80.6' +isPart: true +type: CPU +humanName: 'Core i7-6800K' +name: Core-i7-6800K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml new file mode 100644 index 00000000..58f234f9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Broadwell E' + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2016-05-30' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 1228 + 'Geekbench Multi-Core Score': 5709 + '3DMark Fire Strike Physics Score': 3926 + 'UserBenchmark CPU Score': '83.6' +isPart: true +type: CPU +humanName: 'Core i7-6850K' +name: Core-i7-6850K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml new file mode 100644 index 00000000..ff6e94e7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Broadwell E' + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-05-30' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 1236 + 'Geekbench Multi-Core Score': 7227 + 'UserBenchmark CPU Score': '85.9' +isPart: true +type: CPU +humanName: 'Core i7-6900K' +name: Core-i7-6900K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml new file mode 100644 index 00000000..e89c668c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Broadwell E' + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-05-30' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 1221 + 'Geekbench Multi-Core Score': 7817 + '3DMark Fire Strike Physics Score': 6297 + 'UserBenchmark CPU Score': '86.8' +isPart: true +type: CPU +humanName: 'Core i7-6950X' +name: Core-i7-6950X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml new file mode 100644 index 00000000..af9410a4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml @@ -0,0 +1,23 @@ +humanName: Broadwell +sections: + - + header: '8 Threads' + members: + - Core-i7-5775R + - Core-i7-5775C + - + header: '4 Threads' + members: + - Core-i5-5675R + - Core-i5-5675C + - Core-i5-5575R +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-06-02' + Sockets: + - BGA1364 + - LGA1150 +name: Desktop-Broadwell diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml new file mode 100644 index 00000000..9d3373f2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1088 + 'Geekbench Multi-Core Score': 3319 +isPart: true +type: CPU +humanName: 'Core i5-5575R' +name: Core-i5-5575R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml new file mode 100644 index 00000000..7b973d6c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '81.5' +isPart: true +type: CPU +humanName: 'Core i5-5675C' +name: Core-i5-5675C diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml new file mode 100644 index 00000000..ca915707 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-5675R' +name: Core-i5-5675R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml new file mode 100644 index 00000000..0b50a626 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1349 + 'Geekbench Multi-Core Score': 4618 + 'UserBenchmark CPU Score': '84.9' +isPart: true +type: CPU +humanName: 'Core i7-5775C' +name: Core-i7-5775C diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml new file mode 100644 index 00000000..7697019e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '80.5' +isPart: true +type: CPU +humanName: 'Core i7-5775R' +name: Core-i7-5775R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml new file mode 100644 index 00000000..15516f92 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml @@ -0,0 +1,17 @@ +humanName: 'Cascade Lake' +sections: + - + header: '17 - 64 Threads' + members: + - Core-i9-10980XE + - Core-i9-10940X + - Core-i9-10920X + - Core-i9-10900X +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2019-10-07' + Sockets: { } +name: Desktop-Cascade-Lake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml new file mode 100644 index 00000000..7aaec8fa --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1564 + 'Geekbench Multi-Core Score': 9243 + 'UserBenchmark CPU Score': '85.1' +isPart: true +type: CPU +humanName: 'Core i9-10900X' +name: Core-i9-10900X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml new file mode 100644 index 00000000..60831c9d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1559 + 'Geekbench Multi-Core Score': 10474 + 'UserBenchmark CPU Score': '87.2' +isPart: true +type: CPU +humanName: 'Core i9-10920X' +name: Core-i9-10920X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml new file mode 100644 index 00000000..88849b1f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1555 + 'Geekbench Multi-Core Score': 10752 + 'UserBenchmark CPU Score': '85.7' +isPart: true +type: CPU +humanName: 'Core i9-10940X' +name: Core-i9-10940X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml new file mode 100644 index 00000000..87f42412 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-10-07' + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1555 + 'Geekbench Multi-Core Score': 11957 + 'UserBenchmark CPU Score': '84.2' +isPart: true +type: CPU +humanName: 'Core i9-10980XE' +name: Core-i9-10980XE diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml new file mode 100644 index 00000000..eece2457 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml @@ -0,0 +1,25 @@ +humanName: Cedarmill +sections: + - + header: '2 Threads' + members: + - Pentium-661 + - Pentium-651 + - Pentium-641 + - Pentium-631 + - + header: '1 Threads' + members: + - Pentium-365 + - Pentium-356 + - Pentium-352 + - Pentium-347 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q1 2006' + Sockets: + - PLGA775 +name: Desktop-Cedarmill diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml new file mode 100644 index 00000000..a61368f9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '81 mm' + 'Release Date': 'Q4 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 347' +name: Pentium-347 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml new file mode 100644 index 00000000..6b731f62 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '81 mm' + 'Release Date': '2006-06-25' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 352' +name: Pentium-352 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml new file mode 100644 index 00000000..c820fa39 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '81 mm' + 'Release Date': 'Q2 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 356' +name: Pentium-356 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml new file mode 100644 index 00000000..ae624b23 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '81 mm' + 'Release Date': '2007-01-21' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 365' +name: Pentium-365 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml new file mode 100644 index 00000000..9c3a82eb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 631' +name: Pentium-631 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml new file mode 100644 index 00000000..0dd39f59 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 641' +name: Pentium-641 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml new file mode 100644 index 00000000..0cd2d622 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': '2006-10-11' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 651' +name: Pentium-651 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml new file mode 100644 index 00000000..7ffba3fe --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Cedarmill + Market: Desktop + Lithography: '65 nm' + TDP: '86 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 661' +name: Pentium-661 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml new file mode 100644 index 00000000..090bdd51 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml @@ -0,0 +1,20 @@ +humanName: Cedarview +sections: + - + header: '4 Threads' + members: + - Atom-D2700 + - Atom-D2550 + - + header: '2 Threads' + members: + - Atom-D2500 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-09-26' + Sockets: + - BGA559 +name: Desktop-Cedarview diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml new file mode 100644 index 00000000..90c1d0d9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Cedarview + Market: Desktop + Lithography: '32 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-09-26' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom D2500' +name: Atom-D2500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml new file mode 100644 index 00000000..c322d3f0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Cedarview + Market: Desktop + Lithography: '32 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2012-02-26' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '640 MHz' +isPart: true +type: CPU +humanName: 'Atom D2550' +name: Atom-D2550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml new file mode 100644 index 00000000..a80d3717 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Cedarview + Market: Desktop + Lithography: '32 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-09-26' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '640 MHz' + 'UserBenchmark CPU Score': '26.4' +isPart: true +type: CPU +humanName: 'Atom D2700' +name: Atom-D2700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml new file mode 100644 index 00000000..9c28dd3a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml @@ -0,0 +1,30 @@ +humanName: Clarkdale +sections: + - + header: '4 Threads' + members: + - Core-i5-680 + - Core-i5-670 + - Core-i5-661 + - Core-i5-660 + - Core-i5-655K + - Core-i5-650 + - Core-i3-560 + - Core-i3-550 + - Core-i3-540 + - Core-i3-530 + - + header: '2 Threads' + members: + - Pentium-G6960 + - Pentium-G6951 + - Pentium-G6950 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2010-01-07' + Sockets: + - LGA1156 +name: Desktop-Clarkdale diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml new file mode 100644 index 00000000..a100cdb2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'Geekbench Single-Core Score': 385 + 'Geekbench Multi-Core Score': 798 + 'UserBenchmark CPU Score': '45.6' +isPart: true +type: CPU +humanName: 'Core i3-530' +name: Core-i3-530 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml new file mode 100644 index 00000000..ab55a8c6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'Geekbench Single-Core Score': 408 + 'Geekbench Multi-Core Score': 857 + 'UserBenchmark CPU Score': '45.9' +isPart: true +type: CPU +humanName: 'Core i3-540' +name: Core-i3-540 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml new file mode 100644 index 00000000..0a6197cb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-06-01' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'Geekbench Single-Core Score': 419 + 'Geekbench Multi-Core Score': 883 + 'UserBenchmark CPU Score': '47' +isPart: true +type: CPU +humanName: 'Core i3-550' +name: Core-i3-550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml new file mode 100644 index 00000000..5934af11 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-08-29' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' +isPart: true +type: CPU +humanName: 'Core i3-560' +name: Core-i3-560 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml new file mode 100644 index 00000000..a86c56d5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'Geekbench Single-Core Score': 451 + 'Geekbench Multi-Core Score': 926 + 'UserBenchmark CPU Score': '46.3' +isPart: true +type: CPU +humanName: 'Core i5-650' +name: Core-i5-650 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml new file mode 100644 index 00000000..3c97e326 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-06-01' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' +isPart: true +type: CPU +humanName: 'Core i5-655K' +name: Core-i5-655K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml new file mode 100644 index 00000000..8496ac5d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'Geekbench Single-Core Score': 471 + 'Geekbench Multi-Core Score': 981 + 'UserBenchmark CPU Score': '48.7' +isPart: true +type: CPU +humanName: 'Core i5-660' +name: Core-i5-660 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml new file mode 100644 index 00000000..e21e3b3f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '87 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '900 MHz' + 'UserBenchmark CPU Score': '49.8' +isPart: true +type: CPU +humanName: 'Core i5-661' +name: Core-i5-661 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml new file mode 100644 index 00000000..b0f57297 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.46 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' +isPart: true +type: CPU +humanName: 'Core i5-670' +name: Core-i5-670 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml new file mode 100644 index 00000000..2fdb6d09 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.86 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q2 2010' + Socket: FCLGA1156 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '733 MHz' + 'UserBenchmark CPU Score': '51.8' +isPart: true +type: CPU +humanName: 'Core i5-680' +name: Core-i5-680 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml new file mode 100644 index 00000000..598bdc39 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '533 MHz' + 'UserBenchmark CPU Score': '40.7' +isPart: true +type: CPU +humanName: 'Pentium G6950' +name: Pentium-G6950 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml new file mode 100644 index 00000000..e5d7710a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2011-09-04' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '533 MHz' +isPart: true +type: CPU +humanName: 'Pentium G6951' +name: Pentium-G6951 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml new file mode 100644 index 00000000..3f064156 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Desktop + Lithography: '32 nm' + TDP: '73 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.933 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2011-01-09' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '533 MHz' +isPart: true +type: CPU +humanName: 'Pentium G6960' +name: Pentium-G6960 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml new file mode 100644 index 00000000..9ff9544e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml @@ -0,0 +1,85 @@ +humanName: 'Coffee Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Core-i9-9900T + - Core-i9-9900KS + - Core-i9-9900KF + - Core-i9-9900K + - Core-i9-9900 + - Core-i7-8700T + - Core-i7-8700K + - Core-i7-8700 + - Core-i7-8086K + - + header: '8 Threads' + members: + - Core-i7-9700T + - Core-i7-9700KF + - Core-i7-9700K + - Core-i7-9700F + - Core-i7-9700 + - + header: '6 Threads' + members: + - Core-i5-9600T + - Core-i5-9600KF + - Core-i5-9600K + - Core-i5-9600 + - Core-i5-9500T + - Core-i5-9500F + - Core-i5-9500 + - Core-i5-9400T + - Core-i5-9400F + - Core-i5-9400 + - Core-i5-8600T + - Core-i5-8600K + - Core-i5-8600 + - Core-i5-8500T + - Core-i5-8500 + - Core-i5-8400T + - Core-i5-8400 + - + header: '4 Threads' + members: + - Pentium-G5620 + - Pentium-G5600T + - Pentium-G5600 + - Pentium-G5500T + - Pentium-G5500 + - Pentium-G5420T + - Pentium-G5420 + - Pentium-G5400T + - Pentium-G5400 + - Core-i3-9350KF + - Core-i3-9350K + - Core-i3-9320 + - Core-i3-9300T + - Core-i3-9300 + - Core-i3-9100T + - Core-i3-9100F + - Core-i3-9100 + - Core-i3-8350K + - Core-i3-8300T + - Core-i3-8300 + - Core-i3-8100T + - Core-i3-8100 + - + header: '2 Threads' + members: + - Pentium-G4950 + - Pentium-G4930T + - Pentium-G4930 + - Pentium-G4920 + - Pentium-G4900T + - Pentium-G4900 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-10-05' + Sockets: + - LGA1151 +name: Desktop-Coffee-Lake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml new file mode 100644 index 00000000..f497006e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-10-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1213 + 'Geekbench Multi-Core Score': 3352 + 'UserBenchmark CPU Score': '70.6' +isPart: true +type: CPU +humanName: 'Core i3-8100' +name: Core-i3-8100 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml new file mode 100644 index 00000000..11959034 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1055 + 'Geekbench Multi-Core Score': 2968 + 'UserBenchmark CPU Score': '71.1' +isPart: true +type: CPU +humanName: 'Core i3-8100T' +name: Core-i3-8100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml new file mode 100644 index 00000000..d66895d7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '62 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '79.9' +isPart: true +type: CPU +humanName: 'Core i3-8300' +name: Core-i3-8300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml new file mode 100644 index 00000000..b5222a3f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-8300T' +name: Core-i3-8300T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml new file mode 100644 index 00000000..ce35be99 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-10-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1441 + 'Geekbench Multi-Core Score': 4169 + 'UserBenchmark CPU Score': '81.7' +isPart: true +type: CPU +humanName: 'Core i3-8350K' +name: Core-i3-8350K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml new file mode 100644 index 00000000..b037a9ef --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1312 + 'Geekbench Multi-Core Score': 3443 + 'UserBenchmark CPU Score': '79.7' +isPart: true +type: CPU +humanName: 'Core i3-9100' +name: Core-i3-9100 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml new file mode 100644 index 00000000..4d8b11a7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1345 + 'Geekbench Multi-Core Score': 3607 + '3DMark Fire Strike Physics Score': 2572 + 'UserBenchmark CPU Score': '80.1' +isPart: true +type: CPU +humanName: 'Core i3-9100F' +name: Core-i3-9100F diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml new file mode 100644 index 00000000..6c7ec56e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1191 + 'Geekbench Multi-Core Score': 3157 +isPart: true +type: CPU +humanName: 'Core i3-9100T' +name: Core-i3-9100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml new file mode 100644 index 00000000..8c5e10f7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '62 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9300' +name: Core-i3-9300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml new file mode 100644 index 00000000..e1e1619b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9300T' +name: Core-i3-9300T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml new file mode 100644 index 00000000..d7dca090 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '62 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9320' +name: Core-i3-9320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml new file mode 100644 index 00000000..4037c949 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9350K' +name: Core-i3-9350K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml new file mode 100644 index 00000000..931732fd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'UserBenchmark CPU Score': '89.3' +isPart: true +type: CPU +humanName: 'Core i3-9350KF' +name: Core-i3-9350KF diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml new file mode 100644 index 00000000..7830dd02 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml @@ -0,0 +1,35 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1323 + 'Geekbench Multi-Core Score': 4719 + '3DMark Fire Strike Physics Score': 3665 + 'UserBenchmark CPU Score': '81.8' +isPart: true +type: CPU +humanName: 'Core i5-8400' +name: Core-i5-8400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml new file mode 100644 index 00000000..5c61e09f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1080 + 'Geekbench Multi-Core Score': 3864 + 'UserBenchmark CPU Score': '74.7' +isPart: true +type: CPU +humanName: 'Core i5-8400T' +name: Core-i5-8400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml new file mode 100644 index 00000000..288fdd7b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml @@ -0,0 +1,35 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1362 + 'Geekbench Multi-Core Score': 4795 + '3DMark Fire Strike Physics Score': 3764 + 'UserBenchmark CPU Score': '82.1' +isPart: true +type: CPU +humanName: 'Core i5-8500' +name: Core-i5-8500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml new file mode 100644 index 00000000..c12f4732 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1149 + 'Geekbench Multi-Core Score': 3998 + 'UserBenchmark CPU Score': '73' +isPart: true +type: CPU +humanName: 'Core i5-8500T' +name: Core-i5-8500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml new file mode 100644 index 00000000..54af34b2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1383 + 'Geekbench Multi-Core Score': 4890 + 'UserBenchmark CPU Score': '88.2' +isPart: true +type: CPU +humanName: 'Core i5-8600' +name: Core-i5-8600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml new file mode 100644 index 00000000..42e42c27 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2017-10-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1486 + 'Geekbench Multi-Core Score': 5448 + '3DMark Fire Strike Physics Score': 4219 + 'UserBenchmark CPU Score': '90.7' +isPart: true +type: CPU +humanName: 'Core i5-8600K' +name: Core-i5-8600K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml new file mode 100644 index 00000000..3e6fcbf2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '82.2' +isPart: true +type: CPU +humanName: 'Core i5-8600T' +name: Core-i5-8600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml new file mode 100644 index 00000000..b106aad5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1345 + 'Geekbench Multi-Core Score': 4682 + '3DMark Fire Strike Physics Score': 3760 + 'UserBenchmark CPU Score': '86.5' +isPart: true +type: CPU +humanName: 'Core i5-9400' +name: Core-i5-9400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml new file mode 100644 index 00000000..66e4d4e8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1345 + 'Geekbench Multi-Core Score': 4784 + '3DMark Fire Strike Physics Score': 3766 + 'UserBenchmark CPU Score': '84.8' +isPart: true +type: CPU +humanName: 'Core i5-9400F' +name: Core-i5-9400F diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml new file mode 100644 index 00000000..1ef6013e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-9400T' +name: Core-i5-9400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml new file mode 100644 index 00000000..837cfe21 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1459 + 'Geekbench Multi-Core Score': 5001 + 'UserBenchmark CPU Score': '87' +isPart: true +type: CPU +humanName: 'Core i5-9500' +name: Core-i5-9500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml new file mode 100644 index 00000000..684f3d29 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Core i5-9500F' +name: Core-i5-9500F diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml new file mode 100644 index 00000000..a46cb679 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1225 + 'Geekbench Multi-Core Score': 4185 +isPart: true +type: CPU +humanName: 'Core i5-9500T' +name: Core-i5-9500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml new file mode 100644 index 00000000..b26aee69 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1485 + 'Geekbench Multi-Core Score': 5465 + 'UserBenchmark CPU Score': '92.3' +isPart: true +type: CPU +humanName: 'Core i5-9600' +name: Core-i5-9600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml new file mode 100644 index 00000000..80d1e673 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1561 + 'Geekbench Multi-Core Score': 5704 + '3DMark Fire Strike Physics Score': 4277 + 'UserBenchmark CPU Score': '93.2' +isPart: true +type: CPU +humanName: 'Core i5-9600K' +name: Core-i5-9600K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml new file mode 100644 index 00000000..d922517a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1559 + 'Geekbench Multi-Core Score': 5731 + '3DMark Fire Strike Physics Score': 4345 + 'UserBenchmark CPU Score': '93.2' +isPart: true +type: CPU +humanName: 'Core i5-9600KF' +name: Core-i5-9600KF diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml new file mode 100644 index 00000000..c1d03b46 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-9600T' +name: Core-i5-9600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml new file mode 100644 index 00000000..41c6360b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-06-05' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1655 + 'Geekbench Multi-Core Score': 7094 + '3DMark Fire Strike Physics Score': 5163 + 'UserBenchmark CPU Score': '90.8' +isPart: true +type: CPU +humanName: 'Core i7-8086K' +name: Core-i7-8086K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml new file mode 100644 index 00000000..0d9a6941 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml @@ -0,0 +1,35 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1500 + 'Geekbench Multi-Core Score': 5922 + '3DMark Fire Strike Physics Score': 4908 + 'UserBenchmark CPU Score': '87' +isPart: true +type: CPU +humanName: 'Core i7-8700' +name: Core-i7-8700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml new file mode 100644 index 00000000..62b3b1da --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-10-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1547 + 'Geekbench Multi-Core Score': 6406 + '3DMark Fire Strike Physics Score': 5139 + 'UserBenchmark CPU Score': '88.4' +isPart: true +type: CPU +humanName: 'Core i7-8700K' +name: Core-i7-8700K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml new file mode 100644 index 00000000..bfed28ed --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1301 + 'Geekbench Multi-Core Score': 4850 + 'UserBenchmark CPU Score': '79.4' +isPart: true +type: CPU +humanName: 'Core i7-8700T' +name: Core-i7-8700T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml new file mode 100644 index 00000000..5d39c3c4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1528 + 'Geekbench Multi-Core Score': 6164 + '3DMark Fire Strike Physics Score': 5414 + 'UserBenchmark CPU Score': '92' +isPart: true +type: CPU +humanName: 'Core i7-9700' +name: Core-i7-9700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml new file mode 100644 index 00000000..c6a4d2eb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1507 + 'Geekbench Multi-Core Score': 6218 + '3DMark Fire Strike Physics Score': 5466 + 'UserBenchmark CPU Score': '92' +isPart: true +type: CPU +humanName: 'Core i7-9700F' +name: Core-i7-9700F diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml new file mode 100644 index 00000000..f3ca5969 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1621 + 'Geekbench Multi-Core Score': 6945 + '3DMark Fire Strike Physics Score': 5901 + 'UserBenchmark CPU Score': '96.9' +isPart: true +type: CPU +humanName: 'Core i7-9700K' +name: Core-i7-9700K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml new file mode 100644 index 00000000..31fba18b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1629 + 'Geekbench Multi-Core Score': 7098 + '3DMark Fire Strike Physics Score': 5929 + 'UserBenchmark CPU Score': '97.1' +isPart: true +type: CPU +humanName: 'Core i7-9700KF' +name: Core-i7-9700KF diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml new file mode 100644 index 00000000..ac18da7f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1348 + 'Geekbench Multi-Core Score': 5066 +isPart: true +type: CPU +humanName: 'Core i7-9700T' +name: Core-i7-9700T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml new file mode 100644 index 00000000..dcb858f8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1598 + 'Geekbench Multi-Core Score': 7187 + '3DMark Fire Strike Physics Score': 6750 + 'UserBenchmark CPU Score': '91.4' +isPart: true +type: CPU +humanName: 'Core i9-9900' +name: Core-i9-9900 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml new file mode 100644 index 00000000..c5dbe99b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1635 + 'Geekbench Multi-Core Score': 7941 + '3DMark Fire Strike Physics Score': 7084 + 'UserBenchmark CPU Score': '97.9' +isPart: true +type: CPU +humanName: 'Core i9-9900K' +name: Core-i9-9900K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml new file mode 100644 index 00000000..e1250b8d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-01-07' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1652 + 'Geekbench Multi-Core Score': 7964 + '3DMark Fire Strike Physics Score': 7105 + 'UserBenchmark CPU Score': '97.8' +isPart: true +type: CPU +humanName: 'Core i9-9900KF' +name: Core-i9-9900KF diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml new file mode 100644 index 00000000..d8e15732 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '127 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-10-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1714 + 'Geekbench Multi-Core Score': 8521 + '3DMark Fire Strike Physics Score': 7477 + 'UserBenchmark CPU Score': '98.8' +isPart: true +type: CPU +humanName: 'Core i9-9900KS' +name: Core-i9-9900KS diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml new file mode 100644 index 00000000..d89360f7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i9-9900T' +name: Core-i9-9900T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml new file mode 100644 index 00000000..2c2dff88 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4900' +name: Pentium-G4900 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml new file mode 100644 index 00000000..d90ed7e1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4900T' +name: Pentium-G4900T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml new file mode 100644 index 00000000..468aa839 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4920' +name: Pentium-G4920 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml new file mode 100644 index 00000000..d06eb2cf --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: 14nm + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4930' +name: Pentium-G4930 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml new file mode 100644 index 00000000..3794ecbf --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4930T' +name: Pentium-G4930T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml new file mode 100644 index 00000000..a918dd9e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4950' +name: Pentium-G4950 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml new file mode 100644 index 00000000..af7fccc4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '58 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5400' +name: Pentium-G5400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml new file mode 100644 index 00000000..f18d725b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '63.5' +isPart: true +type: CPU +humanName: 'Pentium G5400T' +name: Pentium-G5400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml new file mode 100644 index 00000000..0daef73b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5420' +name: Pentium-G5420 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml new file mode 100644 index 00000000..753f8b4b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5420T' +name: Pentium-G5420T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml new file mode 100644 index 00000000..ae894561 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5500' +name: Pentium-G5500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml new file mode 100644 index 00000000..b3b8937a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '62.6' +isPart: true +type: CPU +humanName: 'Pentium G5500T' +name: Pentium-G5500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml new file mode 100644 index 00000000..493c80fc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: 14nm + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5600' +name: Pentium-G5600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml new file mode 100644 index 00000000..b3e04d03 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5600T' +name: Pentium-G5600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml new file mode 100644 index 00000000..e23e4f8e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Desktop + Lithography: '14' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-04-23' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G5620' +name: Pentium-G5620 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml new file mode 100644 index 00000000..175fa208 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml @@ -0,0 +1,49 @@ +humanName: Conroe +sections: + - + header: '2 Threads' + members: + - Pentium-E2220 + - Pentium-E2200 + - Pentium-E2180 + - Pentium-E2160 + - Pentium-E2140 + - Pentium-E1600 + - Pentium-E1500 + - Pentium-E1400 + - Pentium-E1200 + - Core-X6800 + - Core-E6850 + - Core-E6750 + - Core-E6700 + - Core-E6600 + - Core-E6550 + - Core-E6540 + - Core-E6420 + - Core-E6400 + - Core-E6320 + - Core-E6300 + - Core-E4700 + - Core-E4600 + - Core-E4500 + - Core-E4400 + - Core-E4300 + - + header: '1 Threads' + members: + - Pentium-450 + - Pentium-440 + - Pentium-430 + - Pentium-420 + - Pentium-220 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q3 2006' + Sockets: + - LGA775 + - PLGA775 + - PBGA479 +name: Desktop-Conroe diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml new file mode 100644 index 00000000..67fedc2b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2007-01-21' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E4300' +name: Core-E4300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml new file mode 100644 index 00000000..270ba9bb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2007-04-22' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E4400' +name: Core-E4400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml new file mode 100644 index 00000000..475268cd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2007-07-22' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E4500' +name: Core-E4500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml new file mode 100644 index 00000000..39de3bac --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2007-10-21' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E4600' +name: Core-E4600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml new file mode 100644 index 00000000..bfdeb649 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': 'Q1 2008' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E4700' +name: Core-E4700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml new file mode 100644 index 00000000..60dbdb8e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2006-07-29' + Socket: 'LGA775, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6300' +name: Core-E6300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml new file mode 100644 index 00000000..f6e8488e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-04-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6320' +name: Core-E6320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml new file mode 100644 index 00000000..0c27e2ac --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + 'Release Date': '2006-07-29' + Socket: 'LGA775, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6400' +name: Core-E6400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml new file mode 100644 index 00000000..f3940b54 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-04-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6420' +name: Core-E6420 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml new file mode 100644 index 00000000..179365a4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-07-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6540' +name: Core-E6540 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml new file mode 100644 index 00000000..9da23f9f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-07-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6550' +name: Core-E6550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml new file mode 100644 index 00000000..a8850cbc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-07-29' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6600' +name: Core-E6600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml new file mode 100644 index 00000000..6c0c1fd6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-07-29' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6700' +name: Core-E6700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml new file mode 100644 index 00000000..6f29edfa --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-07-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6750' +name: Core-E6750 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml new file mode 100644 index 00000000..65b2ec22 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-07-22' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E6850' +name: Core-E6850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml new file mode 100644 index 00000000..f42cb13e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '75 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': 'Q3 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core X6800' +name: Core-X6800 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml new file mode 100644 index 00000000..dea5e138 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '19 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2007-10-21' + Socket: PBGA479 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 220' +name: Pentium-220 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml new file mode 100644 index 00000000..a96885b3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + Socket: LGA775 + 'Other Extensions': + - x86-64 + 'Release Date': '2007-06-03' + AES: false +isPart: true +type: CPU +humanName: 'Pentium 420' +name: Pentium-420 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml new file mode 100644 index 00000000..a818d7f0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + Socket: LGA775 + 'Other Extensions': + - x86-64 + 'Release Date': '2007-06-03' + AES: false +isPart: true +type: CPU +humanName: 'Pentium 430' +name: Pentium-430 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml new file mode 100644 index 00000000..879a3ff5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2007-06-03' + Socket: LGA775 + 'Other Extensions': + - x86-64 + AES: false +isPart: true +type: CPU +humanName: 'Pentium 440' +name: Pentium-440 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml new file mode 100644 index 00000000..cfbac77d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + Socket: LGA775 + 'Other Extensions': + - x86-64 + 'Release Date': '2008-08-31' + AES: false +isPart: true +type: CPU +humanName: 'Pentium 450' +name: Pentium-450 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml new file mode 100644 index 00000000..14e66ac0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2008-01-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E1200' +name: Pentium-E1200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml new file mode 100644 index 00000000..ca6d2555 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2008-04-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E1400' +name: Pentium-E1400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml new file mode 100644 index 00000000..f5d3b1f0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2008-12-01' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E1500' +name: Pentium-E1500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml new file mode 100644 index 00000000..ca0fa067 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '77 mm' + 'Release Date': '2009-06-03' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E1600' +name: Pentium-E1600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml new file mode 100644 index 00000000..5dbcbf90 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '77 mm' + 'Release Date': 'Q2 2007' + Socket: 'LGA775, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E2140' +name: Pentium-E2140 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml new file mode 100644 index 00000000..7402a045 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '77 mm' + 'Release Date': 'Q3 2006' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E2160' +name: Pentium-E2160 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml new file mode 100644 index 00000000..0d2c166a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '77 mm' + 'Release Date': 'Q3 2007' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E2180' +name: Pentium-E2180 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml new file mode 100644 index 00000000..258613dc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '77 mm' + 'Release Date': '2007-12-02' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E2200' +name: Pentium-E2200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml new file mode 100644 index 00000000..a998ee20 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Desktop + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '77 mm' + 'Release Date': '2008-03-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E2220' +name: Pentium-E2220 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml new file mode 100644 index 00000000..eb3f5a75 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml @@ -0,0 +1,20 @@ +humanName: 'Crystal Well' +sections: + - + header: '8 Threads' + members: + - Core-i7-4770R + - + header: '4 Threads' + members: + - Core-i5-4670R + - Core-i5-4570R +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-03' + Sockets: + - BGA1364 +name: Desktop-Crystal-Well diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml new file mode 100644 index 00000000..185bd08b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 823 + 'Geekbench Multi-Core Score': 2549 + 'UserBenchmark CPU Score': '65.2' +isPart: true +type: CPU +humanName: 'Core i5-4570R' +name: Core-i5-4570R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml new file mode 100644 index 00000000..992e5ef5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4670R' +name: Core-i5-4670R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml new file mode 100644 index 00000000..ec200f5f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4770R' +name: Core-i7-4770R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml new file mode 100644 index 00000000..4513744c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml @@ -0,0 +1,19 @@ +humanName: "Devil's Canyon" +sections: + - + header: '8 Threads' + members: + - Core-i7-4790K + - + header: '4 Threads' + members: + - Core-i5-4690K +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-06-02' + Sockets: + - LGA1150 +name: Desktop-Devils-Canyon diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml new file mode 100644 index 00000000..29419738 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: "Devil's Canyon" + Market: Desktop + Lithography: '22 nm' + TDP: '88 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1261 + 'Geekbench Multi-Core Score': 3609 + '3DMark Fire Strike Physics Score': 2174 + 'UserBenchmark CPU Score': '69.6' +isPart: true +type: CPU +humanName: 'Core i5-4690K' +name: Core-i5-4690K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml new file mode 100644 index 00000000..60ccd351 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: "Devil's Canyon" + Market: Desktop + Lithography: '22 nm' + TDP: '88 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1359 + 'Geekbench Multi-Core Score': 4395 + '3DMark Fire Strike Physics Score': 2844 + 'UserBenchmark CPU Score': '78.9' +isPart: true +type: CPU +humanName: 'Core i7-4790K' +name: Core-i7-4790K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml new file mode 100644 index 00000000..e9dbcae4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml @@ -0,0 +1,19 @@ +humanName: Diamondville +sections: + - + header: '4 Threads' + members: + - Atom-330 + - + header: '2 Threads' + members: + - Atom-230 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-06-03' + Sockets: + - PBGA437 +name: Desktop-Diamondville diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml new file mode 100644 index 00000000..b60841c4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Diamondville + Market: Desktop + Lithography: '45 nm' + TDP: '4 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-06-03' + Socket: PBGA437 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '19.2' +isPart: true +type: CPU +humanName: 'Atom 230' +name: Atom-230 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml new file mode 100644 index 00000000..2b2ef154 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Diamondville + Market: Desktop + Lithography: '45 nm' + TDP: '8 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '52 mm' + 'Release Date': '2008-09-21' + Socket: PBGA437 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20.6' +isPart: true +type: CPU +humanName: 'Atom 330' +name: Atom-330 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml new file mode 100644 index 00000000..70f99e97 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml @@ -0,0 +1,20 @@ +humanName: 'Gemini Lake Refresh' +sections: + - + header: '4 Threads' + members: + - Pentium-J5040 + - Pentium-J4125 + - + header: '2 Threads' + members: + - Pentium-J4025 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2019-11-04' + Sockets: + - BGA1090 +name: Desktop-Gemini-Lake-Refresh diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml new file mode 100644 index 00000000..4ec0ea05 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J4025' +name: Pentium-J4025 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml new file mode 100644 index 00000000..4912f385 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J4125' +name: Pentium-J4125 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml new file mode 100644 index 00000000..7e21d2ad --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J5040' +name: Pentium-J5040 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml new file mode 100644 index 00000000..a3fa843c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml @@ -0,0 +1,20 @@ +humanName: 'Gemini Lake' +sections: + - + header: '4 Threads' + members: + - Pentium-J5005 + - Pentium-J4105 + - + header: '2 Threads' + members: + - Pentium-J4005 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-12-11' + Sockets: + - BGA1090 +name: Desktop-Gemini-Lake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml new file mode 100644 index 00000000..006224d7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J4005' +name: Pentium-J4005 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml new file mode 100644 index 00000000..46069af3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Desktop + Lithography: 14nm + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J4105' +name: Pentium-J4105 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml new file mode 100644 index 00000000..bd1babe9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '250 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium J5005' +name: Pentium-J5005 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml new file mode 100644 index 00000000..eb09a508 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml @@ -0,0 +1,18 @@ +humanName: Gulftown +sections: + - + header: '9 - 16 Threads' + members: + - Core-i7-990X + - Core-i7-980X + - Core-i7-980 + - Core-i7-970 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2010-03-16' + Sockets: + - LGA1366 +name: Desktop-Gulftown diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml new file mode 100644 index 00000000..1f427a6d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Gulftown + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '239 mm' + 'Release Date': 'Q3 2010' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 517 + 'Geekbench Multi-Core Score': 2415 + 'UserBenchmark CPU Score': '73.4' +isPart: true +type: CPU +humanName: 'Core i7-970' +name: Core-i7-970 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml new file mode 100644 index 00000000..2c1d2971 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Gulftown + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '239 mm' + 'Release Date': '2011-06-26' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '75.2' +isPart: true +type: CPU +humanName: 'Core i7-980' +name: Core-i7-980 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml new file mode 100644 index 00000000..f741a388 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Gulftown + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '239 mm' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 538 + 'Geekbench Multi-Core Score': 2523 +isPart: true +type: CPU +humanName: 'Core i7-980X' +name: Core-i7-980X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml new file mode 100644 index 00000000..adbc1fc7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Gulftown + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.46 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '239 mm' + 'Release Date': '2011-02-13' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 563 + 'Geekbench Multi-Core Score': 2629 +isPart: true +type: CPU +humanName: 'Core i7-990X' +name: Core-i7-990X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml new file mode 100644 index 00000000..71d7e79b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml @@ -0,0 +1,17 @@ +humanName: 'Haswell E' +sections: + - + header: '9 - 16 Threads' + members: + - Core-i7-5960X + - Core-i7-5930K + - Core-i7-5820K +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-08-29' + Sockets: + - LGA20113 +name: Desktop-Haswell-E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml new file mode 100644 index 00000000..f43a5e45 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Haswell E' + Market: Desktop + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-08-29' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1125 + 'Geekbench Multi-Core Score': 5323 + '3DMark Fire Strike Physics Score': 3784 + 'UserBenchmark CPU Score': '76.8' +isPart: true +type: CPU +humanName: 'Core i7-5820K' +name: Core-i7-5820K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml new file mode 100644 index 00000000..faa62245 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Haswell E' + Market: Desktop + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-08-29' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1101 + 'Geekbench Multi-Core Score': 5258 + '3DMark Fire Strike Physics Score': 3954 + 'UserBenchmark CPU Score': '79.8' +isPart: true +type: CPU +humanName: 'Core i7-5930K' +name: Core-i7-5930K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml new file mode 100644 index 00000000..f2c4d3f8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Haswell E' + Market: Desktop + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-08-29' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1261 + 'Geekbench Multi-Core Score': 7342 + '3DMark Fire Strike Physics Score': 5190 + 'UserBenchmark CPU Score': '80.5' +isPart: true +type: CPU +humanName: 'Core i7-5960X' +name: Core-i7-5960X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml new file mode 100644 index 00000000..3a1422c7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml @@ -0,0 +1,92 @@ +humanName: Haswell +sections: + - + header: '8 Threads' + members: + - Core-i7-4790T + - Core-i7-4790S + - Core-i7-4790 + - Core-i7-4785T + - Core-i7-4771 + - Core-i7-4770T + - Core-i7-4770S + - Core-i7-4770K + - Core-i7-4770 + - Core-i7-4765T + - + header: '4 Threads' + members: + - Core-i5-4690T + - Core-i5-4690S + - Core-i5-4690 + - Core-i5-4670T + - Core-i5-4670S + - Core-i5-4670K + - Core-i5-4670 + - Core-i5-4590T + - Core-i5-4590S + - Core-i5-4590 + - Core-i5-4570T + - Core-i5-4570S + - Core-i5-4570 + - Core-i5-4460T + - Core-i5-4460S + - Core-i5-4460 + - Core-i5-4440S + - Core-i5-4440 + - Core-i5-4430S + - Core-i5-4430 + - Core-i3-4370T + - Core-i3-4370 + - Core-i3-4360T + - Core-i3-4360 + - Core-i3-4350T + - Core-i3-4350 + - Core-i3-4340 + - Core-i3-4330T + - Core-i3-4330 + - Core-i3-4170T + - Core-i3-4170 + - Core-i3-4160T + - Core-i3-4160 + - Core-i3-4150T + - Core-i3-4150 + - Core-i3-4130T + - Core-i3-4130 + - + header: '2 Threads' + members: + - Pentium-G3470 + - Pentium-G3460T + - Pentium-G3460 + - Pentium-G3450T + - Pentium-G3450 + - Pentium-G3440T + - Pentium-G3440 + - Pentium-G3430 + - Pentium-G3420T + - Pentium-G3420 + - Pentium-G3260T + - Pentium-G3260 + - Pentium-G3258 + - Pentium-G3250T + - Pentium-G3250 + - Pentium-G3240T + - Pentium-G3240 + - Pentium-G3220T + - Pentium-G3220 + - Pentium-G1850 + - Pentium-G1840T + - Pentium-G1840 + - Pentium-G1830 + - Pentium-G1820T + - Pentium-G1820 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-01' + Sockets: + - LGA1150 +name: Desktop-Haswell diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml new file mode 100644 index 00000000..89e6ce3b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 944 + 'Geekbench Multi-Core Score': 1882 + 'UserBenchmark CPU Score': '52.3' +isPart: true +type: CPU +humanName: 'Core i3-4130' +name: Core-i3-4130 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml new file mode 100644 index 00000000..2ae100a7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 898 + 'Geekbench Multi-Core Score': 1808 + 'UserBenchmark CPU Score': '56.2' +isPart: true +type: CPU +humanName: 'Core i3-4130T' +name: Core-i3-4130T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml new file mode 100644 index 00000000..e6076b11 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1014 + 'Geekbench Multi-Core Score': 2022 + 'UserBenchmark CPU Score': '55.2' +isPart: true +type: CPU +humanName: 'Core i3-4150' +name: Core-i3-4150 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml new file mode 100644 index 00000000..4a460f6d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 845 + 'Geekbench Multi-Core Score': 1772 +isPart: true +type: CPU +humanName: 'Core i3-4150T' +name: Core-i3-4150T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml new file mode 100644 index 00000000..d17fa3a1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 992 + 'Geekbench Multi-Core Score': 1931 + 'UserBenchmark CPU Score': '55.1' +isPart: true +type: CPU +humanName: 'Core i3-4160' +name: Core-i3-4160 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml new file mode 100644 index 00000000..8fd382f8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 908 + 'Geekbench Multi-Core Score': 1732 +isPart: true +type: CPU +humanName: 'Core i3-4160T' +name: Core-i3-4160T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml new file mode 100644 index 00000000..c938aabe --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1052 + 'Geekbench Multi-Core Score': 2059 + 'UserBenchmark CPU Score': '56.9' +isPart: true +type: CPU +humanName: 'Core i3-4170' +name: Core-i3-4170 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml new file mode 100644 index 00000000..acf6dc42 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 966 + 'Geekbench Multi-Core Score': 1846 +isPart: true +type: CPU +humanName: 'Core i3-4170T' +name: Core-i3-4170T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml new file mode 100644 index 00000000..8a890c9d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1051 + 'Geekbench Multi-Core Score': 2091 + 'UserBenchmark CPU Score': '61.9' +isPart: true +type: CPU +humanName: 'Core i3-4330' +name: Core-i3-4330 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml new file mode 100644 index 00000000..e358f0ac --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4330T' +name: Core-i3-4330T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml new file mode 100644 index 00000000..1ca54374 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '64.5' +isPart: true +type: CPU +humanName: 'Core i3-4340' +name: Core-i3-4340 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml new file mode 100644 index 00000000..0a373c62 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '65.9' +isPart: true +type: CPU +humanName: 'Core i3-4350' +name: Core-i3-4350 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml new file mode 100644 index 00000000..3a9d6d77 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4350T' +name: Core-i3-4350T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml new file mode 100644 index 00000000..a78b0979 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1145 + 'Geekbench Multi-Core Score': 2285 + 'UserBenchmark CPU Score': '64.7' +isPart: true +type: CPU +humanName: 'Core i3-4360' +name: Core-i3-4360 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml new file mode 100644 index 00000000..da5d03c7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4360T' +name: Core-i3-4360T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml new file mode 100644 index 00000000..b994b6bf --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1173 + 'Geekbench Multi-Core Score': 2388 + 'UserBenchmark CPU Score': '65.8' +isPart: true +type: CPU +humanName: 'Core i3-4370' +name: Core-i3-4370 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml new file mode 100644 index 00000000..3a29b78f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4370T' +name: Core-i3-4370T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml new file mode 100644 index 00000000..cd11e0d9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 963 + 'Geekbench Multi-Core Score': 2741 + 'UserBenchmark CPU Score': '65.2' +isPart: true +type: CPU +humanName: 'Core i5-4430' +name: Core-i5-4430 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml new file mode 100644 index 00000000..6c17da0c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 941 + 'Geekbench Multi-Core Score': 2662 +isPart: true +type: CPU +humanName: 'Core i5-4430S' +name: Core-i5-4430S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml new file mode 100644 index 00000000..c8857422 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1006 + 'Geekbench Multi-Core Score': 2824 + 'UserBenchmark CPU Score': '61.3' +isPart: true +type: CPU +humanName: 'Core i5-4440' +name: Core-i5-4440 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml new file mode 100644 index 00000000..b5ced3a3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4440S' +name: Core-i5-4440S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml new file mode 100644 index 00000000..78caea4a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1029 + 'Geekbench Multi-Core Score': 2893 + '3DMark Fire Strike Physics Score': 1741 + 'UserBenchmark CPU Score': '62.1' +isPart: true +type: CPU +humanName: 'Core i5-4460' +name: Core-i5-4460 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml new file mode 100644 index 00000000..02c467cc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 968 + 'Geekbench Multi-Core Score': 2740 + 'UserBenchmark CPU Score': '66.1' +isPart: true +type: CPU +humanName: 'Core i5-4460S' +name: Core-i5-4460S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml new file mode 100644 index 00000000..4f1e311c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 749 + 'Geekbench Multi-Core Score': 2096 +isPart: true +type: CPU +humanName: 'Core i5-4460T' +name: Core-i5-4460T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml new file mode 100644 index 00000000..8966653a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1051 + 'Geekbench Multi-Core Score': 2991 + 'UserBenchmark CPU Score': '62.4' +isPart: true +type: CPU +humanName: 'Core i5-4570' +name: Core-i5-4570 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml new file mode 100644 index 00000000..694e757e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1036 + 'Geekbench Multi-Core Score': 2864 + 'UserBenchmark CPU Score': '66.2' +isPart: true +type: CPU +humanName: 'Core i5-4570S' +name: Core-i5-4570S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml new file mode 100644 index 00000000..78904397 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1030 + 'Geekbench Multi-Core Score': 1994 + 'UserBenchmark CPU Score': '57.7' +isPart: true +type: CPU +humanName: 'Core i5-4570T' +name: Core-i5-4570T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml new file mode 100644 index 00000000..a052000b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1099 + 'Geekbench Multi-Core Score': 3097 + '3DMark Fire Strike Physics Score': 1882 + 'UserBenchmark CPU Score': '63.5' +isPart: true +type: CPU +humanName: 'Core i5-4590' +name: Core-i5-4590 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml new file mode 100644 index 00000000..bcb67866 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1074 + 'Geekbench Multi-Core Score': 2905 + 'UserBenchmark CPU Score': '67.1' +isPart: true +type: CPU +humanName: 'Core i5-4590S' +name: Core-i5-4590S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml new file mode 100644 index 00000000..59a997c7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 884 + 'Geekbench Multi-Core Score': 2481 +isPart: true +type: CPU +humanName: 'Core i5-4590T' +name: Core-i5-4590T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml new file mode 100644 index 00000000..d0044800 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1143 + 'Geekbench Multi-Core Score': 3191 + 'UserBenchmark CPU Score': '66.5' +isPart: true +type: CPU +humanName: 'Core i5-4670' +name: Core-i5-4670 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml new file mode 100644 index 00000000..c812d598 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1237 + 'Geekbench Multi-Core Score': 3484 + '3DMark Fire Strike Physics Score': 2144 + 'UserBenchmark CPU Score': '68' +isPart: true +type: CPU +humanName: 'Core i5-4670K' +name: Core-i5-4670K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml new file mode 100644 index 00000000..471a2aae --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1119 + 'Geekbench Multi-Core Score': 3190 + 'UserBenchmark CPU Score': '72.4' +isPart: true +type: CPU +humanName: 'Core i5-4670S' +name: Core-i5-4670S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml new file mode 100644 index 00000000..2e7943fe --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1007 + 'Geekbench Multi-Core Score': 2794 +isPart: true +type: CPU +humanName: 'Core i5-4670T' +name: Core-i5-4670T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml new file mode 100644 index 00000000..4c5d3f80 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1148 + 'Geekbench Multi-Core Score': 3237 + 'UserBenchmark CPU Score': '67.1' +isPart: true +type: CPU +humanName: 'Core i5-4690' +name: Core-i5-4690 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml new file mode 100644 index 00000000..32f3aa9f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1114 + 'Geekbench Multi-Core Score': 3374 +isPart: true +type: CPU +humanName: 'Core i5-4690S' +name: Core-i5-4690S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml new file mode 100644 index 00000000..0c094da3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4690T' +name: Core-i5-4690T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml new file mode 100644 index 00000000..25e6c47c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 899 + 'Geekbench Multi-Core Score': 2855 +isPart: true +type: CPU +humanName: 'Core i7-4765T' +name: Core-i7-4765T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml new file mode 100644 index 00000000..eaf52d81 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1149 + 'Geekbench Multi-Core Score': 3680 + '3DMark Fire Strike Physics Score': 2360 + 'UserBenchmark CPU Score': '70.5' +isPart: true +type: CPU +humanName: 'Core i7-4770' +name: Core-i7-4770 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml new file mode 100644 index 00000000..abb0746b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1237 + 'Geekbench Multi-Core Score': 4000 + '3DMark Fire Strike Physics Score': 2575 + 'UserBenchmark CPU Score': '73.6' +isPart: true +type: CPU +humanName: 'Core i7-4770K' +name: Core-i7-4770K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml new file mode 100644 index 00000000..75e942fa --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1113 + 'Geekbench Multi-Core Score': 3560 + 'UserBenchmark CPU Score': '71.2' +isPart: true +type: CPU +humanName: 'Core i7-4770S' +name: Core-i7-4770S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml new file mode 100644 index 00000000..2d30e67b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1088 + 'Geekbench Multi-Core Score': 2992 + 'UserBenchmark CPU Score': '70.3' +isPart: true +type: CPU +humanName: 'Core i7-4770T' +name: Core-i7-4770T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml new file mode 100644 index 00000000..33d8f6e6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1169 + 'Geekbench Multi-Core Score': 3873 + 'UserBenchmark CPU Score': '73.5' +isPart: true +type: CPU +humanName: 'Core i7-4771' +name: Core-i7-4771 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml new file mode 100644 index 00000000..8314fcd1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 910 + 'Geekbench Multi-Core Score': 2974 +isPart: true +type: CPU +humanName: 'Core i7-4785T' +name: Core-i7-4785T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml new file mode 100644 index 00000000..751bf125 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1188 + 'Geekbench Multi-Core Score': 3802 + '3DMark Fire Strike Physics Score': 2431 + 'UserBenchmark CPU Score': '71.4' +isPart: true +type: CPU +humanName: 'Core i7-4790' +name: Core-i7-4790 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml new file mode 100644 index 00000000..ce5f184f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1166 + 'Geekbench Multi-Core Score': 3647 + 'UserBenchmark CPU Score': '71.8' +isPart: true +type: CPU +humanName: 'Core i7-4790S' +name: Core-i7-4790S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml new file mode 100644 index 00000000..647e8e8e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1119 + 'Geekbench Multi-Core Score': 3296 + 'UserBenchmark CPU Score': '70.9' +isPart: true +type: CPU +humanName: 'Core i7-4790T' +name: Core-i7-4790T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml new file mode 100644 index 00000000..dd75f023 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-29' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1820' +name: Pentium-G1820 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml new file mode 100644 index 00000000..8a8513cf --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-29' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1820T' +name: Pentium-G1820T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml new file mode 100644 index 00000000..f15c2eba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-29' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1830' +name: Pentium-G1830 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml new file mode 100644 index 00000000..adff5095 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1840' +name: Pentium-G1840 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml new file mode 100644 index 00000000..82fbd243 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1840T' +name: Pentium-G1840T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml new file mode 100644 index 00000000..94321780 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G1850' +name: Pentium-G1850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml new file mode 100644 index 00000000..e28a0902 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 531 + 'Geekbench Multi-Core Score': 905 + 'UserBenchmark CPU Score': '48.3' +isPart: true +type: CPU +humanName: 'Pentium G3220' +name: Pentium-G3220 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml new file mode 100644 index 00000000..df29062f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 470 + 'Geekbench Multi-Core Score': 819 +isPart: true +type: CPU +humanName: 'Pentium G3220T' +name: Pentium-G3220T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml new file mode 100644 index 00000000..e1606f92 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 546 + 'Geekbench Multi-Core Score': 962 + 'UserBenchmark CPU Score': '50.2' +isPart: true +type: CPU +humanName: 'Pentium G3240' +name: Pentium-G3240 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml new file mode 100644 index 00000000..4a9c6d96 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3240T' +name: Pentium-G3240T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml new file mode 100644 index 00000000..c627e4c1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 570 + 'Geekbench Multi-Core Score': 978 + 'UserBenchmark CPU Score': '51.2' +isPart: true +type: CPU +humanName: 'Pentium G3250' +name: Pentium-G3250 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml new file mode 100644 index 00000000..0491329e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 521 + 'Geekbench Multi-Core Score': 901 +isPart: true +type: CPU +humanName: 'Pentium G3250T' +name: Pentium-G3250T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml new file mode 100644 index 00000000..dd9e09e2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-06-02' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 617 + 'Geekbench Multi-Core Score': 1086 + 'UserBenchmark CPU Score': '52.6' + Unlocked: 'yes' +isPart: true +type: CPU +humanName: 'Pentium G3258' +name: Pentium-G3258 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml new file mode 100644 index 00000000..961eb433 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 587 + 'Geekbench Multi-Core Score': 994 + 'UserBenchmark CPU Score': '51.8' +isPart: true +type: CPU +humanName: 'Pentium G3260' +name: Pentium-G3260 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml new file mode 100644 index 00000000..1a0ae1c5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3260T' +name: Pentium-G3260T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml new file mode 100644 index 00000000..cd44bd74 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '53.5' +isPart: true +type: CPU +humanName: 'Pentium G3420' +name: Pentium-G3420 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml new file mode 100644 index 00000000..83dcc898 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3420T' +name: Pentium-G3420T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml new file mode 100644 index 00000000..3f31134b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '56.5' +isPart: true +type: CPU +humanName: 'Pentium G3430' +name: Pentium-G3430 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml new file mode 100644 index 00000000..18869e0a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '57.1' +isPart: true +type: CPU +humanName: 'Pentium G3440' +name: Pentium-G3440 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml new file mode 100644 index 00000000..211ec663 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3440T' +name: Pentium-G3440T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml new file mode 100644 index 00000000..1107e490 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '56' +isPart: true +type: CPU +humanName: 'Pentium G3450' +name: Pentium-G3450 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml new file mode 100644 index 00000000..a466dad6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3450T' +name: Pentium-G3450T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml new file mode 100644 index 00000000..9142f13a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '57.6' +isPart: true +type: CPU +humanName: 'Pentium G3460' +name: Pentium-G3460 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml new file mode 100644 index 00000000..8581cdb7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Pentium G3460T' +name: Pentium-G3460T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml new file mode 100644 index 00000000..a75e623e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Desktop + Lithography: '22 nm' + TDP: '53 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.7001953125 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '59.1' +isPart: true +type: CPU +humanName: 'Pentium G3470' +name: Pentium-G3470 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml new file mode 100644 index 00000000..60d218d2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml @@ -0,0 +1,20 @@ +humanName: 'Ivy Bridge E' +sections: + - + header: '9 - 16 Threads' + members: + - Core-i7-4960X + - Core-i7-4930K + - + header: '8 Threads' + members: + - Core-i7-4820K +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-10' + Sockets: + - LGA2011 +name: Desktop-Ivy-Bridge-E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml new file mode 100644 index 00000000..3818578a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge E' + Market: Desktop + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 631 + 'Geekbench Multi-Core Score': 2284 + 'UserBenchmark CPU Score': '71.8' +isPart: true +type: CPU +humanName: 'Core i7-4820K' +name: Core-i7-4820K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml new file mode 100644 index 00000000..00f8f833 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge E' + Market: Desktop + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 657 + 'Geekbench Multi-Core Score': 3301 + 'UserBenchmark CPU Score': '76.9' +isPart: true +type: CPU +humanName: 'Core i7-4930K' +name: Core-i7-4930K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml new file mode 100644 index 00000000..62d5818f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge E' + Market: Desktop + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 650 + 'Geekbench Multi-Core Score': 3302 + 'UserBenchmark CPU Score': '78.4' +isPart: true +type: CPU +humanName: 'Core i7-4960X' +name: Core-i7-4960X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml new file mode 100644 index 00000000..681b916d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml @@ -0,0 +1,65 @@ +humanName: 'Ivy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-3770T + - Core-i7-3770S + - Core-i7-3770K + - Core-i7-3770 + - + header: '4 Threads' + members: + - Core-i5-3570T + - Core-i5-3570S + - Core-i5-3570K + - Core-i5-3570 + - Core-i5-3550S + - Core-i5-3550 + - Core-i5-3475S + - Core-i5-3470T + - Core-i5-3470S + - Core-i5-3470 + - Core-i5-3450S + - Core-i5-3450 + - Core-i5-3350P + - Core-i5-3340S + - Core-i5-3340 + - Core-i5-3330S + - Core-i5-3330 + - Core-i3-3250T + - Core-i3-3250 + - Core-i3-3245 + - Core-i3-3240T + - Core-i3-3240 + - Core-i3-3225 + - Core-i3-3220T + - Core-i3-3220 + - Core-i3-3210 + - + header: '2 Threads' + members: + - Pentium-G2140 + - Pentium-G2130 + - Pentium-G2120T + - Pentium-G2120 + - Pentium-G2100T + - Pentium-G2030T + - Pentium-G2030 + - Pentium-G2020T + - Pentium-G2020 + - Pentium-G2010 + - Pentium-G1630 + - Pentium-G1620T + - Pentium-G1620 + - Pentium-G1610T + - Pentium-G1610 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2012-04-29' + Sockets: + - LGA1155 +name: Desktop-Ivy-Bridge diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml new file mode 100644 index 00000000..341e944e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 519 + 'Geekbench Multi-Core Score': 1049 + 'UserBenchmark CPU Score': '57.2' +isPart: true +type: CPU +humanName: 'Core i3-3210' +name: Core-i3-3210 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml new file mode 100644 index 00000000..28101770 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 527 + 'Geekbench Multi-Core Score': 1105 + 'UserBenchmark CPU Score': '52.1' +isPart: true +type: CPU +humanName: 'Core i3-3220' +name: Core-i3-3220 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml new file mode 100644 index 00000000..23672896 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 446 + 'Geekbench Multi-Core Score': 956 + 'UserBenchmark CPU Score': '54.6' +isPart: true +type: CPU +humanName: 'Core i3-3220T' +name: Core-i3-3220T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml new file mode 100644 index 00000000..540f2451 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 548 + 'Geekbench Multi-Core Score': 1153 + 'UserBenchmark CPU Score': '58.5' +isPart: true +type: CPU +humanName: 'Core i3-3225' +name: Core-i3-3225 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml new file mode 100644 index 00000000..10c7f630 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 544 + 'Geekbench Multi-Core Score': 1121 + 'UserBenchmark CPU Score': '55.1' +isPart: true +type: CPU +humanName: 'Core i3-3240' +name: Core-i3-3240 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml new file mode 100644 index 00000000..8d11df33 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Core i3-3240T' +name: Core-i3-3240T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml new file mode 100644 index 00000000..1507dfbd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Core i3-3245' +name: Core-i3-3245 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml new file mode 100644 index 00000000..c4b272ce --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 431 + 'Geekbench Multi-Core Score': 937 + 'UserBenchmark CPU Score': '58.7' +isPart: true +type: CPU +humanName: 'Core i3-3250' +name: Core-i3-3250 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml new file mode 100644 index 00000000..2c371f2f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Core i3-3250T' +name: Core-i3-3250T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml new file mode 100644 index 00000000..58365f45 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 551 + 'Geekbench Multi-Core Score': 1607 + 'UserBenchmark CPU Score': '61.3' +isPart: true +type: CPU +humanName: 'Core i5-3330' +name: Core-i5-3330 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml new file mode 100644 index 00000000..8d43591d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 550 + 'Geekbench Multi-Core Score': 1632 + 'UserBenchmark CPU Score': '64.1' +isPart: true +type: CPU +humanName: 'Core i5-3330S' +name: Core-i5-3330S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml new file mode 100644 index 00000000..38aff194 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 560 + 'Geekbench Multi-Core Score': 1560 + 'UserBenchmark CPU Score': '66.1' +isPart: true +type: CPU +humanName: 'Core i5-3340' +name: Core-i5-3340 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml new file mode 100644 index 00000000..06d4920a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 583 + 'Geekbench Multi-Core Score': 1714 +isPart: true +type: CPU +humanName: 'Core i5-3340S' +name: Core-i5-3340S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml new file mode 100644 index 00000000..139536af --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 562 + 'Geekbench Multi-Core Score': 1622 + 'UserBenchmark CPU Score': '65.3' +isPart: true +type: CPU +humanName: 'Core i5-3350P' +name: Core-i5-3350P diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml new file mode 100644 index 00000000..8a490f9d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 613 + 'Geekbench Multi-Core Score': 1825 + 'UserBenchmark CPU Score': '66.3' +isPart: true +type: CPU +humanName: 'Core i5-3450' +name: Core-i5-3450 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml new file mode 100644 index 00000000..893ac5b5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 589 + 'Geekbench Multi-Core Score': 1693 + 'UserBenchmark CPU Score': '68.9' +isPart: true +type: CPU +humanName: 'Core i5-3450S' +name: Core-i5-3450S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml new file mode 100644 index 00000000..fe77fa21 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 620 + 'Geekbench Multi-Core Score': 1837 + 'UserBenchmark CPU Score': '63.1' +isPart: true +type: CPU +humanName: 'Core i5-3470' +name: Core-i5-3470 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml new file mode 100644 index 00000000..aa992859 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 610 + 'Geekbench Multi-Core Score': 1760 + 'UserBenchmark CPU Score': '65.3' +isPart: true +type: CPU +humanName: 'Core i5-3470S' +name: Core-i5-3470S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml new file mode 100644 index 00000000..b32cef54 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 579 + 'Geekbench Multi-Core Score': 1150 + 'UserBenchmark CPU Score': '55.8' +isPart: true +type: CPU +humanName: 'Core i5-3470T' +name: Core-i5-3470T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml new file mode 100644 index 00000000..947c015c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 588 + 'Geekbench Multi-Core Score': 1642 + 'UserBenchmark CPU Score': '68.5' +isPart: true +type: CPU +humanName: 'Core i5-3475S' +name: Core-i5-3475S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml new file mode 100644 index 00000000..9b90bacb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 643 + 'Geekbench Multi-Core Score': 1916 + 'UserBenchmark CPU Score': '68.6' +isPart: true +type: CPU +humanName: 'Core i5-3550' +name: Core-i5-3550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml new file mode 100644 index 00000000..87d9284f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' +isPart: true +type: CPU +humanName: 'Core i5-3550S' +name: Core-i5-3550S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml new file mode 100644 index 00000000..a7fcee24 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 655 + 'Geekbench Multi-Core Score': 1930 + 'UserBenchmark CPU Score': '65.1' +isPart: true +type: CPU +humanName: 'Core i5-3570' +name: Core-i5-3570 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml new file mode 100644 index 00000000..45df5361 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 686 + 'Geekbench Multi-Core Score': 2071 + '3DMark Fire Strike Physics Score': 1695 + 'UserBenchmark CPU Score': '67.6' +isPart: true +type: CPU +humanName: 'Core i5-3570K' +name: Core-i5-3570K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml new file mode 100644 index 00000000..a2433551 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-06-01' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 654 + 'Geekbench Multi-Core Score': 1928 +isPart: true +type: CPU +humanName: 'Core i5-3570S' +name: Core-i5-3570S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml new file mode 100644 index 00000000..a900ba3a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' +isPart: true +type: CPU +humanName: 'Core i5-3570T' +name: Core-i5-3570T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml new file mode 100644 index 00000000..540cf46c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 669 + 'Geekbench Multi-Core Score': 2285 + '3DMark Fire Strike Physics Score': 1988 + 'UserBenchmark CPU Score': '69' +isPart: true +type: CPU +humanName: 'Core i7-3770' +name: Core-i7-3770 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml new file mode 100644 index 00000000..989503c5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 695 + 'Geekbench Multi-Core Score': 2416 + '3DMark Fire Strike Physics Score': 2159 + 'UserBenchmark CPU Score': '72.4' +isPart: true +type: CPU +humanName: 'Core i7-3770K' +name: Core-i7-3770K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml new file mode 100644 index 00000000..add891d6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 672 + 'Geekbench Multi-Core Score': 2220 + 'UserBenchmark CPU Score': '69.3' +isPart: true +type: CPU +humanName: 'Core i7-3770S' +name: Core-i7-3770S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml new file mode 100644 index 00000000..0b905196 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' +isPart: true +type: CPU +humanName: 'Core i7-3770T' +name: Core-i7-3770T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml new file mode 100644 index 00000000..de9fddab --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G1610' +name: Pentium-G1610 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml new file mode 100644 index 00000000..07c80db6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G1610T' +name: Pentium-G1610T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml new file mode 100644 index 00000000..7c90544f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G1620' +name: Pentium-G1620 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml new file mode 100644 index 00000000..24f1c9fc --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G1620T' +name: Pentium-G1620T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml new file mode 100644 index 00000000..5443e7c9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G1630' +name: Pentium-G1630 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml new file mode 100644 index 00000000..0e8655a2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'UserBenchmark CPU Score': '50.6' +isPart: true +type: CPU +humanName: 'Pentium G2010' +name: Pentium-G2010 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml new file mode 100644 index 00000000..4c645029 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 489 + 'Geekbench Multi-Core Score': 836 + 'UserBenchmark CPU Score': '48.9' +isPart: true +type: CPU +humanName: 'Pentium G2020' +name: Pentium-G2020 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml new file mode 100644 index 00000000..86b17a2f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G2020T' +name: Pentium-G2020T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml new file mode 100644 index 00000000..6ca770b4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 458 + 'Geekbench Multi-Core Score': 766 + 'UserBenchmark CPU Score': '48.9' +isPart: true +type: CPU +humanName: 'Pentium G2030' +name: Pentium-G2030 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml new file mode 100644 index 00000000..e15df422 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G2030T' +name: Pentium-G2030T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml new file mode 100644 index 00000000..12723345 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G2100T' +name: Pentium-G2100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml new file mode 100644 index 00000000..9b30487c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'UserBenchmark CPU Score': '52.6' +isPart: true +type: CPU +humanName: 'Pentium G2120' +name: Pentium-G2120 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml new file mode 100644 index 00000000..2c55a870 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G2120T' +name: Pentium-G2120T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml new file mode 100644 index 00000000..7a3b2be0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'UserBenchmark CPU Score': '53.6' +isPart: true +type: CPU +humanName: 'Pentium G2130' +name: Pentium-G2130 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml new file mode 100644 index 00000000..0714df7a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Desktop + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium G2140' +name: Pentium-G2140 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml new file mode 100644 index 00000000..5126514e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml @@ -0,0 +1,51 @@ +humanName: 'Kaby Lake' +sections: + - + header: '8 Threads' + members: + - Core-i7-7740X + - Core-i7-7700T + - Core-i7-7700K + - Core-i7-7700 + - + header: '4 Threads' + members: + - Pentium-G4620 + - Pentium-G4600T + - Pentium-G4600 + - Pentium-G4560T + - Pentium-G4560 + - Core-i5-7640X + - Core-i5-7600T + - Core-i5-7600K + - Core-i5-7600 + - Core-i5-7500T + - Core-i5-7500 + - Core-i5-7400T + - Core-i5-7400 + - Core-i3-7350K + - Core-i3-7320 + - Core-i3-7300T + - Core-i3-7300 + - Core-i3-7101TE + - Core-i3-7101E + - Core-i3-7100T + - Core-i3-7100 + - + header: '2 Threads' + members: + - Pentium-G3950 + - Pentium-G3930TE + - Pentium-G3930T + - Pentium-G3930E + - Pentium-G3930 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-01-03' + Sockets: + - LGA1151 + - LGA2066 +name: Desktop-Kaby-Lake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml new file mode 100644 index 00000000..f4a11774 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1203 + 'Geekbench Multi-Core Score': 2365 + 'UserBenchmark CPU Score': '57' +isPart: true +type: CPU +humanName: 'Core i3-7100' +name: Core-i3-7100 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml new file mode 100644 index 00000000..ba388f73 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1100 + 'Geekbench Multi-Core Score': 2222 + 'UserBenchmark CPU Score': '60.5' +isPart: true +type: CPU +humanName: 'Core i3-7100T' +name: Core-i3-7100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml new file mode 100644 index 00000000..200502ff --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L, DDR4' + 'Base Frequency': '3.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, DDR4' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '68.6' +isPart: true +type: CPU +humanName: 'Core i3-7101E' +name: Core-i3-7101E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml new file mode 100644 index 00000000..773fa8c9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L, DDR4' + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, DDR4' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-7101TE' +name: Core-i3-7101TE diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml new file mode 100644 index 00000000..2caf2ac0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '70' +isPart: true +type: CPU +humanName: 'Core i3-7300' +name: Core-i3-7300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml new file mode 100644 index 00000000..f395f211 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '66.8' +isPart: true +type: CPU +humanName: 'Core i3-7300T' +name: Core-i3-7300T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml new file mode 100644 index 00000000..93ba3e0a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '73.2' +isPart: true +type: CPU +humanName: 'Core i3-7320' +name: Core-i3-7320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml new file mode 100644 index 00000000..f64691f8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '60 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '71.5' +isPart: true +type: CPU +humanName: 'Core i3-7350K' +name: Core-i3-7350K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml new file mode 100644 index 00000000..e7aced6b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1142 + 'Geekbench Multi-Core Score': 3145 + '3DMark Fire Strike Physics Score': 2092 + 'UserBenchmark CPU Score': '63.5' +isPart: true +type: CPU +humanName: 'Core i5-7400' +name: Core-i5-7400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml new file mode 100644 index 00000000..78f6fcfb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 997 + 'Geekbench Multi-Core Score': 2762 + 'UserBenchmark CPU Score': '65.3' +isPart: true +type: CPU +humanName: 'Core i5-7400T' +name: Core-i5-7400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml new file mode 100644 index 00000000..650d763b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1255 + 'Geekbench Multi-Core Score': 3424 + '3DMark Fire Strike Physics Score': 2302 + 'UserBenchmark CPU Score': '66.8' +isPart: true +type: CPU +humanName: 'Core i5-7500' +name: Core-i5-7500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml new file mode 100644 index 00000000..9a370a99 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1100 + 'Geekbench Multi-Core Score': 3050 + 'UserBenchmark CPU Score': '66.3' +isPart: true +type: CPU +humanName: 'Core i5-7500T' +name: Core-i5-7500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml new file mode 100644 index 00000000..16865c99 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1336 + 'Geekbench Multi-Core Score': 3743 + 'UserBenchmark CPU Score': '72' +isPart: true +type: CPU +humanName: 'Core i5-7600' +name: Core-i5-7600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml new file mode 100644 index 00000000..9dd84c5e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1469 + 'Geekbench Multi-Core Score': 4124 + '3DMark Fire Strike Physics Score': 2740 + 'UserBenchmark CPU Score': '75.8' +isPart: true +type: CPU +humanName: 'Core i5-7600K' +name: Core-i5-7600K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml new file mode 100644 index 00000000..0d279012 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1167 + 'Geekbench Multi-Core Score': 3374 + 'UserBenchmark CPU Score': '75.1' +isPart: true +type: CPU +humanName: 'Core i5-7600T' +name: Core-i5-7600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml new file mode 100644 index 00000000..8a838a66 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '112 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-05-30' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'UserBenchmark CPU Score': '84.1' +isPart: true +type: CPU +humanName: 'Core i5-7640X' +name: Core-i5-7640X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml new file mode 100644 index 00000000..80fae646 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1362 + 'Geekbench Multi-Core Score': 4436 + '3DMark Fire Strike Physics Score': 3078 + 'UserBenchmark CPU Score': '76.2' +isPart: true +type: CPU +humanName: 'Core i7-7700' +name: Core-i7-7700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml new file mode 100644 index 00000000..859b5659 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4.2 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1536 + 'Geekbench Multi-Core Score': 5055 + '3DMark Fire Strike Physics Score': 3498 + 'UserBenchmark CPU Score': '84' +isPart: true +type: CPU +humanName: 'Core i7-7700K' +name: Core-i7-7700K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml new file mode 100644 index 00000000..c358aa59 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1139 + 'Geekbench Multi-Core Score': 3383 + 'UserBenchmark CPU Score': '71.7' +isPart: true +type: CPU +humanName: 'Core i7-7700T' +name: Core-i7-7700T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml new file mode 100644 index 00000000..e77c2ab9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '112 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4.3 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-05-30' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1536 + 'Geekbench Multi-Core Score': 4950 + 'UserBenchmark CPU Score': '87' +isPart: true +type: CPU +humanName: 'Core i7-7740X' +name: Core-i7-7740X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml new file mode 100644 index 00000000..09874727 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3930' +name: Pentium-G3930 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml new file mode 100644 index 00000000..8b46bfb5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-06-11' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3930E' +name: Pentium-G3930E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml new file mode 100644 index 00000000..c037d53b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3930T' +name: Pentium-G3930T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml new file mode 100644 index 00000000..e31c1cba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-06-11' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3930TE' +name: Pentium-G3930TE diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml new file mode 100644 index 00000000..7cfae2a9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3950' +name: Pentium-G3950 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml new file mode 100644 index 00000000..6342129b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 696 + 'Geekbench Multi-Core Score': 1453 + 'UserBenchmark CPU Score': '57.3' +isPart: true +type: CPU +humanName: 'Pentium G4560' +name: Pentium-G4560 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml new file mode 100644 index 00000000..12a008b0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '60.2' +isPart: true +type: CPU +humanName: 'Pentium G4560T' +name: Pentium-G4560T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml new file mode 100644 index 00000000..4f09b757 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 722 + 'Geekbench Multi-Core Score': 1512 + 'UserBenchmark CPU Score': '62.9' +isPart: true +type: CPU +humanName: 'Pentium G4600' +name: Pentium-G4600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml new file mode 100644 index 00000000..e1ea7b17 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G4600T' +name: Pentium-G4600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml new file mode 100644 index 00000000..d59aa0f0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '66.7' +isPart: true +type: CPU +humanName: 'Pentium G4620' +name: Pentium-G4620 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml new file mode 100644 index 00000000..0a8dc4b7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml @@ -0,0 +1,19 @@ +humanName: Kentsfield +sections: + - + header: '4 Threads' + members: + - Core-QX6850 + - Core-QX6800 + - Core-QX6700 + - Core-Q6700 + - Core-Q6600 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q4 2006' + Sockets: + - LGA775 +name: Desktop-Kentsfield diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml new file mode 100644 index 00000000..c300ba3c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Desktop + Lithography: '65 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-01-08' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q6600' +name: Core-Q6600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml new file mode 100644 index 00000000..01c5f3c9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Desktop + Lithography: '65 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-07-22' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q6700' +name: Core-Q6700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml new file mode 100644 index 00000000..a34c9070 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q4 2006' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX6700' +name: Core-QX6700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml new file mode 100644 index 00000000..ac099572 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-04-09' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX6800' +name: Core-QX6800 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml new file mode 100644 index 00000000..7727e291 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-07-22' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX6850' +name: Core-QX6850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml new file mode 100644 index 00000000..cf509d84 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml @@ -0,0 +1,26 @@ +humanName: Lynnfield +sections: + - + header: '8 Threads' + members: + - Core-i7-880 + - Core-i7-875K + - Core-i7-870S + - Core-i7-870 + - Core-i7-860S + - Core-i7-860 + - + header: '4 Threads' + members: + - Core-i5-760 + - Core-i5-750S + - Core-i5-750 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-09-08' + Sockets: + - LGA1156 +name: Desktop-Lynnfield diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml new file mode 100644 index 00000000..a7828740 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 435 + 'Geekbench Multi-Core Score': 1224 + 'UserBenchmark CPU Score': '61.5' +isPart: true +type: CPU +humanName: 'Core i5-750' +name: Core-i5-750 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml new file mode 100644 index 00000000..521d55fd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '82 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-01-07' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i5-750S' +name: Core-i5-750S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml new file mode 100644 index 00000000..624a96a3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-07-18' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 462 + 'Geekbench Multi-Core Score': 1291 + 'UserBenchmark CPU Score': '63.6' +isPart: true +type: CPU +humanName: 'Core i5-760' +name: Core-i5-760 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml new file mode 100644 index 00000000..9dfb3e29 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 447 + 'Geekbench Multi-Core Score': 1491 + 'UserBenchmark CPU Score': '64.2' +isPart: true +type: CPU +humanName: 'Core i7-860' +name: Core-i7-860 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml new file mode 100644 index 00000000..c2c1c7ad --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '82 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-01-07' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-860S' +name: Core-i7-860S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml new file mode 100644 index 00000000..57e780c1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 483 + 'Geekbench Multi-Core Score': 1560 + 'UserBenchmark CPU Score': '66.1' +isPart: true +type: CPU +humanName: 'Core i7-870' +name: Core-i7-870 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml new file mode 100644 index 00000000..e7171aae --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '82 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': 'Q2 2010' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-870S' +name: Core-i7-870S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml new file mode 100644 index 00000000..4f7362ba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-06-01' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 505 + 'Geekbench Multi-Core Score': 1760 +isPart: true +type: CPU +humanName: 'Core i7-875K' +name: Core-i7-875K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml new file mode 100644 index 00000000..f62939d6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-06-01' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '70.6' +isPart: true +type: CPU +humanName: 'Core i7-880' +name: Core-i7-880 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml new file mode 100644 index 00000000..47b5a10a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml @@ -0,0 +1,21 @@ +humanName: Pineview +sections: + - + header: '4 Threads' + members: + - Atom-D525 + - Atom-D510 + - + header: '2 Threads' + members: + - Atom-D425 + - Atom-D410 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': 'Q1 2010' + Sockets: + - BGA559 +name: Desktop-Pineview diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml new file mode 100644 index 00000000..1e734ff8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Desktop + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': 'Q1 2010' + Socket: FCBGA559 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20.3' +isPart: true +type: CPU +humanName: 'Atom D410' +name: Atom-D410 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml new file mode 100644 index 00000000..b662045c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Desktop + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': 'DDR3, DDR2' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': '2010-06-26' + Socket: FCBGA559 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom D425' +name: Atom-D425 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml new file mode 100644 index 00000000..a3879f4c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Desktop + Lithography: '45 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': 'Q1 2010' + Socket: FCBGA559 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20' +isPart: true +type: CPU +humanName: 'Atom D510' +name: Atom-D510 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml new file mode 100644 index 00000000..5eb44e04 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Desktop + Lithography: '45 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': 'DDR3, DDR2' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': '2010-06-26' + Socket: FCBGA559 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '22.9' +isPart: true +type: CPU +humanName: 'Atom D525' +name: Atom-D525 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml new file mode 100644 index 00000000..3c43b723 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml @@ -0,0 +1,68 @@ +humanName: Prescott +sections: + - + header: '2 Threads' + members: + - Pentium-672 + - Pentium-670 + - Pentium-662 + - Pentium-660 + - Pentium-650 + - Pentium-640 + - Pentium-630 + - Pentium-620 + - Pentium-571 + - Pentium-561 + - Pentium-560J + - Pentium-551 + - Pentium-550J + - Pentium-541 + - Pentium-540J + - Pentium-531 + - Pentium-530J + - Pentium-524 + - Pentium-521 + - Pentium-520J + - Pentium-517 + - + header: '1 Threads' + members: + - Pentium-519K + - Pentium-519 + - Pentium-516 + - Pentium-515 + - Pentium-511 + - Pentium-506 + - Pentium-505J + - Pentium-505 + - Pentium-355 + - Pentium-351 + - Pentium-350J + - Pentium-346 + - Pentium-345J + - Pentium-345 + - Pentium-341 + - Pentium-340J + - Pentium-336 + - Pentium-335J + - Pentium-335 + - Pentium-331 + - Pentium-330J + - Pentium-326 + - Pentium-325J + - Pentium-325 + - Pentium-320 + - Pentium-315J + - Pentium-315 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '90 nm' + 'Release Date': 'Q2 2004' + Sockets: + - PPGA478 + - PLGA478 + - PLGA775 + - PPGA775 +name: Desktop-Prescott diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml new file mode 100644 index 00000000..d6ee37c6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2004' + Socket: PPGA478 + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 315' +name: Pentium-315 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml new file mode 100644 index 00000000..8f102b7b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2004' + Socket: PPGA478 + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 315J' +name: Pentium-315J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml new file mode 100644 index 00000000..d2ba380f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': '2004-02-14' + Socket: 'H-PBGA478, H-PBGA479, PPGA478' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 320' +name: Pentium-320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml new file mode 100644 index 00000000..4e94d936 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2004' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 325' +name: Pentium-325 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml new file mode 100644 index 00000000..ed658c88 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: PLGA775 + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 325J' +name: Pentium-325J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml new file mode 100644 index 00000000..3f1a4582 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2004' + Socket: 'PLGA478, PLGA775' + 'Other Extensions': + - x86-64 + - x86-64 + AES: false +isPart: true +type: CPU +humanName: 'Pentium 326' +name: Pentium-326 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml new file mode 100644 index 00000000..99912ed7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 330J' +name: Pentium-330J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml new file mode 100644 index 00000000..8aca037a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 331' +name: Pentium-331 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml new file mode 100644 index 00000000..5f33edd8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2004' + Socket: 'PLGA478, PPGA478' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 335' +name: Pentium-335 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml new file mode 100644 index 00000000..1389200a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 335J' +name: Pentium-335J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml new file mode 100644 index 00000000..9dc0646b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 336' +name: Pentium-336 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml new file mode 100644 index 00000000..75e5739c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: 'PLGA478, PLGA775, PPGA478' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 340J' +name: Pentium-340J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml new file mode 100644 index 00000000..ce8eb37c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': '2005-07-29' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 341' +name: Pentium-341 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml new file mode 100644 index 00000000..a9c6d546 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: PPGA478 + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 345' +name: Pentium-345 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml new file mode 100644 index 00000000..f594e99c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: 'PLGA478, PLGA775, PPGA478' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 345J' +name: Pentium-345J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml new file mode 100644 index 00000000..b61f6120 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 346' +name: Pentium-346 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml new file mode 100644 index 00000000..9f75b5e1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '73 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: 'PLGA478, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 350J' +name: Pentium-350J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml new file mode 100644 index 00000000..582874e4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: 'PLGA478, PLGA775' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 351' +name: Pentium-351 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml new file mode 100644 index 00000000..1ed112e1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '256 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 355' +name: Pentium-355 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml new file mode 100644 index 00000000..48c842d1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 505' +name: Pentium-505 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml new file mode 100644 index 00000000..3fb886a0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q1 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 505J' +name: Pentium-505J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml new file mode 100644 index 00000000..59d1f789 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 506' +name: Pentium-506 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml new file mode 100644 index 00000000..72c37d77 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2005' + Socket: 'PLGA775, PPGA478' + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 511' +name: Pentium-511 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml new file mode 100644 index 00000000..d059e932 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 515' +name: Pentium-515 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml new file mode 100644 index 00000000..be4489f9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 516' +name: Pentium-516 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml new file mode 100644 index 00000000..8cc3e06c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 517' +name: Pentium-517 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml new file mode 100644 index 00000000..2c70270f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 519' +name: Pentium-519 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml new file mode 100644 index 00000000..ffe3c0d3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 519K' +name: Pentium-519K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml new file mode 100644 index 00000000..336b3f14 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 520J' +name: Pentium-520J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml new file mode 100644 index 00000000..daeaa3c3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 521' +name: Pentium-521 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml new file mode 100644 index 00000000..8693730a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q2 2006' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 524' +name: Pentium-524 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml new file mode 100644 index 00000000..56969b25 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2004' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 530J' +name: Pentium-530J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml new file mode 100644 index 00000000..7d7af853 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': '2004-06-25' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 531' +name: Pentium-531 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml new file mode 100644 index 00000000..d9939b5e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 540J' +name: Pentium-540J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml new file mode 100644 index 00000000..b2dc8349 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2004' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 541' +name: Pentium-541 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml new file mode 100644 index 00000000..7026cacd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 550J' +name: Pentium-550J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml new file mode 100644 index 00000000..bcd235e3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': '2004-06-25' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 551' +name: Pentium-551 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml new file mode 100644 index 00000000..dc2b5574 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + Socket: PLGA775 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 560J' +name: Pentium-560J diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml new file mode 100644 index 00000000..6dec9710 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 561' +name: Pentium-561 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml new file mode 100644 index 00000000..9d938015 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '112 mm' + 'Release Date': 'Q3 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 571' +name: Pentium-571 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml new file mode 100644 index 00000000..92537582 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 620' +name: Pentium-620 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml new file mode 100644 index 00000000..c0d265d0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 630' +name: Pentium-630 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml new file mode 100644 index 00000000..22b9be05 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q1 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 640' +name: Pentium-640 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml new file mode 100644 index 00000000..995e00f7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '84 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q1 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 650' +name: Pentium-650 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml new file mode 100644 index 00000000..85fc0c53 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q1 2005' + Socket: 'PLGA775, PPGA775' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 660' +name: Pentium-660 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml new file mode 100644 index 00000000..77377cec --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 662' +name: Pentium-662 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml new file mode 100644 index 00000000..fe4cc366 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q2 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 670' +name: Pentium-670 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml new file mode 100644 index 00000000..3531161b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Prescott + Market: Desktop + Lithography: '90 nm' + TDP: '115 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '135 mm' + 'Release Date': 'Q4 2005' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 672' +name: Pentium-672 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml new file mode 100644 index 00000000..d9005b1d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml @@ -0,0 +1,27 @@ +humanName: Presler +sections: + - + header: '4 Threads' + members: + - Pentium-965 + - Pentium-955 + - + header: '2 Threads' + members: + - Pentium-960 + - Pentium-950 + - Pentium-945 + - Pentium-940 + - Pentium-935 + - Pentium-930 + - Pentium-920 + - Pentium-915 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q1 2006' + Sockets: + - PLGA775 +name: Desktop-Presler diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml new file mode 100644 index 00000000..ed779dbb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q3 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 915' +name: Pentium-915 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml new file mode 100644 index 00000000..b08e2c81 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 920' +name: Pentium-920 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml new file mode 100644 index 00000000..05b2121c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 930' +name: Pentium-930 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml new file mode 100644 index 00000000..16e8a05a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': '2007-01-21' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 935' +name: Pentium-935 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml new file mode 100644 index 00000000..f4a5c434 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 940' +name: Pentium-940 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml new file mode 100644 index 00000000..37ee9d43 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q3 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 945' +name: Pentium-945 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml new file mode 100644 index 00000000..4d0d3ded --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 950' +name: Pentium-950 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml new file mode 100644 index 00000000..a2220333 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Base Frequency': '3.46 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 955' +name: Pentium-955 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml new file mode 100644 index 00000000..17476dcd --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q2 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 960' +name: Pentium-960 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml new file mode 100644 index 00000000..44a645e9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Presler + Market: Desktop + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Base Frequency': '3.73 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '162 mm' + 'Release Date': 'Q1 2006' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 965' +name: Pentium-965 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml new file mode 100644 index 00000000..f417a470 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml @@ -0,0 +1,21 @@ +humanName: 'Sandy Bridge E' +sections: + - + header: '9 - 16 Threads' + members: + - Core-i7-3970X + - Core-i7-3960X + - Core-i7-3930K + - + header: '8 Threads' + members: + - Core-i7-3820 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-11-14' + Sockets: + - LGA2011 +name: Desktop-Sandy-Bridge-E diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml new file mode 100644 index 00000000..62e84eaa --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge E' + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-02-13' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 613 + 'Geekbench Multi-Core Score': 2338 + 'UserBenchmark CPU Score': '69.5' +isPart: true +type: CPU +humanName: 'Core i7-3820' +name: Core-i7-3820 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml new file mode 100644 index 00000000..6dcce3d1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge E' + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-11-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 603 + 'Geekbench Multi-Core Score': 2997 + 'UserBenchmark CPU Score': '74.4' +isPart: true +type: CPU +humanName: 'Core i7-3930K' +name: Core-i7-3930K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml new file mode 100644 index 00000000..3b76933e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge E' + Market: Desktop + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2011-11-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 676 + 'Geekbench Multi-Core Score': 3369 + 'UserBenchmark CPU Score': '77.7' +isPart: true +type: CPU +humanName: 'Core i7-3960X' +name: Core-i7-3960X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml new file mode 100644 index 00000000..f4e75014 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge E' + Market: Desktop + Lithography: '32 nm' + TDP: '150 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-11-12' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 610 + 'Geekbench Multi-Core Score': 3137 + 'UserBenchmark CPU Score': '77.9' +isPart: true +type: CPU +humanName: 'Core i7-3970X' +name: Core-i7-3970X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml new file mode 100644 index 00000000..0be92c44 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml @@ -0,0 +1,75 @@ +humanName: 'Sandy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-2700K + - Core-i7-2600S + - Core-i7-2600K + - Core-i7-2600 + - + header: '4 Threads' + members: + - Core-i5-2550K + - Core-i5-2500T + - Core-i5-2500S + - Core-i5-2500K + - Core-i5-2500 + - Core-i5-2450P + - Core-i5-2405S + - Core-i5-2400S + - Core-i5-2400 + - Core-i5-2390T + - Core-i5-2380P + - Core-i5-2320 + - Core-i5-2310 + - Core-i5-2300 + - Core-i3-2130 + - Core-i3-2125 + - Core-i3-2120T + - Core-i3-2120 + - Core-i3-2105 + - Core-i3-2102 + - Core-i3-2100T + - Core-i3-2100 + - + header: '2 Threads' + members: + - Pentium-G870 + - Pentium-G860T + - Pentium-G860 + - Pentium-G850 + - Pentium-G840 + - Pentium-G645T + - Pentium-G645 + - Pentium-G640T + - Pentium-G640 + - Pentium-G632 + - Pentium-G630T + - Pentium-G630 + - Pentium-G622 + - Pentium-G620T + - Pentium-G620 + - Pentium-G555 + - Pentium-G550T + - Pentium-G550 + - Pentium-G540T + - Pentium-G540 + - Pentium-G530T + - Pentium-G530 + - Pentium-G470 + - Pentium-G465 + - Pentium-G460 + - + header: '1 Threads' + members: + - Pentium-G440 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-01-09' + Sockets: + - LGA1155 +name: Desktop-Sandy-Bridge diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml new file mode 100644 index 00000000..3dfecf26 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 477 + 'Geekbench Multi-Core Score': 977 + 'UserBenchmark CPU Score': '50.9' +isPart: true +type: CPU +humanName: 'Core i3-2100' +name: Core-i3-2100 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml new file mode 100644 index 00000000..80cf755c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i3-2100T' +name: Core-i3-2100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml new file mode 100644 index 00000000..d2383031 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i3-2102' +name: Core-i3-2102 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml new file mode 100644 index 00000000..2c14ac3c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 491 + 'Geekbench Multi-Core Score': 962 + 'UserBenchmark CPU Score': '58.5' +isPart: true +type: CPU +humanName: 'Core i3-2105' +name: Core-i3-2105 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml new file mode 100644 index 00000000..bbe530c4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 504 + 'Geekbench Multi-Core Score': 1036 + 'UserBenchmark CPU Score': '50.7' +isPart: true +type: CPU +humanName: 'Core i3-2120' +name: Core-i3-2120 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml new file mode 100644 index 00000000..c9c7e3cb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '53.3' +isPart: true +type: CPU +humanName: 'Core i3-2120T' +name: Core-i3-2120T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml new file mode 100644 index 00000000..9a0c3e11 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '60.3' +isPart: true +type: CPU +humanName: 'Core i3-2125' +name: Core-i3-2125 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml new file mode 100644 index 00000000..fecc2fd5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 529 + 'Geekbench Multi-Core Score': 1073 + 'UserBenchmark CPU Score': '57.5' +isPart: true +type: CPU +humanName: 'Core i3-2130' +name: Core-i3-2130 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml new file mode 100644 index 00000000..8d43a89c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 511 + 'Geekbench Multi-Core Score': 1495 + 'UserBenchmark CPU Score': '64' +isPart: true +type: CPU +humanName: 'Core i5-2300' +name: Core-i5-2300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml new file mode 100644 index 00000000..1c444024 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-05-22' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 517 + 'Geekbench Multi-Core Score': 1495 + 'UserBenchmark CPU Score': '64.8' +isPart: true +type: CPU +humanName: 'Core i5-2310' +name: Core-i5-2310 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml new file mode 100644 index 00000000..3798c070 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-09-04' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 523 + 'Geekbench Multi-Core Score': 1486 + 'UserBenchmark CPU Score': '63.9' +isPart: true +type: CPU +humanName: 'Core i5-2320' +name: Core-i5-2320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml new file mode 100644 index 00000000..67d2a63c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-01-29' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i5-2380P' +name: Core-i5-2380P diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml new file mode 100644 index 00000000..481bd712 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i5-2390T' +name: Core-i5-2390T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml new file mode 100644 index 00000000..66e2bb86 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 559 + 'Geekbench Multi-Core Score': 1625 + 'UserBenchmark CPU Score': '60.6' +isPart: true +type: CPU +humanName: 'Core i5-2400' +name: Core-i5-2400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml new file mode 100644 index 00000000..f39aa76d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 500 + 'Geekbench Multi-Core Score': 1365 + 'UserBenchmark CPU Score': '60.4' +isPart: true +type: CPU +humanName: 'Core i5-2400S' +name: Core-i5-2400S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml new file mode 100644 index 00000000..bcc569d0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-05-22' + Socket: 'FCLGA1155, LGA1155' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 518 + 'Geekbench Multi-Core Score': 1381 + 'UserBenchmark CPU Score': '63.9' +isPart: true +type: CPU +humanName: 'Core i5-2405S' +name: Core-i5-2405S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml new file mode 100644 index 00000000..a6a4533d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-01-29' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '70.9' +isPart: true +type: CPU +humanName: 'Core i5-2450P' +name: Core-i5-2450P diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml new file mode 100644 index 00000000..267655d0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 585 + 'Geekbench Multi-Core Score': 1717 + 'UserBenchmark CPU Score': '62.9' +isPart: true +type: CPU +humanName: 'Core i5-2500' +name: Core-i5-2500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml new file mode 100644 index 00000000..2e904f5c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 636 + 'Geekbench Multi-Core Score': 1907 + '3DMark Fire Strike Physics Score': 1575 + 'UserBenchmark CPU Score': '65.9' +isPart: true +type: CPU +humanName: 'Core i5-2500K' +name: Core-i5-2500K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml new file mode 100644 index 00000000..d71b2d81 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 605 + 'Geekbench Multi-Core Score': 1527 + 'UserBenchmark CPU Score': '64.3' +isPart: true +type: CPU +humanName: 'Core i5-2500S' +name: Core-i5-2500S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml new file mode 100644 index 00000000..c6db33bb --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' +isPart: true +type: CPU +humanName: 'Core i5-2500T' +name: Core-i5-2500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml new file mode 100644 index 00000000..2a5be9a5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-01-29' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 581 + 'Geekbench Multi-Core Score': 1661 + 'UserBenchmark CPU Score': '73.9' +isPart: true +type: CPU +humanName: 'Core i5-2550K' +name: Core-i5-2550K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml new file mode 100644 index 00000000..504ea039 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'Geekbench Single-Core Score': 609 + 'Geekbench Multi-Core Score': 2040 + 'UserBenchmark CPU Score': '67.1' +isPart: true +type: CPU +humanName: 'Core i7-2600' +name: Core-i7-2600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml new file mode 100644 index 00000000..22cec1a8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'Geekbench Single-Core Score': 662 + 'Geekbench Multi-Core Score': 2310 + '3DMark Fire Strike Physics Score': 1870 + 'UserBenchmark CPU Score': '70.6' +isPart: true +type: CPU +humanName: 'Core i7-2600K' +name: Core-i7-2600K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml new file mode 100644 index 00000000..c038d6ed --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-01-09' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'Geekbench Single-Core Score': 595 + 'Geekbench Multi-Core Score': 1831 + 'UserBenchmark CPU Score': '67' +isPart: true +type: CPU +humanName: 'Core i7-2600S' +name: Core-i7-2600S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml new file mode 100644 index 00000000..1418d83d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-10-24' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'Geekbench Single-Core Score': 664 + 'Geekbench Multi-Core Score': 2303 + 'UserBenchmark CPU Score': '73' +isPart: true +type: CPU +humanName: 'Core i7-2700K' +name: Core-i7-2700K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml new file mode 100644 index 00000000..108fec9c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G440' +name: Pentium-G440 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml new file mode 100644 index 00000000..e95b20c4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2011-12-11' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G460' +name: Pentium-G460 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml new file mode 100644 index 00000000..f23142f9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G465' +name: Pentium-G465 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml new file mode 100644 index 00000000..aaf3738d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2013-06-09' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G470' +name: Pentium-G470 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml new file mode 100644 index 00000000..a62cebc8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G530' +name: Pentium-G530 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml new file mode 100644 index 00000000..1ec2bd49 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G530T' +name: Pentium-G530T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml new file mode 100644 index 00000000..cb9ec4f3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G540' +name: Pentium-G540 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml new file mode 100644 index 00000000..858acfec --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G540T' +name: Pentium-G540T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml new file mode 100644 index 00000000..13f7bff8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G550' +name: Pentium-G550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml new file mode 100644 index 00000000..87ee3d5b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G550T' +name: Pentium-G550T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml new file mode 100644 index 00000000..6e16018b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium G555' +name: Pentium-G555 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml new file mode 100644 index 00000000..72d83699 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 390 + 'Geekbench Multi-Core Score': 701 + 'UserBenchmark CPU Score': '46.4' +isPart: true +type: CPU +humanName: 'Pentium G620' +name: Pentium-G620 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml new file mode 100644 index 00000000..24c0d480 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G620T' +name: Pentium-G620T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml new file mode 100644 index 00000000..a98ae74e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G622' +name: Pentium-G622 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml new file mode 100644 index 00000000..079c0f76 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 395 + 'Geekbench Multi-Core Score': 689 + 'UserBenchmark CPU Score': '47.3' +isPart: true +type: CPU +humanName: 'Pentium G630' +name: Pentium-G630 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml new file mode 100644 index 00000000..c63db9f0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G630T' +name: Pentium-G630T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml new file mode 100644 index 00000000..b33253e1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G632' +name: Pentium-G632 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml new file mode 100644 index 00000000..431494d3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '48.3' +isPart: true +type: CPU +humanName: 'Pentium G640' +name: Pentium-G640 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml new file mode 100644 index 00000000..c36bf254 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G640T' +name: Pentium-G640T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml new file mode 100644 index 00000000..7e8c94ef --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 453 + 'Geekbench Multi-Core Score': 789 + 'UserBenchmark CPU Score': '49.9' +isPart: true +type: CPU +humanName: 'Pentium G645' +name: Pentium-G645 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml new file mode 100644 index 00000000..e60d4e4d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-02' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G645T' +name: Pentium-G645T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml new file mode 100644 index 00000000..f6d4bfba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 444 + 'Geekbench Multi-Core Score': 736 + 'UserBenchmark CPU Score': '51.3' +isPart: true +type: CPU +humanName: 'Pentium G840' +name: Pentium-G840 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml new file mode 100644 index 00000000..3c489c0a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 440 + 'Geekbench Multi-Core Score': 754 + 'UserBenchmark CPU Score': '50.9' +isPart: true +type: CPU +humanName: 'Pentium G850' +name: Pentium-G850 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml new file mode 100644 index 00000000..990a9316 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-09-04' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 484 + 'Geekbench Multi-Core Score': 771 + 'UserBenchmark CPU Score': '51.4' +isPart: true +type: CPU +humanName: 'Pentium G860' +name: Pentium-G860 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml new file mode 100644 index 00000000..41d8c7b4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium G860T' +name: Pentium-G860T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml new file mode 100644 index 00000000..c753648a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Desktop + Lithography: '32 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-03' + Socket: FCLGA1155 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '52.4' +isPart: true +type: CPU +humanName: 'Pentium G870' +name: Pentium-G870 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml new file mode 100644 index 00000000..5f0c8b7f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml @@ -0,0 +1,71 @@ +humanName: Skylake +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-W-3175X + - Core-i9-9980XE + - Core-i9-9960X + - Core-i9-9940X + - Core-i9-9920X + - Core-i9-9900X + - Core-i9-9820X + - Core-i9-7980XE + - Core-i9-7960X + - Core-i9-7940X + - Core-i9-7920X + - Core-i9-7900X + - + header: '9 - 16 Threads' + members: + - Core-i7-9800X + - Core-i7-7820X + - Core-i7-7800X + - + header: '8 Threads' + members: + - Core-i7-6785R + - Core-i7-6700T + - Core-i7-6700K + - Core-i7-6700 + - + header: '4 Threads' + members: + - Core-i5-6685R + - Core-i5-6600T + - Core-i5-6600K + - Core-i5-6600 + - Core-i5-6585R + - Core-i5-6500T + - Core-i5-6500 + - Core-i5-6402P + - Core-i5-6400T + - Core-i5-6400 + - Core-i3-6320 + - Core-i3-6300T + - Core-i3-6300 + - Core-i3-6100T + - Core-i3-6100 + - Core-i3-6098P + - + header: '2 Threads' + members: + - Pentium-G4520 + - Pentium-G4500T + - Pentium-G4500 + - Pentium-G4400T + - Pentium-G4400 + - Pentium-G3920 + - Pentium-G3900T + - Pentium-G3900 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-08-05' + Sockets: + - LGA1151 + - LGA2066 + - LGA3647 +name: Desktop-Skylake diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml new file mode 100644 index 00000000..2ced542a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-12-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1122 + 'Geekbench Multi-Core Score': 2224 + 'UserBenchmark CPU Score': '62' +isPart: true +type: CPU +humanName: 'Core i3-6098P' +name: Core-i3-6098P diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml new file mode 100644 index 00000000..2d4646d0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1172 + 'Geekbench Multi-Core Score': 2284 + 'UserBenchmark CPU Score': '55.4' +isPart: true +type: CPU +humanName: 'Core i3-6100' +name: Core-i3-6100 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml new file mode 100644 index 00000000..21150418 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1021 + 'Geekbench Multi-Core Score': 2059 + 'UserBenchmark CPU Score': '57.6' +isPart: true +type: CPU +humanName: 'Core i3-6100T' +name: Core-i3-6100T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml new file mode 100644 index 00000000..8e8e1d38 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '66.7' +isPart: true +type: CPU +humanName: 'Core i3-6300' +name: Core-i3-6300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml new file mode 100644 index 00000000..7555a437 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1106 + 'Geekbench Multi-Core Score': 2310 + 'UserBenchmark CPU Score': '65.2' +isPart: true +type: CPU +humanName: 'Core i3-6300T' +name: Core-i3-6300T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml new file mode 100644 index 00000000..a729a76b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1226 + 'Geekbench Multi-Core Score': 2522 + 'UserBenchmark CPU Score': '69.4' +isPart: true +type: CPU +humanName: 'Core i3-6320' +name: Core-i3-6320 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml new file mode 100644 index 00000000..26e16881 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1089 + 'Geekbench Multi-Core Score': 2980 + 'UserBenchmark CPU Score': '60.8' +isPart: true +type: CPU +humanName: 'Core i5-6400' +name: Core-i5-6400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml new file mode 100644 index 00000000..8ca157df --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 918 + 'Geekbench Multi-Core Score': 2491 +isPart: true +type: CPU +humanName: 'Core i5-6400T' +name: Core-i5-6400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml new file mode 100644 index 00000000..d38d2752 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-12-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1082 + 'Geekbench Multi-Core Score': 2989 +isPart: true +type: CPU +humanName: 'Core i5-6402P' +name: Core-i5-6402P diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml new file mode 100644 index 00000000..22138870 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1146 + 'Geekbench Multi-Core Score': 3152 + '3DMark Fire Strike Physics Score': 2126 + 'UserBenchmark CPU Score': '63.6' +isPart: true +type: CPU +humanName: 'Core i5-6500' +name: Core-i5-6500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml new file mode 100644 index 00000000..5dd4a0f4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1011 + 'Geekbench Multi-Core Score': 2751 +isPart: true +type: CPU +humanName: 'Core i5-6500T' +name: Core-i5-6500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml new file mode 100644 index 00000000..c081ca1a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-05-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6585R' +name: Core-i5-6585R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml new file mode 100644 index 00000000..9306ef9a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1268 + 'Geekbench Multi-Core Score': 3488 + 'UserBenchmark CPU Score': '67.6' +isPart: true +type: CPU +humanName: 'Core i5-6600' +name: Core-i5-6600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml new file mode 100644 index 00000000..0d53b4f8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-08-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1384 + 'Geekbench Multi-Core Score': 3952 + '3DMark Fire Strike Physics Score': 2600 + 'UserBenchmark CPU Score': '72.4' +isPart: true +type: CPU +humanName: 'Core i5-6600K' +name: Core-i5-6600K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml new file mode 100644 index 00000000..0185e055 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1168 + 'Geekbench Multi-Core Score': 3198 + 'UserBenchmark CPU Score': '72.9' +isPart: true +type: CPU +humanName: 'Core i5-6600T' +name: Core-i5-6600T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml new file mode 100644 index 00000000..e727a9e7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-05-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6685R' +name: Core-i5-6685R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml new file mode 100644 index 00000000..6abd0a14 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1262 + 'Geekbench Multi-Core Score': 4060 + '3DMark Fire Strike Physics Score': 2834 + 'UserBenchmark CPU Score': '72.3' +isPart: true +type: CPU +humanName: 'Core i7-6700' +name: Core-i7-6700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml new file mode 100644 index 00000000..62cb78a6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '91 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-08-05' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1443 + 'Geekbench Multi-Core Score': 4815 + '3DMark Fire Strike Physics Score': 3252 + 'UserBenchmark CPU Score': '80.8' +isPart: true +type: CPU +humanName: 'Core i7-6700K' +name: Core-i7-6700K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml new file mode 100644 index 00000000..5cb8b4b9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1169 + 'Geekbench Multi-Core Score': 3505 + 'UserBenchmark CPU Score': '69.9' +isPart: true +type: CPU +humanName: 'Core i7-6700T' +name: Core-i7-6700T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml new file mode 100644 index 00000000..9a558e6b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6785R' +name: Core-i7-6785R diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml new file mode 100644 index 00000000..19a8bc2d --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-05-30' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1310 + 'Geekbench Multi-Core Score': 6066 + 'UserBenchmark CPU Score': '77.9' +isPart: true +type: CPU +humanName: 'Core i7-7800X' +name: Core-i7-7800X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml new file mode 100644 index 00000000..4f0bfe51 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-05-30' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1375 + 'Geekbench Multi-Core Score': 7573 + '3DMark Fire Strike Physics Score': 5930 + 'UserBenchmark CPU Score': '80.1' +isPart: true +type: CPU +humanName: 'Core i7-7820X' +name: Core-i7-7820X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml new file mode 100644 index 00000000..6b93bdaf --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1381 + 'Geekbench Multi-Core Score': 7592 + 'UserBenchmark CPU Score': '82.9' +isPart: true +type: CPU +humanName: 'Core i7-9800X' +name: Core-i7-9800X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml new file mode 100644 index 00000000..2b5cdc74 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2017-05-30' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1417 + 'Geekbench Multi-Core Score': 8964 + '3DMark Fire Strike Physics Score': 7329 + 'UserBenchmark CPU Score': '81.9' +isPart: true +type: CPU +humanName: 'Core i9-7900X' +name: Core-i9-7900X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml new file mode 100644 index 00000000..98fd5e42 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-08-07' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1331 + 'Geekbench Multi-Core Score': 8895 + 'UserBenchmark CPU Score': '81.6' +isPart: true +type: CPU +humanName: 'Core i9-7920X' +name: Core-i9-7920X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml new file mode 100644 index 00000000..6c671de6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + TDP: '165 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-09-25' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1339 + 'Geekbench Multi-Core Score': 9675 + 'UserBenchmark CPU Score': '83.3' +isPart: true +type: CPU +humanName: 'Core i9-7940X' +name: Core-i9-7940X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml new file mode 100644 index 00000000..f53b72b4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + TDP: '165 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-09-25' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1411 + 'Geekbench Multi-Core Score': 10302 + 'UserBenchmark CPU Score': '83.2' +isPart: true +type: CPU +humanName: 'Core i9-7960X' +name: Core-i9-7960X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml new file mode 100644 index 00000000..6c3aeed1 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-09-25' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1545 + 'Geekbench Multi-Core Score': 12175 + '3DMark Fire Strike Physics Score': 11005 + 'UserBenchmark CPU Score': '80.1' +isPart: true +type: CPU +humanName: 'Core i9-7980XE' +name: Core-i9-7980XE diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml new file mode 100644 index 00000000..06045dc6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'UserBenchmark CPU Score': '81.9' +isPart: true +type: CPU +humanName: 'Core i9-9820X' +name: Core-i9-9820X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml new file mode 100644 index 00000000..4cca6a71 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1430 + 'Geekbench Multi-Core Score': 9029 + 'UserBenchmark CPU Score': '83.7' +isPart: true +type: CPU +humanName: 'Core i9-9900X' +name: Core-i9-9900X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml new file mode 100644 index 00000000..7bcac700 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1452 + 'Geekbench Multi-Core Score': 10377 + 'UserBenchmark CPU Score': '86.4' +isPart: true +type: CPU +humanName: 'Core i9-9920X' +name: Core-i9-9920X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml new file mode 100644 index 00000000..5c59a661 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1387 + 'Geekbench Multi-Core Score': 10152 + 'UserBenchmark CPU Score': '85.4' +isPart: true +type: CPU +humanName: 'Core i9-9940X' +name: Core-i9-9940X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml new file mode 100644 index 00000000..ee75d092 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1387 + 'Geekbench Multi-Core Score': 10629 + 'UserBenchmark CPU Score': '84.9' +isPart: true +type: CPU +humanName: 'Core i9-9960X' +name: Core-i9-9960X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml new file mode 100644 index 00000000..e562d0c8 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2018-10-08' + Socket: FCLGA2066 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1392 + 'Geekbench Multi-Core Score': 10798 + 'UserBenchmark CPU Score': '83' +isPart: true +type: CPU +humanName: 'Core i9-9980XE' +name: Core-i9-9980XE diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml new file mode 100644 index 00000000..5c0cb69f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3900' +name: Pentium-G3900 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml new file mode 100644 index 00000000..32e47894 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3900T' +name: Pentium-G3900T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml new file mode 100644 index 00000000..e0b5519e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3920' +name: Pentium-G3920 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml new file mode 100644 index 00000000..3ac82880 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '54 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 692 + 'Geekbench Multi-Core Score': 1187 + 'UserBenchmark CPU Score': '47.5' +isPart: true +type: CPU +humanName: 'Pentium G4400' +name: Pentium-G4400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml new file mode 100644 index 00000000..91f86ed6 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 615 + 'Geekbench Multi-Core Score': 1069 +isPart: true +type: CPU +humanName: 'Pentium G4400T' +name: Pentium-G4400T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml new file mode 100644 index 00000000..24159e4e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '56.3' +isPart: true +type: CPU +humanName: 'Pentium G4500' +name: Pentium-G4500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml new file mode 100644 index 00000000..111f31d2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G4500T' +name: Pentium-G4500T diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml new file mode 100644 index 00000000..c0bd4f29 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '51 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '60.1' +isPart: true +type: CPU +humanName: 'Pentium G4520' +name: Pentium-G4520 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml new file mode 100644 index 00000000..000c9228 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Desktop + Lithography: '14 nm' + TDP: '255 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-01-30' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1417 + 'Geekbench Multi-Core Score': 12107 +isPart: true +type: CPU +humanName: 'Xeon W-3175X' +name: Xeon-W-3175X diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml new file mode 100644 index 00000000..659482a7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml @@ -0,0 +1,21 @@ +humanName: Smithfield +sections: + - + header: '4 Threads' + members: + - Pentium-840 + - + header: '2 Threads' + members: + - Pentium-830 + - Pentium-820 + - Pentium-805 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '90 nm' + 'Release Date': 'Q1 2005' + Sockets: + - PLGA775 +name: Desktop-Smithfield diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml new file mode 100644 index 00000000..3faab41a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Smithfield + Market: Desktop + Lithography: '90 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '206 mm' + 'Release Date': 'Q1 2005' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 805' +name: Pentium-805 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml new file mode 100644 index 00000000..3b1170c5 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Smithfield + Market: Desktop + Lithography: '90 nm' + TDP: '95 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '206 mm' + 'Release Date': 'Q2 2005' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 820' +name: Pentium-820 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml new file mode 100644 index 00000000..f62b3d8f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Smithfield + Market: Desktop + Lithography: '90 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '206 mm' + 'Release Date': 'Q2 2005' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 830' +name: Pentium-830 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml new file mode 100644 index 00000000..8d3b049e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Smithfield + Market: Desktop + Lithography: '90 nm' + TDP: '130 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '206 mm' + 'Release Date': 'Q2 2005' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 840' +name: Pentium-840 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml new file mode 100644 index 00000000..c5ed268a --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml @@ -0,0 +1,41 @@ +humanName: Wolfdale +sections: + - + header: '2 Threads' + members: + - Pentium-E6800 + - Pentium-E6700 + - Pentium-E6600 + - Pentium-E6500K + - Pentium-E6500 + - Pentium-E6300 + - Pentium-E5800 + - Pentium-E5700 + - Pentium-E5500 + - Pentium-E5400 + - Pentium-E5300 + - Pentium-E5200 + - Pentium-E3500 + - Pentium-E3400 + - Pentium-E3300 + - Pentium-E3200 + - Core-E8600 + - Core-E8500 + - Core-E8400 + - Core-E8300 + - Core-E8200 + - Core-E8190 + - Core-E7600 + - Core-E7500 + - Core-E7400 + - Core-E7300 + - Core-E7200 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-01-20' + Sockets: + - LGA775 +name: Desktop-Wolfdale diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml new file mode 100644 index 00000000..479c4c1e --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-04-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E7200' +name: Core-E7200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml new file mode 100644 index 00000000..4b7138ba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E7300' +name: Core-E7300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml new file mode 100644 index 00000000..124aa1f2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-10-19' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E7400' +name: Core-E7400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml new file mode 100644 index 00000000..fca0d1d0 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-01-18' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E7500' +name: Core-E7500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml new file mode 100644 index 00000000..4fca4aa4 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-06-03' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E7600' +name: Core-E7600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml new file mode 100644 index 00000000..48ccca13 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8190' +name: Core-E8190 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml new file mode 100644 index 00000000..aea80b03 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8200' +name: Core-E8200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml new file mode 100644 index 00000000..5b5c11c3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-04-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8300' +name: Core-E8300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml new file mode 100644 index 00000000..195e0975 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8400' +name: Core-E8400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml new file mode 100644 index 00000000..ddf10ee2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.16 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-20' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8500' +name: Core-E8500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml new file mode 100644 index 00000000..2c38aa3c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core E8600' +name: Core-E8600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml new file mode 100644 index 00000000..0e6141c7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2009-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E3200' +name: Pentium-E3200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml new file mode 100644 index 00000000..9012e96f --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2009-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E3300' +name: Pentium-E3300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml new file mode 100644 index 00000000..0b9d42f7 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': 'Q1 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E3400' +name: Pentium-E3400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml new file mode 100644 index 00000000..f0918c4b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': 'Q3 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Pentium E3500' +name: Pentium-E3500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml new file mode 100644 index 00000000..a904d290 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 272 + 'Geekbench Multi-Core Score': 442 + 'UserBenchmark CPU Score': '36' +isPart: true +type: CPU +humanName: 'Pentium E5200' +name: Pentium-E5200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml new file mode 100644 index 00000000..2f6b5612 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-12-01' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '35.9' +isPart: true +type: CPU +humanName: 'Pentium E5300' +name: Pentium-E5300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml new file mode 100644 index 00000000..200808ac --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-01-18' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 252 + 'Geekbench Multi-Core Score': 437 + 'UserBenchmark CPU Score': '36.2' +isPart: true +type: CPU +humanName: 'Pentium E5400' +name: Pentium-E5400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml new file mode 100644 index 00000000..f5ee6961 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': 'Q2 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 283 + 'Geekbench Multi-Core Score': 460 + 'UserBenchmark CPU Score': '36.6' +isPart: true +type: CPU +humanName: 'Pentium E5500' +name: Pentium-E5500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml new file mode 100644 index 00000000..be9356d3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': 'Q3 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 343 + 'Geekbench Multi-Core Score': 553 + 'UserBenchmark CPU Score': '36.5' +isPart: true +type: CPU +humanName: 'Pentium E5700' +name: Pentium-E5700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml new file mode 100644 index 00000000..e1b68f8b --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': 'Q4 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 365 + 'Geekbench Multi-Core Score': 568 + 'UserBenchmark CPU Score': '37.5' +isPart: true +type: CPU +humanName: 'Pentium E5800' +name: Pentium-E5800 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml new file mode 100644 index 00000000..e8c35910 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-05-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '37.8' +isPart: true +type: CPU +humanName: 'Pentium E6300' +name: Pentium-E6300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml new file mode 100644 index 00000000..1c3a62ab --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '39.2' +isPart: true +type: CPU +humanName: 'Pentium E6500' +name: Pentium-E6500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml new file mode 100644 index 00000000..49324c2c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2009-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium E6500K' +name: Pentium-E6500K diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml new file mode 100644 index 00000000..1c4454ee --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': 'Q1 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '39' +isPart: true +type: CPU +humanName: 'Pentium E6600' +name: Pentium-E6600 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml new file mode 100644 index 00000000..22b43b17 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': '2010-06-01' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '39.6' +isPart: true +type: CPU +humanName: 'Pentium E6700' +name: Pentium-E6700 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml new file mode 100644 index 00000000..3df8a222 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '82 mm' + 'Release Date': 'Q3 2010' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '40.7' +isPart: true +type: CPU +humanName: 'Pentium E6800' +name: Pentium-E6800 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml new file mode 100644 index 00000000..29684110 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml @@ -0,0 +1,33 @@ +humanName: Yorkfield +sections: + - + header: '4 Threads' + members: + - Core-QX9775 + - Core-QX9770 + - Core-QX9650 + - Core-Q9650 + - Core-Q9550S + - Core-Q9550 + - Core-Q9505S + - Core-Q9505 + - Core-Q9500 + - Core-Q9450 + - Core-Q9400S + - Core-Q9400 + - Core-Q9300 + - Core-Q8400S + - Core-Q8400 + - Core-Q8300 + - Core-Q8200S + - Core-Q8200 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2007-11-12' + Sockets: + - LGA775 + - LGA771 +name: Desktop-Yorkfield diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml new file mode 100644 index 00000000..8889de84 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q8200' +name: Core-Q8200 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml new file mode 100644 index 00000000..38fca4ce --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-01-18' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q8200S' +name: Core-Q8200S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml new file mode 100644 index 00000000..6fbdc004 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-12-01' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q8300' +name: Core-Q8300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml new file mode 100644 index 00000000..5d9050a2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-04-25' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q8400' +name: Core-Q8400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml new file mode 100644 index 00000000..01db6390 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-04-25' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q8400S' +name: Core-Q8400S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml new file mode 100644 index 00000000..c8cf6b94 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9300' +name: Core-Q9300 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml new file mode 100644 index 00000000..516e1a51 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9400' +name: Core-Q9400 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml new file mode 100644 index 00000000..6d2c8c2c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-01-18' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9400S' +name: Core-Q9400S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml new file mode 100644 index 00000000..444d4d2c --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9450' +name: Core-Q9450 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml new file mode 100644 index 00000000..e9c5a139 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9500' +name: Core-Q9500 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml new file mode 100644 index 00000000..40e3c6b3 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9505' +name: Core-Q9505 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml new file mode 100644 index 00000000..90d779ac --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2009-08-31' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9505S' +name: Core-Q9505S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml new file mode 100644 index 00000000..5eb4aca9 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9550' +name: Core-Q9550 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml new file mode 100644 index 00000000..d0d274f2 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2009-01-18' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9550S' +name: Core-Q9550S diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml new file mode 100644 index 00000000..6cbe43fe --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9650' +name: Core-Q9650 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml new file mode 100644 index 00000000..397dbc03 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX9650' +name: Core-QX9650 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml new file mode 100644 index 00000000..231d7eba --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '136 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX9770' +name: Core-QX9770 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml new file mode 100644 index 00000000..3c859e16 --- /dev/null +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Desktop + Lithography: '45 nm' + TDP: '150 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-31' + Socket: LGA771 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX9775' +name: Core-QX9775 diff --git a/specs/intel/Embedded-CPUs-Intel.yaml b/specs/intel/Embedded-CPUs-Intel.yaml new file mode 100644 index 00000000..dc1158d2 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel.yaml @@ -0,0 +1,40 @@ +humanName: 'Embedded CPUs (Intel)' +sections: + - + header: '2015 - 2019' + members: + - Embedded-Whiskey-Lake + - Embedded-Coffee-Lake + - Embedded-Kaby-Lake + - Embedded-Apollo-Lake + - Embedded-Braswell + - Embedded-Skylake + - Embedded-Broadwell + - + header: '2010 - 2014' + members: + - Embedded-Ivy-Bridge-EN + - Embedded-Bay-Trail + - Embedded-Ivy-Bridge-EP + - Embedded-Rangeley + - Embedded-Haswell + - Embedded-Gladden + - Embedded-Sandy-Bridge-EN + - Embedded-Ivy-Bridge + - Embedded-Sandy-Bridge-EP + - Embedded-Sandy-Bridge + - Embedded-Stellarton + - Embedded-Tunnel-Creek + - Embedded-Arrandale + - Embedded-Jasper-Forest + - + header: '2005 - 2009' + members: + - Embedded-Nehalem-EP + - Embedded-Harpertown + - Embedded-Wolfdale +type: 'Generic Container' +topHeader: 'SELECT ARCHITECTURE:' +data: + Manufacturer: Intel +name: Embedded-CPUs-Intel diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml new file mode 100644 index 00000000..904326e4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml @@ -0,0 +1,20 @@ +humanName: 'Apollo Lake' +sections: + - + header: '4 Threads' + members: + - Atom-E3950 + - Atom-E3940 + - + header: '2 Threads' + members: + - Atom-E3930 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-10-25' + Sockets: + - BGA1296 +name: Embedded-Apollo-Lake diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml new file mode 100644 index 00000000..e29d12c7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '6.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L, MT/s;
LPDDR4' + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-10-25' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': 'DDR3L, MT/s;
LPDDR4' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Atom E3930' +name: Atom-E3930 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml new file mode 100644 index 00000000..97291eee --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '9.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L,
LPDDR4' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-10-25' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': 'DDR3L,
LPDDR4' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Atom E3940' +name: Atom-E3940 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml new file mode 100644 index 00000000..3782d0a1 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '12 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L,
LPDDR4' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-10-25' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'VRAM Type': 'DDR3L,
LPDDR4' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Atom E3950' +name: Atom-E3950 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml new file mode 100644 index 00000000..a9a460c9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml @@ -0,0 +1,17 @@ +humanName: Arrandale +sections: + - + header: '4 Threads' + members: + - Core-i7-620UE + - Core-i7-620LE + - Core-i5-520E +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2010-01-07' + Sockets: + - BGA1288 +name: Embedded-Arrandale diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml new file mode 100644 index 00000000..357eb1ad --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Embedded + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.933 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' +isPart: true +type: CPU +humanName: 'Core i5-520E' +name: Core-i5-520E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml new file mode 100644 index 00000000..60fdbb8f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Embedded + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '266 MHz' + 'GPU Boost Frequency': '566 MHz' +isPart: true +type: CPU +humanName: 'Core i7-620LE' +name: Core-i7-620LE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml new file mode 100644 index 00000000..22d7148b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Embedded + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.06 GHz' + 'Boost Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-620UE' +name: Core-i7-620UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml new file mode 100644 index 00000000..12cf261a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml @@ -0,0 +1,26 @@ +humanName: 'Bay Trail' +sections: + - + header: '4 Threads' + members: + - Atom-E3845 + - + header: '2 Threads' + members: + - Atom-E3827 + - Atom-E3826 + - Atom-E3825 + - Atom-E3805 + - + header: '1 Threads' + members: + - Atom-E3815 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-10-08' + Sockets: + - BGA1170 +name: Embedded-Bay-Trail diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml new file mode 100644 index 00000000..993136d6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '3 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1067 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-10-06' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom E3805' +name: Atom-E3805 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml new file mode 100644 index 00000000..7c30cb2f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1067 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.46 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2013-10-08' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E3815' +name: Atom-E3815 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml new file mode 100644 index 00000000..162f7fd4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1067 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-08' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '533 MHz' +isPart: true +type: CPU +humanName: 'Atom E3825' +name: Atom-E3825 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml new file mode 100644 index 00000000..7d30fa1c --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1067 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.46 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-08' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '533 MHz' +isPart: true +type: CPU +humanName: 'Atom E3826' +name: Atom-E3826 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml new file mode 100644 index 00000000..6be64234 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '8 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.75 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-08' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '542 MHz' +isPart: true +type: CPU +humanName: 'Atom E3827' +name: Atom-E3827 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml new file mode 100644 index 00000000..7ad6c8ef --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Embedded + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.91 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-10-08' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '542 MHz' +isPart: true +type: CPU +humanName: 'Atom E3845' +name: Atom-E3845 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml new file mode 100644 index 00000000..09c33327 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml @@ -0,0 +1,15 @@ +humanName: Braswell +sections: + - + header: '4 Threads' + members: + - Atom-E8000 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-01-17' + Sockets: + - BGA1170 +name: Embedded-Braswell diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml new file mode 100644 index 00000000..2a3b19e6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Embedded + Lithography: '14 nm' + TDP: '5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.04 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-17' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Atom E8000' +name: Atom-E8000 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml new file mode 100644 index 00000000..5fb6af26 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml @@ -0,0 +1,32 @@ +humanName: Broadwell +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-4628LV4 + - Xeon-E5-2699RV4 + - Xeon-E5-2658V4 + - Xeon-E5-2648LV4 + - Xeon-E5-2628LV4 + - Xeon-E5-2618LV4 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2608LV4 + - + header: '8 Threads' + members: + - Xeon-E3-1278LV4 + - Xeon-E3-1258LV4 + - Core-i7-5850EQ + - Core-i7-5700EQ +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-06-02' + Sockets: + - BGA1364 + - LGA20113 +name: Embedded-Broadwell diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml new file mode 100644 index 00000000..23c13f2b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-5700EQ' +name: Core-i7-5700EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml new file mode 100644 index 00000000..5a41ad64 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-5850EQ' +name: Core-i7-5850EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml new file mode 100644 index 00000000..511be5c6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '700 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1258LV4' +name: Xeon-E3-1258LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml new file mode 100644 index 00000000..15c536c4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '800 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1278LV4' +name: Xeon-E3-1278LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml new file mode 100644 index 00000000..b0ebf90b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '50 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '1.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2608LV4' +name: Xeon-E5-2608LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml new file mode 100644 index 00000000..b6c9b1e9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '75 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2618LV4' +name: Xeon-E5-2618LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml new file mode 100644 index 00000000..a23ce853 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '75 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2628LV4' +name: Xeon-E5-2628LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml new file mode 100644 index 00000000..663de45d --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '75 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2648LV4' +name: Xeon-E5-2648LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml new file mode 100644 index 00000000..14b1e6a6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2658V4' +name: Xeon-E5-2658V4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml new file mode 100644 index 00000000..1833c1b7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '145 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '55 MiB' + 'Release Date': '2016-10-24' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2699RV4' +name: Xeon-E5-2699RV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml new file mode 100644 index 00000000..9d1ebc42 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Embedded + Lithography: '14 nm' + TDP: '75 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4628LV4' +name: Xeon-E5-4628LV4 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml new file mode 100644 index 00000000..57948a0f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml @@ -0,0 +1,45 @@ +humanName: 'Coffee Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E-2278GEL + - Xeon-E-2278GE + - Xeon-E-2276ML + - Xeon-E-2276ME + - Core-i7-9850HL + - Core-i7-9850HE + - + header: '8 Threads' + members: + - Xeon-E-2254ML + - Xeon-E-2254ME + - Core-i7-9700TE + - Core-i7-9700E + - + header: '6 Threads' + members: + - Xeon-E-2226GE + - Core-i5-9500TE + - Core-i5-9500E + - + header: '4 Threads' + members: + - Core-i3-9100TE + - Core-i3-9100HL + - Core-i3-9100E + - + header: '2 Threads' + members: + - Pentium-G4932E + - Pentium-G4930E +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2019-06-10' + Sockets: + - BGA1440 + - LGA1151 +name: Embedded-Coffee-Lake diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml new file mode 100644 index 00000000..b7a40eaa --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9100E' +name: Core-i3-9100E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml new file mode 100644 index 00000000..e4b8bdec --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9100HL' +name: Core-i3-9100HL diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml new file mode 100644 index 00000000..7383a60b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-9100TE' +name: Core-i3-9100TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml new file mode 100644 index 00000000..f0546dc9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-9500E' +name: Core-i5-9500E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml new file mode 100644 index 00000000..cf02c5c4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-9500TE' +name: Core-i5-9500TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml new file mode 100644 index 00000000..edaae778 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-9700E' +name: Core-i7-9700E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml new file mode 100644 index 00000000..f180abee --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-9700TE' +name: Core-i7-9700TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml new file mode 100644 index 00000000..f3ede778 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-9850HE' +name: Core-i7-9850HE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml new file mode 100644 index 00000000..30fbcf54 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '25 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-9850HL' +name: Core-i7-9850HL diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml new file mode 100644 index 00000000..062db451 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4930E' +name: Pentium-G4930E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml new file mode 100644 index 00000000..b8f159ea --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium G4932E' +name: Pentium-G4932E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml new file mode 100644 index 00000000..7e812d24 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2226GE' +name: Xeon-E-2226GE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml new file mode 100644 index 00000000..face86ee --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2254ME' +name: Xeon-E-2254ME diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml new file mode 100644 index 00000000..bc87fc3f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2254ML' +name: Xeon-E-2254ML diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml new file mode 100644 index 00000000..7452a250 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2276ME' +name: Xeon-E-2276ME diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml new file mode 100644 index 00000000..8aa26248 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '25 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2276ML' +name: Xeon-E-2276ML diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml new file mode 100644 index 00000000..e2776525 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '80 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2278GE' +name: Xeon-E-2278GE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml new file mode 100644 index 00000000..85945076 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Embedded + Lithography: 14nm + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-06-10' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2278GEL' +name: Xeon-E-2278GEL diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml new file mode 100644 index 00000000..ad4e9cea --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml @@ -0,0 +1,15 @@ +humanName: Harpertown +sections: + - + header: '4 Threads' + members: + - Xeon-L5408 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-03-31' + Sockets: + - LGA771 +name: Embedded-Harpertown diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml new file mode 100644 index 00000000..1cfadf6a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Embedded + Lithography: '45 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-31' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5408' +name: Xeon-L5408 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml new file mode 100644 index 00000000..314e8f39 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml @@ -0,0 +1,62 @@ +humanName: Haswell +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-4648V3 + - Xeon-E5-2658V3 + - Xeon-E5-2658AV3 + - Xeon-E5-2648LV3 + - Xeon-E5-2628LV3 + - Xeon-E5-2438LV3 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2618LV3 + - Xeon-E5-2608LV3 + - Xeon-E5-2428LV3 + - Xeon-E5-2418LV3 + - Xeon-E5-1428LV3 + - + header: '8 Threads' + members: + - Xeon-E5-2408LV3 + - Xeon-E3-1268LV3 + - Core-i7-4770TE + - Core-i7-4702EC + - Core-i7-4700EQ + - Core-i7-4700EC + - + header: '4 Threads' + members: + - Core-i5-4570TE + - Core-i5-4422E + - Core-i5-4410E + - Core-i5-4402EC + - Core-i5-4402E + - Core-i5-4400E + - Core-i3-4340TE + - Core-i3-4330TE + - Core-i3-4112E + - Core-i3-4110E + - Core-i3-4102E + - Core-i3-4100E + - + header: '2 Threads' + members: + - Pentium-G3320TE + - Pentium-G1820TE + - Pentium-2002E + - Pentium-2000E +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-01' + Sockets: + - LGA1150 + - BGA1364 + - LGA20113 + - LGA1356 +name: Embedded-Haswell diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml new file mode 100644 index 00000000..b3d0b7a3 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-4100E' +name: Core-i3-4100E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml new file mode 100644 index 00000000..8c1803a6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-4102E' +name: Core-i3-4102E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml new file mode 100644 index 00000000..e596b68f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-4110E' +name: Core-i3-4110E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml new file mode 100644 index 00000000..25bb3325 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-4112E' +name: Core-i3-4112E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml new file mode 100644 index 00000000..ef92c1f0 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i3-4330TE' +name: Core-i3-4330TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml new file mode 100644 index 00000000..666b3b3b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i3-4340TE' +name: Core-i3-4340TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml new file mode 100644 index 00000000..99f8fb52 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4400E' +name: Core-i5-4400E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml new file mode 100644 index 00000000..f53a1d61 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4402E' +name: Core-i5-4402E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml new file mode 100644 index 00000000..0db2b5fc --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '27 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-03-28' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4402EC' +name: Core-i5-4402EC diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml new file mode 100644 index 00000000..70f1e44e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4410E' +name: Core-i5-4410E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml new file mode 100644 index 00000000..5ff1f2f6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4422E' +name: Core-i5-4422E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml new file mode 100644 index 00000000..e9e10700 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Core i5-4570TE' +name: Core-i5-4570TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml new file mode 100644 index 00000000..28803ae7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '43 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-03-28' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4700EC' +name: Core-i7-4700EC diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml new file mode 100644 index 00000000..81f93161 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4700EQ' +name: Core-i7-4700EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml new file mode 100644 index 00000000..1a2f52fa --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '27 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-03-28' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4702EC' +name: Core-i7-4702EC diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml new file mode 100644 index 00000000..d67e7258 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4770TE' +name: Core-i7-4770TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml new file mode 100644 index 00000000..80889f0b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-01-07' + Socket: FCBGA1364 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1024 MiB' +isPart: true +type: CPU +humanName: 'Pentium 2000E' +name: Pentium-2000E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml new file mode 100644 index 00000000..454e8019 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-01-07' + Socket: FCBGA1364 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1024 MiB' +isPart: true +type: CPU +humanName: 'Pentium 2002E' +name: Pentium-2002E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml new file mode 100644 index 00000000..64befc5b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-01-07' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '1.69921875 GiB' +isPart: true +type: CPU +humanName: 'Pentium G1820TE' +name: Pentium-G1820TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml new file mode 100644 index 00000000..42571ac0 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1024 MiB' +isPart: true +type: CPU +humanName: 'Pentium G3320TE' +name: Pentium-G3320TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml new file mode 100644 index 00000000..f489bf74 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1268LV3' +name: Xeon-E3-1268LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml new file mode 100644 index 00000000..343f67c6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2015-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1428LV3' +name: Xeon-E5-1428LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml new file mode 100644 index 00000000..e0105923 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2015-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2408LV3' +name: Xeon-E5-2408LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml new file mode 100644 index 00000000..2390db52 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '50 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2015-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2418LV3' +name: Xeon-E5-2418LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml new file mode 100644 index 00000000..957f4e62 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2015-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2428LV3' +name: Xeon-E5-2428LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml new file mode 100644 index 00000000..c17fd362 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2015-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2438LV3' +name: Xeon-E5-2438LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml new file mode 100644 index 00000000..661eae42 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '52 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2608LV3' +name: Xeon-E5-2608LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml new file mode 100644 index 00000000..d562a3e1 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '75 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2618LV3' +name: Xeon-E5-2618LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml new file mode 100644 index 00000000..a3545ecc --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '75 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2628LV3' +name: Xeon-E5-2628LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml new file mode 100644 index 00000000..8a0b6895 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '75 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2648LV3' +name: Xeon-E5-2648LV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml new file mode 100644 index 00000000..c8e226fa --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-01-28' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2658AV3' +name: Xeon-E5-2658AV3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml new file mode 100644 index 00000000..3d900465 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2658V3' +name: Xeon-E5-2658V3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml new file mode 100644 index 00000000..e3bfda3a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Embedded + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4648V3' +name: Xeon-E5-4648V3 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml new file mode 100644 index 00000000..6936af31 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml @@ -0,0 +1,21 @@ +humanName: 'Ivy Bridge EN' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-2448LV2 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2428LV2 + - Xeon-E5-2418LV2 + - Xeon-E5-1428LV2 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-01-09' + Sockets: + - LGA1356 +name: Embedded-Ivy-Bridge-EN diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml new file mode 100644 index 00000000..fce31b7f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Embedded + Lithography: '22 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1428LV2' +name: Xeon-E5-1428LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml new file mode 100644 index 00000000..b62d8c4d --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Embedded + Lithography: '22 nm' + TDP: '50 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2418LV2' +name: Xeon-E5-2418LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml new file mode 100644 index 00000000..57e40b0e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Embedded + Lithography: '22 nm' + TDP: '60 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2428LV2' +name: Xeon-E5-2428LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml new file mode 100644 index 00000000..18252b57 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Embedded + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2448LV2' +name: Xeon-E5-2448LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml new file mode 100644 index 00000000..f7c46250 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml @@ -0,0 +1,22 @@ +humanName: 'Ivy Bridge EP' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-4624LV2 + - Xeon-E5-2658V2 + - Xeon-E5-2648LV2 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2628LV2 + - Xeon-E5-2618LV2 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-10' + Sockets: + - LGA2011 +name: Embedded-Ivy-Bridge-EP diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml new file mode 100644 index 00000000..ed396c68 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Embedded + Lithography: '22 nm' + TDP: '50 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2618LV2' +name: Xeon-E5-2618LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml new file mode 100644 index 00000000..4374dab7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Embedded + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2628LV2' +name: Xeon-E5-2628LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml new file mode 100644 index 00000000..ed90b32c --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Embedded + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2648LV2' +name: Xeon-E5-2648LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml new file mode 100644 index 00000000..0279a496 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Embedded + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2658V2' +name: Xeon-E5-2658V2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml new file mode 100644 index 00000000..72b4e3ac --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Embedded + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4624LV2' +name: Xeon-E5-4624LV2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml new file mode 100644 index 00000000..b2a9aef5 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml @@ -0,0 +1,37 @@ +humanName: 'Ivy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-3615QE + - Core-i7-3612QE + - Core-i7-3610QE + - + header: '4 Threads' + members: + - Core-i7-3555LE + - Core-i7-3517UE + - Core-i5-3610ME + - Core-i3-3217UE + - Core-i3-3120ME + - + header: '2 Threads' + members: + - Pentium-1405V2 + - Pentium-1047UE + - Pentium-1020E + - + header: '1 Threads' + members: + - Pentium-927UE +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2012-04-29' + Sockets: + - BGA1023 + - PGA988 + - LGA1356 +name: Embedded-Ivy-Bridge diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml new file mode 100644 index 00000000..22604ba8 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-07-26' + Socket: 'FCBGA1023, FCPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-3120ME' +name: Core-i3-3120ME diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml new file mode 100644 index 00000000..1dc30193 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-07-26' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Core i3-3217UE' +name: Core-i3-3217UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml new file mode 100644 index 00000000..6e7024f4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-03' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Core i5-3610ME' +name: Core-i5-3610ME diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml new file mode 100644 index 00000000..496dc9a6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2012-06-03' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-3517UE' +name: Core-i7-3517UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml new file mode 100644 index 00000000..7d5074a7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2012-06-03' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '550 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-3555LE' +name: Core-i7-3555LE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml new file mode 100644 index 00000000..c1a5583f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'Geekbench Single-Core Score': 516 + 'Geekbench Multi-Core Score': 1814 +isPart: true +type: CPU +humanName: 'Core i7-3610QE' +name: Core-i7-3610QE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml new file mode 100644 index 00000000..0a110236 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-3612QE' +name: Core-i7-3612QE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml new file mode 100644 index 00000000..93ee9db5 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-3615QE' +name: Core-i7-3615QE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml new file mode 100644 index 00000000..1100d5e4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: 'FCBGA1023, FCPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1020E' +name: Pentium-1020E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml new file mode 100644 index 00000000..e1e6da7d --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1047UE' +name: Pentium-1047UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml new file mode 100644 index 00000000..833ce537 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Pentium 1405V2' +name: Pentium-1405V2 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml new file mode 100644 index 00000000..98d61968 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Embedded + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' +isPart: true +type: CPU +humanName: 'Pentium 927UE' +name: Pentium-927UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml new file mode 100644 index 00000000..8831dd1e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml @@ -0,0 +1,32 @@ +humanName: 'Jasper Forest' +sections: + - + header: '8 Threads' + members: + - Xeon-LC5528 + - Xeon-LC5518 + - Xeon-EC5549 + - + header: '4 Threads' + members: + - Xeon-LC3528 + - Xeon-EC5509 + - Xeon-EC3539 + - + header: '2 Threads' + members: + - Xeon-EC5539 + - Pentium-P1053 + - + header: '1 Threads' + members: + - Xeon-LC3518 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': 'Q1 2010' + Sockets: + - LGA1366 +name: Embedded-Jasper-Forest diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml new file mode 100644 index 00000000..3985f394 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '30 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium P1053' +name: Pentium-P1053 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml new file mode 100644 index 00000000..28880a16 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon EC3539' +name: Xeon-EC3539 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml new file mode 100644 index 00000000..b1761960 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '85 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon EC5509' +name: Xeon-EC5509 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml new file mode 100644 index 00000000..8006f4de --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 3 + 'Base Frequency': '2.27 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon EC5539' +name: Xeon-EC5539 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml new file mode 100644 index 00000000..f79bcc15 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '85 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.933 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon EC5549' +name: Xeon-EC5549 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml new file mode 100644 index 00000000..e7b660b6 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '23 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon LC3518' +name: Xeon-LC3518 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml new file mode 100644 index 00000000..0698a1bb --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Base Frequency': '1.73 GHz' + 'Boost Frequency': '1.87 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon LC3528' +name: Xeon-LC3528 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml new file mode 100644 index 00000000..1ebce802 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '48 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Base Frequency': '1.73 GHz' + 'Boost Frequency': '2.133 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon LC5518' +name: Xeon-LC5518 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml new file mode 100644 index 00000000..01c60d6e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Jasper Forest' + Market: Embedded + Lithography: '45 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.533 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon LC5528' +name: Xeon-LC5528 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml new file mode 100644 index 00000000..a957cdd2 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml @@ -0,0 +1,25 @@ +humanName: 'Kaby Lake' +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1505LV6 + - Core-i7-7820EQ + - + header: '4 Threads' + members: + - Xeon-E3-1501MV6 + - Xeon-E3-1501LV6 + - Core-i5-7442EQ + - Core-i5-7440EQ + - Core-i3-7102E + - Core-i3-7100E +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-01-03' + Sockets: + - BGA1440 +name: Embedded-Kaby-Lake diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml new file mode 100644 index 00000000..06e1c9da --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-7100E' +name: Core-i3-7100E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml new file mode 100644 index 00000000..2f4269cb --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-7102E' +name: Core-i3-7102E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml new file mode 100644 index 00000000..faa4efc2 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-7440EQ' +name: Core-i5-7440EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml new file mode 100644 index 00000000..d057c7af --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-7442EQ' +name: Core-i5-7442EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml new file mode 100644 index 00000000..d81b6581 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-7820EQ' +name: Core-i7-7820EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml new file mode 100644 index 00000000..c3fada31 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-06-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '1.7001953125 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1501LV6' +name: Xeon-E3-1501LV6 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml new file mode 100644 index 00000000..537e4f0c --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-06-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '1.7001953125 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1501MV6' +name: Xeon-E3-1501MV6 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml new file mode 100644 index 00000000..eb8db4a9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1505LV6' +name: Xeon-E3-1505LV6 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml new file mode 100644 index 00000000..33ddf4b8 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml @@ -0,0 +1,19 @@ +humanName: 'Nehalem EP' +sections: + - + header: '8 Threads' + members: + - Xeon-L5518 + - + header: '4 Threads' + members: + - Xeon-L5508 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-03-30' + Sockets: + - LGA1366 +name: Embedded-Nehalem-EP diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml new file mode 100644 index 00000000..8581ff80 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Embedded + Lithography: '45 nm' + TDP: '38 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5508' +name: Xeon-L5508 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml new file mode 100644 index 00000000..d59b4fce --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Embedded + Lithography: '45 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5518' +name: Xeon-L5518 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml new file mode 100644 index 00000000..f70da62f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml @@ -0,0 +1,32 @@ +humanName: Rangeley +sections: + - + header: '8 Threads' + members: + - Atom-C2758 + - Atom-C2738 + - Atom-C2718 + - + header: '4 Threads' + members: + - Atom-C2558 + - Atom-C2538 + - Atom-C2518 + - Atom-C2516 + - Atom-C2508 + - + header: '2 Threads' + members: + - Atom-C2358 + - Atom-C2338 + - Atom-C2316 + - Atom-C2308 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-04' + Sockets: + - BGA1283 +name: Embedded-Rangeley diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml new file mode 100644 index 00000000..a4e50c42 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR + 'Base Frequency': '1.25 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-03-27' + Socket: FCBGA1283 + AES: true +isPart: true +type: CPU +humanName: 'Atom C2308' +name: Atom-C2308 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml new file mode 100644 index 00000000..b31be5a5 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2017-07-10' + Socket: FCBGA1283 + AES: true +isPart: true +type: CPU +humanName: 'Atom C2316' +name: Atom-C2316 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml new file mode 100644 index 00000000..eabad6de --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2338' +name: Atom-C2338 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml new file mode 100644 index 00000000..1621b655 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2358' +name: Atom-C2358 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml new file mode 100644 index 00000000..d82370f9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '9.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.25 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-03-27' + Socket: FCBGA1283 + AES: true +isPart: true +type: CPU +humanName: 'Atom C2508' +name: Atom-C2508 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml new file mode 100644 index 00000000..72fc4672 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-07-10' + Socket: FCBGA1283 + AES: true +isPart: true +type: CPU +humanName: 'Atom C2516' +name: Atom-C2516 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml new file mode 100644 index 00000000..40bb99ee --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2518' +name: Atom-C2518 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml new file mode 100644 index 00000000..b922dd54 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2538' +name: Atom-C2538 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml new file mode 100644 index 00000000..adac7707 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2558' +name: Atom-C2558 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml new file mode 100644 index 00000000..50f421f0 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '18 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2718' +name: Atom-C2718 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml new file mode 100644 index 00000000..ac7e3ac4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '20 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2738' +name: Atom-C2738 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml new file mode 100644 index 00000000..7c364e50 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Rangeley + Market: Embedded + Lithography: '22 nm' + TDP: '20 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2758' +name: Atom-C2758 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml new file mode 100644 index 00000000..8ea7de80 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml @@ -0,0 +1,20 @@ +humanName: 'Sandy Bridge EN' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2448L + - Xeon-E5-2428L + - + header: '8 Threads' + members: + - Xeon-E5-2418L +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-05-14' + Sockets: + - LGA1356 +name: Embedded-Sandy-Bridge-EN diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml new file mode 100644 index 00000000..2d8972cc --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Embedded + Lithography: '32 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true +isPart: true +type: CPU +humanName: 'Xeon E5-2418L' +name: Xeon-E5-2418L diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml new file mode 100644 index 00000000..a754a680 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Embedded + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5-2428L' +name: Xeon-E5-2428L diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml new file mode 100644 index 00000000..6b3836f8 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Embedded + Lithography: '32 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5-2448L' +name: Xeon-E5-2448L diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml new file mode 100644 index 00000000..95d2ecc0 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml @@ -0,0 +1,16 @@ +humanName: 'Sandy Bridge EP' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2658 + - Xeon-E5-2648L +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-03-06' + Sockets: + - LGA2011 +name: Embedded-Sandy-Bridge-EP diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml new file mode 100644 index 00000000..f399fc85 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Embedded + Lithography: '32 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5-2648L' +name: Xeon-E5-2648L diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml new file mode 100644 index 00000000..122bb698 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Embedded + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5-2658' +name: Xeon-E5-2658 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml new file mode 100644 index 00000000..0a17c3bf --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml @@ -0,0 +1,33 @@ +humanName: 'Sandy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-2715QE + - + header: '4 Threads' + members: + - Core-i7-2655LE + - Core-i7-2610UE + - Core-i5-2515E + - Core-i3-2340UE + - Core-i3-2310E + - + header: '2 Threads' + members: + - Pentium-B810E + - Pentium-847E + - + header: '1 Threads' + members: + - Pentium-827E + - Pentium-807UE +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': 'Q1 2011' + Sockets: + - BGA1023 +name: Embedded-Sandy-Bridge diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml new file mode 100644 index 00000000..26a67de9 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q1 2011' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Core i3-2310E' +name: Core-i3-2310E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml new file mode 100644 index 00000000..32801bdf --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Core i3-2340UE' +name: Core-i3-2340UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml new file mode 100644 index 00000000..8898d1a4 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i5-2515E' +name: Core-i5-2515E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml new file mode 100644 index 00000000..b04e2332 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-03-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Core i7-2610UE' +name: Core-i7-2610UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml new file mode 100644 index 00000000..0c493959 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-03-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-2655LE' +name: Core-i7-2655LE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml new file mode 100644 index 00000000..41c655dc --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' +isPart: true +type: CPU +humanName: 'Core i7-2715QE' +name: Core-i7-2715QE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml new file mode 100644 index 00000000..7fe13220 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-12-01' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 807UE' +name: Pentium-807UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml new file mode 100644 index 00000000..e7a12fb5 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2011-07-16' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 827E' +name: Pentium-827E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml new file mode 100644 index 00000000..01ab433e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 847E' +name: Pentium-847E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml new file mode 100644 index 00000000..1dcb122d --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Embedded + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium B810E' +name: Pentium-B810E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml new file mode 100644 index 00000000..a746628b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml @@ -0,0 +1,38 @@ +humanName: Skylake +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1578LV5 + - Xeon-E3-1558LV5 + - Xeon-E3-1505LV5 + - Xeon-E3-1268LV5 + - Core-i7-6822EQ + - Core-i7-6820EQ + - Core-i7-6700TE + - + header: '4 Threads' + members: + - Core-i5-6500TE + - Core-i5-6442EQ + - Core-i5-6440EQ + - Core-i3-6102E + - Core-i3-6100TE + - Core-i3-6100E + - + header: '2 Threads' + members: + - Pentium-G4400TE + - Pentium-G3902E + - Pentium-G3900TE + - Pentium-G3900E +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-10-11' + Sockets: + - LGA1151 + - BGA1440 +name: Embedded-Skylake diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml new file mode 100644 index 00000000..733acacb --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-6100E' +name: Core-i3-6100E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml new file mode 100644 index 00000000..e50e3d60 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-10-11' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-6100TE' +name: Core-i3-6100TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml new file mode 100644 index 00000000..df5ccaed --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-6102E' +name: Core-i3-6102E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml new file mode 100644 index 00000000..174791ab --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6440EQ' +name: Core-i5-6440EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml new file mode 100644 index 00000000..971f3d77 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6442EQ' +name: Core-i5-6442EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml new file mode 100644 index 00000000..0f7c9e92 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-10-11' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6500TE' +name: Core-i5-6500TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml new file mode 100644 index 00000000..384dad62 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-11' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6700TE' +name: Core-i7-6700TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml new file mode 100644 index 00000000..04f34cb1 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6820EQ' +name: Core-i7-6820EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml new file mode 100644 index 00000000..6c28fcad --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6822EQ' +name: Core-i7-6822EQ diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml new file mode 100644 index 00000000..2852620b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3900E' +name: Pentium-G3900E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml new file mode 100644 index 00000000..56f6f427 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3900TE' +name: Pentium-G3900TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml new file mode 100644 index 00000000..cf04fe5a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G3902E' +name: Pentium-G3902E diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml new file mode 100644 index 00000000..f41e6262 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-12-01' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium G4400TE' +name: Pentium-G4400TE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml new file mode 100644 index 00000000..b3f6d3ff --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1268LV5' +name: Xeon-E3-1268LV5 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml new file mode 100644 index 00000000..550c8621 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-11' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1505LV5' +name: Xeon-E3-1505LV5 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml new file mode 100644 index 00000000..40c69308 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L, DDR4' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, DDR4' + 'Maximum VRAM Capacity': '64 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1558LV5' +name: Xeon-E3-1558LV5 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml new file mode 100644 index 00000000..fb05c5fa --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Embedded + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L, DDR4' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '700 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, DDR4' + 'Maximum VRAM Capacity': '64 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1578LV5' +name: Xeon-E3-1578LV5 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml new file mode 100644 index 00000000..8fd08b0f --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml @@ -0,0 +1,18 @@ +humanName: Stellarton +sections: + - + header: '2 Threads' + members: + - Atom-E665CT + - Atom-E665C + - Atom-E645CT + - Atom-E645C +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2010-11-22' + Sockets: + - BGA1466 +name: Embedded-Stellarton diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml new file mode 100644 index 00000000..00c5349e --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Stellarton + Market: Embedded + Lithography: '45 nm' + TDP: '7 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2010-11-22' + Socket: FCBGA1466 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E645C' +name: Atom-E645C diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml new file mode 100644 index 00000000..e5f8d2c7 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Stellarton + Market: Embedded + Lithography: '45 nm' + TDP: '7 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2010-11-22' + Socket: FCBGA1466 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E645CT' +name: Atom-E645CT diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml new file mode 100644 index 00000000..60ed5d46 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Stellarton + Market: Embedded + Lithography: '45 nm' + TDP: '7 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2010-11-22' + Socket: FCBGA1466 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E665C' +name: Atom-E665C diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml new file mode 100644 index 00000000..340df84b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Stellarton + Market: Embedded + Lithography: '45 nm' + TDP: '7 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2010-11-22' + Socket: FCBGA1466 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E665CT' +name: Atom-E665CT diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml new file mode 100644 index 00000000..88ea9a4c --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml @@ -0,0 +1,22 @@ +humanName: 'Tunnel Creek' +sections: + - + header: '2 Threads' + members: + - Atom-E680T + - Atom-E680 + - Atom-E660T + - Atom-E660 + - Atom-E640T + - Atom-E640 + - Atom-E620T + - Atom-E620 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': 'Q3 2010' + Sockets: + - BGA676 +name: Embedded-Tunnel-Creek diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml new file mode 100644 index 00000000..c3411961 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.3 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '600 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E620' +name: Atom-E620 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml new file mode 100644 index 00000000..e0eb5df2 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.3 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '600 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E620T' +name: Atom-E620T diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml new file mode 100644 index 00000000..87116ff1 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.6 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E640' +name: Atom-E640 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml new file mode 100644 index 00000000..3b348de0 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.6 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '320 MHz' +isPart: true +type: CPU +humanName: 'Atom E640T' +name: Atom-E640T diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml new file mode 100644 index 00000000..c2570332 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.6 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E660' +name: Atom-E660 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml new file mode 100644 index 00000000..6ffcb9ab --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '3.6 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E660T' +name: Atom-E660T diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml new file mode 100644 index 00000000..4d59e37a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '4.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E680' +name: Atom-E680 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml new file mode 100644 index 00000000..56df0517 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Tunnel Creek' + Market: Embedded + Lithography: '45 nm' + TDP: '4.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': 'Q3 2010' + Socket: FCBGA676 + 'Other Extensions': { } + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom E680T' +name: Atom-E680T diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml new file mode 100644 index 00000000..fb556454 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml @@ -0,0 +1,24 @@ +humanName: 'Whiskey Lake' +sections: + - + header: '8 Threads' + members: + - Core-i7-8665UE + - Core-i5-8365UE + - + header: '4 Threads' + members: + - Core-i3-8145UE + - + header: '2 Threads' + members: + - Pentium-4305UE +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2019-06-10' + Sockets: + - BGA1528 +name: Embedded-Whiskey-Lake diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml new file mode 100644 index 00000000..297a5aae --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Embedded + Lithography: 14nm + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-8145UE' +name: Core-i3-8145UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml new file mode 100644 index 00000000..584fe7fd --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Embedded + Lithography: 14nm + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-8365UE' +name: Core-i5-8365UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml new file mode 100644 index 00000000..0307fbbd --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Embedded + Lithography: 14nm + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-8665UE' +name: Core-i7-8665UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml new file mode 100644 index 00000000..013b2372 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Embedded + Lithography: 14nm + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-06-10' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium 4305UE' +name: Pentium-4305UE diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml new file mode 100644 index 00000000..2c56a91a --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml @@ -0,0 +1,20 @@ +humanName: Wolfdale +sections: + - + header: '2 Threads' + members: + - Xeon-L5238 + - Xeon-E5240 + - + header: '1 Threads' + members: + - Xeon-L3014 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': 'Q1 2008' + Sockets: + - LGA771 +name: Embedded-Wolfdale diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml new file mode 100644 index 00000000..f2399c35 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Embedded + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-03-31' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5240' +name: Xeon-E5240 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml new file mode 100644 index 00000000..21fa003b --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Embedded + Lithography: '45 nm' + TDP: '30 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '82 mm' + 'Release Date': '2008-09-30' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L3014' +name: Xeon-L3014 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml new file mode 100644 index 00000000..5518b129 --- /dev/null +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Embedded + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2008' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5238' +name: Xeon-L5238 diff --git a/specs/intel/Mobile-CPUs-Intel.yaml b/specs/intel/Mobile-CPUs-Intel.yaml new file mode 100644 index 00000000..a7755a81 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel.yaml @@ -0,0 +1,63 @@ +humanName: 'Mobile CPUs (Intel)' +sections: + - + header: '2015 - 2019' + members: + - Mobile-Gemini-Lake-Refresh + - Mobile-Comet-Lake + - Mobile-Ice-Lake + - Mobile-Amber-Lake + - Mobile-Whiskey-Lake + - Mobile-Amber-Lake-Y + - Mobile-Coffee-Lake + - Mobile-Kaby-Lake-G + - Mobile-Gemini-Lake + - Mobile-Kaby-Lake-R + - Mobile-Kaby-Lake + - Mobile-Apollo-Lake + - Mobile-Skylake + - Mobile-Braswell + - Mobile-Cherry-Trail + - Mobile-SoFIA-LTE + - Mobile-SoFIA-3G-R + - + header: '2010 - 2014' + members: + - Mobile-Broadwell + - Mobile-Moorefield + - Mobile-Merrifield + - Mobile-Bay-Trail + - Mobile-Crystal-Well + - Mobile-Haswell + - Mobile-Cloverview + - Mobile-Ivy-Bridge + - Mobile-Penwell + - Mobile-Cedarview + - Mobile-Lincroft + - Mobile-Sandy-Bridge + - Mobile-Pineview + - Mobile-Arrandale + - + header: '2005 - 2009' + members: + - Mobile-Clarksfield + - Mobile-Diamondville + - Mobile-Silverthorne + - Mobile-Penryn + - Mobile-Merom + - Mobile-Yonah + - + header: '2000 - 2004' + members: + - Mobile-Dothan + - + header: '1970 - 1974' + members: + - Mobile-Tualatin + - Mobile-Banias + - Mobile-Prescott +type: 'Generic Container' +topHeader: 'SELECT ARCHITECTURE:' +data: + Manufacturer: Intel +name: Mobile-CPUs-Intel diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml new file mode 100644 index 00000000..48752d5c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml @@ -0,0 +1,27 @@ +humanName: 'Amber Lake Y' +sections: + - + header: '8 Threads' + members: + - Core-i7-10510Y + - Core-i5-10310Y + - Core-i5-10210Y + - + header: '4 Threads' + members: + - Core-m3-8100Y + - Core-i7-8500Y + - Core-i5-8310Y + - Core-i5-8210Y + - Core-i5-8200Y + - Core-i3-10110Y +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2018-08-28' + Sockets: + - BGA1515 + - UTBGA1377 +name: Mobile-Amber-Lake-Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml new file mode 100644 index 00000000..fe0315da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1000 MHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-08-21' + Socket: UTFCBGA1377 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-10110Y' +name: Core-i3-10110Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml new file mode 100644 index 00000000..8f067273 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1000 MHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-21' + Socket: UTFCBGA1377 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '57.7' +isPart: true +type: CPU +humanName: 'Core i5-10210Y' +name: Core-i5-10210Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml new file mode 100644 index 00000000..4cb33299 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-21' + Socket: UTFCBGA1377 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-10310Y' +name: Core-i5-10310Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml new file mode 100644 index 00000000..c3bbafe5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '48.6' +isPart: true +type: CPU +humanName: 'Core i5-8200Y' +name: Core-i5-8200Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml new file mode 100644 index 00000000..67882d66 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-31' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 943 + 'Geekbench Multi-Core Score': 1684 + 'UserBenchmark CPU Score': '48.5' +isPart: true +type: CPU +humanName: 'Core i5-8210Y' +name: Core-i5-8210Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml new file mode 100644 index 00000000..851954a8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': 'Q1 2019' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-8310Y' +name: Core-i5-8310Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml new file mode 100644 index 00000000..d68179e4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '7 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-08-21' + Socket: UTFCBGA1377 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '56.5' +isPart: true +type: CPU +humanName: 'Core i7-10510Y' +name: Core-i7-10510Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml new file mode 100644 index 00000000..e5b90634 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '50.1' +isPart: true +type: CPU +humanName: 'Core i7-8500Y' +name: Core-i7-8500Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml new file mode 100644 index 00000000..40ea6cbb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake Y' + Market: Mobile + Lithography: '14 nm' + TDP: '5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '47.4' +isPart: true +type: CPU +humanName: 'Core m3-8100Y' +name: Core-m3-8100Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml new file mode 100644 index 00000000..d144dc89 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml @@ -0,0 +1,15 @@ +humanName: 'Amber Lake' +sections: + - + header: '4 Threads' + members: + - Pentium-4425Y +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2019-01-01' + Sockets: + - BGA1515 +name: Mobile-Amber-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml new file mode 100644 index 00000000..9bcd0ba9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Amber Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-01-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 4425Y' +name: Pentium-4425Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml new file mode 100644 index 00000000..cba6f747 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml @@ -0,0 +1,22 @@ +humanName: 'Apollo Lake' +sections: + - + header: '4 Threads' + members: + - Pentium-N4200E + - Pentium-N4200 + - Pentium-N3450 + - + header: '2 Threads' + members: + - Pentium-N3350E + - Pentium-N3350 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-08-30' + Sockets: + - BGA1296 +name: Mobile-Apollo-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml new file mode 100644 index 00000000..3afbba1a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3350' +name: Pentium-N3350 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml new file mode 100644 index 00000000..a3e3dc29 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Mobile + Lithography: 14nm + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-07-22' + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '650 MHz' + 'VRAM Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3350E' +name: Pentium-N3350E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml new file mode 100644 index 00000000..4322a6c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3, LPDDR4' + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': 'DDR3L/LPDDR3, LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3450' +name: Pentium-N3450 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml new file mode 100644 index 00000000..bd69e426 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-08-30' + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' + 'Geekbench Single-Core Score': 267 + 'Geekbench Multi-Core Score': 686 + 'UserBenchmark CPU Score': '29.8' +isPart: true +type: CPU +humanName: 'Pentium N4200' +name: Pentium-N4200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml new file mode 100644 index 00000000..48f79c8d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Apollo Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-07-22' + Socket: FCBGA1296 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': 'DDR3L/LPDDR3,
LPDDR4' + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N4200E' +name: Pentium-N4200E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml new file mode 100644 index 00000000..613d9a45 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml @@ -0,0 +1,62 @@ +humanName: Arrandale +sections: + - + header: '4 Threads' + members: + - Core-i7-680UM + - Core-i7-660UM + - Core-i7-660UE + - Core-i7-660LM + - Core-i7-640UM + - Core-i7-640M + - Core-i7-640LM + - Core-i7-620UM + - Core-i7-620M + - Core-i7-620LM + - Core-i7-610E + - Core-i5-580M + - Core-i5-560UM + - Core-i5-560M + - Core-i5-540UM + - Core-i5-540M + - Core-i5-520UM + - Core-i5-520M + - Core-i5-480M + - Core-i5-470UM + - Core-i5-460M + - Core-i5-450M + - Core-i5-430UM + - Core-i5-430M + - Core-i3-390M + - Core-i3-380UM + - Core-i3-380M + - Core-i3-370M + - Core-i3-350M + - Core-i3-330UM + - Core-i3-330M + - Core-i3-330E + - + header: '2 Threads' + members: + - Pentium-U5600 + - Pentium-U5400 + - Pentium-U3600 + - Pentium-U3405 + - Pentium-U3400 + - Pentium-P6300 + - Pentium-P6200 + - Pentium-P6100 + - Pentium-P6000 + - Pentium-P4600 + - Pentium-P4505 + - Pentium-P4500 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': 'Q1 2010' + Sockets: + - BGA1288 + - PGA988 +name: Mobile-Arrandale diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml new file mode 100644 index 00000000..c2b5a30a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Core i3-330E' +name: Core-i3-330E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml new file mode 100644 index 00000000..a4390926 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'Geekbench Single-Core Score': 275 + 'Geekbench Multi-Core Score': 594 +isPart: true +type: CPU +humanName: 'Core i3-330M' +name: Core-i3-330M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml new file mode 100644 index 00000000..e3db6941 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i3-330UM' +name: Core-i3-330UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml new file mode 100644 index 00000000..7a9b0451 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'Geekbench Single-Core Score': 283 + 'Geekbench Multi-Core Score': 593 +isPart: true +type: CPU +humanName: 'Core i3-350M' +name: Core-i3-350M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml new file mode 100644 index 00000000..400bdd96 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'Geekbench Single-Core Score': 314 + 'Geekbench Multi-Core Score': 630 +isPart: true +type: CPU +humanName: 'Core i3-370M' +name: Core-i3-370M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml new file mode 100644 index 00000000..9e4c1409 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'Geekbench Single-Core Score': 324 + 'Geekbench Multi-Core Score': 602 +isPart: true +type: CPU +humanName: 'Core i3-380M' +name: Core-i3-380M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml new file mode 100644 index 00000000..bb8d192e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q4 2010' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i3-380UM' +name: Core-i3-380UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml new file mode 100644 index 00000000..809e2473 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2011' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Core i3-390M' +name: Core-i3-390M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml new file mode 100644 index 00000000..a9a5d678 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.53 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 314 + 'Geekbench Multi-Core Score': 674 +isPart: true +type: CPU +humanName: 'Core i5-430M' +name: Core-i5-430M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml new file mode 100644 index 00000000..5feb2dbb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '1.73 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i5-430UM' +name: Core-i5-430UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml new file mode 100644 index 00000000..b6f66015 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.66 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q2 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 348 + 'Geekbench Multi-Core Score': 676 +isPart: true +type: CPU +humanName: 'Core i5-450M' +name: Core-i5-450M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml new file mode 100644 index 00000000..49e8cb14 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 349 + 'Geekbench Multi-Core Score': 678 +isPart: true +type: CPU +humanName: 'Core i5-460M' +name: Core-i5-460M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml new file mode 100644 index 00000000..3b8a8a7e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'Boost Frequency': '1.86 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q4 2010' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i5-470UM' +name: Core-i5-470UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml new file mode 100644 index 00000000..f1afcc73 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '2.933 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2011' + Socket: 'BGA1288, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 380 + 'Geekbench Multi-Core Score': 739 +isPart: true +type: CPU +humanName: 'Core i5-480M' +name: Core-i5-480M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml new file mode 100644 index 00000000..8fabcec6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.933 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 368 + 'Geekbench Multi-Core Score': 741 +isPart: true +type: CPU +humanName: 'Core i5-520M' +name: Core-i5-520M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml new file mode 100644 index 00000000..2595c1c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.066 GHz' + 'Boost Frequency': '1.866 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i5-520UM' +name: Core-i5-520UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml new file mode 100644 index 00000000..39c58dea --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '3.066 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 357 + 'Geekbench Multi-Core Score': 686 +isPart: true +type: CPU +humanName: 'Core i5-540M' +name: Core-i5-540M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml new file mode 100644 index 00000000..567586e2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i5-540UM' +name: Core-i5-540UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml new file mode 100644 index 00000000..24e2e7ec --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 405 + 'Geekbench Multi-Core Score': 752 +isPart: true +type: CPU +humanName: 'Core i5-560M' +name: Core-i5-560M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml new file mode 100644 index 00000000..20c32c1f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'Boost Frequency': '2.13 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i5-560UM' +name: Core-i5-560UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml new file mode 100644 index 00000000..43096908 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 436 + 'Geekbench Multi-Core Score': 771 +isPart: true +type: CPU +humanName: 'Core i5-580M' +name: Core-i5-580M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml new file mode 100644 index 00000000..495e40c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' +isPart: true +type: CPU +humanName: 'Core i7-610E' +name: Core-i7-610E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml new file mode 100644 index 00000000..367e750d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '266 MHz' + 'GPU Boost Frequency': '566 MHz' +isPart: true +type: CPU +humanName: 'Core i7-620LM' +name: Core-i7-620LM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml new file mode 100644 index 00000000..ecd23e14 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.333 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 450 + 'Geekbench Multi-Core Score': 849 +isPart: true +type: CPU +humanName: 'Core i7-620M' +name: Core-i7-620M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml new file mode 100644 index 00000000..d9a69479 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.06 GHz' + 'Boost Frequency': '2.133 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-620UM' +name: Core-i7-620UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml new file mode 100644 index 00000000..e5f20b63 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.933 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '266 MHz' + 'GPU Boost Frequency': '566 MHz' +isPart: true +type: CPU +humanName: 'Core i7-640LM' +name: Core-i7-640LM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml new file mode 100644 index 00000000..3f34fd90 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: 'BGA1288, PGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '766 MHz' + 'Geekbench Single-Core Score': 339 + 'Geekbench Multi-Core Score': 708 +isPart: true +type: CPU +humanName: 'Core i7-640M' +name: Core-i7-640M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml new file mode 100644 index 00000000..87cef887 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '2.266 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-01-07' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-640UM' +name: Core-i7-640UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml new file mode 100644 index 00000000..64ae2657 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '266 MHz' + 'GPU Boost Frequency': '566 MHz' +isPart: true +type: CPU +humanName: 'Core i7-660LM' +name: Core-i7-660LM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml new file mode 100644 index 00000000..c4486e30 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-660UE' +name: Core-i7-660UE diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml new file mode 100644 index 00000000..eb530790 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-660UM' +name: Core-i7-660UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml new file mode 100644 index 00000000..b2c408a9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.46 GHz' + 'Boost Frequency': '2.53 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: BGA1288 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Core i7-680UM' +name: Core-i7-680UM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml new file mode 100644 index 00000000..c80c4836 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-04-01' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium P4500' +name: Pentium-P4500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml new file mode 100644 index 00000000..ffcd2c9c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium P4505' +name: Pentium-P4505 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml new file mode 100644 index 00000000..6dadf0f7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium P4600' +name: Pentium-P4600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml new file mode 100644 index 00000000..84cd9893 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q2 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium P6000' +name: Pentium-P6000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml new file mode 100644 index 00000000..1cd88d6f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'UserBenchmark CPU Score': '35.2' +isPart: true +type: CPU +humanName: 'Pentium P6100' +name: Pentium-P6100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml new file mode 100644 index 00000000..06e05620 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' + 'Geekbench Single-Core Score': 274 + 'Geekbench Multi-Core Score': 461 + 'UserBenchmark CPU Score': '36.2' +isPart: true +type: CPU +humanName: 'Pentium P6200' +name: Pentium-P6200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml new file mode 100644 index 00000000..f6b5b678 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.27 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2011' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium P6300' +name: Pentium-P6300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml new file mode 100644 index 00000000..bf7eba7b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Pentium U3400' +name: Pentium-U3400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml new file mode 100644 index 00000000..91e91a02 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': 'Q1 2010' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Pentium U3405' +name: Pentium-U3405 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml new file mode 100644 index 00000000..0ec52e78 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '81 mm' + 'Release Date': '2011-01-09' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Pentium U3600' +name: Pentium-U3600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml new file mode 100644 index 00000000..6805a1bf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-05-24' + Socket: BGA1288 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Pentium U5400' +name: Pentium-U5400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml new file mode 100644 index 00000000..d12100bb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Arrandale + Market: Mobile + Lithography: '32 nm' + TDP: '18 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '81 mm' + 'Release Date': '2011-01-09' + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '166 MHz' + 'GPU Boost Frequency': '500 MHz' +isPart: true +type: CPU +humanName: 'Pentium U5600' +name: Pentium-U5600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml new file mode 100644 index 00000000..94d39f38 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml @@ -0,0 +1,53 @@ +humanName: 'Bay Trail' +sections: + - + header: '4 Threads' + members: + - Pentium-N3540 + - Pentium-N3530 + - Pentium-N3520 + - Pentium-N3510 + - Pentium-N2940 + - Pentium-N2930 + - Pentium-N2920 + - Pentium-N2910 + - Pentium-A1020 + - Atom-Z3795 + - Atom-Z3785 + - Atom-Z3775D + - Atom-Z3775 + - Atom-Z3770D + - Atom-Z3770 + - Atom-Z3745D + - Atom-Z3745 + - Atom-Z3740D + - Atom-Z3740 + - Atom-Z3736G + - Atom-Z3736F + - Atom-Z3735G + - Atom-Z3735F + - Atom-Z3735E + - Atom-Z3735D + - + header: '2 Threads' + members: + - Pentium-N2840 + - Pentium-N2830 + - Pentium-N2820 + - Pentium-N2815 + - Pentium-N2810 + - Pentium-N2808 + - Pentium-N2807 + - Pentium-N2806 + - Pentium-N2805 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-11' + Sockets: + - BGA1170 + - UTBGA1380 + - UTBGA592 +name: Mobile-Bay-Trail diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml new file mode 100644 index 00000000..51a4f507 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.41 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-03' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '688 MHz' + 'GPU Boost Frequency': '896 MHz' + 'DirectX Support': '11.2' +isPart: true +type: CPU +humanName: 'Pentium A1020' +name: Pentium-A1020 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml new file mode 100644 index 00000000..50bc1507 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '4.3 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.46 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '667 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2805' +name: Pentium-N2805 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml new file mode 100644 index 00000000..b1588ff5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-24' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '756 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2806' +name: Pentium-N2806 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml new file mode 100644 index 00000000..c9d721fb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '4.3 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.58 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-02-20' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '750 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2807' +name: Pentium-N2807 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml new file mode 100644 index 00000000..3573bca3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.58 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '311 MHz' + 'GPU Boost Frequency': '792 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2808' +name: Pentium-N2808 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml new file mode 100644 index 00000000..f0d50c7c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '756 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2810' +name: Pentium-N2810 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml new file mode 100644 index 00000000..26215707 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-24' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '756 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2815' +name: Pentium-N2815 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml new file mode 100644 index 00000000..bc67d75a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-10-24' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '756 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2820' +name: Pentium-N2820 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml new file mode 100644 index 00000000..67075edc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-02-13' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '750 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2830' +name: Pentium-N2830 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml new file mode 100644 index 00000000..0bc8db56 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '311 MHz' + 'GPU Boost Frequency': '792 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2840' +name: Pentium-N2840 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml new file mode 100644 index 00000000..1254c473 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '756 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2910' +name: Pentium-N2910 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml new file mode 100644 index 00000000..0eca8648 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-10-24' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '844 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2920' +name: Pentium-N2920 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml new file mode 100644 index 00000000..a724e2fb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-02-13' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '854 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2930' +name: Pentium-N2930 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml new file mode 100644 index 00000000..3b83f7dd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '854 MHz' +isPart: true +type: CPU +humanName: 'Pentium N2940' +name: Pentium-N2940 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml new file mode 100644 index 00000000..fdcba399 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-11' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '750 MHz' + 'UserBenchmark CPU Score': '32.3' +isPart: true +type: CPU +humanName: 'Pentium N3510' +name: Pentium-N3510 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml new file mode 100644 index 00000000..92709be3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.166 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-10-24' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '854 MHz' + 'UserBenchmark CPU Score': '34.4' +isPart: true +type: CPU +humanName: 'Pentium N3520' +name: Pentium-N3520 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml new file mode 100644 index 00000000..399dd3b0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-02-13' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '896 MHz' + 'Geekbench Single-Core Score': 184 + 'Geekbench Multi-Core Score': 532 + 'UserBenchmark CPU Score': '34.7' +isPart: true +type: CPU +humanName: 'Pentium N3530' +name: Pentium-N3530 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml new file mode 100644 index 00000000..1e538485 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Bay Trail' + Market: Mobile + Lithography: '22 nm' + TDP: '7.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1170 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '313 MHz' + 'GPU Boost Frequency': '896 MHz' + 'DirectX Support': '11.2' + 'Geekbench Single-Core Score': 193 + 'Geekbench Multi-Core Score': 570 + 'UserBenchmark CPU Score': '33.5' +isPart: true +type: CPU +humanName: 'Pentium N3540' +name: Pentium-N3540 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml new file mode 100644 index 00000000..72461582 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml @@ -0,0 +1,25 @@ +humanName: Braswell +sections: + - + header: '4 Threads' + members: + - Pentium-N3710 + - Pentium-N3700 + - Pentium-N3160 + - Pentium-N3150 + - + header: '2 Threads' + members: + - Pentium-N3060 + - Pentium-N3050 + - Pentium-N3010 + - Pentium-N3000 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-03-30' + Sockets: + - BGA1170 +name: Mobile-Braswell diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml new file mode 100644 index 00000000..e3a670ba --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '4 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.04 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3000' +name: Pentium-N3000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml new file mode 100644 index 00000000..1884aae7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '4 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.04 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3010' +name: Pentium-N3010 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml new file mode 100644 index 00000000..310a8522 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3050' +name: Pentium-N3050 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml new file mode 100644 index 00000000..87e05c42 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3060' +name: Pentium-N3060 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml new file mode 100644 index 00000000..4406e21e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3150' +name: Pentium-N3150 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml new file mode 100644 index 00000000..0c7f75d9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '320 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' +isPart: true +type: CPU +humanName: 'Pentium N3160' +name: Pentium-N3160 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml new file mode 100644 index 00000000..059c8bc1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' + 'Geekbench Single-Core Score': 178 + 'Geekbench Multi-Core Score': 501 + 'UserBenchmark CPU Score': '26.2' +isPart: true +type: CPU +humanName: 'Pentium N3700' +name: Pentium-N3700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml new file mode 100644 index 00000000..9e96da29 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Braswell + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2016-01-10' + Socket: FCBGA1170 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '0' + 'OpenGL Support': 'Yes' + 'UserBenchmark CPU Score': '25.1' +isPart: true +type: CPU +humanName: 'Pentium N3710' +name: Pentium-N3710 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml new file mode 100644 index 00000000..edc98092 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml @@ -0,0 +1,56 @@ +humanName: Broadwell +sections: + - + header: '8 Threads' + members: + - Core-i7-5950HQ + - Core-i7-5850HQ + - Core-i7-5750HQ + - Core-i7-5700HQ + - + header: '4 Threads' + members: + - Pentium-3825U + - Core-i7-5650U + - Core-i7-5600U + - Core-i7-5557U + - Core-i7-5550U + - Core-i7-5500U + - Core-i5-5350U + - Core-i5-5350H + - Core-i5-5300U + - Core-i5-5287U + - Core-i5-5257U + - Core-i5-5250U + - Core-i5-5200U + - Core-i3-5157U + - Core-i3-5020U + - Core-i3-5015U + - Core-i3-5010U + - Core-i3-5005U + - Core-5Y71 + - Core-5Y70 + - Core-5Y51 + - Core-5Y31 + - Core-5Y10c + - Core-5Y10a + - Core-5Y10 + - + header: '2 Threads' + members: + - Pentium-3805U + - Pentium-3765U + - Pentium-3755U + - Pentium-3215U + - Pentium-3205U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2014-09-05' + Sockets: + - BGA1234 + - BGA1168 + - BGA1364 +name: Mobile-Broadwell diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml new file mode 100644 index 00000000..668f3ac6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '800 MHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-09-05' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '800 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y10' +name: Core-5Y10 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml new file mode 100644 index 00000000..2d38764a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '800 MHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-09-05' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '800 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y10a' +name: Core-5Y10a diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml new file mode 100644 index 00000000..301531be --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '800 MHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-10-26' + Socket: FCBGA1234 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '800 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y10c' +name: Core-5Y10c diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml new file mode 100644 index 00000000..05c6820f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '900 MHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-10-26' + Socket: FCBGA1234 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y31' +name: Core-5Y31 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml new file mode 100644 index 00000000..cf5a0a57 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-10-26' + Socket: FCBGA1234 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y51' +name: Core-5Y51 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml new file mode 100644 index 00000000..3404b0c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-09-05' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y70' +name: Core-5Y70 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml new file mode 100644 index 00000000..6911dec7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'LPDDR3, DDR3L/DDR3L' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-10-26' + Socket: FCBGA1234 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L/DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core 5Y71' +name: Core-5Y71 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml new file mode 100644 index 00000000..ce3883d3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 595 + 'Geekbench Multi-Core Score': 1191 + 'UserBenchmark CPU Score': '37.5' +isPart: true +type: CPU +humanName: 'Core i3-5005U' +name: Core-i3-5005U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml new file mode 100644 index 00000000..697c9d9e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR' + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR3L, LPDDR' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 661 + 'Geekbench Multi-Core Score': 1334 + 'UserBenchmark CPU Score': '47.7' +isPart: true +type: CPU +humanName: 'Core i3-5010U' +name: Core-i3-5010U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml new file mode 100644 index 00000000..dceda51a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR' + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 680 + 'Geekbench Multi-Core Score': 1338 + 'UserBenchmark CPU Score': '47.8' +isPart: true +type: CPU +humanName: 'Core i3-5015U' +name: Core-i3-5015U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml new file mode 100644 index 00000000..295f7eeb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR' + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR3L, LPDDR' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 672 + 'Geekbench Multi-Core Score': 1363 +isPart: true +type: CPU +humanName: 'Core i3-5020U' +name: Core-i3-5020U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml new file mode 100644 index 00000000..c4e2be81 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-5157U' +name: Core-i3-5157U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml new file mode 100644 index 00000000..754ccddc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 769 + 'Geekbench Multi-Core Score': 1482 + 'UserBenchmark CPU Score': '41.7' +isPart: true +type: CPU +humanName: 'Core i5-5200U' +name: Core-i5-5200U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml new file mode 100644 index 00000000..63253e4c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 802 + 'Geekbench Multi-Core Score': 1548 + 'UserBenchmark CPU Score': '49.4' +isPart: true +type: CPU +humanName: 'Core i5-5250U' +name: Core-i5-5250U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml new file mode 100644 index 00000000..aa2cae77 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 920 + 'Geekbench Multi-Core Score': 1785 + 'UserBenchmark CPU Score': '54.6' +isPart: true +type: CPU +humanName: 'Core i5-5257U' +name: Core-i5-5257U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml new file mode 100644 index 00000000..a86d2282 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1048 + 'Geekbench Multi-Core Score': 2053 + 'UserBenchmark CPU Score': '58' +isPart: true +type: CPU +humanName: 'Core i5-5287U' +name: Core-i5-5287U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml new file mode 100644 index 00000000..2affd4df --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 809 + 'Geekbench Multi-Core Score': 1559 + 'UserBenchmark CPU Score': '41.6' +isPart: true +type: CPU +humanName: 'Core i5-5300U' +name: Core-i5-5300U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml new file mode 100644 index 00000000..873ff112 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-5350H' +name: Core-i5-5350H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml new file mode 100644 index 00000000..287b2448 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 917 + 'Geekbench Multi-Core Score': 1780 +isPart: true +type: CPU +humanName: 'Core i5-5350U' +name: Core-i5-5350U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml new file mode 100644 index 00000000..ccefc53b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 866 + 'Geekbench Multi-Core Score': 1669 + 'UserBenchmark CPU Score': '46.2' +isPart: true +type: CPU +humanName: 'Core i7-5500U' +name: Core-i7-5500U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml new file mode 100644 index 00000000..92a887ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '59.7' +isPart: true +type: CPU +humanName: 'Core i7-5550U' +name: Core-i7-5550U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml new file mode 100644 index 00000000..3bd07922 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1054 + 'Geekbench Multi-Core Score': 2052 + 'UserBenchmark CPU Score': '60.6' +isPart: true +type: CPU +humanName: 'Core i7-5557U' +name: Core-i7-5557U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml new file mode 100644 index 00000000..284bceb0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 900 + 'Geekbench Multi-Core Score': 1728 + 'UserBenchmark CPU Score': '49.6' +isPart: true +type: CPU +humanName: 'Core i7-5600U' +name: Core-i7-5600U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml new file mode 100644 index 00000000..7feace27 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 941 + 'Geekbench Multi-Core Score': 1717 + 'UserBenchmark CPU Score': '56.1' +isPart: true +type: CPU +humanName: 'Core i7-5650U' +name: Core-i7-5650U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml new file mode 100644 index 00000000..84c1b0fe --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1076 + 'Geekbench Multi-Core Score': 3205 + 'UserBenchmark CPU Score': '68.8' +isPart: true +type: CPU +humanName: 'Core i7-5700HQ' +name: Core-i7-5700HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml new file mode 100644 index 00000000..9c4e57e7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-5750HQ' +name: Core-i7-5750HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml new file mode 100644 index 00000000..eb442053 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '77.8' +isPart: true +type: CPU +humanName: 'Core i7-5850HQ' +name: Core-i7-5850HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml new file mode 100644 index 00000000..0f4c32c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '80.4' +isPart: true +type: CPU +humanName: 'Core i7-5950HQ' +name: Core-i7-5950HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml new file mode 100644 index 00000000..b55ba9c1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '800 MHz' + 'DirectX Support': '12' +isPart: true +type: CPU +humanName: 'Pentium 3205U' +name: Pentium-3205U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml new file mode 100644 index 00000000..8accc093 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-06-07' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'DirectX Support': '12' +isPart: true +type: CPU +humanName: 'Pentium 3215U' +name: Pentium-3215U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml new file mode 100644 index 00000000..664ceb09 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '800 MHz' + 'DirectX Support': '12' +isPart: true +type: CPU +humanName: 'Pentium 3755U' +name: Pentium-3755U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml new file mode 100644 index 00000000..b5a878ec --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-06-07' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'DirectX Support': '12' +isPart: true +type: CPU +humanName: 'Pentium 3765U' +name: Pentium-3765U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml new file mode 100644 index 00000000..48314e28 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-01-05' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '100 MHz' + 'GPU Boost Frequency': '800 MHz' + 'DirectX Support': '12' + 'Geekbench Single-Core Score': 313 + 'Geekbench Multi-Core Score': 555 + 'UserBenchmark CPU Score': '44.1' +isPart: true +type: CPU +humanName: 'Pentium 3805U' +name: Pentium-3805U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml new file mode 100644 index 00000000..cb890346 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-03-30' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'DirectX Support': '12' + 'Geekbench Single-Core Score': 274 + 'Geekbench Multi-Core Score': 555 +isPart: true +type: CPU +humanName: 'Pentium 3825U' +name: Pentium-3825U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml new file mode 100644 index 00000000..c0bf485e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml @@ -0,0 +1,16 @@ +humanName: Cedarview +sections: + - + header: '4 Threads' + members: + - Atom-N2800 + - Atom-N2600 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-12-28' + Sockets: + - BGA559 +name: Mobile-Cedarview diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml new file mode 100644 index 00000000..3293a31c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Cedarview + Market: Mobile + Lithography: '32 nm' + TDP: '3.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-12-28' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' + 'UserBenchmark CPU Score': '21.9' +isPart: true +type: CPU +humanName: 'Atom N2600' +name: Atom-N2600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml new file mode 100644 index 00000000..2794aaf8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Cedarview + Market: Mobile + Lithography: '32 nm' + TDP: '6.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2011-12-28' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '640 MHz' + 'UserBenchmark CPU Score': '26' +isPart: true +type: CPU +humanName: 'Atom N2800' +name: Atom-N2800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml new file mode 100644 index 00000000..92394ec0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml @@ -0,0 +1,22 @@ +humanName: 'Cherry Trail' +sections: + - + header: '4 Threads' + members: + - Atom-x7-Z8750 + - Atom-x7-Z8700 + - Atom-x5-Z8550 + - Atom-x5-Z8500 + - Atom-x5-Z8350 + - Atom-x5-Z8330 + - Atom-x5-Z8300 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-03-02' + Sockets: + - UTBGA1380 + - UTBGA592 +name: Mobile-Cherry-Trail diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml new file mode 100644 index 00000000..3dda5f7b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml @@ -0,0 +1,20 @@ +humanName: Clarksfield +sections: + - + header: '8 Threads' + members: + - Core-i7-940XM + - Core-i7-920XM + - Core-i7-840QM + - Core-i7-820QM + - Core-i7-740QM + - Core-i7-720QM +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-09-23' + Sockets: + - PGA988 +name: Mobile-Clarksfield diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml new file mode 100644 index 00000000..2dc4a4d0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-23' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 350 + 'Geekbench Multi-Core Score': 909 +isPart: true +type: CPU +humanName: 'Core i7-720QM' +name: Core-i7-720QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml new file mode 100644 index 00000000..cb3579e6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.73 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '296 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 358 + 'Geekbench Multi-Core Score': 974 +isPart: true +type: CPU +humanName: 'Core i7-740QM' +name: Core-i7-740QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml new file mode 100644 index 00000000..dd222ce0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.73 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-23' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-820QM' +name: Core-i7-820QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml new file mode 100644 index 00000000..dcb97cad --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 388 + 'Geekbench Multi-Core Score': 898 +isPart: true +type: CPU +humanName: 'Core i7-840QM' +name: Core-i7-840QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml new file mode 100644 index 00000000..fc18511e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-23' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-920XM' +name: Core-i7-920XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml new file mode 100644 index 00000000..588e7980 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarksfield + Market: Mobile + Lithography: '45 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': 'Q3 2010' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Core i7-940XM' +name: Core-i7-940XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml new file mode 100644 index 00000000..a92a063f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml @@ -0,0 +1,18 @@ +humanName: Cloverview +sections: + - + header: '4 Threads' + members: + - Atom-Z2760 + - Atom-Z2580 + - Atom-Z2560 + - Atom-Z2520 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-09-27' + Sockets: + - MB4760 +name: Mobile-Cloverview diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml new file mode 100644 index 00000000..99120064 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml @@ -0,0 +1,54 @@ +humanName: 'Coffee Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E-2286M + - Xeon-E-2276M + - Xeon-E-2186M + - Xeon-E-2176M + - Core-i9-9980HK + - Core-i9-9880H + - Core-i9-8950HK + - Core-i7-9850H + - Core-i7-9750HF + - Core-i7-9750H + - Core-i7-8850H + - Core-i7-8750H + - Core-i7-8700B + - + header: '8 Threads' + members: + - Core-i7-8569U + - Core-i7-8559U + - Core-i7-8557U + - Core-i5-9400H + - Core-i5-9300HF + - Core-i5-9300H + - Core-i5-8400H + - Core-i5-8300H + - Core-i5-8279U + - Core-i5-8269U + - Core-i5-8259U + - Core-i5-8257U + - + header: '6 Threads' + members: + - Core-i5-8500B + - Core-i5-8400B + - + header: '4 Threads' + members: + - Core-i3-8109U + - Core-i3-8100H + - Core-i3-8100B +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2018-04-03' + Sockets: + - BGA1440 + - BGA1528 +name: Mobile-Coffee-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml new file mode 100644 index 00000000..ad67c7a2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-09-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1218 + 'Geekbench Multi-Core Score': 3624 +isPart: true +type: CPU +humanName: 'Core i3-8100B' +name: Core-i3-8100B diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml new file mode 100644 index 00000000..7a360789 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: 14nm + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-07-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-8100H' +name: Core-i3-8100H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml new file mode 100644 index 00000000..e5f45310 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1141 + 'Geekbench Multi-Core Score': 2357 + 'UserBenchmark CPU Score': '65' +isPart: true +type: CPU +humanName: 'Core i3-8109U' +name: Core-i3-8109U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml new file mode 100644 index 00000000..009eb3ef --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-07-09' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1246 + 'Geekbench Multi-Core Score': 4074 +isPart: true +type: CPU +humanName: 'Core i5-8257U' +name: Core-i5-8257U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml new file mode 100644 index 00000000..8066d1c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1205 + 'Geekbench Multi-Core Score': 4035 + 'UserBenchmark CPU Score': '73.1' +isPart: true +type: CPU +humanName: 'Core i5-8259U' +name: Core-i5-8259U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml new file mode 100644 index 00000000..caed31b9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-8269U' +name: Core-i5-8269U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml new file mode 100644 index 00000000..bcd868fd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-05-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1189 + 'Geekbench Multi-Core Score': 3693 + 'UserBenchmark CPU Score': '74.2' +isPart: true +type: CPU +humanName: 'Core i5-8279U' +name: Core-i5-8279U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml new file mode 100644 index 00000000..f8df2872 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1239 + 'Geekbench Multi-Core Score': 3663 + '3DMark Fire Strike Physics Score': 2497 + 'UserBenchmark CPU Score': '64.7' +isPart: true +type: CPU +humanName: 'Core i5-8300H' +name: Core-i5-8300H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml new file mode 100644 index 00000000..ff06298a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-8400B' +name: Core-i5-8400B diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml new file mode 100644 index 00000000..5c4dc864 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1233 + 'Geekbench Multi-Core Score': 3423 + 'UserBenchmark CPU Score': '76.6' +isPart: true +type: CPU +humanName: 'Core i5-8400H' +name: Core-i5-8400H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml new file mode 100644 index 00000000..db60f1bd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1347 + 'Geekbench Multi-Core Score': 4939 +isPart: true +type: CPU +humanName: 'Core i5-8500B' +name: Core-i5-8500B diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml new file mode 100644 index 00000000..9ed80634 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1237 + 'Geekbench Multi-Core Score': 3616 + '3DMark Fire Strike Physics Score': 2606 + 'UserBenchmark CPU Score': '65' +isPart: true +type: CPU +humanName: 'Core i5-9300H' +name: Core-i5-9300H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml new file mode 100644 index 00000000..40846623 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': 'Q2 2019' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 1312 + 'Geekbench Multi-Core Score': 4143 +isPart: true +type: CPU +humanName: 'Core i5-9300HF' +name: Core-i5-9300HF diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml new file mode 100644 index 00000000..8b1f91ab --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '78.9' +isPart: true +type: CPU +humanName: 'Core i5-9400H' +name: Core-i5-9400H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml new file mode 100644 index 00000000..d9875005 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-07-09' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-8557U' +name: Core-i7-8557U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml new file mode 100644 index 00000000..3c112107 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1308 + 'Geekbench Multi-Core Score': 4066 + 'UserBenchmark CPU Score': '77.5' +isPart: true +type: CPU +humanName: 'Core i7-8559U' +name: Core-i7-8559U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml new file mode 100644 index 00000000..d415a3d0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1449 + 'Geekbench Multi-Core Score': 4508 +isPart: true +type: CPU +humanName: 'Core i7-8569U' +name: Core-i7-8569U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml new file mode 100644 index 00000000..11a0be12 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1546 + 'Geekbench Multi-Core Score': 5924 +isPart: true +type: CPU +humanName: 'Core i7-8700B' +name: Core-i7-8700B diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml new file mode 100644 index 00000000..d3c52aa9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1278 + 'Geekbench Multi-Core Score': 4554 + '3DMark Fire Strike Physics Score': 3544 + 'UserBenchmark CPU Score': '70.1' +isPart: true +type: CPU +humanName: 'Core i7-8750H' +name: Core-i7-8750H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml new file mode 100644 index 00000000..78b7dfff --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: 14nm + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1293 + 'Geekbench Multi-Core Score': 4644 + 'UserBenchmark CPU Score': '70.7' +isPart: true +type: CPU +humanName: 'Core i7-8850H' +name: Core-i7-8850H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml new file mode 100644 index 00000000..526972b4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1330 + 'Geekbench Multi-Core Score': 4888 + '3DMark Fire Strike Physics Score': 3795 + 'UserBenchmark CPU Score': '73.3' +isPart: true +type: CPU +humanName: 'Core i7-9750H' +name: Core-i7-9750H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml new file mode 100644 index 00000000..2eb63d6e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Core i7-9750HF' +name: Core-i7-9750HF diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml new file mode 100644 index 00000000..92995234 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1376 + 'Geekbench Multi-Core Score': 5019 + 'UserBenchmark CPU Score': '77.1' +isPart: true +type: CPU +humanName: 'Core i7-9850H' +name: Core-i7-9850H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml new file mode 100644 index 00000000..21de6794 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1335 + 'Geekbench Multi-Core Score': 4823 + 'UserBenchmark CPU Score': '74.5' +isPart: true +type: CPU +humanName: 'Core i9-8950HK' +name: Core-i9-8950HK diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml new file mode 100644 index 00000000..f877439b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1328 + 'Geekbench Multi-Core Score': 6018 + 'UserBenchmark CPU Score': '78.9' +isPart: true +type: CPU +humanName: 'Core i9-9880H' +name: Core-i9-9880H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml new file mode 100644 index 00000000..5f2bb858 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-04-23' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1396 + 'Geekbench Multi-Core Score': 6228 + 'UserBenchmark CPU Score': '81.8' +isPart: true +type: CPU +humanName: 'Core i9-9980HK' +name: Core-i9-9980HK diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml new file mode 100644 index 00000000..98af832c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: 14nm + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1400 + 'Geekbench Multi-Core Score': 5032 +isPart: true +type: CPU +humanName: 'Xeon E-2176M' +name: Xeon-E-2176M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml new file mode 100644 index 00000000..1070bb18 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-04-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2186M' +name: Xeon-E-2186M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml new file mode 100644 index 00000000..1deba20d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1409 + 'Geekbench Multi-Core Score': 5303 +isPart: true +type: CPU +humanName: 'Xeon E-2276M' +name: Xeon-E-2276M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml new file mode 100644 index 00000000..2600e571 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-05-27' + Socket: FCBGA1440 + AES: true + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2286M' +name: Xeon-E-2286M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml new file mode 100644 index 00000000..644b3558 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml @@ -0,0 +1,29 @@ +humanName: 'Comet Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Core-i7-10710U + - + header: '8 Threads' + members: + - Core-i7-10510U + - Core-i5-10210U + - + header: '4 Threads' + members: + - Pentium-6405U + - Core-i3-10110U + - + header: '2 Threads' + members: + - Pentium-5205U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2019-08-21' + Sockets: + - BGA1528 +name: Mobile-Comet-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml new file mode 100644 index 00000000..2d964c7d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: 14nm + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-08-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1120 + 'Geekbench Multi-Core Score': 2085 + 'UserBenchmark CPU Score': '46.9' +isPart: true +type: CPU +humanName: 'Core i3-10110U' +name: Core-i3-10110U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml new file mode 100644 index 00000000..e8ec2c6e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: 14nm + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1101 + 'Geekbench Multi-Core Score': 3037 + 'UserBenchmark CPU Score': '53.4' +isPart: true +type: CPU +humanName: 'Core i5-10210U' +name: Core-i5-10210U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml new file mode 100644 index 00000000..e44139ae --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: 14nm + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-08-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1255 + 'Geekbench Multi-Core Score': 3220 + 'UserBenchmark CPU Score': '56.4' +isPart: true +type: CPU +humanName: 'Core i7-10510U' +name: Core-i7-10510U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml new file mode 100644 index 00000000..5107079c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-08-21' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '68' +isPart: true +type: CPU +humanName: 'Core i7-10710U' +name: Core-i7-10710U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml new file mode 100644 index 00000000..79723cbe --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-10-01' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium 5205U' +name: Pentium-5205U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml new file mode 100644 index 00000000..9c108ed6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Comet Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-10-01' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium 6405U' +name: Pentium-6405U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml new file mode 100644 index 00000000..03c0499e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml @@ -0,0 +1,23 @@ +humanName: 'Crystal Well' +sections: + - + header: '8 Threads' + members: + - Core-i7-4980HQ + - Core-i7-4960HQ + - Core-i7-4950HQ + - Core-i7-4870HQ + - Core-i7-4860HQ + - Core-i7-4850HQ + - Core-i7-4770HQ + - Core-i7-4760HQ + - Core-i7-4750HQ +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-04' + Sockets: + - BGA1364 +name: Mobile-Crystal-Well diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml new file mode 100644 index 00000000..5880cfbd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-04' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 973 + 'Geekbench Multi-Core Score': 3195 + 'UserBenchmark CPU Score': '63.4' +isPart: true +type: CPU +humanName: 'Core i7-4750HQ' +name: Core-i7-4750HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml new file mode 100644 index 00000000..89baa056 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4760HQ' +name: Core-i7-4760HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml new file mode 100644 index 00000000..58fc7cf5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 964 + 'Geekbench Multi-Core Score': 3230 + 'UserBenchmark CPU Score': '64' +isPart: true +type: CPU +humanName: 'Core i7-4770HQ' +name: Core-i7-4770HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml new file mode 100644 index 00000000..b5360b3c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-04' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 993 + 'Geekbench Multi-Core Score': 3344 + 'UserBenchmark CPU Score': '66' +isPart: true +type: CPU +humanName: 'Core i7-4850HQ' +name: Core-i7-4850HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml new file mode 100644 index 00000000..6ca41426 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-01-19' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4860HQ' +name: Core-i7-4860HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml new file mode 100644 index 00000000..b9f0beb0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1038 + 'Geekbench Multi-Core Score': 3423 +isPart: true +type: CPU +humanName: 'Core i7-4870HQ' +name: Core-i7-4870HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml new file mode 100644 index 00000000..b915c959 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-04' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4950HQ' +name: Core-i7-4950HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml new file mode 100644 index 00000000..329146f5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1095 + 'Geekbench Multi-Core Score': 3701 + 'UserBenchmark CPU Score': '68' +isPart: true +type: CPU +humanName: 'Core i7-4960HQ' +name: Core-i7-4960HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml new file mode 100644 index 00000000..aa7880fc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Crystal Well' + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1156 + 'Geekbench Multi-Core Score': 3589 +isPart: true +type: CPU +humanName: 'Core i7-4980HQ' +name: Core-i7-4980HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml new file mode 100644 index 00000000..86582d81 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml @@ -0,0 +1,16 @@ +humanName: Diamondville +sections: + - + header: '2 Threads' + members: + - Atom-N280 + - Atom-N270 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-06-03' + Sockets: + - PBGA437 +name: Mobile-Diamondville diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml new file mode 100644 index 00000000..bd6e6723 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Diamondville + Market: Mobile + Lithography: '45 nm' + TDP: '2.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-06-03' + Socket: PBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20.1' +isPart: true +type: CPU +humanName: 'Atom N270' +name: Atom-N270 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml new file mode 100644 index 00000000..0e6724af --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Diamondville + Market: Mobile + Lithography: '45 nm' + TDP: '2.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': 'Q1 2009' + Socket: PBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20.3' +isPart: true +type: CPU +humanName: 'Atom N280' +name: Atom-N280 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml new file mode 100644 index 00000000..35f0e0ea --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml @@ -0,0 +1,44 @@ +humanName: Dothan +sections: + - + header: '1 Threads' + members: + - Pentium-780 + - Pentium-778 + - Pentium-773 + - Pentium-770 + - Pentium-765 + - Pentium-760 + - Pentium-758 + - Pentium-755 + - Pentium-753 + - Pentium-750 + - Pentium-745A + - Pentium-745 + - Pentium-740 + - Pentium-738 + - Pentium-735 + - Pentium-733 + - Pentium-730 + - Pentium-725 + - Pentium-715 + - Pentium-390 + - Pentium-383 + - Pentium-380 + - Pentium-373 + - Pentium-370 + - Pentium-360 + - Pentium-353 + - Pentium-350 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '90 nm' + 'Release Date': 'Q2 2004' + Sockets: + - HPBGA478 + - HPBGA479 + - PPGA478 + - PPGA479 +name: Mobile-Dothan diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml new file mode 100644 index 00000000..3a84dda6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': 'Q3 2005' + Socket: 'H-PBGA478, H-PBGA479, PPGA478, PPGA479' + AES: false + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 350' +name: Pentium-350 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml new file mode 100644 index 00000000..e5866b4b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '900 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 353' +name: Pentium-353 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml new file mode 100644 index 00000000..9ce58eb6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': 'Q4 2006' + Socket: 'H-PBGA479, PPGA478' + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 360' +name: Pentium-360 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml new file mode 100644 index 00000000..cc7bafe7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': '2005-02-14' + Socket: 'H-PBGA478, H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 370' +name: Pentium-370 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml new file mode 100644 index 00000000..699931b2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '87 mm' + 'Release Date': '2005-02-14' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 373' +name: Pentium-373 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml new file mode 100644 index 00000000..2ce40537 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 380' +name: Pentium-380 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml new file mode 100644 index 00000000..00e4c00a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 383' +name: Pentium-383 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml new file mode 100644 index 00000000..1d08a8c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 390' +name: Pentium-390 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml new file mode 100644 index 00000000..bf315b99 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 715' +name: Pentium-715 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml new file mode 100644 index 00000000..bbb4f6c2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + 'Release Date': 'Q2 2004' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 725' +name: Pentium-725 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml new file mode 100644 index 00000000..7d5fe91b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 730' +name: Pentium-730 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml new file mode 100644 index 00000000..a5067193 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 733' +name: Pentium-733 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml new file mode 100644 index 00000000..fff2de1d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 735' +name: Pentium-735 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml new file mode 100644 index 00000000..fae65457 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + 'Release Date': '2004-07-29' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 738' +name: Pentium-738 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml new file mode 100644 index 00000000..c6a8d2c9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 740' +name: Pentium-740 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml new file mode 100644 index 00000000..a621b2c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + 'Release Date': '2004-06-25' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 745' +name: Pentium-745 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml new file mode 100644 index 00000000..9e59a1da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '21 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + 'Release Date': '2004-06-25' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 745A' +name: Pentium-745A diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml new file mode 100644 index 00000000..5b6a2a70 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 750' +name: Pentium-750 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml new file mode 100644 index 00000000..d156d84c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 753' +name: Pentium-753 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml new file mode 100644 index 00000000..d45c82f2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 755' +name: Pentium-755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml new file mode 100644 index 00000000..78945388 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 758' +name: Pentium-758 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml new file mode 100644 index 00000000..18b40bac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + 'Release Date': '2004-10-11' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 760' +name: Pentium-760 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml new file mode 100644 index 00000000..0466f1ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 765' +name: Pentium-765 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml new file mode 100644 index 00000000..94147158 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 770' +name: Pentium-770 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml new file mode 100644 index 00000000..234b27ba --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 773' +name: Pentium-773 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml new file mode 100644 index 00000000..e06c50c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '7.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: H-PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 778' +name: Pentium-778 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml new file mode 100644 index 00000000..65270c77 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Dothan + Market: Mobile + Lithography: '90 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '87 mm' + Socket: 'H-PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 780' +name: Pentium-780 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml new file mode 100644 index 00000000..7d4e9e97 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml @@ -0,0 +1,20 @@ +humanName: 'Gemini Lake Refresh' +sections: + - + header: '4 Threads' + members: + - Pentium-N5030 + - Pentium-N4120 + - + header: '2 Threads' + members: + - Pentium-N4020 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2019-11-04' + Sockets: + - BGA1090 +name: Mobile-Gemini-Lake-Refresh diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml new file mode 100644 index 00000000..e7c5c2e0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Mobile + Lithography: 14nm + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N4020' +name: Pentium-N4020 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml new file mode 100644 index 00000000..d8ac4f41 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Mobile + Lithography: 14nm + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N4120' +name: Pentium-N4120 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml new file mode 100644 index 00000000..cbd67bbb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake Refresh' + Market: Mobile + Lithography: 14nm + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-11-04' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N5030' +name: Pentium-N5030 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml new file mode 100644 index 00000000..f3294fed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml @@ -0,0 +1,20 @@ +humanName: 'Gemini Lake' +sections: + - + header: '4 Threads' + members: + - Pentium-N5000 + - Pentium-N4100 + - + header: '2 Threads' + members: + - Pentium-N4000 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-12-11' + Sockets: + - BGA1090 +name: Mobile-Gemini-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml new file mode 100644 index 00000000..e91f620e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N4000' +name: Pentium-N4000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml new file mode 100644 index 00000000..77fd4862 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N4100' +name: Pentium-N4100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml new file mode 100644 index 00000000..8f72399a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Gemini Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4/LPDDR4 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-12-11' + Socket: FCBGA1090 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': DDR4/LPDDR4 + 'Maximum VRAM Capacity': '8 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium N5000' +name: Pentium-N5000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml new file mode 100644 index 00000000..69f283a5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml @@ -0,0 +1,101 @@ +humanName: Haswell +sections: + - + header: '8 Threads' + members: + - Core-i7-4940MX + - Core-i7-4930MX + - Core-i7-4910MQ + - Core-i7-4900MQ + - Core-i7-4810MQ + - Core-i7-4800MQ + - Core-i7-4722HQ + - Core-i7-4720HQ + - Core-i7-4712MQ + - Core-i7-4712HQ + - Core-i7-4710MQ + - Core-i7-4710HQ + - Core-i7-4702MQ + - Core-i7-4702HQ + - Core-i7-4700MQ + - Core-i7-4700HQ + - + header: '4 Threads' + members: + - Core-i7-4650U + - Core-i7-4610Y + - Core-i7-4610M + - Core-i7-4600U + - Core-i7-4600M + - Core-i7-4578U + - Core-i7-4558U + - Core-i7-4550U + - Core-i7-4510U + - Core-i7-4500U + - Core-i5-4360U + - Core-i5-4350U + - Core-i5-4340M + - Core-i5-4330M + - Core-i5-4310U + - Core-i5-4310M + - Core-i5-4308U + - Core-i5-4302Y + - Core-i5-4300Y + - Core-i5-4300U + - Core-i5-4300M + - Core-i5-4288U + - Core-i5-4278U + - Core-i5-4260U + - Core-i5-4258U + - Core-i5-4250U + - Core-i5-4220Y + - Core-i5-4210Y + - Core-i5-4210U + - Core-i5-4210M + - Core-i5-4210H + - Core-i5-4202Y + - Core-i5-4200Y + - Core-i5-4200U + - Core-i5-4200M + - Core-i5-4200H + - Core-i3-4158U + - Core-i3-4120U + - Core-i3-4110M + - Core-i3-4100U + - Core-i3-4100M + - Core-i3-4030Y + - Core-i3-4030U + - Core-i3-4025U + - Core-i3-4020Y + - Core-i3-4012Y + - Core-i3-4010Y + - Core-i3-4010U + - Core-i3-4005U + - Core-i3-4000M + - + header: '2 Threads' + members: + - Pentium-3561Y + - Pentium-3560Y + - Pentium-3560M + - Pentium-3558U + - Pentium-3556U + - Pentium-3550M + - Pentium-2981U + - Pentium-2980U + - Pentium-2970M + - Pentium-2961Y + - Pentium-2957U + - Pentium-2955U + - Pentium-2950M +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-01' + Sockets: + - BGA1364 + - BGA1168 + - PGA946 +name: Mobile-Haswell diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml new file mode 100644 index 00000000..3e09d9fe --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 688 + 'Geekbench Multi-Core Score': 1386 + 'UserBenchmark CPU Score': '51' +isPart: true +type: CPU +humanName: 'Core i3-4000M' +name: Core-i3-4000M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml new file mode 100644 index 00000000..17b3087d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 494 + 'Geekbench Multi-Core Score': 1021 + 'UserBenchmark CPU Score': '38.5' +isPart: true +type: CPU +humanName: 'Core i3-4005U' +name: Core-i3-4005U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml new file mode 100644 index 00000000..9ed3fd7b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 509 + 'Geekbench Multi-Core Score': 1077 + 'UserBenchmark CPU Score': '44' +isPart: true +type: CPU +humanName: 'Core i3-4010U' +name: Core-i3-4010U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml new file mode 100644 index 00000000..d514fc3d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4010Y' +name: Core-i3-4010Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml new file mode 100644 index 00000000..0e132935 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '42.6' +isPart: true +type: CPU +humanName: 'Core i3-4012Y' +name: Core-i3-4012Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml new file mode 100644 index 00000000..2d92977b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 466 + 'Geekbench Multi-Core Score': 870 +isPart: true +type: CPU +humanName: 'Core i3-4020Y' +name: Core-i3-4020Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml new file mode 100644 index 00000000..23bbd05d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4025U' +name: Core-i3-4025U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml new file mode 100644 index 00000000..1d1583ef --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 560 + 'Geekbench Multi-Core Score': 1152 + 'UserBenchmark CPU Score': '44.6' +isPart: true +type: CPU +humanName: 'Core i3-4030U' +name: Core-i3-4030U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml new file mode 100644 index 00000000..18910f4a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4030Y' +name: Core-i3-4030Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml new file mode 100644 index 00000000..09dee6cc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 783 + 'Geekbench Multi-Core Score': 1526 +isPart: true +type: CPU +humanName: 'Core i3-4100M' +name: Core-i3-4100M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml new file mode 100644 index 00000000..a93226ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4100U' +name: Core-i3-4100U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml new file mode 100644 index 00000000..9e69f2e1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4110M' +name: Core-i3-4110M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml new file mode 100644 index 00000000..abe0475b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4120U' +name: Core-i3-4120U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml new file mode 100644 index 00000000..e92c8cb6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i3-4158U' +name: Core-i3-4158U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml new file mode 100644 index 00000000..28e93725 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 855 + 'Geekbench Multi-Core Score': 1692 + 'UserBenchmark CPU Score': '57' +isPart: true +type: CPU +humanName: 'Core i5-4200H' +name: Core-i5-4200H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml new file mode 100644 index 00000000..9553ca40 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 856 + 'Geekbench Multi-Core Score': 1675 + 'UserBenchmark CPU Score': '49.6' +isPart: true +type: CPU +humanName: 'Core i5-4200M' +name: Core-i5-4200M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml new file mode 100644 index 00000000..29c1efc6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 693 + 'Geekbench Multi-Core Score': 1359 + 'UserBenchmark CPU Score': '42.6' +isPart: true +type: CPU +humanName: 'Core i5-4200U' +name: Core-i5-4200U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml new file mode 100644 index 00000000..c9f0aa2f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'Boost Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4200Y' +name: Core-i5-4200Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml new file mode 100644 index 00000000..d0cbabd0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 564 + 'Geekbench Multi-Core Score': 946 + 'UserBenchmark CPU Score': '42.9' +isPart: true +type: CPU +humanName: 'Core i5-4202Y' +name: Core-i5-4202Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml new file mode 100644 index 00000000..245ea983 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 946 + 'Geekbench Multi-Core Score': 1858 +isPart: true +type: CPU +humanName: 'Core i5-4210H' +name: Core-i5-4210H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml new file mode 100644 index 00000000..f6fd6112 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 883 + 'Geekbench Multi-Core Score': 1751 + 'UserBenchmark CPU Score': '51.3' +isPart: true +type: CPU +humanName: 'Core i5-4210M' +name: Core-i5-4210M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml new file mode 100644 index 00000000..00511153 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 720 + 'Geekbench Multi-Core Score': 1395 + 'UserBenchmark CPU Score': '41.3' +isPart: true +type: CPU +humanName: 'Core i5-4210U' +name: Core-i5-4210U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml new file mode 100644 index 00000000..460ea6ef --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '44.4' +isPart: true +type: CPU +humanName: 'Core i5-4210Y' +name: Core-i5-4210Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml new file mode 100644 index 00000000..0bf35c8c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4220Y' +name: Core-i5-4220Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml new file mode 100644 index 00000000..7651af9d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 762 + 'Geekbench Multi-Core Score': 1462 + 'UserBenchmark CPU Score': '50.4' +isPart: true +type: CPU +humanName: 'Core i5-4250U' +name: Core-i5-4250U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml new file mode 100644 index 00000000..a2538425 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 781 + 'Geekbench Multi-Core Score': 1584 + 'UserBenchmark CPU Score': '56.3' +isPart: true +type: CPU +humanName: 'Core i5-4258U' +name: Core-i5-4258U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml new file mode 100644 index 00000000..2c8bed91 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 739 + 'Geekbench Multi-Core Score': 1470 +isPart: true +type: CPU +humanName: 'Core i5-4260U' +name: Core-i5-4260U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml new file mode 100644 index 00000000..07ba49d1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 849 + 'Geekbench Multi-Core Score': 1757 +isPart: true +type: CPU +humanName: 'Core i5-4278U' +name: Core-i5-4278U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml new file mode 100644 index 00000000..01801852 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 837 + 'Geekbench Multi-Core Score': 1631 +isPart: true +type: CPU +humanName: 'Core i5-4288U' +name: Core-i5-4288U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml new file mode 100644 index 00000000..036a8655 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 876 + 'Geekbench Multi-Core Score': 1748 + 'UserBenchmark CPU Score': '51.5' +isPart: true +type: CPU +humanName: 'Core i5-4300M' +name: Core-i5-4300M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml new file mode 100644 index 00000000..2b26cfe9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 779 + 'Geekbench Multi-Core Score': 1469 + 'UserBenchmark CPU Score': '43.7' +isPart: true +type: CPU +humanName: 'Core i5-4300U' +name: Core-i5-4300U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml new file mode 100644 index 00000000..17290784 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '44.2' +isPart: true +type: CPU +humanName: 'Core i5-4300Y' +name: Core-i5-4300Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml new file mode 100644 index 00000000..df2d5e6e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4302Y' +name: Core-i5-4302Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml new file mode 100644 index 00000000..356f79da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1021 + 'Geekbench Multi-Core Score': 2048 +isPart: true +type: CPU +humanName: 'Core i5-4308U' +name: Core-i5-4308U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml new file mode 100644 index 00000000..015e63d2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-01-19' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 959 + 'Geekbench Multi-Core Score': 1865 +isPart: true +type: CPU +humanName: 'Core i5-4310M' +name: Core-i5-4310M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml new file mode 100644 index 00000000..7626890a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-01-19' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 780 + 'Geekbench Multi-Core Score': 1475 + 'UserBenchmark CPU Score': '49.4' +isPart: true +type: CPU +humanName: 'Core i5-4310U' +name: Core-i5-4310U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml new file mode 100644 index 00000000..cfe2856c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4330M' +name: Core-i5-4330M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml new file mode 100644 index 00000000..e816ae1d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-01-19' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4340M' +name: Core-i5-4340M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml new file mode 100644 index 00000000..30fcecc3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4350U' +name: Core-i5-4350U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml new file mode 100644 index 00000000..05bff87c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2014-01-19' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i5-4360U' +name: Core-i5-4360U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml new file mode 100644 index 00000000..eaef11a9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 749 + 'Geekbench Multi-Core Score': 1390 + 'UserBenchmark CPU Score': '50.1' +isPart: true +type: CPU +humanName: 'Core i7-4500U' +name: Core-i7-4500U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml new file mode 100644 index 00000000..f87238de --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 856 + 'Geekbench Multi-Core Score': 1600 + 'UserBenchmark CPU Score': '47.1' +isPart: true +type: CPU +humanName: 'Core i7-4510U' +name: Core-i7-4510U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml new file mode 100644 index 00000000..5000bbe1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '50.5' +isPart: true +type: CPU +humanName: 'Core i7-4550U' +name: Core-i7-4550U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml new file mode 100644 index 00000000..a64c788b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '57.7' +isPart: true +type: CPU +humanName: 'Core i7-4558U' +name: Core-i7-4558U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml new file mode 100644 index 00000000..382d85cf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-07-20' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 736 + 'Geekbench Multi-Core Score': 1320 +isPart: true +type: CPU +humanName: 'Core i7-4578U' +name: Core-i7-4578U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml new file mode 100644 index 00000000..0df8b30b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 998 + 'Geekbench Multi-Core Score': 1884 + 'UserBenchmark CPU Score': '56' +isPart: true +type: CPU +humanName: 'Core i7-4600M' +name: Core-i7-4600M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml new file mode 100644 index 00000000..4d002fe6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 820 + 'Geekbench Multi-Core Score': 1534 + 'UserBenchmark CPU Score': '49.1' +isPart: true +type: CPU +humanName: 'Core i7-4600U' +name: Core-i7-4600U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml new file mode 100644 index 00000000..49db6571 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2014-01-19' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1024 + 'Geekbench Multi-Core Score': 2056 + 'UserBenchmark CPU Score': '58.3' +isPart: true +type: CPU +humanName: 'Core i7-4610M' +name: Core-i7-4610M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml new file mode 100644 index 00000000..9378b85f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Core i7-4610Y' +name: Core-i7-4610Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml new file mode 100644 index 00000000..7210ec4f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-06-03' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR3L, LPDDR3' + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 810 + 'Geekbench Multi-Core Score': 1425 + 'UserBenchmark CPU Score': '51.1' +isPart: true +type: CPU +humanName: 'Core i7-4650U' +name: Core-i7-4650U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml new file mode 100644 index 00000000..03a70d06 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 976 + 'Geekbench Multi-Core Score': 3068 + 'UserBenchmark CPU Score': '61.9' +isPart: true +type: CPU +humanName: 'Core i7-4700HQ' +name: Core-i7-4700HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml new file mode 100644 index 00000000..a176f18b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 967 + 'Geekbench Multi-Core Score': 2941 + 'UserBenchmark CPU Score': '58.6' +isPart: true +type: CPU +humanName: 'Core i7-4700MQ' +name: Core-i7-4700MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml new file mode 100644 index 00000000..ab512d76 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 896 + 'Geekbench Multi-Core Score': 2882 + 'UserBenchmark CPU Score': '61.8' +isPart: true +type: CPU +humanName: 'Core i7-4702HQ' +name: Core-i7-4702HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml new file mode 100644 index 00000000..6ed60112 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 910 + 'Geekbench Multi-Core Score': 2806 + 'UserBenchmark CPU Score': '61' +isPart: true +type: CPU +humanName: 'Core i7-4702MQ' +name: Core-i7-4702MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml new file mode 100644 index 00000000..1ba1c667 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 947 + 'Geekbench Multi-Core Score': 2860 + 'UserBenchmark CPU Score': '57.9' +isPart: true +type: CPU +humanName: 'Core i7-4710HQ' +name: Core-i7-4710HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml new file mode 100644 index 00000000..117c6ab7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 996 + 'Geekbench Multi-Core Score': 3101 + 'UserBenchmark CPU Score': '59.7' +isPart: true +type: CPU +humanName: 'Core i7-4710MQ' +name: Core-i7-4710MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml new file mode 100644 index 00000000..4b8622a6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-04-14' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 798 + 'Geekbench Multi-Core Score': 2537 + 'UserBenchmark CPU Score': '60.7' +isPart: true +type: CPU +humanName: 'Core i7-4712HQ' +name: Core-i7-4712HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml new file mode 100644 index 00000000..c547378e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 952 + 'Geekbench Multi-Core Score': 2510 +isPart: true +type: CPU +humanName: 'Core i7-4712MQ' +name: Core-i7-4712MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml new file mode 100644 index 00000000..40300f66 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-01-12' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 974 + 'Geekbench Multi-Core Score': 2981 + 'UserBenchmark CPU Score': '57.8' +isPart: true +type: CPU +humanName: 'Core i7-4720HQ' +name: Core-i7-4720HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml new file mode 100644 index 00000000..80d4fe37 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-01-12' + Socket: FCBGA1364 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'UserBenchmark CPU Score': '66.3' +isPart: true +type: CPU +humanName: 'Core i7-4722HQ' +name: Core-i7-4722HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml new file mode 100644 index 00000000..f50ed8a7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2013-06-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 970 + 'Geekbench Multi-Core Score': 2835 + 'UserBenchmark CPU Score': '63.3' +isPart: true +type: CPU +humanName: 'Core i7-4800MQ' +name: Core-i7-4800MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml new file mode 100644 index 00000000..30a73d47 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2014-01-19' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1030 + 'Geekbench Multi-Core Score': 3097 + 'UserBenchmark CPU Score': '61.7' +isPart: true +type: CPU +humanName: 'Core i7-4810MQ' +name: Core-i7-4810MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml new file mode 100644 index 00000000..7de68dc1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 988 + 'Geekbench Multi-Core Score': 2989 + 'UserBenchmark CPU Score': '67.6' +isPart: true +type: CPU +humanName: 'Core i7-4900MQ' +name: Core-i7-4900MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml new file mode 100644 index 00000000..2336b76a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '47 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-01-19' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '2 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.3' + 'Geekbench Single-Core Score': 1033 + 'Geekbench Multi-Core Score': 3279 + 'UserBenchmark CPU Score': '67.3' +isPart: true +type: CPU +humanName: 'Core i7-4910MQ' +name: Core-i7-4910MQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml new file mode 100644 index 00000000..e1ce3d40 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '57 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCPGA946 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'Geekbench Single-Core Score': 1105 + 'Geekbench Multi-Core Score': 3430 + 'UserBenchmark CPU Score': '69.1' +isPart: true +type: CPU +humanName: 'Core i7-4930MX' +name: Core-i7-4930MX diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml new file mode 100644 index 00000000..4ba31790 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '57 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-01-19' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'VRAM Type': DDR3L + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'Geekbench Single-Core Score': 1192 + 'Geekbench Multi-Core Score': 3693 + 'UserBenchmark CPU Score': '69.3' +isPart: true +type: CPU +humanName: 'Core i7-4940MX' +name: Core-i7-4940MX diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml new file mode 100644 index 00000000..175a7200 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium 2950M' +name: Pentium-2950M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml new file mode 100644 index 00000000..18eeabe7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2955U' +name: Pentium-2955U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml new file mode 100644 index 00000000..89a0b7a2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-01' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2957U' +name: Pentium-2957U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml new file mode 100644 index 00000000..77aca25b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-01' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2961Y' +name: Pentium-2961Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml new file mode 100644 index 00000000..28cd39ae --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium 2970M' +name: Pentium-2970M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml new file mode 100644 index 00000000..484a1672 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2980U' +name: Pentium-2980U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml new file mode 100644 index 00000000..273fc1b6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-01' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2981U' +name: Pentium-2981U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml new file mode 100644 index 00000000..cef77abd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + Socket: FCPGA946 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '49.1' +isPart: true +type: CPU +humanName: 'Pentium 3550M' +name: Pentium-3550M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml new file mode 100644 index 00000000..61097e1d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 3556U' +name: Pentium-3556U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml new file mode 100644 index 00000000..2f7f1e5b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-01' + Socket: FCBGA1168 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 3558U' +name: Pentium-3558U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml new file mode 100644 index 00000000..46efa5df --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '37 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3L + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2014-04-14' + Socket: FCPGA946 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium 3560M' +name: Pentium-3560M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml new file mode 100644 index 00000000..1fe76eec --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Pentium 3560Y' +name: Pentium-3560Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml new file mode 100644 index 00000000..807b0540 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Mobile + Lithography: '22 nm' + TDP: '11.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3L, LPDDR3' + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-12-01' + Socket: FCBGA1168 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '200 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Pentium 3561Y' +name: Pentium-3561Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml new file mode 100644 index 00000000..b7705a0e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml @@ -0,0 +1,27 @@ +humanName: 'Ice Lake' +sections: + - + header: '8 Threads' + members: + - Core-i7-1065G7 + - Core-i7-1060G7 + - Core-i5-1035G7 + - Core-i5-1035G4 + - Core-i5-1035G1 + - Core-i5-1030G7 + - Core-i5-1030G4 + - + header: '4 Threads' + members: + - Core-i3-1005G1 + - Core-i3-1000G4 + - Core-i3-1000G1 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '10 nm' + 'Release Date': '2019-08-01' + Sockets: + - BGA1526 +name: Mobile-Ice-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml new file mode 100644 index 00000000..7a587323 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '9 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': LPDDR4 + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-08-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-1000G1' +name: Core-i3-1000G1 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml new file mode 100644 index 00000000..254a1bfa --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '9 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': LPDDR4 + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-08-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-1000G4' +name: Core-i3-1000G4 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml new file mode 100644 index 00000000..10ab3915 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': 'DDR4, LPDDR4' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2019-08-01' + Socket: FCBGA1526 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1270 + 'Geekbench Multi-Core Score': 2322 + 'UserBenchmark CPU Score': '43.8' +isPart: true +type: CPU +humanName: 'Core i3-1005G1' +name: Core-i3-1005G1 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml new file mode 100644 index 00000000..828c67a6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '9 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': LPDDR4 + 'Base Frequency': '700 MHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-1030G4' +name: Core-i5-1030G4 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml new file mode 100644 index 00000000..f899aa66 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '9 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': LPDDR4 + 'Base Frequency': '800 MHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-1030G7' +name: Core-i5-1030G7 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml new file mode 100644 index 00000000..2be4eedc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': 'DDR4, LPDDR4' + 'Base Frequency': '1000 MHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-01' + Socket: FCBGA1526 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '51.1' +isPart: true +type: CPU +humanName: 'Core i5-1035G1' +name: Core-i5-1035G1 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml new file mode 100644 index 00000000..723eef6b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': 'DDR4, LPDDR4' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-01' + Socket: FCBGA1526 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '55.5' +isPart: true +type: CPU +humanName: 'Core i5-1035G4' +name: Core-i5-1035G4 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml new file mode 100644 index 00000000..b0f76709 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': 'DDR4, LPDDR4' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-08-01' + Socket: FCBGA1526 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '57.7' +isPart: true +type: CPU +humanName: 'Core i5-1035G7' +name: Core-i5-1035G7 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml new file mode 100644 index 00000000..276fee03 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '9 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': LPDDR4 + 'Base Frequency': '1000 MHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-08-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-1060G7' +name: Core-i7-1060G7 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml new file mode 100644 index 00000000..51a5e5d0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ice Lake' + Market: Mobile + Lithography: '10 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '3733 MHz' + 'Memory Type': 'DDR4, LPDDR4' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-08-01' + Socket: FCBGA1526 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '53.2' +isPart: true +type: CPU +humanName: 'Core i7-1065G7' +name: Core-i7-1065G7 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml new file mode 100644 index 00000000..cb23509a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml @@ -0,0 +1,72 @@ +humanName: 'Ivy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-3940XM + - Core-i7-3920XM + - Core-i7-3840QM + - Core-i7-3820QM + - Core-i7-3740QM + - Core-i7-3720QM + - Core-i7-3635QM + - Core-i7-3632QM + - Core-i7-3630QM + - Core-i7-3615QM + - Core-i7-3612QM + - Core-i7-3610QM + - + header: '4 Threads' + members: + - Core-i7-3689Y + - Core-i7-3687U + - Core-i7-3667U + - Core-i7-3540M + - Core-i7-3537U + - Core-i7-3520M + - Core-i7-3517U + - Core-i5-3439Y + - Core-i5-3437U + - Core-i5-3427U + - Core-i5-3380M + - Core-i5-3360M + - Core-i5-3340M + - Core-i5-3339Y + - Core-i5-3337U + - Core-i5-3320M + - Core-i5-3317U + - Core-i5-3230M + - Core-i5-3210M + - Core-i3-3229Y + - Core-i3-3227U + - Core-i3-3217U + - Core-i3-3130M + - Core-i3-3120M + - Core-i3-3110M + - + header: '2 Threads' + members: + - Pentium-A1018 + - Pentium-2129Y + - Pentium-2127U + - Pentium-2117U + - Pentium-2030M + - Pentium-2020M + - Pentium-1037U + - Pentium-1020M + - Pentium-1019Y + - Pentium-1017U + - Pentium-1007U + - Pentium-1005M + - Pentium-1000M +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2012-04-29' + Sockets: + - PGA988 + - BGA1224 + - BGA1023 +name: Mobile-Ivy-Bridge diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml new file mode 100644 index 00000000..44ca361a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-24' + Socket: 'FCBGA1023, FCPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'Geekbench Single-Core Score': 390 + 'Geekbench Multi-Core Score': 799 + 'UserBenchmark CPU Score': '48.2' +isPart: true +type: CPU +humanName: 'Core i3-3110M' +name: Core-i3-3110M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml new file mode 100644 index 00000000..8e098540 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 384 + 'Geekbench Multi-Core Score': 844 + 'UserBenchmark CPU Score': '50.1' +isPart: true +type: CPU +humanName: 'Core i3-3120M' +name: Core-i3-3120M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml new file mode 100644 index 00000000..1fcc012d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: 'FCBGA1023, FCPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i3-3130M' +name: Core-i3-3130M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml new file mode 100644 index 00000000..8cc76d5a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-24' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 289 + 'Geekbench Multi-Core Score': 593 + 'UserBenchmark CPU Score': '43' +isPart: true +type: CPU +humanName: 'Core i3-3217U' +name: Core-i3-3217U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml new file mode 100644 index 00000000..c8d75155 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 294 + 'Geekbench Multi-Core Score': 632 + 'UserBenchmark CPU Score': '45.4' +isPart: true +type: CPU +humanName: 'Core i3-3227U' +name: Core-i3-3227U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml new file mode 100644 index 00000000..43eee946 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-07' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Core i3-3229Y' +name: Core-i3-3229Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml new file mode 100644 index 00000000..37ad8897 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 487 + 'Geekbench Multi-Core Score': 983 + 'UserBenchmark CPU Score': '47.8' +isPart: true +type: CPU +humanName: 'Core i5-3210M' +name: Core-i5-3210M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml new file mode 100644 index 00000000..79af27d5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 508 + 'Geekbench Multi-Core Score': 1018 + 'UserBenchmark CPU Score': '48.7' +isPart: true +type: CPU +humanName: 'Core i5-3230M' +name: Core-i5-3230M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml new file mode 100644 index 00000000..7658169a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'Geekbench Single-Core Score': 402 + 'Geekbench Multi-Core Score': 819 + 'UserBenchmark CPU Score': '47.2' +isPart: true +type: CPU +humanName: 'Core i5-3317U' +name: Core-i5-3317U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml new file mode 100644 index 00000000..71b2f3ed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 512 + 'Geekbench Multi-Core Score': 1047 + 'UserBenchmark CPU Score': '48' +isPart: true +type: CPU +humanName: 'Core i5-3320M' +name: Core-i5-3320M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml new file mode 100644 index 00000000..0172069a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 412 + 'Geekbench Multi-Core Score': 843 + 'UserBenchmark CPU Score': '47.2' +isPart: true +type: CPU +humanName: 'Core i5-3337U' +name: Core-i5-3337U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml new file mode 100644 index 00000000..c71d9bb3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-07' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' + 'UserBenchmark CPU Score': '44.4' +isPart: true +type: CPU +humanName: 'Core i5-3339Y' +name: Core-i5-3339Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml new file mode 100644 index 00000000..2d10b29f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 544 + 'Geekbench Multi-Core Score': 1094 + 'UserBenchmark CPU Score': '52.6' +isPart: true +type: CPU +humanName: 'Core i5-3340M' +name: Core-i5-3340M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml new file mode 100644 index 00000000..19afb3c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 572 + 'Geekbench Multi-Core Score': 1164 + 'UserBenchmark CPU Score': '53.9' +isPart: true +type: CPU +humanName: 'Core i5-3360M' +name: Core-i5-3360M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml new file mode 100644 index 00000000..cc51b2c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 622 + 'Geekbench Multi-Core Score': 1258 + 'UserBenchmark CPU Score': '55.4' +isPart: true +type: CPU +humanName: 'Core i5-3380M' +name: Core-i5-3380M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml new file mode 100644 index 00000000..8e57cc10 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 467 + 'Geekbench Multi-Core Score': 899 + 'UserBenchmark CPU Score': '48.7' +isPart: true +type: CPU +humanName: 'Core i5-3427U' +name: Core-i5-3427U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml new file mode 100644 index 00000000..8b79fd07 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 432 + 'Geekbench Multi-Core Score': 868 + 'UserBenchmark CPU Score': '49' +isPart: true +type: CPU +humanName: 'Core i5-3437U' +name: Core-i5-3437U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml new file mode 100644 index 00000000..0f7a7f10 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-07' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Core i5-3439Y' +name: Core-i5-3439Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml new file mode 100644 index 00000000..11ac719a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2012-06-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 454 + 'Geekbench Multi-Core Score': 924 + 'UserBenchmark CPU Score': '50.7' +isPart: true +type: CPU +humanName: 'Core i7-3517U' +name: Core-i7-3517U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml new file mode 100644 index 00000000..868f36bf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2012-06-01' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 553 + 'Geekbench Multi-Core Score': 1122 + 'UserBenchmark CPU Score': '53.2' +isPart: true +type: CPU +humanName: 'Core i7-3520M' +name: Core-i7-3520M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml new file mode 100644 index 00000000..055aa48c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 450 + 'Geekbench Multi-Core Score': 896 + 'UserBenchmark CPU Score': '51.5' +isPart: true +type: CPU +humanName: 'Core i7-3537U' +name: Core-i7-3537U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml new file mode 100644 index 00000000..4ff22d2c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-01-20' + Socket: 'FCBGA1023, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 507 + 'Geekbench Multi-Core Score': 985 + 'UserBenchmark CPU Score': '56' +isPart: true +type: CPU +humanName: 'Core i7-3540M' +name: Core-i7-3540M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml new file mode 100644 index 00000000..3a2d86bd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 510 + 'Geekbench Multi-Core Score': 1762 + 'UserBenchmark CPU Score': '62' +isPart: true +type: CPU +humanName: 'Core i7-3610QM' +name: Core-i7-3610QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml new file mode 100644 index 00000000..005607c9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 514 + 'Geekbench Multi-Core Score': 1684 + 'UserBenchmark CPU Score': '60.5' +isPart: true +type: CPU +humanName: 'Core i7-3612QM' +name: Core-i7-3612QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml new file mode 100644 index 00000000..ae121be2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: FCBGA1224 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 548 + 'Geekbench Multi-Core Score': 1870 + 'UserBenchmark CPU Score': '62.4' +isPart: true +type: CPU +humanName: 'Core i7-3615QM' +name: Core-i7-3615QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml new file mode 100644 index 00000000..d02c4879 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 549 + 'Geekbench Multi-Core Score': 1866 + 'UserBenchmark CPU Score': '60.8' +isPart: true +type: CPU +humanName: 'Core i7-3630QM' +name: Core-i7-3630QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml new file mode 100644 index 00000000..5d7f9d78 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 504 + 'Geekbench Multi-Core Score': 1661 + 'UserBenchmark CPU Score': '60.7' +isPart: true +type: CPU +humanName: 'Core i7-3632QM' +name: Core-i7-3632QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml new file mode 100644 index 00000000..054b135c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-30' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 528 + 'Geekbench Multi-Core Score': 1826 + 'UserBenchmark CPU Score': '62.1' +isPart: true +type: CPU +humanName: 'Core i7-3635QM' +name: Core-i7-3635QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml new file mode 100644 index 00000000..a3433a34 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2012-06-01' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 440 + 'Geekbench Multi-Core Score': 954 + 'UserBenchmark CPU Score': '50.9' +isPart: true +type: CPU +humanName: 'Core i7-3667U' +name: Core-i7-3667U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml new file mode 100644 index 00000000..90fe1250 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 465 + 'Geekbench Multi-Core Score': 977 + 'UserBenchmark CPU Score': '52.6' +isPart: true +type: CPU +humanName: 'Core i7-3687U' +name: Core-i7-3687U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml new file mode 100644 index 00000000..549d6919 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-01-07' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' + 'UserBenchmark CPU Score': '49.4' +isPart: true +type: CPU +humanName: 'Core i7-3689Y' +name: Core-i7-3689Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml new file mode 100644 index 00000000..2026e867 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-04-29' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 590 + 'Geekbench Multi-Core Score': 1990 + 'UserBenchmark CPU Score': '64.8' +isPart: true +type: CPU +humanName: 'Core i7-3720QM' +name: Core-i7-3720QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml new file mode 100644 index 00000000..67aa78cd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 588 + 'Geekbench Multi-Core Score': 1957 + 'UserBenchmark CPU Score': '64.4' +isPart: true +type: CPU +humanName: 'Core i7-3740QM' +name: Core-i7-3740QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml new file mode 100644 index 00000000..cdd2358a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'UserBenchmark CPU Score': '66.3' +isPart: true +type: CPU +humanName: 'Core i7-3820QM' +name: Core-i7-3820QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml new file mode 100644 index 00000000..d665cbda --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 635 + 'Geekbench Multi-Core Score': 2150 + 'UserBenchmark CPU Score': '66.1' +isPart: true +type: CPU +humanName: 'Core i7-3840QM' +name: Core-i7-3840QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml new file mode 100644 index 00000000..229601e2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-04-29' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'UserBenchmark CPU Score': '68.2' +isPart: true +type: CPU +humanName: 'Core i7-3920XM' +name: Core-i7-3920XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml new file mode 100644 index 00000000..ca9125ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'UserBenchmark CPU Score': '69.6' +isPart: true +type: CPU +humanName: 'Core i7-3940XM' +name: Core-i7-3940XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml new file mode 100644 index 00000000..4465bad7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1000M' +name: Pentium-1000M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml new file mode 100644 index 00000000..ce796af9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-06-09' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1005M' +name: Pentium-1005M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml new file mode 100644 index 00000000..1e3dfc98 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1007U' +name: Pentium-1007U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml new file mode 100644 index 00000000..6c1043bf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-06-09' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1017U' +name: Pentium-1017U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml new file mode 100644 index 00000000..c75e12c0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-04-01' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1019Y' +name: Pentium-1019Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml new file mode 100644 index 00000000..b739cd8a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1020M' +name: Pentium-1020M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml new file mode 100644 index 00000000..88f421aa --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 1037U' +name: Pentium-1037U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml new file mode 100644 index 00000000..dee93ef9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 405 + 'Geekbench Multi-Core Score': 691 + 'UserBenchmark CPU Score': '46.7' +isPart: true +type: CPU +humanName: 'Pentium 2020M' +name: Pentium-2020M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml new file mode 100644 index 00000000..616d1b5e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-20' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Pentium 2030M' +name: Pentium-2030M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml new file mode 100644 index 00000000..fc6b01fc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'Geekbench Single-Core Score': 302 + 'Geekbench Multi-Core Score': 515 + 'UserBenchmark CPU Score': '43.2' +isPart: true +type: CPU +humanName: 'Pentium 2117U' +name: Pentium-2117U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml new file mode 100644 index 00000000..c32abe88 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-06-09' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'UserBenchmark CPU Score': '44.4' +isPart: true +type: CPU +humanName: 'Pentium 2127U' +name: Pentium-2127U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml new file mode 100644 index 00000000..c51f4cc6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-01-07' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '850 MHz' +isPart: true +type: CPU +humanName: 'Pentium 2129Y' +name: Pentium-2129Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml new file mode 100644 index 00000000..34bfb4c1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Mobile + Lithography: '22 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/L/ + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-08-29' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium A1018' +name: Pentium-A1018 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml new file mode 100644 index 00000000..d4c17b40 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml @@ -0,0 +1,19 @@ +humanName: 'Kaby Lake G' +sections: + - + header: '8 Threads' + members: + - Core-i7-8809G + - Core-i7-8709G + - Core-i7-8706G + - Core-i7-8705G + - Core-i5-8305G +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2018-01-07' + Sockets: + - BGA2270 +name: Mobile-Kaby-Lake-G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml new file mode 100644 index 00000000..21cc99f6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake G' + Market: Mobile + Lithography: '14 nm' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-08-21' + Socket: BGA2270 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '72.9' + TDP: '65 W' +isPart: true +type: CPU +humanName: 'Core i5-8305G' +name: Core-i5-8305G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml new file mode 100644 index 00000000..38151883 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake G' + Market: Mobile + Lithography: '14 nm' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-01-07' + Socket: BGA2270 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 1204 + 'Geekbench Multi-Core Score': 3974 + 'UserBenchmark CPU Score': '72.5' + TDP: '65 W' +isPart: true +type: CPU +humanName: 'Core i7-8705G' +name: Core-i7-8705G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml new file mode 100644 index 00000000..aaf5d7e9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake G' + Market: Mobile + Lithography: '14 nm' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-08-21' + Socket: BGA2270 + AES: true + 'Other Extensions': + - x86-64 + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '77.7' + TDP: '65 W' +isPart: true +type: CPU +humanName: 'Core i7-8706G' +name: Core-i7-8706G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml new file mode 100644 index 00000000..73989756 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake G' + Market: Mobile + Lithography: '14 nm' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-01-07' + Socket: BGA2270 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + TDP: '100 W' +isPart: true +type: CPU +humanName: 'Core i7-8709G' +name: Core-i7-8709G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml new file mode 100644 index 00000000..e72cfd29 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake G' + Market: Mobile + Lithography: '14 nm' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-01-07' + Socket: BGA2270 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 1335 + 'Geekbench Multi-Core Score': 4492 + 'UserBenchmark CPU Score': '80.5' + TDP: '100 W' +isPart: true +type: CPU +humanName: 'Core i7-8809G' +name: Core-i7-8809G diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml new file mode 100644 index 00000000..329007e0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml @@ -0,0 +1,26 @@ +humanName: 'Kaby Lake R' +sections: + - + header: '8 Threads' + members: + - Core-i7-8650U + - Core-i7-8550U + - Core-i5-8350U + - Core-i5-8250U + - + header: '4 Threads' + members: + - Pentium-4417U + - + header: '2 Threads' + members: + - Pentium-3867U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-08-21' + Sockets: + - BGA1356 +name: Mobile-Kaby-Lake-R diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml new file mode 100644 index 00000000..f897b8db --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-08-21' + Socket: FC-BGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + '3DMark Fire Strike Physics Score': 1696 + 'UserBenchmark CPU Score': '53.1' +isPart: true +type: CPU +humanName: 'Core i5-8250U' +name: Core-i5-8250U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml new file mode 100644 index 00000000..7817f915 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-08-21' + Socket: FC-BGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '51.6' +isPart: true +type: CPU +humanName: 'Core i5-8350U' +name: Core-i5-8350U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml new file mode 100644 index 00000000..132ec356 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-21' + Socket: FC-BGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '53' +isPart: true +type: CPU +humanName: 'Core i7-8550U' +name: Core-i7-8550U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml new file mode 100644 index 00000000..048d53d2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-21' + Socket: FC-BGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '52.3' +isPart: true +type: CPU +humanName: 'Core i7-8650U' +name: Core-i7-8650U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml new file mode 100644 index 00000000..706fb538 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-01-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3867U' +name: Pentium-3867U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml new file mode 100644 index 00000000..c91335df --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake R' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-01-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '48.5' +isPart: true +type: CPU +humanName: 'Pentium 4417U' +name: Pentium-4417U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml new file mode 100644 index 00000000..21f9d1c4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml @@ -0,0 +1,58 @@ +humanName: 'Kaby Lake' +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1535MV6 + - Xeon-E3-1505MV6 + - Core-i7-7920HQ + - Core-i7-7820HQ + - Core-i7-7820HK + - Core-i7-7700HQ + - + header: '4 Threads' + members: + - Pentium-4415Y + - Pentium-4415U + - Pentium-4410Y + - Core-i7-7660U + - Core-i7-7600U + - Core-i7-7567U + - Core-i7-7560U + - Core-i7-7500U + - Core-i7-7Y75 + - Core-i5-7440HQ + - Core-i5-7360U + - Core-i5-7300U + - Core-i5-7300HQ + - Core-i5-7287U + - Core-i5-7267U + - Core-i5-7260U + - Core-i5-7200U + - Core-i5-7Y57 + - Core-i5-7Y54 + - Core-i3-8130U + - Core-i3-7167U + - Core-i3-7130U + - Core-i3-7100U + - Core-i3-7100H + - Core-i3-7020U + - Core-M3-7Y32 + - Core-M3-7Y30 + - + header: '2 Threads' + members: + - Pentium-3965Y + - Pentium-3965U + - Pentium-3865U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2016-08-30' + Sockets: + - BGA1515 + - BGA1356 + - BGA1440 +name: Mobile-Kaby-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml new file mode 100644 index 00000000..2da0695c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1000 MHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M3-7Y30' +name: Core-M3-7Y30 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml new file mode 100644 index 00000000..f0fde274 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-04-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M3-7Y32' +name: Core-M3-7Y32 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml new file mode 100644 index 00000000..3a4e4655 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2018-04-01' + Socket: 'FC-BGA1356, FCBGA1356' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 713 + 'Geekbench Multi-Core Score': 1448 + 'UserBenchmark CPU Score': '40.5' +isPart: true +type: CPU +humanName: 'Core i3-7020U' +name: Core-i3-7020U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml new file mode 100644 index 00000000..1d7cdf9c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': RAM + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-7100H' +name: Core-i3-7100H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml new file mode 100644 index 00000000..89ed109e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 765 + 'Geekbench Multi-Core Score': 1568 + 'UserBenchmark CPU Score': '43.4' +isPart: true +type: CPU +humanName: 'Core i3-7100U' +name: Core-i3-7100U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml new file mode 100644 index 00000000..c3c18c3a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-06-06' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 824 + 'Geekbench Multi-Core Score': 1686 + 'UserBenchmark CPU Score': '54.9' +isPart: true +type: CPU +humanName: 'Core i3-7130U' +name: Core-i3-7130U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml new file mode 100644 index 00000000..cd551169 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '59.2' +isPart: true +type: CPU +humanName: 'Core i3-7167U' +name: Core-i3-7167U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml new file mode 100644 index 00000000..d69a9ef1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-02-12' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 974 + 'Geekbench Multi-Core Score': 1820 + 'UserBenchmark CPU Score': '47.6' +isPart: true +type: CPU +humanName: 'Core i3-8130U' +name: Core-i3-8130U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml new file mode 100644 index 00000000..c922d733 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '45.4' +isPart: true +type: CPU +humanName: 'Core i5-7200U' +name: Core-i5-7200U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml new file mode 100644 index 00000000..ee9645ab --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1092 + 'Geekbench Multi-Core Score': 2282 + 'UserBenchmark CPU Score': '61.5' +isPart: true +type: CPU +humanName: 'Core i5-7260U' +name: Core-i5-7260U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml new file mode 100644 index 00000000..3fecefb3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 705 + 'Geekbench Multi-Core Score': 1331 +isPart: true +type: CPU +humanName: 'Core i5-7267U' +name: Core-i5-7267U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml new file mode 100644 index 00000000..5a63cd01 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-7287U' +name: Core-i5-7287U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml new file mode 100644 index 00000000..cdef172b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1052 + 'Geekbench Multi-Core Score': 2864 + '3DMark Fire Strike Physics Score': 1950 + 'UserBenchmark CPU Score': '56.5' +isPart: true +type: CPU +humanName: 'Core i5-7300HQ' +name: Core-i5-7300HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml new file mode 100644 index 00000000..e2190751 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '45' +isPart: true +type: CPU +humanName: 'Core i5-7300U' +name: Core-i5-7300U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml new file mode 100644 index 00000000..22119456 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1133 + 'Geekbench Multi-Core Score': 2316 +isPart: true +type: CPU +humanName: 'Core i5-7360U' +name: Core-i5-7360U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml new file mode 100644 index 00000000..b8480ef0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1171 + 'Geekbench Multi-Core Score': 3072 +isPart: true +type: CPU +humanName: 'Core i5-7440HQ' +name: Core-i5-7440HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml new file mode 100644 index 00000000..b716752a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '47.2' +isPart: true +type: CPU +humanName: 'Core i5-7Y54' +name: Core-i5-7Y54 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml new file mode 100644 index 00000000..74f5cf96 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-7Y57' +name: Core-i5-7Y57 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml new file mode 100644 index 00000000..e872b13f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '48.1' +isPart: true +type: CPU +humanName: 'Core i7-7500U' +name: Core-i7-7500U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml new file mode 100644 index 00000000..9efa553b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1137 + 'Geekbench Multi-Core Score': 2209 + 'UserBenchmark CPU Score': '54.9' +isPart: true +type: CPU +humanName: 'Core i7-7560U' +name: Core-i7-7560U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml new file mode 100644 index 00000000..818b1783 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1274 + 'Geekbench Multi-Core Score': 2581 + 'UserBenchmark CPU Score': '63.9' +isPart: true +type: CPU +humanName: 'Core i7-7567U' +name: Core-i7-7567U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml new file mode 100644 index 00000000..ecf6c636 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '49.6' +isPart: true +type: CPU +humanName: 'Core i7-7600U' +name: Core-i7-7600U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml new file mode 100644 index 00000000..6474453d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1151 + 'Geekbench Multi-Core Score': 2267 + 'UserBenchmark CPU Score': '54.2' +isPart: true +type: CPU +humanName: 'Core i7-7660U' +name: Core-i7-7660U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml new file mode 100644 index 00000000..8b9cc647 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1126 + 'Geekbench Multi-Core Score': 3550 + '3DMark Fire Strike Physics Score': 2493 + 'UserBenchmark CPU Score': '62' +isPart: true +type: CPU +humanName: 'Core i7-7700HQ' +name: Core-i7-7700HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml new file mode 100644 index 00000000..bcc1fa46 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1318 + 'Geekbench Multi-Core Score': 4075 + 'UserBenchmark CPU Score': '71.7' +isPart: true +type: CPU +humanName: 'Core i7-7820HK' +name: Core-i7-7820HK diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml new file mode 100644 index 00000000..34bbd93e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1160 + 'Geekbench Multi-Core Score': 3516 + 'UserBenchmark CPU Score': '63' +isPart: true +type: CPU +humanName: 'Core i7-7820HQ' +name: Core-i7-7820HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml new file mode 100644 index 00000000..e2d911ff --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1250 + 'Geekbench Multi-Core Score': 4178 + 'UserBenchmark CPU Score': '71.4' +isPart: true +type: CPU +humanName: 'Core i7-7920HQ' +name: Core-i7-7920HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml new file mode 100644 index 00000000..be5cd839 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2016-08-30' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '43.6' +isPart: true +type: CPU +humanName: 'Core i7-7Y75' +name: Core-i7-7Y75 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml new file mode 100644 index 00000000..ca0f9a9f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3865U' +name: Pentium-3865U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml new file mode 100644 index 00000000..6eb124cf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3965U' +name: Pentium-3965U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml new file mode 100644 index 00000000..80878d85 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-06-29' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3965Y' +name: Pentium-3965Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml new file mode 100644 index 00000000..1313bda7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '38.9' +isPart: true +type: CPU +humanName: 'Pentium 4410Y' +name: Pentium-4410Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml new file mode 100644 index 00000000..81b5200a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 420 + 'Geekbench Multi-Core Score': 891 + 'UserBenchmark CPU Score': '48.7' +isPart: true +type: CPU +humanName: 'Pentium 4415U' +name: Pentium-4415U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml new file mode 100644 index 00000000..ce484734 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2017-06-29' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.1' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 310 + 'Geekbench Multi-Core Score': 664 +isPart: true +type: CPU +humanName: 'Pentium 4415Y' +name: Pentium-4415Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml new file mode 100644 index 00000000..2ddf6ddc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1505MV6' +name: Xeon-E3-1505MV6 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml new file mode 100644 index 00000000..ca5160e7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1535MV6' +name: Xeon-E3-1535MV6 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml new file mode 100644 index 00000000..9fe1da42 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml @@ -0,0 +1,19 @@ +humanName: Lincroft +sections: + - + header: '2 Threads' + members: + - Atom-Z670 + - Atom-Z650 + - Atom-Z625 + - Atom-Z615 + - Atom-Z600 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2011-04-11' + Sockets: + - TPBGA518 +name: Mobile-Lincroft diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml new file mode 100644 index 00000000..6728aab6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Lincroft + Market: Mobile + Lithography: '45 nm' + TDP: '1.3 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '400 MHz' + 'Memory Type': LPDDR1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2011-05-02' + AES: false + 'Other Extensions': { } + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' + 'VRAM Type': LPDDR1 + 'Maximum VRAM Capacity': '256 MiB' +isPart: true +type: CPU +humanName: 'Atom Z600' +name: Atom-Z600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml new file mode 100644 index 00000000..5b304f0c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Lincroft + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2011-05-02' + AES: false + 'Other Extensions': { } + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': DDR2 + 'Maximum VRAM Capacity': '256 MiB' +isPart: true +type: CPU +humanName: 'Atom Z615' +name: Atom-Z615 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml new file mode 100644 index 00000000..07629758 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Lincroft + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2011-05-02' + AES: false + 'Other Extensions': { } + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom Z625' +name: Atom-Z625 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml new file mode 100644 index 00000000..e9660df7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Lincroft + Market: Mobile + Lithography: '45 nm' + TDP: '3 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2011-04-11' + Socket: T-PBGA518 + 'Other Extensions': { } + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom Z650' +name: Atom-Z650 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml new file mode 100644 index 00000000..b4575fff --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Lincroft + Market: Mobile + Lithography: '45 nm' + TDP: '3 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Release Date': '2011-04-11' + Socket: T-PBGA518 + 'Other Extensions': { } + AVX/SSE/MMX: false + 'GPU Base Frequency': '400 MHz' +isPart: true +type: CPU +humanName: 'Atom Z670' +name: Atom-Z670 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml new file mode 100644 index 00000000..a63b0384 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml @@ -0,0 +1,71 @@ +humanName: Merom +sections: + - + header: '2 Threads' + members: + - Pentium-T3400 + - Pentium-T3200 + - Pentium-T2390 + - Pentium-T2370 + - Pentium-T2330 + - Pentium-T2310 + - Pentium-T1700 + - Pentium-T1600 + - Core-X7900 + - Core-X7800 + - Core-U7700 + - Core-U7600 + - Core-U7500 + - Core-T7800 + - Core-T7700 + - Core-T7600 + - Core-T7500 + - Core-T7400 + - Core-T7300 + - Core-T7250 + - Core-T7200 + - Core-T7100 + - Core-T5870 + - Core-T5800 + - Core-T5750 + - Core-T5670 + - Core-T5600 + - Core-T5550 + - Core-T5500 + - Core-T5470 + - Core-T5450 + - Core-T5300 + - Core-T5270 + - Core-T5250 + - Core-T5200 + - Core-L7700 + - Core-L7500 + - Core-L7400 + - Core-L7300 + - Core-L7200 + - + header: '1 Threads' + members: + - Pentium-585 + - Pentium-575 + - Pentium-573 + - Pentium-570 + - Pentium-560 + - Pentium-550 + - Pentium-540 + - Pentium-530 + - Pentium-523 + - Pentium-520 + - Core-U2200 + - Core-U2100 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q3 2006' + Sockets: + - PBGA479 + - PPGA478 + - PGA478 +name: Mobile-Merom diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml new file mode 100644 index 00000000..4db16dff --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-01-03' + Socket: PBGA479 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core L7200' +name: Core-L7200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml new file mode 100644 index 00000000..8cbacfb2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: PBGA479 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core L7300' +name: Core-L7300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml new file mode 100644 index 00000000..04946fc0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-01-03' + Socket: PBGA479 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core L7400' +name: Core-L7400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml new file mode 100644 index 00000000..a616544c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: PBGA479 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core L7500' +name: Core-L7500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml new file mode 100644 index 00000000..0f7de757 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core L7700' +name: Core-L7700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml new file mode 100644 index 00000000..7fcbbb5e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5200' +name: Core-T5200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml new file mode 100644 index 00000000..ed22d8fb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5250' +name: Core-T5250 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml new file mode 100644 index 00000000..1b190cac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5270' +name: Core-T5270 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml new file mode 100644 index 00000000..b8a8fd3f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5300' +name: Core-T5300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml new file mode 100644 index 00000000..5f99517f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5450' +name: Core-T5450 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml new file mode 100644 index 00000000..58b3fa1a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5470' +name: Core-T5470 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml new file mode 100644 index 00000000..46887162 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5500' +name: Core-T5500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml new file mode 100644 index 00000000..7e82a384 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5550' +name: Core-T5550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml new file mode 100644 index 00000000..22dded34 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5600' +name: Core-T5600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml new file mode 100644 index 00000000..f14fccfc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': '2008-03-31' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5670' +name: Core-T5670 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml new file mode 100644 index 00000000..f8c43134 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': 'Q1 2008' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5750' +name: Core-T5750 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml new file mode 100644 index 00000000..7f667562 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': 'Q4 2008' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5800' +name: Core-T5800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml new file mode 100644 index 00000000..1c3015bd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T5870' +name: Core-T5870 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml new file mode 100644 index 00000000..7c71a8d1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7100' +name: Core-T7100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml new file mode 100644 index 00000000..6960e0f2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7200' +name: Core-T7200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml new file mode 100644 index 00000000..8b53fa7e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7250' +name: Core-T7250 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml new file mode 100644 index 00000000..de1e7e9d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7300' +name: Core-T7300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml new file mode 100644 index 00000000..62818a02 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-07-29' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7400' +name: Core-T7400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml new file mode 100644 index 00000000..a6f23504 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7500' +name: Core-T7500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml new file mode 100644 index 00000000..9d02f12f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '34 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': 'Q3 2007' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7600' +name: Core-T7600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml new file mode 100644 index 00000000..502abbc1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-05-09' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7700' +name: Core-T7700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml new file mode 100644 index 00000000..4bdf57c6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T7800' +name: Core-T7800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml new file mode 100644 index 00000000..c2506824 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core U2100' +name: Core-U2100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml new file mode 100644 index 00000000..58cb78df --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core U2200' +name: Core-U2200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml new file mode 100644 index 00000000..07846a83 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': 'Q3 2006' + Socket: PBGA479 + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Core U7500' +name: Core-U7500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml new file mode 100644 index 00000000..ad24fe25 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-04-05' + Socket: PBGA479 + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Core U7600' +name: Core-U7600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml new file mode 100644 index 00000000..67522608 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '143 mm' + 'Release Date': '2008-01-02' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core U7700' +name: Core-U7700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml new file mode 100644 index 00000000..26ff8a87 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '44 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-07-16' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core X7800' +name: Core-X7800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml new file mode 100644 index 00000000..763983a9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '44 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-08-22' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core X7900' +name: Core-X7900 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml new file mode 100644 index 00000000..f597f23f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '30 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 + 'Release Date': '2007-01-03' +isPart: true +type: CPU +humanName: 'Pentium 520' +name: Pentium-520 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml new file mode 100644 index 00000000..112138f4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '930 MHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 523' +name: Pentium-523 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml new file mode 100644 index 00000000..ea792cd3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2007-03-25' + Socket: 'PGA478, PPGA478' + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 530' +name: Pentium-530 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml new file mode 100644 index 00000000..39793fa1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '30 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2007-09-02' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 540' +name: Pentium-540 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml new file mode 100644 index 00000000..9ff3203b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': 'Q3 2006' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 550' +name: Pentium-550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml new file mode 100644 index 00000000..02095aee --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 + 'Release Date': '2008-01-02' +isPart: true +type: CPU +humanName: 'Pentium 560' +name: Pentium-560 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml new file mode 100644 index 00000000..a0cd763e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2008-04-06' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 570' +name: Pentium-570 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml new file mode 100644 index 00000000..70d6715e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1000 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '143 mm' + 'Release Date': '2009-06-15' + Socket: PBGA479 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 573' +name: Pentium-573 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml new file mode 100644 index 00000000..58433a3e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2008-08-19' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 575' +name: Pentium-575 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml new file mode 100644 index 00000000..a111bfc5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2008-08-19' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 585' +name: Pentium-585 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml new file mode 100644 index 00000000..f4cae18e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2008-12-07' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T1600' +name: Pentium-T1600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml new file mode 100644 index 00000000..8732c61a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': '2008-12-07' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T1700' +name: Pentium-T1700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml new file mode 100644 index 00000000..90a55aee --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.46 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': 'Q4 2007' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T2310' +name: Pentium-T2310 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml new file mode 100644 index 00000000..556b8bdd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': 'Q4 2007' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T2330' +name: Pentium-T2330 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml new file mode 100644 index 00000000..f5a1e7d1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': 'Q1 2008' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T2370' +name: Pentium-T2370 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml new file mode 100644 index 00000000..f2aaf0ec --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T2390' +name: Pentium-T2390 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml new file mode 100644 index 00000000..00dfe03c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T3200' +name: Pentium-T3200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml new file mode 100644 index 00000000..a7ee1701 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Merom + Market: Mobile + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '143 mm' + 'Release Date': 'Q4 2008' + Socket: PPGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T3400' +name: Pentium-T3400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml new file mode 100644 index 00000000..819b83b5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml @@ -0,0 +1,15 @@ +humanName: Merrifield +sections: + - + header: '2 Threads' + members: + - Atom-Z3480 + - Atom-Z3460 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-03-10' + Sockets: { } +name: Mobile-Merrifield diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml new file mode 100644 index 00000000..9b531bed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml @@ -0,0 +1,19 @@ +humanName: Moorefield +sections: + - + header: '4 Threads' + members: + - Atom-Z3590 + - Atom-Z3580 + - Atom-Z3570 + - Atom-Z3560 + - Atom-Z3530 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-05-23' + Sockets: + - MB5T1064 +name: Mobile-Moorefield diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml new file mode 100644 index 00000000..970114b1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml @@ -0,0 +1,78 @@ +humanName: Penryn +sections: + - + header: '4 Threads' + members: + - Core-QX9300 + - Core-Q9100 + - Core-Q9000 + - + header: '2 Threads' + members: + - Pentium-T4500 + - Pentium-T4400 + - Pentium-T4300 + - Pentium-T4200 + - Pentium-T3500 + - Pentium-T3300 + - Pentium-T3100 + - Pentium-SU2300 + - Core-X9100 + - Core-X9000 + - Core-T9900 + - Core-T9800 + - Core-T9600 + - Core-T9550 + - Core-T9500 + - Core-T9400 + - Core-T9300 + - Core-T8300 + - Core-T8100 + - Core-T6670 + - Core-T6600 + - Core-T6500 + - Core-T6400 + - Core-SU9600 + - Core-SU9400 + - Core-SU9300 + - Core-SP9600 + - Core-SP9400 + - Core-SP9300 + - Core-SL9600 + - Core-SL9400 + - Core-SL9380 + - Core-SL9300 + - Core-P9700 + - Core-P9600 + - Core-P9500 + - Core-P8800 + - Core-P8700 + - Core-P8600 + - Core-P8400 + - Core-P7570 + - Core-P7550 + - Core-P7450 + - Core-P7370 + - Core-P7350 + - + header: '1 Threads' + members: + - Pentium-925 + - Pentium-900 + - Pentium-763 + - Pentium-743 + - Pentium-723 + - Pentium-722 + - Core-SU3500 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-01-07' + Sockets: + - BGA956 + - BGA479 + - PGA478 + - PPGA478 +name: Mobile-Penryn diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml new file mode 100644 index 00000000..d14b2ecc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q3 2008' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P7350' +name: Core-P7350 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml new file mode 100644 index 00000000..eeed25c9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q4 2008' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P7370' +name: Core-P7370 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml new file mode 100644 index 00000000..dc50c98f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-01-09' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P7450' +name: Core-P7450 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml new file mode 100644 index 00000000..7e982791 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-29' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P7550' +name: Core-P7550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml new file mode 100644 index 00000000..4fc54bb5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q3 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P7570' +name: Core-P7570 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml new file mode 100644 index 00000000..171e7008 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P8400' +name: Core-P8400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml new file mode 100644 index 00000000..7d1efd4c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P8600' +name: Core-P8600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml new file mode 100644 index 00000000..584f5bd1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-28' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P8700' +name: Core-P8700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml new file mode 100644 index 00000000..8ad37c7b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-02' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P8800' +name: Core-P8800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml new file mode 100644 index 00000000..cb509ed2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P9500' +name: Core-P9500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml new file mode 100644 index 00000000..e3a5a6e8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-28' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P9600' +name: Core-P9600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml new file mode 100644 index 00000000..815334b3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-02' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core P9700' +name: Core-P9700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml new file mode 100644 index 00000000..75274c93 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-28' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9000' +name: Core-Q9000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml new file mode 100644 index 00000000..6e5d9fcc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-08-19' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core Q9100' +name: Core-Q9100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml new file mode 100644 index 00000000..d48d67e1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-08-19' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core QX9300' +name: Core-QX9300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml new file mode 100644 index 00000000..e702c98c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SL9300' +name: Core-SL9300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml new file mode 100644 index 00000000..8013e65f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-31' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SL9380' +name: Core-SL9380 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml new file mode 100644 index 00000000..d937aa13 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SL9400' +name: Core-SL9400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml new file mode 100644 index 00000000..7af699e0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-03-30' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SL9600' +name: Core-SL9600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml new file mode 100644 index 00000000..6fd50aef --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SP9300' +name: Core-SP9300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml new file mode 100644 index 00000000..e1faefcc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SP9400' +name: Core-SP9400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml new file mode 100644 index 00000000..13475fe9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-03-30' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SP9600' +name: Core-SP9600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml new file mode 100644 index 00000000..e3424eb0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q2 2009' + Socket: BGA956 + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Core SU3500' +name: Core-SU3500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml new file mode 100644 index 00000000..afc4dffb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SU9300' +name: Core-SU9300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml new file mode 100644 index 00000000..8592e640 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-19' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SU9400' +name: Core-SU9400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml new file mode 100644 index 00000000..cfc6581f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-03-30' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core SU9600' +name: Core-SU9600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml new file mode 100644 index 00000000..0e165b0b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T6400' +name: Core-T6400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml new file mode 100644 index 00000000..1ba31f6a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-29' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T6500' +name: Core-T6500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml new file mode 100644 index 00000000..dd5fba59 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T6600' +name: Core-T6600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml new file mode 100644 index 00000000..0141cd36 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '107 mm' + 'Release Date': 'Q3 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T6670' +name: Core-T6670 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml new file mode 100644 index 00000000..7740221c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-07' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T8100' +name: Core-T8100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml new file mode 100644 index 00000000..182a304e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-07' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T8300' +name: Core-T8300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml new file mode 100644 index 00000000..685e37a8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-07' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9300' +name: Core-T9300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml new file mode 100644 index 00000000..ddce0e5a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.53 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9400' +name: Core-T9400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml new file mode 100644 index 00000000..8b67a900 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-07' + Socket: 'BGA479, PGA478, PPGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9500' +name: Core-T9500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml new file mode 100644 index 00000000..b638b541 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-28' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9550' +name: Core-T9550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml new file mode 100644 index 00000000..28c16bee --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9600' +name: Core-T9600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml new file mode 100644 index 00000000..5efa589f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-12-28' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9800' +name: Core-T9800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml new file mode 100644 index 00000000..51579aae --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-02' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core T9900' +name: Core-T9900 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml new file mode 100644 index 00000000..bb232585 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '44 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-07' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core X9000' +name: Core-X9000 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml new file mode 100644 index 00000000..78c18f81 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '44 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.06 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-07-15' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Core X9100' +name: Core-X9100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml new file mode 100644 index 00000000..230e2cf6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2008-09-30' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 722' +name: Pentium-722 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml new file mode 100644 index 00000000..c15441cd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Other Extensions': + - x86-64 + 'Release Date': '2008-08-19' + Socket: BGA956 +isPart: true +type: CPU +humanName: 'Pentium 723' +name: Pentium-723 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml new file mode 100644 index 00000000..6a8f0b69 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2009-09-06' + Socket: BGA956 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 743' +name: Pentium-743 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml new file mode 100644 index 00000000..b6253692 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml @@ -0,0 +1,16 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2011-01-09' +isPart: true +type: CPU +humanName: 'Pentium 763' +name: Pentium-763 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml new file mode 100644 index 00000000..df791b17 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2009-03-30' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 900' +name: Pentium-900 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml new file mode 100644 index 00000000..46cac075 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2011-01-09' + Socket: PLGA775 + AES: false + 'Other Extensions': + - x86-64 + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium 925' +name: Pentium-925 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml new file mode 100644 index 00000000..af13d735 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '10 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2009-09-06' + Socket: BGA956 +isPart: true +type: CPU +humanName: 'Pentium SU2300' +name: Pentium-SU2300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml new file mode 100644 index 00000000..6c6e9132 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': '2009-06-28' + Socket: 'BGA479, PGA478' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T3100' +name: Pentium-T3100 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml new file mode 100644 index 00000000..ac0d7a02 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2010' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T3300' +name: Pentium-T3300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml new file mode 100644 index 00000000..04dec7a2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': 'Q3 2010' + Socket: PGA478 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Pentium T3500' +name: Pentium-T3500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml new file mode 100644 index 00000000..5e7ec5d0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 218 + 'Geekbench Multi-Core Score': 362 + 'UserBenchmark CPU Score': '33.9' +isPart: true +type: CPU +humanName: 'Pentium T4200' +name: Pentium-T4200 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml new file mode 100644 index 00000000..8a483ab2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + Socket: PGA478 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 202 + 'Geekbench Multi-Core Score': 342 + 'UserBenchmark CPU Score': '33.7' +isPart: true +type: CPU +humanName: 'Pentium T4300' +name: Pentium-T4300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml new file mode 100644 index 00000000..e4e58e86 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': 'Q4 2009' + Socket: PGA478 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 247 + 'Geekbench Multi-Core Score': 408 + 'UserBenchmark CPU Score': '34' +isPart: true +type: CPU +humanName: 'Pentium T4400' +name: Pentium-T4400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml new file mode 100644 index 00000000..3ac29130 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Penryn + Market: Mobile + Lithography: '45 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '107 mm' + 'Release Date': 'Q1 2010' + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '33.9' +isPart: true +type: CPU +humanName: 'Pentium T4500' +name: Pentium-T4500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml new file mode 100644 index 00000000..f92dcad1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml @@ -0,0 +1,16 @@ +humanName: Penwell +sections: + - + header: '2 Threads' + members: + - Atom-Z2480 + - Atom-Z2460 + - Atom-Z2420 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-04-19' + Sockets: { } +name: Mobile-Penwell diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml new file mode 100644 index 00000000..d9444de7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml @@ -0,0 +1,23 @@ +humanName: Pineview +sections: + - + header: '4 Threads' + members: + - Atom-N570 + - Atom-N550 + - + header: '2 Threads' + members: + - Atom-N475 + - Atom-N470 + - Atom-N455 + - Atom-N450 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': 'Q1 2010' + Sockets: + - BGA559 +name: Mobile-Pineview diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml new file mode 100644 index 00000000..a893d654 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '667 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': 'Q1 2010' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '20.4' +isPart: true +type: CPU +humanName: 'Atom N450' +name: Atom-N450 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml new file mode 100644 index 00000000..5b376b76 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '6.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Memory Type': DDR2/3 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': '2010-06-01' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' + 'UserBenchmark CPU Score': '20.7' +isPart: true +type: CPU +humanName: 'Atom N455' +name: Atom-N455 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml new file mode 100644 index 00000000..47b5f0da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '6.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '667 MHz' + 'Memory Type': DDR2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': 'Q1 2010' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' +isPart: true +type: CPU +humanName: 'Atom N470' +name: Atom-N470 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml new file mode 100644 index 00000000..7e3c5459 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '6.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Memory Type': DDR2/3 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '66 mm' + 'Release Date': '2010-06-01' + Socket: FCBGA559 + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' +isPart: true +type: CPU +humanName: 'Atom N475' +name: Atom-N475 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml new file mode 100644 index 00000000..6d1af9ca --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '8.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': 'Q3 2010' + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' + 'UserBenchmark CPU Score': '20.7' +isPart: true +type: CPU +humanName: 'Atom N550' +name: Atom-N550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml new file mode 100644 index 00000000..7517e8b4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Pineview + Market: Mobile + Lithography: '45 nm' + TDP: '8.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Memory Type': DDR3 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '87 mm' + 'Release Date': '2011-03-01' + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '200 MHz' + 'UserBenchmark CPU Score': '21.5' +isPart: true +type: CPU +humanName: 'Atom N570' +name: Atom-N570 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml new file mode 100644 index 00000000..3ddbee19 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml @@ -0,0 +1,94 @@ +humanName: 'Sandy Bridge' +sections: + - + header: '8 Threads' + members: + - Core-i7-2960XM + - Core-i7-2920XM + - Core-i7-2860QM + - Core-i7-2820QM + - Core-i7-2760QM + - Core-i7-2720QM + - Core-i7-2710QE + - Core-i7-2675QM + - Core-i7-2670QM + - Core-i7-2635QM + - Core-i7-2630QM + - + header: '4 Threads' + members: + - Core-i7-2677M + - Core-i7-2657M + - Core-i7-2649M + - Core-i7-2640M + - Core-i7-2637M + - Core-i7-2629M + - Core-i7-2620M + - Core-i7-2617M + - Core-i5-2557M + - Core-i5-2540M + - Core-i5-2537M + - Core-i5-2520M + - Core-i5-2510E + - Core-i5-2467M + - Core-i5-2450M + - Core-i5-2435M + - Core-i5-2430M + - Core-i5-2410M + - Core-i3-2377M + - Core-i3-2375M + - Core-i3-2370M + - Core-i3-2367M + - Core-i3-2365M + - Core-i3-2357M + - Core-i3-2350M + - Core-i3-2348M + - Core-i3-2330M + - Core-i3-2330E + - Core-i3-2328M + - Core-i3-2312M + - Core-i3-2310M + - + header: '2 Threads' + members: + - Pentium-B980 + - Pentium-B970 + - Pentium-B960 + - Pentium-B950 + - Pentium-B940 + - Pentium-B840 + - Pentium-B830 + - Pentium-B820 + - Pentium-B815 + - Pentium-B810 + - Pentium-B800 + - Pentium-997 + - Pentium-987 + - Pentium-977 + - Pentium-967 + - Pentium-957 + - Pentium-887 + - Pentium-877 + - Pentium-867 + - Pentium-857 + - Pentium-847 + - Pentium-807 + - + header: '1 Threads' + members: + - Pentium-B720 + - Pentium-B710 + - Pentium-797 + - Pentium-787 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-01-09' + Sockets: + - BGA1224 + - PGA988 + - BGA1023 + - PPGA988 +name: Mobile-Sandy-Bridge diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml new file mode 100644 index 00000000..dd14f19f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: 'FCBGA1023, PPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 327 + 'Geekbench Multi-Core Score': 669 + 'UserBenchmark CPU Score': '46.5' +isPart: true +type: CPU +humanName: 'Core i3-2310M' +name: Core-i3-2310M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml new file mode 100644 index 00000000..ed2b2173 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': 'Q2 2011' + Socket: PPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i3-2312M' +name: Core-i3-2312M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml new file mode 100644 index 00000000..76a17332 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-01' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 312 + 'Geekbench Multi-Core Score': 617 + 'UserBenchmark CPU Score': '47.5' +isPart: true +type: CPU +humanName: 'Core i3-2328M' +name: Core-i3-2328M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml new file mode 100644 index 00000000..f007f072 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Core i3-2330E' +name: Core-i3-2330E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml new file mode 100644 index 00000000..a72c2edd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + Socket: 'FCBGA1023, PPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 338 + 'Geekbench Multi-Core Score': 684 + 'UserBenchmark CPU Score': '47' +isPart: true +type: CPU +humanName: 'Core i3-2330M' +name: Core-i3-2330M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml new file mode 100644 index 00000000..d489c60f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-01' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 345 + 'Geekbench Multi-Core Score': 660 + 'UserBenchmark CPU Score': '48.8' +isPart: true +type: CPU +humanName: 'Core i3-2348M' +name: Core-i3-2348M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml new file mode 100644 index 00000000..9cca3b8b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-10-02' + Socket: PPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 345 + 'Geekbench Multi-Core Score': 712 + 'UserBenchmark CPU Score': '47' +isPart: true +type: CPU +humanName: 'Core i3-2350M' +name: Core-i3-2350M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml new file mode 100644 index 00000000..6db33e10 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'UserBenchmark CPU Score': '39.8' +isPart: true +type: CPU +humanName: 'Core i3-2357M' +name: Core-i3-2357M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml new file mode 100644 index 00000000..cd11f3c3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-09-01' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'Geekbench Single-Core Score': 188 + 'Geekbench Multi-Core Score': 405 + 'UserBenchmark CPU Score': '41.2' +isPart: true +type: CPU +humanName: 'Core i3-2365M' +name: Core-i3-2365M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml new file mode 100644 index 00000000..c50d236c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-10-02' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'UserBenchmark CPU Score': '42.2' +isPart: true +type: CPU +humanName: 'Core i3-2367M' +name: Core-i3-2367M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml new file mode 100644 index 00000000..aea04e08 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-01-15' + Socket: PPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 350 + 'Geekbench Multi-Core Score': 687 + 'UserBenchmark CPU Score': '48.9' +isPart: true +type: CPU +humanName: 'Core i3-2370M' +name: Core-i3-2370M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml new file mode 100644 index 00000000..a066285d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2013-01-01' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'UserBenchmark CPU Score': '42.6' +isPart: true +type: CPU +humanName: 'Core i3-2375M' +name: Core-i3-2375M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml new file mode 100644 index 00000000..f4a1cfcf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-06-24' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i3-2377M' +name: Core-i3-2377M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml new file mode 100644 index 00000000..946cb634 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: 'FCBGA1023, PPGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 439 + 'Geekbench Multi-Core Score': 860 + 'UserBenchmark CPU Score': '47.9' +isPart: true +type: CPU +humanName: 'Core i5-2410M' +name: Core-i5-2410M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml new file mode 100644 index 00000000..1704c597 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-10-02' + Socket: PPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 464 + 'Geekbench Multi-Core Score': 930 + 'UserBenchmark CPU Score': '49.5' +isPart: true +type: CPU +humanName: 'Core i5-2430M' +name: Core-i5-2430M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml new file mode 100644 index 00000000..cd4731ba --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-10-02' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 476 + 'Geekbench Multi-Core Score': 959 + 'UserBenchmark CPU Score': '52.9' +isPart: true +type: CPU +humanName: 'Core i5-2435M' +name: Core-i5-2435M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml new file mode 100644 index 00000000..281d4c8f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-01-15' + Socket: 'FCBGA1023, PPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 465 + 'Geekbench Multi-Core Score': 894 + 'UserBenchmark CPU Score': '48.9' +isPart: true +type: CPU +humanName: 'Core i5-2450M' +name: Core-i5-2450M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml new file mode 100644 index 00000000..49365c16 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 347 + 'Geekbench Multi-Core Score': 689 + 'UserBenchmark CPU Score': '45.3' +isPart: true +type: CPU +humanName: 'Core i5-2467M' +name: Core-i5-2467M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml new file mode 100644 index 00000000..937f9ae5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i5-2510E' +name: Core-i5-2510E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml new file mode 100644 index 00000000..1a376795 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: PPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 471 + 'Geekbench Multi-Core Score': 923 + 'UserBenchmark CPU Score': '47.6' +isPart: true +type: CPU +humanName: 'Core i5-2520M' +name: Core-i5-2520M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml new file mode 100644 index 00000000..a1190cb7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' + 'Geekbench Single-Core Score': 310 + 'Geekbench Multi-Core Score': 622 + 'UserBenchmark CPU Score': '44' +isPart: true +type: CPU +humanName: 'Core i5-2537M' +name: Core-i5-2537M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml new file mode 100644 index 00000000..7ed886d6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-02-20' + Socket: 'FCBGA1023, PPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 492 + 'Geekbench Multi-Core Score': 985 + 'UserBenchmark CPU Score': '51.5' +isPart: true +type: CPU +humanName: 'Core i5-2540M' +name: Core-i5-2540M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml new file mode 100644 index 00000000..5c64a49b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'UserBenchmark CPU Score': '49.7' +isPart: true +type: CPU +humanName: 'Core i5-2557M' +name: Core-i5-2557M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml new file mode 100644 index 00000000..045572d8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Core i7-2617M' +name: Core-i7-2617M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml new file mode 100644 index 00000000..e9204216 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-20' + Socket: 'FCBGA1023, PPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 506 + 'Geekbench Multi-Core Score': 1045 + 'UserBenchmark CPU Score': '52.2' +isPart: true +type: CPU +humanName: 'Core i7-2620M' +name: Core-i7-2620M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml new file mode 100644 index 00000000..36249c0d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i7-2629M' +name: Core-i7-2629M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml new file mode 100644 index 00000000..cb8f1112 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 420 + 'Geekbench Multi-Core Score': 1356 + 'UserBenchmark CPU Score': '55.2' +isPart: true +type: CPU +humanName: 'Core i7-2630QM' +name: Core-i7-2630QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml new file mode 100644 index 00000000..bd3b05ed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: FCBGA1224 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'UserBenchmark CPU Score': '57.4' +isPart: true +type: CPU +humanName: 'Core i7-2635QM' +name: Core-i7-2635QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml new file mode 100644 index 00000000..c3edb366 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'UserBenchmark CPU Score': '51.1' +isPart: true +type: CPU +humanName: 'Core i7-2637M' +name: Core-i7-2637M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml new file mode 100644 index 00000000..edb3fc07 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-09-04' + Socket: 'FCBGA1023, PPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 499 + 'Geekbench Multi-Core Score': 988 + 'UserBenchmark CPU Score': '53.7' +isPart: true +type: CPU +humanName: 'Core i7-2640M' +name: Core-i7-2640M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml new file mode 100644 index 00000000..15bc6fce --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '500 MHz' + 'GPU Boost Frequency': '1.1 GHz' +isPart: true +type: CPU +humanName: 'Core i7-2649M' +name: Core-i7-2649M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml new file mode 100644 index 00000000..c02b6a32 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-20' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Core i7-2657M' +name: Core-i7-2657M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml new file mode 100644 index 00000000..3fd4663c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-10-02' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 455 + 'Geekbench Multi-Core Score': 1428 + 'UserBenchmark CPU Score': '56.3' +isPart: true +type: CPU +humanName: 'Core i7-2670QM' +name: Core-i7-2670QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml new file mode 100644 index 00000000..d297a329 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-10-02' + Socket: FCBGA1224 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 452 + 'Geekbench Multi-Core Score': 1362 + 'UserBenchmark CPU Score': '58' +isPart: true +type: CPU +humanName: 'Core i7-2675QM' +name: Core-i7-2675QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml new file mode 100644 index 00000000..77793d2d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'UserBenchmark CPU Score': '51.4' +isPart: true +type: CPU +humanName: 'Core i7-2677M' +name: Core-i7-2677M diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml new file mode 100644 index 00000000..02c55c1a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.2 GHz' +isPart: true +type: CPU +humanName: 'Core i7-2710QE' +name: Core-i7-2710QE diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml new file mode 100644 index 00000000..ca61d37a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-01-09' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 465 + 'Geekbench Multi-Core Score': 1312 + 'UserBenchmark CPU Score': '57.7' +isPart: true +type: CPU +humanName: 'Core i7-2720QM' +name: Core-i7-2720QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml new file mode 100644 index 00000000..2a27769a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-09-04' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 543 + 'Geekbench Multi-Core Score': 1714 + 'UserBenchmark CPU Score': '59.9' +isPart: true +type: CPU +humanName: 'Core i7-2760QM' +name: Core-i7-2760QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml new file mode 100644 index 00000000..d9e5c26a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-01-09' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 528 + 'Geekbench Multi-Core Score': 1426 + 'UserBenchmark CPU Score': '58.5' +isPart: true +type: CPU +humanName: 'Core i7-2820QM' +name: Core-i7-2820QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml new file mode 100644 index 00000000..894a5ea8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-09-04' + Socket: 'FCBGA1224, FCPGA988' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 557 + 'Geekbench Multi-Core Score': 1703 + 'UserBenchmark CPU Score': '61.7' +isPart: true +type: CPU +humanName: 'Core i7-2860QM' +name: Core-i7-2860QM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml new file mode 100644 index 00000000..7dde4df2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-01-09' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'UserBenchmark CPU Score': '62.2' +isPart: true +type: CPU +humanName: 'Core i7-2920XM' +name: Core-i7-2920XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml new file mode 100644 index 00000000..5e966ef2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '55 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-09-04' + Socket: FCPGA988 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'Geekbench Single-Core Score': 514 + 'Geekbench Multi-Core Score': 1675 + 'UserBenchmark CPU Score': '64.6' +isPart: true +type: CPU +humanName: 'Core i7-2960XM' +name: Core-i7-2960XM diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml new file mode 100644 index 00000000..6e4acd82 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2011-07-17' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Pentium 787' +name: Pentium-787 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml new file mode 100644 index 00000000..ce02f84e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2012-01-15' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Pentium 797' +name: Pentium-797 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml new file mode 100644 index 00000000..3241265c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2012-06-24' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Pentium 807' +name: Pentium-807 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml new file mode 100644 index 00000000..14a57994 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 847' +name: Pentium-847 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml new file mode 100644 index 00000000..6eca2df3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-07-03' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 857' +name: Pentium-857 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml new file mode 100644 index 00000000..5c915b00 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-01-15' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 867' +name: Pentium-867 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml new file mode 100644 index 00000000..03676bb4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-06-24' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 877' +name: Pentium-877 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml new file mode 100644 index 00000000..53cf3959 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 887' +name: Pentium-887 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml new file mode 100644 index 00000000..2e6b727a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '800 MHz' +isPart: true +type: CPU +humanName: 'Pentium 957' +name: Pentium-957 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml new file mode 100644 index 00000000..06981784 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-10-02' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'UserBenchmark CPU Score': '37.6' +isPart: true +type: CPU +humanName: 'Pentium 967' +name: Pentium-967 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml new file mode 100644 index 00000000..f52d5466 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-01-15' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 977' +name: Pentium-977 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml new file mode 100644 index 00000000..692fd861 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'UserBenchmark CPU Score': '39.9' +isPart: true +type: CPU +humanName: 'Pentium 987' +name: Pentium-987 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml new file mode 100644 index 00000000..f374e58f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCBGA1023 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium 997' +name: Pentium-997 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml new file mode 100644 index 00000000..848eb5e4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2011-07-16' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium B710' +name: Pentium-B710 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml new file mode 100644 index 00000000..c1202292 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '1.5 MiB' + 'Release Date': '2012-01-15' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium B720' +name: Pentium-B720 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml new file mode 100644 index 00000000..5ab53f4e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium B800' +name: Pentium-B800 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml new file mode 100644 index 00000000..4596fbfa --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-03-15' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '950 MHz' +isPart: true +type: CPU +humanName: 'Pentium B810' +name: Pentium-B810 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml new file mode 100644 index 00000000..463b7c4b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-01-15' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium B815' +name: Pentium-B815 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml new file mode 100644 index 00000000..0fad97b0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-06-24' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium B820' +name: Pentium-B820 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml new file mode 100644 index 00000000..6f3c7a46 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-09-30' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.05 GHz' +isPart: true +type: CPU +humanName: 'Pentium B830' +name: Pentium-B830 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml new file mode 100644 index 00000000..3afb19bd --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-09-04' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1000 MHz' +isPart: true +type: CPU +humanName: 'Pentium B840' +name: Pentium-B840 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml new file mode 100644 index 00000000..b11de4e0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 295 + 'Geekbench Multi-Core Score': 500 + 'UserBenchmark CPU Score': '44' +isPart: true +type: CPU +humanName: 'Pentium B940' +name: Pentium-B940 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml new file mode 100644 index 00000000..b8fbca35 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-06-19' + Socket: PGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 281 + 'Geekbench Multi-Core Score': 502 + 'UserBenchmark CPU Score': '43.3' +isPart: true +type: CPU +humanName: 'Pentium B950' +name: Pentium-B950 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml new file mode 100644 index 00000000..098e7a9d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2011-10-02' + Socket: 'FCPGA988, PGA988' + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'Geekbench Single-Core Score': 323 + 'Geekbench Multi-Core Score': 541 + 'UserBenchmark CPU Score': '43.7' +isPart: true +type: CPU +humanName: 'Pentium B960' +name: Pentium-B960 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml new file mode 100644 index 00000000..8364a1e0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-01-15' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'UserBenchmark CPU Score': '45.6' +isPart: true +type: CPU +humanName: 'Pentium B970' +name: Pentium-B970 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml new file mode 100644 index 00000000..c67d4d46 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Mobile + Lithography: '32 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2012-06-24' + Socket: FCPGA988 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'Geekbench Single-Core Score': 355 + 'Geekbench Multi-Core Score': 575 + 'UserBenchmark CPU Score': '46.1' +isPart: true +type: CPU +humanName: 'Pentium B980' +name: Pentium-B980 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml new file mode 100644 index 00000000..95cc1751 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml @@ -0,0 +1,30 @@ +humanName: Silverthorne +sections: + - + header: '2 Threads' + members: + - Atom-Z560 + - Atom-Z550 + - Atom-Z540 + - Atom-Z530P + - Atom-Z530 + - Atom-Z520PT + - Atom-Z520 + - Atom-Z515 + - Atom-Z510PT + - Atom-Z510P + - Atom-Z500 + - + header: '1 Threads' + members: + - Atom-Z510 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-04-02' + Sockets: + - PBGA441 + - BGA437 +name: Mobile-Silverthorne diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml new file mode 100644 index 00000000..253dd3be --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '0.65 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '800 MHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-04-02' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z500' +name: Atom-Z500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml new file mode 100644 index 00000000..d8cffba1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-04-02' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z510' +name: Atom-Z510 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml new file mode 100644 index 00000000..dc9f1df2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-03-27' + Socket: FCBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z510P' +name: Atom-Z510P diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml new file mode 100644 index 00000000..132a90c2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.1 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-03-27' + Socket: FCBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z510PT' +name: Atom-Z510PT diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml new file mode 100644 index 00000000..70a3e8f6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '1.4 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-04-08' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z515' +name: Atom-Z515 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml new file mode 100644 index 00000000..1c0366da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-04-02' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false + 'UserBenchmark CPU Score': '17.3' +isPart: true +type: CPU +humanName: 'Atom Z520' +name: Atom-Z520 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml new file mode 100644 index 00000000..6ac21942 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-03-27' + Socket: FCBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z520PT' +name: Atom-Z520PT diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml new file mode 100644 index 00000000..771ccbed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-04-02' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z530' +name: Atom-Z530 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml new file mode 100644 index 00000000..9a81d4b4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.2 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-03-27' + Socket: FCBGA437 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z530P' +name: Atom-Z530P diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml new file mode 100644 index 00000000..fc6b1c19 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.4 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2008-04-02' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z540' +name: Atom-Z540 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml new file mode 100644 index 00000000..dec6e26a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.4 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': '2009-04-08' + Socket: PBGA441 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Atom Z550' +name: Atom-Z550 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml new file mode 100644 index 00000000..ddd0c213 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Silverthorne + Market: Mobile + Lithography: '45 nm' + TDP: '2.5 W' + 'Core Count': 1 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '26 mm' + 'Release Date': 'Q2 2010' + Socket: PBGA441 + 'Other Extensions': { } + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Atom Z560' +name: Atom-Z560 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml new file mode 100644 index 00000000..78b10775 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml @@ -0,0 +1,62 @@ +humanName: Skylake +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1575MV5 + - Xeon-E3-1545MV5 + - Xeon-E3-1535MV5 + - Xeon-E3-1515MV5 + - Xeon-E3-1505MV5 + - Core-i7-6970HQ + - Core-i7-6920HQ + - Core-i7-6870HQ + - Core-i7-6820HQ + - Core-i7-6820HK + - Core-i7-6770HQ + - Core-i7-6700HQ + - + header: '4 Threads' + members: + - Pentium-4405Y + - Pentium-4405U + - Core-i7-6660U + - Core-i7-6650U + - Core-i7-6600U + - Core-i7-6567U + - Core-i7-6560U + - Core-i7-6500U + - Core-i5-6440HQ + - Core-i5-6360U + - Core-i5-6350HQ + - Core-i5-6300U + - Core-i5-6300HQ + - Core-i5-6287U + - Core-i5-6267U + - Core-i5-6260U + - Core-i5-6200U + - Core-i3-6167U + - Core-i3-6157U + - Core-i3-6100U + - Core-i3-6100H + - Core-i3-6006U + - Core-M7-6Y75 + - Core-M5-6Y57 + - Core-M5-6Y54 + - Core-M3-6Y30 + - + header: '2 Threads' + members: + - Pentium-3955U + - Pentium-3855U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-07-01' + Sockets: + - BGA1356 + - BGA1515 + - BGA1440 +name: Mobile-Skylake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml new file mode 100644 index 00000000..5acd3cba --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '900 MHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '850 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M3-6Y30' +name: Core-M3-6Y30 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml new file mode 100644 index 00000000..0487a8f1 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M5-6Y54' +name: Core-M5-6Y54 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml new file mode 100644 index 00000000..3932a2a5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M5-6Y57' +name: Core-M5-6Y57 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml new file mode 100644 index 00000000..73444006 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '4.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core M7-6Y75' +name: Core-M7-6Y75 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml new file mode 100644 index 00000000..96bc83b7 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2016-11-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 636 + 'Geekbench Multi-Core Score': 1313 + 'UserBenchmark CPU Score': '36.1' +isPart: true +type: CPU +humanName: 'Core i3-6006U' +name: Core-i3-6006U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml new file mode 100644 index 00000000..64de3300 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i3-6100H' +name: Core-i3-6100H diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml new file mode 100644 index 00000000..514b6382 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 736 + 'Geekbench Multi-Core Score': 1519 + 'UserBenchmark CPU Score': '43.4' +isPart: true +type: CPU +humanName: 'Core i3-6100U' +name: Core-i3-6100U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml new file mode 100644 index 00000000..aaebd820 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2016-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 773 + 'Geekbench Multi-Core Score': 1683 + 'UserBenchmark CPU Score': '54.4' +isPart: true +type: CPU +humanName: 'Core i3-6157U' +name: Core-i3-6157U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml new file mode 100644 index 00000000..72c67731 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '56.5' +isPart: true +type: CPU +humanName: 'Core i3-6167U' +name: Core-i3-6167U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml new file mode 100644 index 00000000..27dcb1e2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '41.3' +isPart: true +type: CPU +humanName: 'Core i5-6200U' +name: Core-i5-6200U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml new file mode 100644 index 00000000..e905cd18 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 933 + 'Geekbench Multi-Core Score': 1927 + 'UserBenchmark CPU Score': '55.9' +isPart: true +type: CPU +humanName: 'Core i5-6260U' +name: Core-i5-6260U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml new file mode 100644 index 00000000..d9f7c2be --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1002 + 'Geekbench Multi-Core Score': 2072 +isPart: true +type: CPU +humanName: 'Core i5-6267U' +name: Core-i5-6267U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml new file mode 100644 index 00000000..6cd84bcf --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6287U' +name: Core-i5-6287U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml new file mode 100644 index 00000000..1cd3c13c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 969 + 'Geekbench Multi-Core Score': 2683 + 'UserBenchmark CPU Score': '53.7' +isPart: true +type: CPU +humanName: 'Core i5-6300HQ' +name: Core-i5-6300HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml new file mode 100644 index 00000000..15b6337b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '40.4' +isPart: true +type: CPU +humanName: 'Core i5-6300U' +name: Core-i5-6300U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml new file mode 100644 index 00000000..b42ce619 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i5-6350HQ' +name: Core-i5-6350HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml new file mode 100644 index 00000000..365776b0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 923 + 'Geekbench Multi-Core Score': 1906 +isPart: true +type: CPU +humanName: 'Core i5-6360U' +name: Core-i5-6360U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml new file mode 100644 index 00000000..6a952f7d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1039 + 'Geekbench Multi-Core Score': 2690 +isPart: true +type: CPU +humanName: 'Core i5-6440HQ' +name: Core-i5-6440HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml new file mode 100644 index 00000000..096fe15f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '45.6' +isPart: true +type: CPU +humanName: 'Core i7-6500U' +name: Core-i7-6500U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml new file mode 100644 index 00000000..2a591114 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 890 + 'Geekbench Multi-Core Score': 1932 +isPart: true +type: CPU +humanName: 'Core i7-6560U' +name: Core-i7-6560U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml new file mode 100644 index 00000000..181e881e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '28 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-07-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '57.4' +isPart: true +type: CPU +humanName: 'Core i7-6567U' +name: Core-i7-6567U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml new file mode 100644 index 00000000..b12cff76 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '44.5' +isPart: true +type: CPU +humanName: 'Core i7-6600U' +name: Core-i7-6600U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml new file mode 100644 index 00000000..dc5c7f66 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 994 + 'Geekbench Multi-Core Score': 2023 + 'UserBenchmark CPU Score': '53.1' +isPart: true +type: CPU +humanName: 'Core i7-6650U' +name: Core-i7-6650U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml new file mode 100644 index 00000000..62dbb653 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2016-03-27' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6660U' +name: Core-i7-6660U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml new file mode 100644 index 00000000..592ae3ed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml @@ -0,0 +1,34 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1064 + 'Geekbench Multi-Core Score': 3368 + '3DMark Fire Strike Physics Score': 2345 + 'UserBenchmark CPU Score': '58.7' +isPart: true +type: CPU +humanName: 'Core i7-6700HQ' +name: Core-i7-6700HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml new file mode 100644 index 00000000..71dc5b80 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1122 + 'Geekbench Multi-Core Score': 3808 +isPart: true +type: CPU +humanName: 'Core i7-6770HQ' +name: Core-i7-6770HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml new file mode 100644 index 00000000..9699e85d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1072 + 'Geekbench Multi-Core Score': 3580 + 'UserBenchmark CPU Score': '68.8' +isPart: true +type: CPU +humanName: 'Core i7-6820HK' +name: Core-i7-6820HK diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml new file mode 100644 index 00000000..866d828f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1064 + 'Geekbench Multi-Core Score': 3398 + 'UserBenchmark CPU Score': '60.1' +isPart: true +type: CPU +humanName: 'Core i7-6820HQ' +name: Core-i7-6820HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml new file mode 100644 index 00000000..15cc36b3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6870HQ' +name: Core-i7-6870HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml new file mode 100644 index 00000000..c7fb601c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml @@ -0,0 +1,33 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1115 + 'Geekbench Multi-Core Score': 3656 + 'UserBenchmark CPU Score': '69.5' +isPart: true +type: CPU +humanName: 'Core i7-6920HQ' +name: Core-i7-6920HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml new file mode 100644 index 00000000..6cc81fdb --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Core i7-6970HQ' +name: Core-i7-6970HQ diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml new file mode 100644 index 00000000..0a21b078 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3855U' +name: Pentium-3855U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml new file mode 100644 index 00000000..89fc03cc --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-12-27' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Pentium 3955U' +name: Pentium-3955U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml new file mode 100644 index 00000000..7d9af6af --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'Geekbench Single-Core Score': 396 + 'Geekbench Multi-Core Score': 815 + 'UserBenchmark CPU Score': '48' +isPart: true +type: CPU +humanName: 'Pentium 4405U' +name: Pentium-4405U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml new file mode 100644 index 00000000..20ca2a8d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'LPDDR3, DDR3L' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1515 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '800 MHz' + 'VRAM Type': 'LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '16 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' + 'UserBenchmark CPU Score': '37.7' +isPart: true +type: CPU +humanName: 'Pentium 4405Y' +name: Pentium-4405Y diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml new file mode 100644 index 00000000..fd8a3b54 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1505MV5' +name: Xeon-E3-1505MV5 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml new file mode 100644 index 00000000..b35710d2 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1515MV5' +name: Xeon-E3-1515MV5 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml new file mode 100644 index 00000000..a38cf004 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-09-01' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1535MV5' +name: Xeon-E3-1535MV5 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml new file mode 100644 index 00000000..8ccb1dd6 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1545MV5' +name: Xeon-E3-1545MV5 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml new file mode 100644 index 00000000..34eaa8f0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Mobile + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-01-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1575MV5' +name: Xeon-E3-1575MV5 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml new file mode 100644 index 00000000..67516f91 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml @@ -0,0 +1,20 @@ +humanName: 'SoFIA 3G R' +sections: + - + header: '4 Threads' + members: + - Atom-x3-C3295RK + - Atom-x3-C3265RK + - Atom-x3-C3235RK + - Atom-x3-C3230RK + - Atom-x3-C3200RK + - Atom-x3-3205RK +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '28 nm' + 'Release Date': '2015-03-02' + Sockets: + - VF2BGA361 +name: Mobile-SoFIA-3G-R diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml new file mode 100644 index 00000000..6588a5f0 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml @@ -0,0 +1,15 @@ +humanName: 'SoFIA LTE' +sections: + - + header: '4 Threads' + members: + - Atom-x3-C3445 + - Atom-x3-C3405 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '28 nm' + 'Release Date': '2015-03-02' + Sockets: { } +name: Mobile-SoFIA-LTE diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml new file mode 100644 index 00000000..0d4a5513 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml @@ -0,0 +1,28 @@ +humanName: 'Whiskey Lake' +sections: + - + header: '8 Threads' + members: + - Core-i7-8665U + - Core-i7-8565U + - Core-i5-8365U + - Core-i5-8265U + - + header: '4 Threads' + members: + - Pentium-5405U + - Core-i3-8145U + - + header: '2 Threads' + members: + - Pentium-4305U + - Pentium-4205U +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2018-08-28' + Sockets: + - BGA1528 +name: Mobile-Whiskey-Lake diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml new file mode 100644 index 00000000..10402c0a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1000 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '52.8' +isPart: true +type: CPU +humanName: 'Core i3-8145U' +name: Core-i3-8145U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml new file mode 100644 index 00000000..f9b1f5a5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '52.7' +isPart: true +type: CPU +humanName: 'Core i5-8265U' +name: Core-i5-8265U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml new file mode 100644 index 00000000..75f3396e --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-16' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.1 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '57.3' +isPart: true +type: CPU +humanName: 'Core i5-8365U' +name: Core-i5-8365U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml new file mode 100644 index 00000000..6301cf1b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-08-28' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '54.7' +isPart: true +type: CPU +humanName: 'Core i7-8565U' +name: Core-i7-8565U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml new file mode 100644 index 00000000..d8834e8f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml @@ -0,0 +1,31 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-04-16' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '59.6' +isPart: true +type: CPU +humanName: 'Core i7-8665U' +name: Core-i7-8665U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml new file mode 100644 index 00000000..2581366a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-01-01' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium 4205U' +name: Pentium-4205U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml new file mode 100644 index 00000000..c0387d0c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-04-16' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '900 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Pentium 4305U' +name: Pentium-4305U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml new file mode 100644 index 00000000..5f78494c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Whiskey Lake' + Market: Mobile + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, LPDDR3' + 'Base Frequency': '2.3 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2019-01-01' + Socket: FCBGA1528 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '950 MHz' + 'VRAM Type': 'DDR4, LPDDR3' + 'Maximum VRAM Capacity': '32 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'UserBenchmark CPU Score': '49.8' +isPart: true +type: CPU +humanName: 'Pentium 5405U' +name: Pentium-5405U diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml new file mode 100644 index 00000000..2875ed5f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml @@ -0,0 +1,47 @@ +humanName: Yonah +sections: + - + header: '2 Threads' + members: + - Pentium-T2130 + - Pentium-T2080 + - Pentium-T2060 + - Core-U2500 + - Core-U2400 + - Core-T2700 + - Core-T2600 + - Core-T2500 + - Core-T2450 + - Core-T2400 + - Core-T2350 + - Core-T2300E + - Core-T2300 + - Core-T2250 + - Core-T2050 + - Core-L2500 + - Core-L2400 + - Core-L2300 + - + header: '1 Threads' + members: + - Pentium-443 + - Pentium-423 + - Pentium-410 + - Pentium-215 + - Core-U1500 + - Core-U1400 + - Core-U1300 + - Core-T1400 + - Core-T1350 + - Core-T1300 + - Core-T1250 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': '2006-02-14' + Sockets: + - PPGA478 + - PBGA479 +name: Mobile-Yonah diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml new file mode 100644 index 00000000..55a2e6d8 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core L2300' +name: Core-L2300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml new file mode 100644 index 00000000..fe4f419a --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + 'Release Date': '2006-02-14' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core L2400' +name: Core-L2400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml new file mode 100644 index 00000000..bf9176da --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '15 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core L2500' +name: Core-L2500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml new file mode 100644 index 00000000..b8062207 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml @@ -0,0 +1,16 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T1250' +name: Core-T1250 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml new file mode 100644 index 00000000..722612a3 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T1300' +name: Core-T1300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml new file mode 100644 index 00000000..f82f1b49 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T1350' +name: Core-T1350 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml new file mode 100644 index 00000000..e86096ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T1400' +name: Core-T1400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml new file mode 100644 index 00000000..51a45f72 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T2050' +name: Core-T2050 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml new file mode 100644 index 00000000..c87bde54 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } + 'UserBenchmark CPU Score': '30' +isPart: true +type: CPU +humanName: 'Core T2250' +name: Core-T2250 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml new file mode 100644 index 00000000..121c2122 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } + 'UserBenchmark CPU Score': '31.5' +isPart: true +type: CPU +humanName: 'Core T2300' +name: Core-T2300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml new file mode 100644 index 00000000..12ccd23b --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.66 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T2300E' +name: Core-T2300E diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml new file mode 100644 index 00000000..f2d71454 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T2350' +name: Core-T2350 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml new file mode 100644 index 00000000..3c538919 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.83 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } + 'UserBenchmark CPU Score': '31.9' +isPart: true +type: CPU +humanName: 'Core T2400' +name: Core-T2400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml new file mode 100644 index 00000000..8fddcf86 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T2450' +name: Core-T2450 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml new file mode 100644 index 00000000..97c7ec7f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + 'Release Date': '2006-02-14' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } + 'UserBenchmark CPU Score': '32.2' +isPart: true +type: CPU +humanName: 'Core T2500' +name: Core-T2500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml new file mode 100644 index 00000000..9305e2ed --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.16 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } + 'UserBenchmark CPU Score': '31.9' +isPart: true +type: CPU +humanName: 'Core T2600' +name: Core-T2600 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml new file mode 100644 index 00000000..115425ac --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: 'PBGA479, PPGA478' + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core T2700' +name: Core-T2700 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml new file mode 100644 index 00000000..9d8f69fe --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '6 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core U1300' +name: Core-U1300 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml new file mode 100644 index 00000000..671e9fa5 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '6 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core U1400' +name: Core-U1400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml new file mode 100644 index 00000000..69226100 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core U1500' +name: Core-U1500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml new file mode 100644 index 00000000..1a12d14f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '9 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core U2400' +name: Core-U2400 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml new file mode 100644 index 00000000..54c0aa2c --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '9 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '90 mm' + 'Release Date': '2006-02-14' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Core U2500' +name: Core-U2500 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml new file mode 100644 index 00000000..1c20f231 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.33 GHz' + 'L2 Cache (Total)': '512 KiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 215' +name: Pentium-215 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml new file mode 100644 index 00000000..bac21ed4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '27 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.46 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 410' +name: Pentium-410 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml new file mode 100644 index 00000000..4dfc0d5f --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.06 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + 'Release Date': '2006-02-14' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 423' +name: Pentium-423 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml new file mode 100644 index 00000000..1d592ae9 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '5.5 W' + 'Core Count': 1 + 'Thread Count': 1 + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + Socket: PBGA479 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium 443' +name: Pentium-443 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml new file mode 100644 index 00000000..5d6a409d --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + 'Release Date': 'Q1 2007' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium T2060' +name: Pentium-T2060 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml new file mode 100644 index 00000000..1e8417f4 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + 'Release Date': 'Q2 2007' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium T2080' +name: Pentium-T2080 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml new file mode 100644 index 00000000..688b1f11 --- /dev/null +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Yonah + Market: Mobile + Lithography: '65 nm' + TDP: '31 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Die Size': '90 mm' + 'Release Date': 'Q2 2007' + Socket: PPGA478 + 'Other Extensions': { } +isPart: true +type: CPU +humanName: 'Pentium T2130' +name: Pentium-T2130 diff --git a/specs/intel/Server-CPUs-Intel.yaml b/specs/intel/Server-CPUs-Intel.yaml new file mode 100644 index 00000000..02aeb410 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel.yaml @@ -0,0 +1,56 @@ +humanName: 'Server CPUs (Intel)' +sections: + - + header: '2015 - 2019' + members: + - Server-Cascade-Lake + - Server-Hewitt-Lake + - Server-Coffee-Lake + - Server-Kaby-Lake + - Server-Denverton + - Server-Skylake + - Server-Broadwell + - + header: '2010 - 2014' + members: + - Server-Ivy-Bridge-EN + - Server-Ivy-Bridge-EP + - Server-Avoton + - Server-Haswell + - Server-Briarwood + - Server-Centerton + - Server-Sandy-Bridge-EN + - Server-Ivy-Bridge + - Server-Sandy-Bridge-EP + - Server-Sandy-Bridge + - Server-Westmere-EX + - Server-Gulftown + - Server-Clarkdale + - Server-Westmere-EP + - Server-Nehalem-EX + - + header: '2005 - 2009' + members: + - Server-Lynnfield + - Server-Nehalem-EP + - Server-Bloomfield + - Server-Dunnington + - Server-Yorkfield + - Server-Conroe + - Server-Wolfdale + - Server-Harpertown + - Server-Tigerton + - Server-Kentsfield + - Server-Clovertown + - Server-Woodcrest + - + header: '1970 - 1974' + members: + - Server-Dempsey + - Server-Paxville + - Server-Tulsa +type: 'Generic Container' +topHeader: 'SELECT ARCHITECTURE:' +data: + Manufacturer: Intel +name: Server-CPUs-Intel diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml new file mode 100644 index 00000000..7b2c9038 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml @@ -0,0 +1,25 @@ +humanName: Avoton +sections: + - + header: '8 Threads' + members: + - Atom-C2750 + - Atom-C2730 + - + header: '4 Threads' + members: + - Atom-C2550 + - Atom-C2530 + - + header: '2 Threads' + members: + - Atom-C2350 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-04' + Sockets: + - BGA1283 +name: Server-Avoton diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml new file mode 100644 index 00000000..b7ac2e6d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Avoton + Market: Server + Lithography: '22 nm' + TDP: '6 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2350' +name: Atom-C2350 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml new file mode 100644 index 00000000..92321fb7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Avoton + Market: Server + Lithography: '22 nm' + TDP: '9 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2530' +name: Atom-C2530 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml new file mode 100644 index 00000000..8ca89449 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Avoton + Market: Server + Lithography: '22 nm' + TDP: '14 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2550' +name: Atom-C2550 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml new file mode 100644 index 00000000..ebb84479 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Avoton + Market: Server + Lithography: '22 nm' + TDP: '12 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2730' +name: Atom-C2730 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml new file mode 100644 index 00000000..3dbb3319 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Avoton + Market: Server + Lithography: '22 nm' + TDP: '20 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3/DDR3L + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-04' + Socket: FCBGA1283 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C2750' +name: Atom-C2750 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml new file mode 100644 index 00000000..c01715eb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml @@ -0,0 +1,21 @@ +humanName: Bloomfield +sections: + - + header: '8 Threads' + members: + - Xeon-W3580 + - Xeon-W3570 + - Xeon-W3565 + - Xeon-W3550 + - Xeon-W3540 + - Xeon-W3530 + - Xeon-W3520 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-03-30' + Sockets: + - LGA1366 +name: Server-Bloomfield diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml new file mode 100644 index 00000000..6e350064 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '63.1' +isPart: true +type: CPU +humanName: 'Xeon W3520' +name: Xeon-W3520 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml new file mode 100644 index 00000000..03725a55 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 432 + 'Geekbench Multi-Core Score': 1495 + 'UserBenchmark CPU Score': '64.6' +isPart: true +type: CPU +humanName: 'Xeon W3530' +name: Xeon-W3530 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml new file mode 100644 index 00000000..6d9b924a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon W3540' +name: Xeon-W3540 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml new file mode 100644 index 00000000..b4a1babd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-08-04' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 478 + 'Geekbench Multi-Core Score': 1566 + 'UserBenchmark CPU Score': '65.8' +isPart: true +type: CPU +humanName: 'Xeon W3550' +name: Xeon-W3550 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml new file mode 100644 index 00000000..9d63ee95 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-11-03' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 486 + 'Geekbench Multi-Core Score': 1699 + 'UserBenchmark CPU Score': '67' +isPart: true +type: CPU +humanName: 'Xeon W3565' +name: Xeon-W3565 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml new file mode 100644 index 00000000..f1daf8ba --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '72.7' +isPart: true +type: CPU +humanName: 'Xeon W3570' +name: Xeon-W3570 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml new file mode 100644 index 00000000..fd700bcf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Bloomfield + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-08-04' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon W3580' +name: Xeon-W3580 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml new file mode 100644 index 00000000..54b9a0b1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml @@ -0,0 +1,17 @@ +humanName: Briarwood +sections: + - + header: '4 Threads' + members: + - Atom-S1289 + - Atom-S1279 + - Atom-S1269 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2013-04-10' + Sockets: + - BGA1283 +name: Server-Briarwood diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml new file mode 100644 index 00000000..6084bab5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Briarwood + Market: Server + Lithography: '32 nm' + TDP: '11.7 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-04-10' + Socket: FCBGA1283 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1269' +name: Atom-S1269 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml new file mode 100644 index 00000000..58517e45 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Briarwood + Market: Server + Lithography: '32 nm' + TDP: '13.1 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-04-10' + Socket: FCBGA1283 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1279' +name: Atom-S1279 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml new file mode 100644 index 00000000..7614d6c0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Briarwood + Market: Server + Lithography: '32 nm' + TDP: '14.1 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2013-04-10' + Socket: FCBGA1283 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1289' +name: Atom-S1289 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml new file mode 100644 index 00000000..bacb4e45 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml @@ -0,0 +1,111 @@ +humanName: Broadwell +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E7-8894V4 + - Xeon-E7-8891V4 + - Xeon-E7-8890V4 + - Xeon-E7-8880V4 + - Xeon-E7-8870V4 + - Xeon-E7-8867V4 + - Xeon-E7-8860V4 + - Xeon-E7-4850V4 + - Xeon-E7-4830V4 + - Xeon-E7-4820V4 + - Xeon-E5-4669V4 + - Xeon-E5-4667V4 + - Xeon-E5-4660V4 + - Xeon-E5-4650V4 + - Xeon-E5-4640V4 + - Xeon-E5-4620V4 + - Xeon-E5-4610V4 + - Xeon-E5-2699V4 + - Xeon-E5-2699AV4 + - Xeon-E5-2698V4 + - Xeon-E5-2697V4 + - Xeon-E5-2697AV4 + - Xeon-E5-2695V4 + - Xeon-E5-2690V4 + - Xeon-E5-2687WV4 + - Xeon-E5-2683V4 + - Xeon-E5-2680V4 + - Xeon-E5-2660V4 + - Xeon-E5-2650V4 + - Xeon-E5-2650LV4 + - Xeon-E5-2640V4 + - Xeon-E5-2630V4 + - Xeon-E5-2630LV4 + - Xeon-D-1577 + - Xeon-D-1571 + - Xeon-D-1567 + - Xeon-D-1559 + - Xeon-D-1557 + - + header: '9 - 16 Threads' + members: + - Xeon-E7-4809V4 + - Xeon-E5-4655V4 + - Xeon-E5-4627V4 + - Xeon-E5-2667V4 + - Xeon-E5-2643V4 + - Xeon-E5-2620V4 + - Xeon-E5-1680V4 + - Xeon-E5-1660V4 + - Xeon-E5-1650V4 + - Xeon-D-1553N + - Xeon-D-1548 + - Xeon-D-1543N + - Xeon-D-1541 + - Xeon-D-1540 + - Xeon-D-1539 + - Xeon-D-1537 + - Xeon-D-1533N + - Xeon-D-1531 + - Xeon-D-1528 + - + header: '8 Threads' + members: + - Xeon-E7-8893V4 + - Xeon-E5-2637V4 + - Xeon-E5-2623V4 + - Xeon-E5-2609V4 + - Xeon-E5-1630V4 + - Xeon-E5-1620V4 + - Xeon-E3-1285V4 + - Xeon-E3-1285LV4 + - Xeon-E3-1265LV4 + - Xeon-D-1529 + - Xeon-D-1527 + - Xeon-D-1523N + - Xeon-D-1521 + - Xeon-D-1520 + - Xeon-D-1518 + - Xeon-D-1513N + - Pentium-D1519 + - Pentium-D1517 + - + header: '6 Threads' + members: + - Xeon-E5-2603V4 + - + header: '4 Threads' + members: + - Pentium-D1508 + - + header: '2 Threads' + members: + - Pentium-D1509 + - Pentium-D1507 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-03-09' + Sockets: + - BGA1667 + - LGA1150 + - LGA20113 + - LGA2011 +name: Server-Broadwell diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml new file mode 100644 index 00000000..e4e13b70 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '20 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Pentium D1507' +name: Pentium-D1507 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml new file mode 100644 index 00000000..4e5b908b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Pentium D1508' +name: Pentium-D1508 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml new file mode 100644 index 00000000..0cbc46bb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '19 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Pentium D1509' +name: Pentium-D1509 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml new file mode 100644 index 00000000..5d34e46f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Pentium D1517' +name: Pentium-D1517 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml new file mode 100644 index 00000000..488b513c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-04-12' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Pentium D1519' +name: Pentium-D1519 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml new file mode 100644 index 00000000..02ee4cca --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-07-14' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1513N' +name: Xeon-D-1513N diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml new file mode 100644 index 00000000..ca05dd5d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1518' +name: Xeon-D-1518 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml new file mode 100644 index 00000000..4fc6a5f6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-03-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1520' +name: Xeon-D-1520 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml new file mode 100644 index 00000000..df26991e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1521' +name: Xeon-D-1521 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml new file mode 100644 index 00000000..6a49f2a6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2017-07-14' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1523N' +name: Xeon-D-1523N diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml new file mode 100644 index 00000000..c650c330 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1527' +name: Xeon-D-1527 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml new file mode 100644 index 00000000..b0add4a9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1528' +name: Xeon-D-1528 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml new file mode 100644 index 00000000..5bd1da7c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '20 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '1.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2016-04-12' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1529' +name: Xeon-D-1529 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml new file mode 100644 index 00000000..46e1d2c9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1531' +name: Xeon-D-1531 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml new file mode 100644 index 00000000..5577fb41 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2017-07-14' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1533N' +name: Xeon-D-1533N diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml new file mode 100644 index 00000000..949b794f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1537' +name: Xeon-D-1537 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml new file mode 100644 index 00000000..e9218d19 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2016-04-12' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1539' +name: Xeon-D-1539 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml new file mode 100644 index 00000000..4483df63 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2015-03-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1540' +name: Xeon-D-1540 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml new file mode 100644 index 00000000..1f9de84b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 837 + 'Geekbench Multi-Core Score': 4785 +isPart: true +type: CPU +humanName: 'Xeon D-1541' +name: Xeon-D-1541 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml new file mode 100644 index 00000000..cbab3f4a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-07-14' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1543N' +name: Xeon-D-1543N diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml new file mode 100644 index 00000000..804dc900 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2015-11-09' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1548' +name: Xeon-D-1548 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml new file mode 100644 index 00000000..2847968f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-07-14' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1553N' +name: Xeon-D-1553N diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml new file mode 100644 index 00000000..0ba2162d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2016-02-26' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1557' +name: Xeon-D-1557 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml new file mode 100644 index 00000000..cf3718c6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2016-04-12' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1559' +name: Xeon-D-1559 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml new file mode 100644 index 00000000..c78db36f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2016-02-26' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1567' +name: Xeon-D-1567 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml new file mode 100644 index 00000000..ff79ee64 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2016-02-17' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1571' +name: Xeon-D-1571 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml new file mode 100644 index 00000000..3004d20d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.3 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2016-02-17' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1577' +name: Xeon-D-1577 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml new file mode 100644 index 00000000..9d287363 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1265LV4' +name: Xeon-E3-1265LV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml new file mode 100644 index 00000000..eb3955be --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1285LV4' +name: Xeon-E3-1285LV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml new file mode 100644 index 00000000..b95af9a5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2015-06-02' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '300 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '32 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1285V4' +name: Xeon-E3-1285V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml new file mode 100644 index 00000000..a9f762e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2016-06-07' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1620V4' +name: Xeon-E5-1620V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml new file mode 100644 index 00000000..90523009 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2016-06-07' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1630V4' +name: Xeon-E5-1630V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml new file mode 100644 index 00000000..ad1cf909 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2016-06-07' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1650V4' +name: Xeon-E5-1650V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml new file mode 100644 index 00000000..b3b73149 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-06-07' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1660V4' +name: Xeon-E5-1660V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml new file mode 100644 index 00000000..0cb2ff28 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-06-07' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1680V4' +name: Xeon-E5-1680V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml new file mode 100644 index 00000000..06dc1bb7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2603V4' +name: Xeon-E5-2603V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml new file mode 100644 index 00000000..56e0866c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2609V4' +name: Xeon-E5-2609V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml new file mode 100644 index 00000000..815776d0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2620V4' +name: Xeon-E5-2620V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml new file mode 100644 index 00000000..30262ceb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2623V4' +name: Xeon-E5-2623V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml new file mode 100644 index 00000000..19340b29 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '55 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2630LV4' +name: Xeon-E5-2630LV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml new file mode 100644 index 00000000..f102daf4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2630V4' +name: Xeon-E5-2630V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml new file mode 100644 index 00000000..0e0347d9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2637V4' +name: Xeon-E5-2637V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml new file mode 100644 index 00000000..e4d7f267 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '90 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2640V4' +name: Xeon-E5-2640V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml new file mode 100644 index 00000000..9f238c64 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2643V4' +name: Xeon-E5-2643V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml new file mode 100644 index 00000000..9a5449ed --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2650LV4' +name: Xeon-E5-2650LV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml new file mode 100644 index 00000000..15fb4389 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2650V4' +name: Xeon-E5-2650V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml new file mode 100644 index 00000000..be9598a7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2660V4' +name: Xeon-E5-2660V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml new file mode 100644 index 00000000..81f5790b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2667V4' +name: Xeon-E5-2667V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml new file mode 100644 index 00000000..ceb25bc2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2680V4' +name: Xeon-E5-2680V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml new file mode 100644 index 00000000..a6a3ae46 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2683V4' +name: Xeon-E5-2683V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml new file mode 100644 index 00000000..f0f61d1e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2687WV4' +name: Xeon-E5-2687WV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml new file mode 100644 index 00000000..a3603f9c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2690V4' +name: Xeon-E5-2690V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml new file mode 100644 index 00000000..8853e978 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2695V4' +name: Xeon-E5-2695V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml new file mode 100644 index 00000000..6a9a6380 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '145 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2697AV4' +name: Xeon-E5-2697AV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml new file mode 100644 index 00000000..2ab38287 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '145 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2697V4' +name: Xeon-E5-2697V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml new file mode 100644 index 00000000..a632f307 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '50 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2698V4' +name: Xeon-E5-2698V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml new file mode 100644 index 00000000..6808b946 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '145 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '55 MiB' + 'Release Date': '2016-10-24' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2699AV4' +name: Xeon-E5-2699AV4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml new file mode 100644 index 00000000..891851d9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '145 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '55 MiB' + 'Release Date': '2016-03-31' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2699V4' +name: Xeon-E5-2699V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml new file mode 100644 index 00000000..17e4cdec --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '1.8 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4610V4' +name: Xeon-E5-4610V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml new file mode 100644 index 00000000..bc8ae213 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4620V4' +name: Xeon-E5-4620V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml new file mode 100644 index 00000000..b83e4c02 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 10 + 'Thread Count': 10 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4627V4' +name: Xeon-E5-4627V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml new file mode 100644 index 00000000..33e0dac0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4640V4' +name: Xeon-E5-4640V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml new file mode 100644 index 00000000..eca38d73 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4650V4' +name: Xeon-E5-4650V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml new file mode 100644 index 00000000..55d3e63e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4655V4' +name: Xeon-E5-4655V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml new file mode 100644 index 00000000..54a58dcd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4660V4' +name: Xeon-E5-4660V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml new file mode 100644 index 00000000..c2a138c1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4667V4' +name: Xeon-E5-4667V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml new file mode 100644 index 00000000..1d8324cf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '55 MiB' + 'Release Date': '2016-06-20' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4669V4' +name: Xeon-E5-4669V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml new file mode 100644 index 00000000..659a5eeb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4809V4' +name: Xeon-E7-4809V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml new file mode 100644 index 00000000..e1640cd6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4820V4' +name: Xeon-E7-4820V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml new file mode 100644 index 00000000..13ed896e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4830V4' +name: Xeon-E7-4830V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml new file mode 100644 index 00000000..2a228125 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4850V4' +name: Xeon-E7-4850V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml new file mode 100644 index 00000000..778a2e86 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8860V4' +name: Xeon-E7-8860V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml new file mode 100644 index 00000000..db2fe35e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8867V4' +name: Xeon-E7-8867V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml new file mode 100644 index 00000000..85bf8520 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '50 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8870V4' +name: Xeon-E7-8870V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml new file mode 100644 index 00000000..afded4ff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '55 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8880V4' +name: Xeon-E7-8880V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml new file mode 100644 index 00000000..134074ae --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '60 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8890V4' +name: Xeon-E7-8890V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml new file mode 100644 index 00000000..65f0032b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '60 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8891V4' +name: Xeon-E7-8891V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml new file mode 100644 index 00000000..7f068e20 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '60 MiB' + 'Release Date': '2016-06-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8893V4' +name: Xeon-E7-8893V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml new file mode 100644 index 00000000..40b45e7c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Broadwell + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '60 MiB' + 'Release Date': '2017-02-07' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8894V4' +name: Xeon-E7-8894V4 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml new file mode 100644 index 00000000..ea573f39 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml @@ -0,0 +1,86 @@ +humanName: 'Cascade Lake' +sections: + - + header: '65 - 128 Threads' + members: + - Xeon-9282 + - Xeon-9242 + - + header: '17 - 64 Threads' + members: + - Xeon-9222 + - Xeon-9221 + - Xeon-8280M + - Xeon-8280L + - Xeon-8280 + - Xeon-8276M + - Xeon-8276L + - Xeon-8276 + - Xeon-8270 + - Xeon-8268 + - Xeon-8260Y + - Xeon-8260M + - Xeon-8260L + - Xeon-8260 + - Xeon-8253 + - Xeon-6262V + - Xeon-6254 + - Xeon-6252N + - Xeon-6252 + - Xeon-6248 + - Xeon-6246 + - Xeon-6242 + - Xeon-6240Y + - Xeon-6240M + - Xeon-6240L + - Xeon-6240 + - Xeon-6238T + - Xeon-6238M + - Xeon-6238L + - Xeon-6238 + - Xeon-6230T + - Xeon-6230N + - Xeon-6230 + - Xeon-6226 + - Xeon-6222V + - Xeon-5220T + - Xeon-5220S + - Xeon-5220 + - Xeon-5218T + - Xeon-5218N + - Xeon-5218B + - Xeon-5218 + - Xeon-5215M + - Xeon-5215L + - Xeon-5215 + - Xeon-4216 + - Xeon-4214Y + - Xeon-4214 + - Xeon-4210 + - + header: '9 - 16 Threads' + members: + - Xeon-6244 + - Xeon-6234 + - Xeon-5217 + - Xeon-4215 + - Xeon-4209T + - Xeon-4208 + - + header: '8 Threads' + members: + - Xeon-8256 + - Xeon-5222 + - + header: '6 Threads' + members: + - Xeon-3204 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2019-04-02' + Sockets: + - LGA3647 +name: Server-Cascade-Lake diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml new file mode 100644 index 00000000..6799a340 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '1.9 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 3204' +name: Xeon-3204 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml new file mode 100644 index 00000000..0c3d4d94 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4208' +name: Xeon-4208 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml new file mode 100644 index 00000000..02387322 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4209T' +name: Xeon-4209T diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml new file mode 100644 index 00000000..73944289 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4210' +name: Xeon-4210 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml new file mode 100644 index 00000000..889745a5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4214' +name: Xeon-4214 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml new file mode 100644 index 00000000..e46240ba --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4214Y' +name: Xeon-4214Y diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml new file mode 100644 index 00000000..c5c5a9cc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4215' +name: Xeon-4215 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml new file mode 100644 index 00000000..e351d600 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '100 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4216' +name: Xeon-4216 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml new file mode 100644 index 00000000..ea604cbe --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5215' +name: Xeon-5215 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml new file mode 100644 index 00000000..d2048593 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5215L' +name: Xeon-5215L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml new file mode 100644 index 00000000..86c77e82 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5215M' +name: Xeon-5215M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml new file mode 100644 index 00000000..a742d41d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5217' +name: Xeon-5217 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml new file mode 100644 index 00000000..70536ef8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5218' +name: Xeon-5218 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml new file mode 100644 index 00000000..631e6373 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5218B' +name: Xeon-5218B diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml new file mode 100644 index 00000000..13a17132 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '110 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5218N' +name: Xeon-5218N diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml new file mode 100644 index 00000000..8530cff2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5218T' +name: Xeon-5218T diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml new file mode 100644 index 00000000..dd806f47 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5220' +name: Xeon-5220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml new file mode 100644 index 00000000..e63327b8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5220S' +name: Xeon-5220S diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml new file mode 100644 index 00000000..9bd3b440 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2667 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5220T' +name: Xeon-5220T diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml new file mode 100644 index 00000000..8dccd253 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5222' +name: Xeon-5222 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml new file mode 100644 index 00000000..81ffb032 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6222V' +name: Xeon-6222V diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml new file mode 100644 index 00000000..a0084fb1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6226' +name: Xeon-6226 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml new file mode 100644 index 00000000..1953336e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6230' +name: Xeon-6230 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml new file mode 100644 index 00000000..1fd7adff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6230N' +name: Xeon-6230N diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml new file mode 100644 index 00000000..0f422b23 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6230T' +name: Xeon-6230T diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml new file mode 100644 index 00000000..acb98880 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6234' +name: Xeon-6234 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml new file mode 100644 index 00000000..35076a7d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '30.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6238' +name: Xeon-6238 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml new file mode 100644 index 00000000..767f0e0e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '30.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6238L' +name: Xeon-6238L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml new file mode 100644 index 00000000..35b95d2c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '30.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6238M' +name: Xeon-6238M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml new file mode 100644 index 00000000..8081d183 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '30.25 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6238T' +name: Xeon-6238T diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml new file mode 100644 index 00000000..b7fdb710 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6240' +name: Xeon-6240 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml new file mode 100644 index 00000000..36a08143 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6240L' +name: Xeon-6240L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml new file mode 100644 index 00000000..bcdaadb9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6240M' +name: Xeon-6240M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml new file mode 100644 index 00000000..cafa634f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6240Y' +name: Xeon-6240Y diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml new file mode 100644 index 00000000..bef3241c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6242' +name: Xeon-6242 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml new file mode 100644 index 00000000..93f6f644 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6244' +name: Xeon-6244 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml new file mode 100644 index 00000000..8ddc0bc7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6246' +name: Xeon-6246 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml new file mode 100644 index 00000000..ffbd53c4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6248' +name: Xeon-6248 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml new file mode 100644 index 00000000..c790cdf7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6252' +name: Xeon-6252 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml new file mode 100644 index 00000000..e7f5327c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6252N' +name: Xeon-6252N diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml new file mode 100644 index 00000000..236eb8e2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '200 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6254' +name: Xeon-6254 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml new file mode 100644 index 00000000..d5d38b1f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6262V' +name: Xeon-6262V diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml new file mode 100644 index 00000000..0151e8d5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8253' +name: Xeon-8253 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml new file mode 100644 index 00000000..ed7556c7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8256' +name: Xeon-8256 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml new file mode 100644 index 00000000..41bda0c5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8260' +name: Xeon-8260 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml new file mode 100644 index 00000000..4a9520e2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8260L' +name: Xeon-8260L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml new file mode 100644 index 00000000..62a8a22d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8260M' +name: Xeon-8260M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml new file mode 100644 index 00000000..3215ca8c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8260Y' +name: Xeon-8260Y diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml new file mode 100644 index 00000000..28a66c6f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8268' +name: Xeon-8268 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml new file mode 100644 index 00000000..5d7b4064 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 26 + 'Thread Count': 52 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8270' +name: Xeon-8270 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml new file mode 100644 index 00000000..c5343cfc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8276' +name: Xeon-8276 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml new file mode 100644 index 00000000..e0f37ba7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8276L' +name: Xeon-8276L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml new file mode 100644 index 00000000..4dd90969 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8276M' +name: Xeon-8276M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml new file mode 100644 index 00000000..a71d9761 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8280' +name: Xeon-8280 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml new file mode 100644 index 00000000..d95f5420 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8280L' +name: Xeon-8280L diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml new file mode 100644 index 00000000..7a0b947c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-04-02' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8280M' +name: Xeon-8280M diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml new file mode 100644 index 00000000..032715a5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: 14nm + TDP: '250 W' + 'Core Count': 32 + 'Thread Count': 64 + 'Max Memory Channels': 12 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '71.5 MiB' + 'Release Date': '2019-08-01' + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 9221' +name: Xeon-9221 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml new file mode 100644 index 00000000..c8b0d862 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: 14nm + TDP: '250 W' + 'Core Count': 32 + 'Thread Count': 64 + 'Max Memory Channels': 12 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '71.5 MiB' + 'Release Date': '2019-08-01' + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 9222' +name: Xeon-9222 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml new file mode 100644 index 00000000..c3b0e675 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: 14nm + TDP: '350 W' + 'Core Count': 48 + 'Thread Count': 96 + 'Max Memory Channels': 12 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '71.5 MiB' + 'Release Date': '2019-04-02' + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 9242' +name: Xeon-9242 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml new file mode 100644 index 00000000..362ea9ad --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Market: Server + Lithography: 14nm + TDP: '400 W' + 'Core Count': 56 + 'Thread Count': 112 + 'Max Memory Channels': 12 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '77 MiB' + 'Release Date': '2019-04-02' + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 9282' +name: Xeon-9282 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml new file mode 100644 index 00000000..ad894f2e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml @@ -0,0 +1,17 @@ +humanName: Centerton +sections: + - + header: '4 Threads' + members: + - Atom-S1260 + - Atom-S1240 + - Atom-S1220 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-12-11' + Sockets: + - BGA1283 +name: Server-Centerton diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml new file mode 100644 index 00000000..d0dc64f9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Centerton + Market: Server + Lithography: '32 nm' + TDP: '8.1 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2012-12-11' + Socket: FCBGA1283 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1220' +name: Atom-S1220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml new file mode 100644 index 00000000..a36c4e46 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Centerton + Market: Server + Lithography: '32 nm' + TDP: '6.1 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2012-12-11' + Socket: FCBGA1283 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1240' +name: Atom-S1240 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml new file mode 100644 index 00000000..1db5c7bc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Centerton + Market: Server + Lithography: '32 nm' + TDP: '8.5 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '1024 KiB' + 'Release Date': '2012-12-11' + Socket: FCBGA1283 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom S1260' +name: Atom-S1260 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml new file mode 100644 index 00000000..91bfae6a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml @@ -0,0 +1,15 @@ +humanName: Clarkdale +sections: + - + header: '4 Threads' + members: + - Xeon-L3406 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2010-03-16' + Sockets: + - LGA1156 +name: Server-Clarkdale diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml new file mode 100644 index 00000000..3b5dee02 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Clarkdale + Market: Server + Lithography: '32 nm' + TDP: '30 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.53 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '81 mm' + 'Release Date': '2010-03-16' + Socket: FCLGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon L3406' +name: Xeon-L3406 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml new file mode 100644 index 00000000..6a3f9bae --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml @@ -0,0 +1,25 @@ +humanName: Clovertown +sections: + - + header: '4 Threads' + members: + - Xeon-X5365 + - Xeon-X5355 + - Xeon-L5335 + - Xeon-L5320 + - Xeon-L5318 + - Xeon-L5310 + - Xeon-E5345 + - Xeon-E5335 + - Xeon-E5320 + - Xeon-E5310 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': '2006-10-11' + Sockets: + - LGA771 + - PLGA771 +name: Server-Clovertown diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml new file mode 100644 index 00000000..8d615ca0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2006-10-11' + Socket: 'LGA771, PLGA771' + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '34.1' +isPart: true +type: CPU +humanName: 'Xeon E5310' +name: Xeon-E5310 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml new file mode 100644 index 00000000..702fcb7b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2006-10-11' + Socket: 'LGA771, PLGA771' + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '35.8' +isPart: true +type: CPU +humanName: 'Xeon E5320' +name: Xeon-E5320 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml new file mode 100644 index 00000000..b3c1413e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2006-10-11' + Socket: 'LGA771, PLGA771' + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '39.5' +isPart: true +type: CPU +humanName: 'Xeon E5335' +name: Xeon-E5335 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml new file mode 100644 index 00000000..cb136e29 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2006-10-11' + Socket: 'LGA771, PLGA771' + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '40.7' +isPart: true +type: CPU +humanName: 'Xeon E5345' +name: Xeon-E5345 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml new file mode 100644 index 00000000..f7d9e36e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-03-12' + Socket: PLGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5310' +name: Xeon-L5310 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml new file mode 100644 index 00000000..235e3d84 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2008-03-31' + Socket: PLGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5318' +name: Xeon-L5318 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml new file mode 100644 index 00000000..405e3e26 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-03-12' + Socket: PLGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5320' +name: Xeon-L5320 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml new file mode 100644 index 00000000..9dc85118 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-08-13' + Socket: PLGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5335' +name: Xeon-L5335 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml new file mode 100644 index 00000000..10bfe495 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2006-10-11' + Socket: 'LGA771, PLGA771' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5355' +name: Xeon-X5355 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml new file mode 100644 index 00000000..0f588a10 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Clovertown + Market: Server + Lithography: '65 nm' + TDP: '150 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-08-13' + Socket: PLGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5365' +name: Xeon-X5365 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml new file mode 100644 index 00000000..de19b85a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml @@ -0,0 +1,45 @@ +humanName: 'Coffee Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E-2288G + - Xeon-E-2286G + - Xeon-E-2278G + - Xeon-E-2276G + - Xeon-E-2246G + - Xeon-E-2236 + - Xeon-E-2186G + - Xeon-E-2176G + - Xeon-E-2146G + - Xeon-E-2136 + - + header: '8 Threads' + members: + - Xeon-E-2274G + - Xeon-E-2244G + - Xeon-E-2234 + - Xeon-E-2174G + - Xeon-E-2144G + - Xeon-E-2134 + - + header: '6 Threads' + members: + - Xeon-E-2226G + - Xeon-E-2126G + - + header: '4 Threads' + members: + - Xeon-E-2224G + - Xeon-E-2224 + - Xeon-E-2124G + - Xeon-E-2124 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: 14nm + 'Release Date': '2018-07-12' + Sockets: + - LGA1151 +name: Server-Coffee-Lake diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml new file mode 100644 index 00000000..59282ffb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E-2124' +name: Xeon-E-2124 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml new file mode 100644 index 00000000..3d26315c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: 14nm + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2124G' +name: Xeon-E-2124G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml new file mode 100644 index 00000000..0805631f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2126G' +name: Xeon-E-2126G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml new file mode 100644 index 00000000..a3a9c518 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E-2134' +name: Xeon-E-2134 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml new file mode 100644 index 00000000..c34f6d80 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1557 + 'Geekbench Multi-Core Score': 6527 +isPart: true +type: CPU +humanName: 'Xeon E-2136' +name: Xeon-E-2136 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml new file mode 100644 index 00000000..de3219ba --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2144G' +name: Xeon-E-2144G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml new file mode 100644 index 00000000..d5eebef9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml @@ -0,0 +1,32 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' + 'Geekbench Single-Core Score': 1438 + 'Geekbench Multi-Core Score': 5557 +isPart: true +type: CPU +humanName: 'Xeon E-2146G' +name: Xeon-E-2146G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml new file mode 100644 index 00000000..e9b1e4c4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2174G' +name: Xeon-E-2174G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml new file mode 100644 index 00000000..5ef6f2fe --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: 14nm + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2176G' +name: Xeon-E-2176G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml new file mode 100644 index 00000000..736c02f5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2018-07-12' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2186G' +name: Xeon-E-2186G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml new file mode 100644 index 00000000..63fdad0d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E-2224' +name: Xeon-E-2224 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml new file mode 100644 index 00000000..5ff01cee --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2224G' +name: Xeon-E-2224G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml new file mode 100644 index 00000000..3871e26f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4.7 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2226G' +name: Xeon-E-2226G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml new file mode 100644 index 00000000..19b43037 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E-2234' +name: Xeon-E-2234 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml new file mode 100644 index 00000000..8d7589ee --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E-2236' +name: Xeon-E-2236 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml new file mode 100644 index 00000000..9b52d882 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '71 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2244G' +name: Xeon-E-2244G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml new file mode 100644 index 00000000..67321c99 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2246G' +name: Xeon-E-2246G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml new file mode 100644 index 00000000..5dd267bc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '83 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2274G' +name: Xeon-E-2274G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml new file mode 100644 index 00000000..c1bd972b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2276G' +name: Xeon-E-2276G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml new file mode 100644 index 00000000..58c9c87c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2278G' +name: Xeon-E-2278G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml new file mode 100644 index 00000000..667086ac --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2286G' +name: Xeon-E-2286G diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml new file mode 100644 index 00000000..3ba25eed --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Coffee Lake' + Market: Server + Lithography: '14 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2019-05-27' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR4 + 'Maximum VRAM Capacity': '128 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.5' +isPart: true +type: CPU +humanName: 'Xeon E-2288G' +name: Xeon-E-2288G diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml new file mode 100644 index 00000000..3b1fd7e8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml @@ -0,0 +1,20 @@ +humanName: Conroe +sections: + - + header: '2 Threads' + members: + - Xeon-3070 + - Xeon-3065 + - Xeon-3060 + - Xeon-3050 + - Xeon-3040 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': '2007-11-12' + Sockets: + - LGA775 + - PLGA775 +name: Server-Conroe diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml new file mode 100644 index 00000000..122fdaf5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + Socket: 'LGA775, PLGA775' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 3040' +name: Xeon-3040 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml new file mode 100644 index 00000000..428b4841 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '2 MiB' + 'Die Size': '111 mm' + Socket: 'LGA775, PLGA775' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 3050' +name: Xeon-3050 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml new file mode 100644 index 00000000..e63e46d3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 3060' +name: Xeon-3060 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml new file mode 100644 index 00000000..403d70b5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2007-11-12' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 3065' +name: Xeon-3065 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml new file mode 100644 index 00000000..d7bd6e2a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Conroe + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: PLGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 3070' +name: Xeon-3070 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml new file mode 100644 index 00000000..b823128f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml @@ -0,0 +1,39 @@ +humanName: Denverton +sections: + - + header: '9 - 16 Threads' + members: + - Atom-C3958 + - Atom-C3955 + - Atom-C3950 + - Atom-C3858 + - Atom-C3850 + - Atom-C3830 + - Atom-C3808 + - + header: '8 Threads' + members: + - Atom-C3758 + - Atom-C3750 + - Atom-C3708 + - + header: '4 Threads' + members: + - Atom-C3558 + - Atom-C3538 + - Atom-C3508 + - + header: '2 Threads' + members: + - Atom-C3338 + - Atom-C3336 + - Atom-C3308 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-01-03' + Sockets: + - BGA1310 +name: Server-Denverton diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml new file mode 100644 index 00000000..fb2372b6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '9.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3308' +name: Atom-C3308 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml new file mode 100644 index 00000000..6d9d7e0b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '11 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2018-08-31' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3336' +name: Atom-C3336 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml new file mode 100644 index 00000000..3352e29e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '8.5 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 1 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.5 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2017-01-03' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3338' +name: Atom-C3338 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml new file mode 100644 index 00000000..c492346d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '11.5 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.6 GHz' + 'Boost Frequency': '1.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3508' +name: Atom-C3508 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml new file mode 100644 index 00000000..c79c6c4b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '15 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3538' +name: Atom-C3538 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml new file mode 100644 index 00000000..1f9dc0c4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '16 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3558' +name: Atom-C3558 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml new file mode 100644 index 00000000..03ed25c3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '17 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '1.7 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3708' +name: Atom-C3708 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml new file mode 100644 index 00000000..3bf9c963 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '21 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3750' +name: Atom-C3750 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml new file mode 100644 index 00000000..400fdae8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3758' +name: Atom-C3758 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml new file mode 100644 index 00000000..e1fbb23f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 12 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3808' +name: Atom-C3808 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml new file mode 100644 index 00000000..6889eb02 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '21.5 W' + 'Core Count': 12 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3830' +name: Atom-C3830 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml new file mode 100644 index 00000000..f6bb4260 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 12 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3850' +name: Atom-C3850 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml new file mode 100644 index 00000000..00333baf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 12 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3858' +name: Atom-C3858 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml new file mode 100644 index 00000000..d4e37c2b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '24 W' + 'Core Count': 16 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3950' +name: Atom-C3950 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml new file mode 100644 index 00000000..ceeb0207 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '32 W' + 'Core Count': 16 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3955' +name: Atom-C3955 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml new file mode 100644 index 00000000..788bbe06 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Denverton + Market: Server + Lithography: '14 nm' + TDP: '31 W' + 'Core Count': 16 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4:' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2017-08-15' + Socket: FCBGA1310 + AES: true + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Atom C3958' +name: Atom-C3958 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml new file mode 100644 index 00000000..03d2e101 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml @@ -0,0 +1,24 @@ +humanName: Dunnington +sections: + - + header: '6 Threads' + members: + - Xeon-X7460 + - Xeon-L7455 + - Xeon-E7450 + - + header: '4 Threads' + members: + - Xeon-L7445 + - Xeon-E7440 + - Xeon-E7430 + - Xeon-E7420 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-09-15' + Sockets: + - PGA604 +name: Server-Dunnington diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml new file mode 100644 index 00000000..6ca42ee2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '90 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7420' +name: Xeon-E7420 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml new file mode 100644 index 00000000..04940cec --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '90 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7430' +name: Xeon-E7430 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml new file mode 100644 index 00000000..10cf56eb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '90 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7440' +name: Xeon-E7440 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml new file mode 100644 index 00000000..b559b89d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '90 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7450' +name: Xeon-E7450 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml new file mode 100644 index 00000000..06cb8f0a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L7445' +name: Xeon-L7445 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml new file mode 100644 index 00000000..37a0a2f7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L7455' +name: Xeon-L7455 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml new file mode 100644 index 00000000..11179883 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Dunnington + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Die Size': '503 mm' + 'Release Date': '2008-09-15' + Socket: PGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X7460' +name: Xeon-X7460 diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml new file mode 100644 index 00000000..20bb30e5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml @@ -0,0 +1,15 @@ +humanName: Gulftown +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-W3690 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-02-14' + Sockets: + - LGA1366 +name: Server-Gulftown diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml new file mode 100644 index 00000000..1ae418b7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Gulftown + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.46 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '239 mm' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 560 + 'Geekbench Multi-Core Score': 2665 + 'UserBenchmark CPU Score': '76.9' +isPart: true +type: CPU +humanName: 'Xeon W3690' +name: Xeon-W3690 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml new file mode 100644 index 00000000..c30d7214 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml @@ -0,0 +1,31 @@ +humanName: Harpertown +sections: + - + header: '4 Threads' + members: + - Xeon-X5492 + - Xeon-X5482 + - Xeon-X5472 + - Xeon-X5470 + - Xeon-X5460 + - Xeon-X5450 + - Xeon-L5430 + - Xeon-L5420 + - Xeon-L5410 + - Xeon-E5472 + - Xeon-E5462 + - Xeon-E5450 + - Xeon-E5440 + - Xeon-E5430 + - Xeon-E5420 + - Xeon-E5410 + - Xeon-E5405 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2007-11-12' + Sockets: + - LGA771 +name: Server-Harpertown diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml new file mode 100644 index 00000000..c9748433 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '41.9' +isPart: true +type: CPU +humanName: 'Xeon E5405' +name: Xeon-E5405 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml new file mode 100644 index 00000000..e320a119 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5410' +name: Xeon-E5410 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml new file mode 100644 index 00000000..5fc77408 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '45.2' +isPart: true +type: CPU +humanName: 'Xeon E5420' +name: Xeon-E5420 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml new file mode 100644 index 00000000..81b4a30a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '48' +isPart: true +type: CPU +humanName: 'Xeon E5430' +name: Xeon-E5430 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml new file mode 100644 index 00000000..ee829115 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 358 + 'Geekbench Multi-Core Score': 1046 + 'UserBenchmark CPU Score': '49' +isPart: true +type: CPU +humanName: 'Xeon E5440' +name: Xeon-E5440 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml new file mode 100644 index 00000000..6f94bef3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 381 + 'Geekbench Multi-Core Score': 1102 + 'UserBenchmark CPU Score': '50.5' +isPart: true +type: CPU +humanName: 'Xeon E5450' +name: Xeon-E5450 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml new file mode 100644 index 00000000..dc59aafb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '47.6' +isPart: true +type: CPU +humanName: 'Xeon E5462' +name: Xeon-E5462 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml new file mode 100644 index 00000000..d1cca8cf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '50.7' +isPart: true +type: CPU +humanName: 'Xeon E5472' +name: Xeon-E5472 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml new file mode 100644 index 00000000..bfcf9941 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-25' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5410' +name: Xeon-L5410 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml new file mode 100644 index 00000000..79ff3c7a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-25' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '46.7' +isPart: true +type: CPU +humanName: 'Xeon L5420' +name: Xeon-L5420 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml new file mode 100644 index 00000000..2d29e525 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-09-08' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5430' +name: Xeon-L5430 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml new file mode 100644 index 00000000..0169f84c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '49.6' +isPart: true +type: CPU +humanName: 'Xeon X5450' +name: Xeon-X5450 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml new file mode 100644 index 00000000..19d8acd0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.16 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'Geekbench Single-Core Score': 421 + 'Geekbench Multi-Core Score': 1140 + 'UserBenchmark CPU Score': '51.6' +isPart: true +type: CPU +humanName: 'Xeon X5460' +name: Xeon-X5460 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml new file mode 100644 index 00000000..7213da14 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-09-08' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '54.5' +isPart: true +type: CPU +humanName: 'Xeon X5470' +name: Xeon-X5470 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml new file mode 100644 index 00000000..584dc94b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '50.8' +isPart: true +type: CPU +humanName: 'Xeon X5472' +name: Xeon-X5472 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml new file mode 100644 index 00000000..2567fbc2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '150 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5482' +name: Xeon-X5482 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml new file mode 100644 index 00000000..fa4d8679 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Harpertown + Market: Server + Lithography: '45 nm' + TDP: '150 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-09-08' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5492' +name: Xeon-X5492 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml new file mode 100644 index 00000000..b7f0e24f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml @@ -0,0 +1,100 @@ +humanName: Haswell +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E7-8891V3 + - Xeon-E7-8890V3 + - Xeon-E7-8880V3 + - Xeon-E7-8880LV3 + - Xeon-E7-8870V3 + - Xeon-E7-8867V3 + - Xeon-E7-8860V3 + - Xeon-E7-4850V3 + - Xeon-E7-4830V3 + - Xeon-E7-4820V3 + - Xeon-E5-4669V3 + - Xeon-E5-4667V3 + - Xeon-E5-4660V3 + - Xeon-E5-4650V3 + - Xeon-E5-4640V3 + - Xeon-E5-4620V3 + - Xeon-E5-4610V3 + - Xeon-E5-2699V3 + - Xeon-E5-2698V3 + - Xeon-E5-2697V3 + - Xeon-E5-2695V3 + - Xeon-E5-2690V3 + - Xeon-E5-2687WV3 + - Xeon-E5-2683V3 + - Xeon-E5-2680V3 + - Xeon-E5-2670V3 + - Xeon-E5-2660V3 + - Xeon-E5-2650V3 + - Xeon-E5-2650LV3 + - + header: '9 - 16 Threads' + members: + - Xeon-E7-4809V3 + - Xeon-E5-4655V3 + - Xeon-E5-4627V3 + - Xeon-E5-2667V3 + - Xeon-E5-2643V3 + - Xeon-E5-2640V3 + - Xeon-E5-2630V3 + - Xeon-E5-2630LV3 + - Xeon-E5-2620V3 + - Xeon-E5-1680V3 + - Xeon-E5-1660V3 + - Xeon-E5-1650V3 + - + header: '8 Threads' + members: + - Xeon-E7-8893V3 + - Xeon-E5-2637V3 + - Xeon-E5-2623V3 + - Xeon-E5-1630V3 + - Xeon-E5-1620V3 + - Xeon-E3-1286V3 + - Xeon-E3-1286LV3 + - Xeon-E3-1285Lv3 + - Xeon-E3-1285-v3 + - Xeon-E3-1281V3 + - Xeon-E3-1280-v3 + - Xeon-E3-1276V3 + - Xeon-E3-1275LV3 + - Xeon-E3-1275-v3 + - Xeon-E3-1271V3 + - Xeon-E3-1270-v3 + - Xeon-E3-1265Lv3 + - Xeon-E3-1246V3 + - Xeon-E3-1245-v3 + - Xeon-E3-1241V3 + - Xeon-E3-1240LV3 + - Xeon-E3-1240-v3 + - Xeon-E3-1231V3 + - Xeon-E3-1230Lv3 + - Xeon-E3-1230-v3 + - + header: '6 Threads' + members: + - Xeon-E5-2609V3 + - Xeon-E5-2603V3 + - + header: '4 Threads' + members: + - Xeon-E3-1226V3 + - Xeon-E3-1225V3 + - Xeon-E3-1220LV3 + - Xeon-E3-1220-v3 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-06-01' + Sockets: + - LGA1150 + - LGA20113 + - LGA2011 +name: Server-Haswell diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml new file mode 100644 index 00000000..7c6a4fc6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1070 + 'Geekbench Multi-Core Score': 3070 + 'UserBenchmark CPU Score': '69.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1220 v3' +name: Xeon-E3-1220-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml new file mode 100644 index 00000000..276d4f53 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '13 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.1 GHz' + 'Boost Frequency': '1.5 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2013-09-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1220LV3' +name: Xeon-E3-1220LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml new file mode 100644 index 00000000..7f565bb9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1225V3' +name: Xeon-E3-1225V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml new file mode 100644 index 00000000..b28a0df3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1226V3' +name: Xeon-E3-1226V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml new file mode 100644 index 00000000..39850e48 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1109 + 'Geekbench Multi-Core Score': 3657 + 'UserBenchmark CPU Score': '72.8' +isPart: true +type: CPU +humanName: 'Xeon E3-1230 v3' +name: Xeon-E3-1230-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml new file mode 100644 index 00000000..838c151c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1230Lv3' +name: Xeon-E3-1230Lv3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml new file mode 100644 index 00000000..a627cbb2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1231V3' +name: Xeon-E3-1231V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml new file mode 100644 index 00000000..f05146c3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1134 + 'Geekbench Multi-Core Score': 3699 + 'UserBenchmark CPU Score': '72.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1240 v3' +name: Xeon-E3-1240-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml new file mode 100644 index 00000000..7438e298 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1240LV3' +name: Xeon-E3-1240LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml new file mode 100644 index 00000000..4461b5ad --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1241V3' +name: Xeon-E3-1241V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml new file mode 100644 index 00000000..66efe63b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'Geekbench Single-Core Score': 1153 + 'Geekbench Multi-Core Score': 3765 + 'UserBenchmark CPU Score': '71.5' +isPart: true +type: CPU +humanName: 'Xeon E3-1245 v3' +name: Xeon-E3-1245-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml new file mode 100644 index 00000000..64651921 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1246V3' +name: Xeon-E3-1246V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml new file mode 100644 index 00000000..32f3c1f3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1265Lv3' +name: Xeon-E3-1265Lv3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml new file mode 100644 index 00000000..0236db7c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1153 + 'Geekbench Multi-Core Score': 3824 + 'UserBenchmark CPU Score': '75.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1270 v3' +name: Xeon-E3-1270-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml new file mode 100644 index 00000000..f57f8511 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1271V3' +name: Xeon-E3-1271V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml new file mode 100644 index 00000000..d113c832 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 1163 + 'Geekbench Multi-Core Score': 3645 + 'UserBenchmark CPU Score': '77.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1275 v3' +name: Xeon-E3-1275-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml new file mode 100644 index 00000000..39055cdf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.2 GHz' + 'VRAM Type': DDR3 + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1275LV3' +name: Xeon-E3-1275LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml new file mode 100644 index 00000000..ce6944c3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1276V3' +name: Xeon-E3-1276V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml new file mode 100644 index 00000000..198e49e4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '82 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'Geekbench Single-Core Score': 1131 + 'Geekbench Multi-Core Score': 3702 +isPart: true +type: CPU +humanName: 'Xeon E3-1280 v3' +name: Xeon-E3-1280-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml new file mode 100644 index 00000000..d047d972 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '82 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E3-1281V3' +name: Xeon-E3-1281V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml new file mode 100644 index 00000000..ab3a0981 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.3 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1285 v3' +name: Xeon-E3-1285-v3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml new file mode 100644 index 00000000..79c7d243 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2013-06-01' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'DirectX Support': '11.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1285Lv3' +name: Xeon-E3-1285Lv3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml new file mode 100644 index 00000000..0fd5c281 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1286LV3' +name: Xeon-E3-1286LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml new file mode 100644 index 00000000..136b7331 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '84 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': 'DDR3, DDR3L' + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2014-05-11' + Socket: FCLGA1150 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.3 GHz' + 'VRAM Type': 'DDR3, DDR3L' + 'Maximum VRAM Capacity': '1.69921875 GiB' + 'DirectX Support': '11.2' + 'OpenGL Support': '4.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1286V3' +name: Xeon-E3-1286V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml new file mode 100644 index 00000000..1611ab05 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1620V3' +name: Xeon-E5-1620V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml new file mode 100644 index 00000000..4984ce75 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1630V3' +name: Xeon-E5-1630V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml new file mode 100644 index 00000000..71d21664 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1650V3' +name: Xeon-E5-1650V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml new file mode 100644 index 00000000..077c6a78 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1660V3' +name: Xeon-E5-1660V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml new file mode 100644 index 00000000..8f23ae37 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-1680V3' +name: Xeon-E5-1680V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml new file mode 100644 index 00000000..cbf78fdb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2603V3' +name: Xeon-E5-2603V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml new file mode 100644 index 00000000..2cdf8a34 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2609V3' +name: Xeon-E5-2609V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml new file mode 100644 index 00000000..cc5acff7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2620V3' +name: Xeon-E5-2620V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml new file mode 100644 index 00000000..67d24204 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2623V3' +name: Xeon-E5-2623V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml new file mode 100644 index 00000000..f2ff4b4e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '55 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2630LV3' +name: Xeon-E5-2630LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml new file mode 100644 index 00000000..f8b444c7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2630V3' +name: Xeon-E5-2630V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml new file mode 100644 index 00000000..6cf6e83f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2637V3' +name: Xeon-E5-2637V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml new file mode 100644 index 00000000..7b2efe2f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '90 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2640V3' +name: Xeon-E5-2640V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml new file mode 100644 index 00000000..94c5abe6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2643V3' +name: Xeon-E5-2643V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml new file mode 100644 index 00000000..0d0d5f26 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '65 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2650LV3' +name: Xeon-E5-2650LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml new file mode 100644 index 00000000..f031fb0a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2650V3' +name: Xeon-E5-2650V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml new file mode 100644 index 00000000..7896919a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2660V3' +name: Xeon-E5-2660V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml new file mode 100644 index 00000000..46594b28 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2667V3' +name: Xeon-E5-2667V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml new file mode 100644 index 00000000..9c1a51f5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '120 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2670V3' +name: Xeon-E5-2670V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml new file mode 100644 index 00000000..3c9abb8c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '120 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2680V3' +name: Xeon-E5-2680V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml new file mode 100644 index 00000000..e7b8e404 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '120 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2683V3' +name: Xeon-E5-2683V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml new file mode 100644 index 00000000..96aef187 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '160 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2687WV3' +name: Xeon-E5-2687WV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml new file mode 100644 index 00000000..87ef0119 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2690V3' +name: Xeon-E5-2690V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml new file mode 100644 index 00000000..f7426086 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '120 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2695V3' +name: Xeon-E5-2695V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml new file mode 100644 index 00000000..0d614cb6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '145 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2697V3' +name: Xeon-E5-2697V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml new file mode 100644 index 00000000..926f828f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2698V3' +name: Xeon-E5-2698V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml new file mode 100644 index 00000000..5c60986d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '145 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2014-09-08' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-2699V3' +name: Xeon-E5-2699V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml new file mode 100644 index 00000000..535466c7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '1.7 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4610V3' +name: Xeon-E5-4610V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml new file mode 100644 index 00000000..4bcf13d3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4620V3' +name: Xeon-E5-4620V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml new file mode 100644 index 00000000..89e9c4e9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 10 + 'Thread Count': 10 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4627V3' +name: Xeon-E5-4627V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml new file mode 100644 index 00000000..c2e03527 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4640V3' +name: Xeon-E5-4640V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml new file mode 100644 index 00000000..93431114 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4650V3' +name: Xeon-E5-4650V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml new file mode 100644 index 00000000..e2c97fb7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4655V3' +name: Xeon-E5-4655V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml new file mode 100644 index 00000000..cd67a8ec --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '120 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4660V3' +name: Xeon-E5-4660V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml new file mode 100644 index 00000000..9957c890 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4667V3' +name: Xeon-E5-4667V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml new file mode 100644 index 00000000..a8832d33 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '135 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-06-01' + Socket: FCLGA2011-3 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E5-4669V3' +name: Xeon-E5-4669V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml new file mode 100644 index 00000000..fa1baf7e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4809V3' +name: Xeon-E7-4809V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml new file mode 100644 index 00000000..dcd6e8e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4820V3' +name: Xeon-E7-4820V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml new file mode 100644 index 00000000..ea01c86b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4830V3' +name: Xeon-E7-4830V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml new file mode 100644 index 00000000..5a8d1860 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '35 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-4850V3' +name: Xeon-E7-4850V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml new file mode 100644 index 00000000..a82c30ff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '40 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8860V3' +name: Xeon-E7-8860V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml new file mode 100644 index 00000000..53026463 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '165 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8867V3' +name: Xeon-E7-8867V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml new file mode 100644 index 00000000..63285f88 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8870V3' +name: Xeon-E7-8870V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml new file mode 100644 index 00000000..5a5d755e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8880LV3' +name: Xeon-E7-8880LV3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml new file mode 100644 index 00000000..38ce5fb6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '150 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8880V3' +name: Xeon-E7-8880V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml new file mode 100644 index 00000000..fc2bbc2c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8890V3' +name: Xeon-E7-8890V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml new file mode 100644 index 00000000..f46c90de --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8891V3' +name: Xeon-E7-8891V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml new file mode 100644 index 00000000..1000c46a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Haswell + Market: Server + Lithography: '22 nm' + TDP: '140 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '45 MiB' + 'Release Date': '2015-05-05' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon E7-8893V3' +name: Xeon-E7-8893V3 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml new file mode 100644 index 00000000..dfe98541 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml @@ -0,0 +1,28 @@ +humanName: 'Hewitt Lake' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-D-1653N + - Xeon-D-1649N + - Xeon-D-1637 + - Xeon-D-1633N + - + header: '8 Threads' + members: + - Xeon-D-1627 + - Xeon-D-1623N + - Xeon-D-1622 + - + header: '4 Threads' + members: + - Xeon-D-1602 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2019-04-02' + Sockets: + - BGA1667 +name: Server-Hewitt-Lake diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml new file mode 100644 index 00000000..660f80b8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '27 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1602' +name: Xeon-D-1602 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml new file mode 100644 index 00000000..7b72f70e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1622' +name: Xeon-D-1622 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml new file mode 100644 index 00000000..4b917e16 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1623N' +name: Xeon-D-1623N diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml new file mode 100644 index 00000000..9caefd4c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1627' +name: Xeon-D-1627 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml new file mode 100644 index 00000000..b0defebf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1633N' +name: Xeon-D-1633N diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml new file mode 100644 index 00000000..4e58240c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '55 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '9 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1637' +name: Xeon-D-1637 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml new file mode 100644 index 00000000..9a9f5bbf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1649N' +name: Xeon-D-1649N diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml new file mode 100644 index 00000000..fcad0e1e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Hewitt Lake' + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 2 + 'Memory Type': 'DDR4, DDR3' + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2019-04-02' + Socket: FCBGA1667 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 +isPart: true +type: CPU +humanName: 'Xeon D-1653N' +name: Xeon-D-1653N diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml new file mode 100644 index 00000000..0aaf8b53 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml @@ -0,0 +1,29 @@ +humanName: 'Ivy Bridge EN' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-2470V2 + - Xeon-E5-2450LV2 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2450V2 + - Xeon-E5-2440V2 + - Xeon-E5-2430V2 + - Xeon-E5-2430LV2 + - Xeon-E5-2420V2 + - + header: '4 Threads' + members: + - Xeon-E5-2407V2 + - Xeon-E5-2403V2 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2014-01-09' + Sockets: + - LGA1356 +name: Server-Ivy-Bridge-EN diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml new file mode 100644 index 00000000..fbe017f7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '1.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2403V2' +name: Xeon-E5-2403V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml new file mode 100644 index 00000000..8fb5e759 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2407V2' +name: Xeon-E5-2407V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml new file mode 100644 index 00000000..20465a5b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2420V2' +name: Xeon-E5-2420V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml new file mode 100644 index 00000000..4f1c07ee --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2430LV2' +name: Xeon-E5-2430LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml new file mode 100644 index 00000000..58687ed6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2430V2' +name: Xeon-E5-2430V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml new file mode 100644 index 00000000..aa491f26 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2440V2' +name: Xeon-E5-2440V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml new file mode 100644 index 00000000..8206542a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '60 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2450LV2' +name: Xeon-E5-2450LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml new file mode 100644 index 00000000..ea35a0d9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2450V2' +name: Xeon-E5-2450V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml new file mode 100644 index 00000000..bd3ed96c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EN' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-01-09' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2470V2' +name: Xeon-E5-2470V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml new file mode 100644 index 00000000..5df08523 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml @@ -0,0 +1,52 @@ +humanName: 'Ivy Bridge EP' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E5-4657LV2 + - Xeon-E5-4650V2 + - Xeon-E5-4640V2 + - Xeon-E5-2697V2 + - Xeon-E5-2695V2 + - Xeon-E5-2690V2 + - Xeon-E5-2680V2 + - Xeon-E5-2670V2 + - Xeon-E5-2660V2 + - Xeon-E5-2650LV2 + - + header: '9 - 16 Threads' + members: + - Xeon-E5-4620V2 + - Xeon-E5-4610V2 + - Xeon-E5-4607V2 + - Xeon-E5-2687WV2 + - Xeon-E5-2667V2 + - Xeon-E5-2650V2 + - Xeon-E5-2643V2 + - Xeon-E5-2640V2 + - Xeon-E5-2630V2 + - Xeon-E5-2630LV2 + - Xeon-E5-2620V2 + - Xeon-E5-1660V2 + - Xeon-E5-1650V2 + - + header: '8 Threads' + members: + - Xeon-E5-4627V2 + - Xeon-E5-4603V2 + - Xeon-E5-2637V2 + - Xeon-E5-1620V2 + - + header: '4 Threads' + members: + - Xeon-E5-2609V2 + - Xeon-E5-2603V2 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2013-09-10' + Sockets: + - LGA2011 +name: Server-Ivy-Bridge-EP diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml new file mode 100644 index 00000000..76398863 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1620V2' +name: Xeon-E5-1620V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml new file mode 100644 index 00000000..416f92d8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1650V2' +name: Xeon-E5-1650V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml new file mode 100644 index 00000000..d23dea61 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1660V2' +name: Xeon-E5-1660V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml new file mode 100644 index 00000000..248a5cd1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2603V2' +name: Xeon-E5-2603V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml new file mode 100644 index 00000000..588fd77a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2609V2' +name: Xeon-E5-2609V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml new file mode 100644 index 00000000..127044c3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2620V2' +name: Xeon-E5-2620V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml new file mode 100644 index 00000000..8586a8e4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2630LV2' +name: Xeon-E5-2630LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml new file mode 100644 index 00000000..7a565f42 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2630V2' +name: Xeon-E5-2630V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml new file mode 100644 index 00000000..d8799c3f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2637V2' +name: Xeon-E5-2637V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml new file mode 100644 index 00000000..c376f381 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2640V2' +name: Xeon-E5-2640V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml new file mode 100644 index 00000000..9deb9ed0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2643V2' +name: Xeon-E5-2643V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml new file mode 100644 index 00000000..3bc3366e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '70 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '2.1 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2650LV2' +name: Xeon-E5-2650LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml new file mode 100644 index 00000000..28412995 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2650V2' +name: Xeon-E5-2650V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml new file mode 100644 index 00000000..0f56da0f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2660V2' +name: Xeon-E5-2660V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml new file mode 100644 index 00000000..73ae637e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2667V2' +name: Xeon-E5-2667V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml new file mode 100644 index 00000000..d5f82d3f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2670V2' +name: Xeon-E5-2670V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml new file mode 100644 index 00000000..43150b11 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2680V2' +name: Xeon-E5-2680V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml new file mode 100644 index 00000000..5babcbdd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '150 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2687WV2' +name: Xeon-E5-2687WV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml new file mode 100644 index 00000000..db780145 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2690V2' +name: Xeon-E5-2690V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml new file mode 100644 index 00000000..608570cb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2695V2' +name: Xeon-E5-2695V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml new file mode 100644 index 00000000..bbb19cb6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2013-09-10' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2697V2' +name: Xeon-E5-2697V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml new file mode 100644 index 00000000..2502d7a9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.2 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4603V2' +name: Xeon-E5-4603V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml new file mode 100644 index 00000000..1c9cfe28 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4607V2' +name: Xeon-E5-4607V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml new file mode 100644 index 00000000..979a355d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4610V2' +name: Xeon-E5-4610V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml new file mode 100644 index 00000000..4224b1c6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4620V2' +name: Xeon-E5-4620V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml new file mode 100644 index 00000000..2808a302 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4627V2' +name: Xeon-E5-4627V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml new file mode 100644 index 00000000..dda9db5d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4640V2' +name: Xeon-E5-4640V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml new file mode 100644 index 00000000..61755a9d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '95 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '25 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4650V2' +name: Xeon-E5-4650V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml new file mode 100644 index 00000000..ee61d4dd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge EP' + Market: Server + Lithography: '22 nm' + TDP: '115 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1866 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-03-03' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4657LV2' +name: Xeon-E5-4657LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml new file mode 100644 index 00000000..8c929ef0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml @@ -0,0 +1,55 @@ +humanName: 'Ivy Bridge' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E7-8891V2 + - Xeon-E7-8890V2 + - Xeon-E7-8880V2 + - Xeon-E7-8880LV2 + - Xeon-E7-8870V2 + - Xeon-E7-8850V2 + - Xeon-E7-4890V2 + - Xeon-E7-4880V2 + - Xeon-E7-4870V2 + - Xeon-E7-4860V2 + - Xeon-E7-4850V2 + - Xeon-E7-4830V2 + - Xeon-E7-2890V2 + - Xeon-E7-2880V2 + - Xeon-E7-2870V2 + - Xeon-E7-2850V2 + - + header: '9 - 16 Threads' + members: + - Xeon-E7-8893V2 + - Xeon-E7-8857V2 + - Xeon-E7-4820V2 + - Xeon-E7-4809V2 + - + header: '8 Threads' + members: + - Xeon-E3-1290V2 + - Xeon-E3-1280V2 + - Xeon-E3-1275V2 + - Xeon-E3-1270V2 + - Xeon-E3-1265LV2 + - Xeon-E3-1245V2 + - Xeon-E3-1240V2 + - Xeon-E3-1230V2 + - + header: '4 Threads' + members: + - Xeon-E3-1225V2 + - Xeon-E3-1220V2 + - Xeon-E3-1220LV2 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '22 nm' + 'Release Date': '2012-05-14' + Sockets: + - LGA1155 + - LGA2011 +name: Server-Ivy-Bridge diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml new file mode 100644 index 00000000..3dd7eaeb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '17 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1220LV2' +name: Xeon-E3-1220LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml new file mode 100644 index 00000000..18f7411e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1220V2' +name: Xeon-E3-1220V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml new file mode 100644 index 00000000..472ec1ec --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1225V2' +name: Xeon-E3-1225V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml new file mode 100644 index 00000000..7185b13d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 604 + 'Geekbench Multi-Core Score': 2119 +isPart: true +type: CPU +humanName: 'Xeon E3-1230V2' +name: Xeon-E3-1230V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml new file mode 100644 index 00000000..adf1e8e9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1240V2' +name: Xeon-E3-1240V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml new file mode 100644 index 00000000..cb0bf43a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1245V2' +name: Xeon-E3-1245V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml new file mode 100644 index 00000000..3bc798aa --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.15 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1265LV2' +name: Xeon-E3-1265LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml new file mode 100644 index 00000000..4ffbbc36 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1270V2' +name: Xeon-E3-1270V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml new file mode 100644 index 00000000..4a597a27 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '77 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1275V2' +name: Xeon-E3-1275V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml new file mode 100644 index 00000000..6cf7b4e2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '69 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1280V2' +name: Xeon-E3-1280V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml new file mode 100644 index 00000000..22b8743c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '87 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1290V2' +name: Xeon-E3-1290V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml new file mode 100644 index 00000000..3e0033ef --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2014-02-18' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-2850V2' +name: Xeon-E7-2850V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml new file mode 100644 index 00000000..ce26f439 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-2870V2' +name: Xeon-E7-2870V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml new file mode 100644 index 00000000..a20b214e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-2880V2' +name: Xeon-E7-2880V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml new file mode 100644 index 00000000..818904e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '155 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-2890V2' +name: Xeon-E7-2890V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml new file mode 100644 index 00000000..eb42bc38 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4809V2' +name: Xeon-E7-4809V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml new file mode 100644 index 00000000..bc376464 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4820V2' +name: Xeon-E7-4820V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml new file mode 100644 index 00000000..3d6ab4f3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4830V2' +name: Xeon-E7-4830V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml new file mode 100644 index 00000000..aa63a140 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4850V2' +name: Xeon-E7-4850V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml new file mode 100644 index 00000000..ca752bae --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4860V2' +name: Xeon-E7-4860V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml new file mode 100644 index 00000000..db785d36 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4870V2' +name: Xeon-E7-4870V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml new file mode 100644 index 00000000..51687d9e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4880V2' +name: Xeon-E7-4880V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml new file mode 100644 index 00000000..308214dd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '155 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-4890V2' +name: Xeon-E7-4890V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml new file mode 100644 index 00000000..ac5b410d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8850V2' +name: Xeon-E7-8850V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml new file mode 100644 index 00000000..41d0f2a1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 12 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8857V2' +name: Xeon-E7-8857V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml new file mode 100644 index 00000000..2cd6b932 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8870V2' +name: Xeon-E7-8870V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml new file mode 100644 index 00000000..09ddbefa --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '105 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8880LV2' +name: Xeon-E7-8880LV2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml new file mode 100644 index 00000000..0316357e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '130 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8880V2' +name: Xeon-E7-8880V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml new file mode 100644 index 00000000..69174690 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '155 W' + 'Core Count': 15 + 'Thread Count': 30 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8890V2' +name: Xeon-E7-8890V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml new file mode 100644 index 00000000..b03cb3ae --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '155 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8891V2' +name: Xeon-E7-8891V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml new file mode 100644 index 00000000..6dff0119 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Ivy Bridge' + Market: Server + Lithography: '22 nm' + TDP: '155 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '37.5 MiB' + 'Release Date': '2014-02-18' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E7-8893V2' +name: Xeon-E7-8893V2 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml new file mode 100644 index 00000000..d0ab3c3b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml @@ -0,0 +1,26 @@ +humanName: 'Kaby Lake' +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1285V6 + - Xeon-E3-1280V6 + - Xeon-E3-1275V6 + - Xeon-E3-1270V6 + - Xeon-E3-1245V6 + - Xeon-E3-1240V6 + - Xeon-E3-1230V6 + - + header: '4 Threads' + members: + - Xeon-E3-1225V6 + - Xeon-E3-1220V6 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2017-03-28' + Sockets: + - LGA1151 +name: Server-Kaby-Lake diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml new file mode 100644 index 00000000..3ec034cc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '72 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1220V6' +name: Xeon-E3-1220V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml new file mode 100644 index 00000000..2a4e50f1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '73 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1225V6' +name: Xeon-E3-1225V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml new file mode 100644 index 00000000..169d26bf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '72 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1230V6' +name: Xeon-E3-1230V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml new file mode 100644 index 00000000..463b7c31 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '72 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1240V6' +name: Xeon-E3-1240V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml new file mode 100644 index 00000000..f629b292 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '73 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.1 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1245V6' +name: Xeon-E3-1245V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml new file mode 100644 index 00000000..98d883a5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '72 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1270V6' +name: Xeon-E3-1270V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml new file mode 100644 index 00000000..1ff8f1f6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '73 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1275V6' +name: Xeon-E3-1275V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml new file mode 100644 index 00000000..281a5562 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '72 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.9 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-03-28' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1280V6' +name: Xeon-E3-1280V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml new file mode 100644 index 00000000..0cb83fe2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: 'Kaby Lake' + Market: Server + Lithography: '14 nm' + TDP: '79 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '4.1 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2017-08-15' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1285V6' +name: Xeon-E3-1285V6 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml new file mode 100644 index 00000000..345acfde --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml @@ -0,0 +1,17 @@ +humanName: Kentsfield +sections: + - + header: '4 Threads' + members: + - Xeon-X3230 + - Xeon-X3220 + - Xeon-X3210 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': '2007-01-08' + Sockets: + - LGA775 +name: Server-Kentsfield diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml new file mode 100644 index 00000000..c2c9f8e3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Server + Lithography: '65 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-01-08' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3210' +name: Xeon-X3210 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml new file mode 100644 index 00000000..fc941867 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Server + Lithography: '65 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-01-08' + Socket: LGA775 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '43.1' +isPart: true +type: CPU +humanName: 'Xeon X3220' +name: Xeon-X3220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml new file mode 100644 index 00000000..4a14bc7a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Kentsfield + Market: Server + Lithography: '65 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': '2007-07-22' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3230' +name: Xeon-X3230 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml new file mode 100644 index 00000000..148798c9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml @@ -0,0 +1,24 @@ +humanName: Lynnfield +sections: + - + header: '8 Threads' + members: + - Xeon-X3480 + - Xeon-X3470 + - Xeon-X3460 + - Xeon-X3450 + - Xeon-X3440 + - Xeon-L3426 + - + header: '4 Threads' + members: + - Xeon-X3430 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-09-08' + Sockets: + - LGA1156 +name: Server-Lynnfield diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml new file mode 100644 index 00000000..5f2b0284 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon L3426' +name: Xeon-L3426 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml new file mode 100644 index 00000000..1c9ddec3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '61.3' +isPart: true +type: CPU +humanName: 'Xeon X3430' +name: Xeon-X3430 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml new file mode 100644 index 00000000..801778ef --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 402 + 'Geekbench Multi-Core Score': 1398 + 'UserBenchmark CPU Score': '65.2' +isPart: true +type: CPU +humanName: 'Xeon X3440' +name: Xeon-X3440 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml new file mode 100644 index 00000000..2613c5fb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 424 + 'Geekbench Multi-Core Score': 1411 + 'UserBenchmark CPU Score': '66' +isPart: true +type: CPU +humanName: 'Xeon X3450' +name: Xeon-X3450 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml new file mode 100644 index 00000000..75e3e0e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '67.7' +isPart: true +type: CPU +humanName: 'Xeon X3460' +name: Xeon-X3460 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml new file mode 100644 index 00000000..3df56f07 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2009-09-08' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '68.7' +isPart: true +type: CPU +humanName: 'Xeon X3470' +name: Xeon-X3470 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml new file mode 100644 index 00000000..42da842a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Lynnfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '296 mm' + 'Release Date': '2010-06-01' + Socket: LGA1156 + AES: false + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon X3480' +name: Xeon-X3480 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml new file mode 100644 index 00000000..2523ec8c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml @@ -0,0 +1,36 @@ +humanName: 'Nehalem EP' +sections: + - + header: '8 Threads' + members: + - Xeon-X5570 + - Xeon-X5560 + - Xeon-X5550 + - Xeon-W5590 + - Xeon-W5580 + - Xeon-L5530 + - Xeon-L5520 + - Xeon-E5540 + - Xeon-E5530 + - Xeon-E5520 + - + header: '4 Threads' + members: + - Xeon-L5506 + - Xeon-E5507 + - Xeon-E5506 + - Xeon-E5504 + - + header: '2 Threads' + members: + - Xeon-E5503 + - Xeon-E5502 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2009-03-30' + Sockets: + - LGA1366 +name: Server-Nehalem-EP diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml new file mode 100644 index 00000000..3fea3e14 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5502' +name: Xeon-E5502 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml new file mode 100644 index 00000000..8487207b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5503' +name: Xeon-E5503 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml new file mode 100644 index 00000000..5bc0757b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '51.9' +isPart: true +type: CPU +humanName: 'Xeon E5504' +name: Xeon-E5504 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml new file mode 100644 index 00000000..3e0d189b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '54.2' +isPart: true +type: CPU +humanName: 'Xeon E5506' +name: Xeon-E5506 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml new file mode 100644 index 00000000..98d046d4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': 'Q1 2010' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '55.2' +isPart: true +type: CPU +humanName: 'Xeon E5507' +name: Xeon-E5507 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml new file mode 100644 index 00000000..75fe00e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.53 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '59.1' +isPart: true +type: CPU +humanName: 'Xeon E5520' +name: Xeon-E5520 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml new file mode 100644 index 00000000..d42b1a3b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '61.1' +isPart: true +type: CPU +humanName: 'Xeon E5530' +name: Xeon-E5530 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml new file mode 100644 index 00000000..57b147d9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '63.1' +isPart: true +type: CPU +humanName: 'Xeon E5540' +name: Xeon-E5540 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml new file mode 100644 index 00000000..86f8c836 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '800 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5506' +name: Xeon-L5506 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml new file mode 100644 index 00000000..84fc0490 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.48 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '59.5' +isPart: true +type: CPU +humanName: 'Xeon L5520' +name: Xeon-L5520 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml new file mode 100644 index 00000000..926ae415 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.66 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-08-04' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5530' +name: Xeon-L5530 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml new file mode 100644 index 00000000..808159b0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon W5580' +name: Xeon-W5580 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml new file mode 100644 index 00000000..ec6a6ef0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-08-04' + Socket: FCLGA1366 + AES: false + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon W5590' +name: Xeon-W5590 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml new file mode 100644 index 00000000..c5510c96 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5550' +name: Xeon-X5550 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml new file mode 100644 index 00000000..355bc24d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '68.1' +isPart: true +type: CPU +humanName: 'Xeon X5560' +name: Xeon-X5560 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml new file mode 100644 index 00000000..272bd590 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Nehalem EP' + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.333 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '263 mm' + 'Release Date': '2009-03-30' + Socket: FCLGA1366 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '69.2' +isPart: true +type: CPU +humanName: 'Xeon X5570' +name: Xeon-X5570 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml new file mode 100644 index 00000000..965843a8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml @@ -0,0 +1,31 @@ +humanName: 'Sandy Bridge EN' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E5-2470 + - Xeon-E5-2450L + - Xeon-E5-2450 + - Xeon-E5-2440 + - Xeon-E5-2430L + - Xeon-E5-2430 + - Xeon-E5-2420 + - Xeon-E5-1428L + - + header: '4 Threads' + members: + - Xeon-E5-2407 + - Xeon-E5-2403 + - + header: '2 Threads' + members: + - Pentium-1405 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-05-14' + Sockets: + - LGA1356 +name: Server-Sandy-Bridge-EN diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml new file mode 100644 index 00000000..bf7d2f7f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.2 GHz' + 'Boost Frequency': '1.8 GHz' + 'L2 Cache (Total)': '5 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Pentium 1405' +name: Pentium-1405 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml new file mode 100644 index 00000000..08ceb632 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-1428L' +name: Xeon-E5-1428L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml new file mode 100644 index 00000000..283e05bb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2403' +name: Xeon-E5-2403 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml new file mode 100644 index 00000000..d8a5d701 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2407' +name: Xeon-E5-2407 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml new file mode 100644 index 00000000..63148ce4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 380 + 'Geekbench Multi-Core Score': 1852 +isPart: true +type: CPU +humanName: 'Xeon E5-2420' +name: Xeon-E5-2420 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml new file mode 100644 index 00000000..63e3bce3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.7 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 419 + 'Geekbench Multi-Core Score': 1922 +isPart: true +type: CPU +humanName: 'Xeon E5-2430' +name: Xeon-E5-2430 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml new file mode 100644 index 00000000..b9209bd6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2430L' +name: Xeon-E5-2430L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml new file mode 100644 index 00000000..af251682 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2440' +name: Xeon-E5-2440 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml new file mode 100644 index 00000000..d09e2c7a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2450' +name: Xeon-E5-2450 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml new file mode 100644 index 00000000..5ab41937 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2450L' +name: Xeon-E5-2450L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml new file mode 100644 index 00000000..85c7a630 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EN' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA1356 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2470' +name: Xeon-E5-2470 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml new file mode 100644 index 00000000..e620d6bd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml @@ -0,0 +1,51 @@ +humanName: 'Sandy Bridge EP' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-E5-4650L + - Xeon-E5-4650 + - Xeon-E5-4640 + - Xeon-E5-4620 + - Xeon-E5-4610 + - Xeon-E5-4607 + - Xeon-E5-2690 + - Xeon-E5-2687W + - Xeon-E5-2680 + - Xeon-E5-2670 + - Xeon-E5-2667 + - Xeon-E5-2665 + - Xeon-E5-2660 + - Xeon-E5-2650L + - Xeon-E5-2650 + - Xeon-E5-2640 + - Xeon-E5-2630L + - Xeon-E5-2630 + - Xeon-E5-2620 + - Xeon-E5-1660 + - Xeon-E5-1650 + - + header: '8 Threads' + members: + - Xeon-E5-4603 + - Xeon-E5-2643 + - Xeon-E5-1620 + - + header: '6 Threads' + members: + - Xeon-E5-4617 + - + header: '4 Threads' + members: + - Xeon-E5-2637 + - Xeon-E5-2609 + - Xeon-E5-2603 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2012-03-06' + Sockets: + - LGA2011 +name: Server-Sandy-Bridge-EP diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml new file mode 100644 index 00000000..e686375b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 596 + 'Geekbench Multi-Core Score': 2268 +isPart: true +type: CPU +humanName: 'Xeon E5-1620' +name: Xeon-E5-1620 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml new file mode 100644 index 00000000..3f5fd587 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 603 + 'Geekbench Multi-Core Score': 2958 +isPart: true +type: CPU +humanName: 'Xeon E5-1650' +name: Xeon-E5-1650 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml new file mode 100644 index 00000000..5d171dc3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 641 + 'Geekbench Multi-Core Score': 3082 +isPart: true +type: CPU +humanName: 'Xeon E5-1660' +name: Xeon-E5-1660 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml new file mode 100644 index 00000000..c75af29d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2603' +name: Xeon-E5-2603 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml new file mode 100644 index 00000000..02589418 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2609' +name: Xeon-E5-2609 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml new file mode 100644 index 00000000..c748a07d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 390 + 'Geekbench Multi-Core Score': 1935 +isPart: true +type: CPU +humanName: 'Xeon E5-2620' +name: Xeon-E5-2620 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml new file mode 100644 index 00000000..d8824d73 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2630' +name: Xeon-E5-2630 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml new file mode 100644 index 00000000..885067c5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.5 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2630L' +name: Xeon-E5-2630L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml new file mode 100644 index 00000000..9fe63367 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '5 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2637' +name: Xeon-E5-2637 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml new file mode 100644 index 00000000..d4ef01b9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 401 + 'Geekbench Multi-Core Score': 2265 +isPart: true +type: CPU +humanName: 'Xeon E5-2640' +name: Xeon-E5-2640 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml new file mode 100644 index 00000000..bba74cb1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 577 + 'Geekbench Multi-Core Score': 2008 +isPart: true +type: CPU +humanName: 'Xeon E5-2643' +name: Xeon-E5-2643 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml new file mode 100644 index 00000000..59febc92 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2650' +name: Xeon-E5-2650 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml new file mode 100644 index 00000000..f830c886 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '2.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2650L' +name: Xeon-E5-2650L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml new file mode 100644 index 00000000..0cc7aebf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 431 + 'Geekbench Multi-Core Score': 2729 +isPart: true +type: CPU +humanName: 'Xeon E5-2660' +name: Xeon-E5-2660 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml new file mode 100644 index 00000000..b79d57a7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2665' +name: Xeon-E5-2665 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml new file mode 100644 index 00000000..6bb3c830 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-2667' +name: Xeon-E5-2667 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml new file mode 100644 index 00000000..d0acda75 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 501 + 'Geekbench Multi-Core Score': 3051 + 'UserBenchmark CPU Score': '67.3' +isPart: true +type: CPU +humanName: 'Xeon E5-2670' +name: Xeon-E5-2670 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml new file mode 100644 index 00000000..53cee3c0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 550 + 'Geekbench Multi-Core Score': 3238 +isPart: true +type: CPU +humanName: 'Xeon E5-2680' +name: Xeon-E5-2680 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml new file mode 100644 index 00000000..61a87a4e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '150 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 603 + 'Geekbench Multi-Core Score': 3654 +isPart: true +type: CPU +humanName: 'Xeon E5-2687W' +name: Xeon-E5-2687W diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml new file mode 100644 index 00000000..62b9d1b8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '135 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-03-06' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false + 'Geekbench Single-Core Score': 553 + 'Geekbench Multi-Core Score': 3264 +isPart: true +type: CPU +humanName: 'Xeon E5-2690' +name: Xeon-E5-2690 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml new file mode 100644 index 00000000..f16aef8b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '10 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4603' +name: Xeon-E5-4603 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml new file mode 100644 index 00000000..a166a9e5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4607' +name: Xeon-E5-4607 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml new file mode 100644 index 00000000..0ea0609c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.9 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4610' +name: Xeon-E5-4610 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml new file mode 100644 index 00000000..89a8495f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '15 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4617' +name: Xeon-E5-4617 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml new file mode 100644 index 00000000..f597e539 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '2.6 GHz' + 'L2 Cache (Total)': '16 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4620' +name: Xeon-E5-4620 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml new file mode 100644 index 00000000..91c2c833 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4640' +name: Xeon-E5-4640 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml new file mode 100644 index 00000000..04d67199 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4650' +name: Xeon-E5-4650 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml new file mode 100644 index 00000000..374f0dff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge EP' + Market: Server + Lithography: '32 nm' + TDP: '115 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1600 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.1 GHz' + 'L2 Cache (Total)': '20 MiB' + 'Release Date': '2012-05-14' + Socket: FCLGA2011 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: false +isPart: true +type: CPU +humanName: 'Xeon E5-4650L' +name: Xeon-E5-4650L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml new file mode 100644 index 00000000..84e999e1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml @@ -0,0 +1,29 @@ +humanName: 'Sandy Bridge' +sections: + - + header: '8 Threads' + members: + - Xeon-E3-1290 + - Xeon-E3-1280 + - Xeon-E3-1275 + - Xeon-E3-1270 + - Xeon-E3-1260L + - Xeon-E3-1245 + - Xeon-E3-1240 + - Xeon-E3-1235 + - Xeon-E3-1230 + - + header: '4 Threads' + members: + - Xeon-E3-1225 + - Xeon-E3-1220L + - Xeon-E3-1220 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-04-05' + Sockets: + - LGA1155 +name: Server-Sandy-Bridge diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml new file mode 100644 index 00000000..bd1b9b04 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 563 + 'Geekbench Multi-Core Score': 1639 +isPart: true +type: CPU +humanName: 'Xeon E3-1220' +name: Xeon-E3-1220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml new file mode 100644 index 00000000..c96adab6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '20 W' + 'Core Count': 2 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '3 MiB' + 'Release Date': '2011-04-05' + Socket: FCLGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1220L' +name: Xeon-E3-1220L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml new file mode 100644 index 00000000..eb8b253d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.1 GHz' + 'Boost Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' + 'Geekbench Single-Core Score': 568 + 'Geekbench Multi-Core Score': 1681 +isPart: true +type: CPU +humanName: 'Xeon E3-1225' +name: Xeon-E3-1225 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml new file mode 100644 index 00000000..dc0c0b42 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 584 + 'Geekbench Multi-Core Score': 1864 +isPart: true +type: CPU +humanName: 'Xeon E3-1230' +name: Xeon-E3-1230 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml new file mode 100644 index 00000000..bb9d383c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1235' +name: Xeon-E3-1235 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml new file mode 100644 index 00000000..4824f322 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 592 + 'Geekbench Multi-Core Score': 2115 + 'UserBenchmark CPU Score': '70.3' +isPart: true +type: CPU +humanName: 'Xeon E3-1240' +name: Xeon-E3-1240 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml new file mode 100644 index 00000000..ba653bff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1245' +name: Xeon-E3-1245 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml new file mode 100644 index 00000000..674056a4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '650 MHz' + 'GPU Boost Frequency': '1.25 GHz' + 'Geekbench Single-Core Score': 472 + 'Geekbench Multi-Core Score': 1564 +isPart: true +type: CPU +humanName: 'Xeon E3-1260L' +name: Xeon-E3-1260L diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml new file mode 100644 index 00000000..5728a890 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 614 + 'Geekbench Multi-Core Score': 2103 +isPart: true +type: CPU +humanName: 'Xeon E3-1270' +name: Xeon-E3-1270 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml new file mode 100644 index 00000000..b0a5165f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'GPU Base Frequency': '850 MHz' + 'GPU Boost Frequency': '1.35 GHz' +isPart: true +type: CPU +humanName: 'Xeon E3-1275' +name: Xeon-E3-1275 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml new file mode 100644 index 00000000..cc0f929e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1280' +name: Xeon-E3-1280 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml new file mode 100644 index 00000000..e6c01ede --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Sandy Bridge' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-07-01' + Socket: LGA1155 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E3-1290' +name: Xeon-E3-1290 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml new file mode 100644 index 00000000..1c1f9b8d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml @@ -0,0 +1,117 @@ +humanName: Skylake +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-W-2195 + - Xeon-W-2175 + - Xeon-W-2155 + - Xeon-D-2187NT + - Xeon-D-2183IT + - Xeon-D-2177NT + - Xeon-D-2173IT + - Xeon-D-2166NT + - Xeon-D-2163IT + - Xeon-D-2161I + - Xeon-8180 + - Xeon-8176F + - Xeon-8176 + - Xeon-8170 + - Xeon-8168 + - Xeon-8164 + - Xeon-8160T + - Xeon-8160F + - Xeon-8160 + - Xeon-8158 + - Xeon-8153 + - Xeon-6154 + - Xeon-6152 + - Xeon-6150 + - Xeon-6148F + - Xeon-6148 + - Xeon-6146 + - Xeon-6142F + - Xeon-6142 + - Xeon-6140 + - Xeon-6138T + - Xeon-6138P + - Xeon-6138F + - Xeon-6138 + - Xeon-6136 + - Xeon-6132 + - Xeon-6130T + - Xeon-6130F + - Xeon-6130 + - Xeon-6126T + - Xeon-6126F + - Xeon-6126 + - Xeon-5120T + - Xeon-5120 + - Xeon-5119T + - Xeon-5118 + - Xeon-5115 + - Xeon-4116T + - Xeon-4116 + - Xeon-4114T + - Xeon-4114 + - + header: '9 - 16 Threads' + members: + - Xeon-W-2145 + - Xeon-W-2135 + - Xeon-W-2133 + - Xeon-D-2146NT + - Xeon-D-2145NT + - Xeon-D-2143IT + - Xeon-D-2142IT + - Xeon-D-2141I + - Xeon-6144 + - Xeon-6134 + - Xeon-6128 + - Xeon-4110 + - Xeon-4109T + - Xeon-4108 + - + header: '8 Threads' + members: + - Xeon-W-2125 + - Xeon-W-2123 + - Xeon-E3-1585V5 + - Xeon-E3-1585LV5 + - Xeon-E3-1565LV5 + - Xeon-E3-1280V5 + - Xeon-E3-1275V5 + - Xeon-E3-1270V5 + - Xeon-E3-1260LV5 + - Xeon-E3-1245V5 + - Xeon-E3-1240V5 + - Xeon-E3-1240LV5 + - Xeon-E3-1230V5 + - Xeon-D-2123IT + - Xeon-8156 + - Xeon-5122 + - Xeon-4112 + - Xeon-3106 + - + header: '6 Threads' + members: + - Xeon-3104 + - + header: '4 Threads' + members: + - Xeon-E3-1235LV5 + - Xeon-E3-1225V5 + - Xeon-E3-1220V5 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2015-10-19' + Sockets: + - LGA3647 + - LGA1151 + - BGA1440 + - LGA2066 + - BGA2518 +name: Server-Skylake diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml new file mode 100644 index 00000000..0f4753ae --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 6 + 'Thread Count': 6 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 3104' +name: Xeon-3104 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml new file mode 100644 index 00000000..1cfeb382 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 3106' +name: Xeon-3106 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml new file mode 100644 index 00000000..bd1e3937 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.8 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4108' +name: Xeon-4108 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml new file mode 100644 index 00000000..410af6a5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '70 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4109T' +name: Xeon-4109T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml new file mode 100644 index 00000000..891aa0df --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4110' +name: Xeon-4110 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml new file mode 100644 index 00000000..1915423a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4112' +name: Xeon-4112 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml new file mode 100644 index 00000000..72827ac6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4114' +name: Xeon-4114 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml new file mode 100644 index 00000000..2790a4e7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4114T' +name: Xeon-4114T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml new file mode 100644 index 00000000..4b7ae519 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4116' +name: Xeon-4116 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml new file mode 100644 index 00000000..d23229e0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 4116T' +name: Xeon-4116T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml new file mode 100644 index 00000000..b6f39493 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5115' +name: Xeon-5115 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml new file mode 100644 index 00000000..03178e5f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5118' +name: Xeon-5118 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml new file mode 100644 index 00000000..98b62978 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5119T' +name: Xeon-5119T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml new file mode 100644 index 00000000..b8ffe07a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Die Size': '143 mm' + Socket: FCLGA3647 + 'Other Extensions': + - x86-64 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Boost Frequency': '3.2 GHz' + 'Release Date': '2017-07-11' + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5120' +name: Xeon-5120 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml new file mode 100644 index 00000000..c750f4e8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2400 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5120T' +name: Xeon-5120T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml new file mode 100644 index 00000000..d39a097d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 5122' +name: Xeon-5122 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml new file mode 100644 index 00000000..1ff6990a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6126' +name: Xeon-6126 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml new file mode 100644 index 00000000..5f68e23c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6126F' +name: Xeon-6126F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml new file mode 100644 index 00000000..7f215eb0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6126T' +name: Xeon-6126T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml new file mode 100644 index 00000000..7ec0d374 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '115 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6128' +name: Xeon-6128 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml new file mode 100644 index 00000000..315101ff --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6130' +name: Xeon-6130 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml new file mode 100644 index 00000000..d6ec6c47 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6130F' +name: Xeon-6130F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml new file mode 100644 index 00000000..7d6bf302 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6130T' +name: Xeon-6130T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml new file mode 100644 index 00000000..75b82404 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6132' +name: Xeon-6132 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml new file mode 100644 index 00000000..79164a91 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6134' +name: Xeon-6134 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml new file mode 100644 index 00000000..b12ebc37 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6136' +name: Xeon-6136 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml new file mode 100644 index 00000000..44cb66ea --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6138' +name: Xeon-6138 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml new file mode 100644 index 00000000..ace48c39 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '135 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6138F' +name: Xeon-6138F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml new file mode 100644 index 00000000..f15aa6fc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '195 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2018-05-15' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6138P' +name: Xeon-6138P diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml new file mode 100644 index 00000000..05bcdbdb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6138T' +name: Xeon-6138T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml new file mode 100644 index 00000000..0c7764b6 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6140' +name: Xeon-6140 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml new file mode 100644 index 00000000..df3ac2f5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6142' +name: Xeon-6142 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml new file mode 100644 index 00000000..c27f2b01 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6142F' +name: Xeon-6142F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml new file mode 100644 index 00000000..896f9449 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6144' +name: Xeon-6144 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml new file mode 100644 index 00000000..2b2f6128 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4.2 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6146' +name: Xeon-6146 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml new file mode 100644 index 00000000..abdf4983 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6148' +name: Xeon-6148 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml new file mode 100644 index 00000000..fcf512ca --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 20 + 'Thread Count': 40 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '27.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6148F' +name: Xeon-6148F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml new file mode 100644 index 00000000..70f10c1b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6150' +name: Xeon-6150 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml new file mode 100644 index 00000000..255ce32d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 22 + 'Thread Count': 44 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '30.25 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6152' +name: Xeon-6152 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml new file mode 100644 index 00000000..fcfb608e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '200 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 6154' +name: Xeon-6154 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml new file mode 100644 index 00000000..7a47d815 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '125 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8153' +name: Xeon-8153 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml new file mode 100644 index 00000000..b9d5ac57 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8156' +name: Xeon-8156 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml new file mode 100644 index 00000000..44c533c1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8158' +name: Xeon-8158 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml new file mode 100644 index 00000000..b1b56dc5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8160' +name: Xeon-8160 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml new file mode 100644 index 00000000..80005a34 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8160F' +name: Xeon-8160F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml new file mode 100644 index 00000000..43e8c597 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8160T' +name: Xeon-8160T diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml new file mode 100644 index 00000000..f1d6752b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '150 W' + 'Core Count': 26 + 'Thread Count': 52 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8164' +name: Xeon-8164 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml new file mode 100644 index 00000000..bb604cb5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8168' +name: Xeon-8168 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml new file mode 100644 index 00000000..ecd5f3d0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 26 + 'Thread Count': 52 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '35.75 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8170' +name: Xeon-8170 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml new file mode 100644 index 00000000..cb2f4199 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8176' +name: Xeon-8176 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml new file mode 100644 index 00000000..4cf5c83d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '173 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8176F' +name: Xeon-8176F diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml new file mode 100644 index 00000000..0f5b036c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2017-07-11' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon 8180' +name: Xeon-8180 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml new file mode 100644 index 00000000..bbdf3673 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '60 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2123IT' +name: Xeon-D-2123IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml new file mode 100644 index 00000000..b21ff4ef --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2141I' +name: Xeon-D-2141I diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml new file mode 100644 index 00000000..6bc52d50 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2142IT' +name: Xeon-D-2142IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml new file mode 100644 index 00000000..beb765bf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2143IT' +name: Xeon-D-2143IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml new file mode 100644 index 00000000..106a2e56 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2145NT' +name: Xeon-D-2145NT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml new file mode 100644 index 00000000..5e2edaee --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2146NT' +name: Xeon-D-2146NT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml new file mode 100644 index 00000000..6158644b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '90 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2161I' +name: Xeon-D-2161I diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml new file mode 100644 index 00000000..b3a1cbb8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '75 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '17 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2163IT' +name: Xeon-D-2163IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml new file mode 100644 index 00000000..49e507a8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '85 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '17 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2166NT' +name: Xeon-D-2166NT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml new file mode 100644 index 00000000..ae5745d8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '70 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.7 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '19 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2173IT' +name: Xeon-D-2173IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml new file mode 100644 index 00000000..414a4afb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '1.9 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '19 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2177NT' +name: Xeon-D-2177NT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml new file mode 100644 index 00000000..2e6bbc1c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '100 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2.2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2183IT' +name: Xeon-D-2183IT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml new file mode 100644 index 00000000..f1fa6b89 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '110 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 4 + 'Memory Type': DDR4 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2018-02-07' + Socket: FCBGA2518 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon D-2187NT' +name: Xeon-D-2187NT diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml new file mode 100644 index 00000000..5e6d488d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1220V5' +name: Xeon-E3-1220V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml new file mode 100644 index 00000000..3d465e76 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1225V5' +name: Xeon-E3-1225V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml new file mode 100644 index 00000000..4053554c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.4 GHz' + 'Boost Frequency': '3.8 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1230V5' +name: Xeon-E3-1230V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml new file mode 100644 index 00000000..0e1dd965 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml @@ -0,0 +1,29 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2 GHz' + 'Boost Frequency': '3 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1235LV5' +name: Xeon-E3-1235LV5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml new file mode 100644 index 00000000..a7ebece7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '25 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.1 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1240LV5' +name: Xeon-E3-1240LV5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml new file mode 100644 index 00000000..9c167d61 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1240V5' +name: Xeon-E3-1240V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml new file mode 100644 index 00000000..964beeb5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1245V5' +name: Xeon-E3-1245V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml new file mode 100644 index 00000000..c55478b4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '2.9 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1260LV5' +name: Xeon-E3-1260LV5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml new file mode 100644 index 00000000..666c3349 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1270V5' +name: Xeon-E3-1270V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml new file mode 100644 index 00000000..6955cfd2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml @@ -0,0 +1,30 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '400 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR4, DDR3L' + 'Maximum VRAM Capacity': '64 GiB' + 'DirectX Support': '12' + 'OpenGL Support': '4.4' +isPart: true +type: CPU +humanName: 'Xeon E3-1275V5' +name: Xeon-E3-1275V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml new file mode 100644 index 00000000..b315ae4a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR4, DDR3L' + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2015-10-19' + Socket: FCLGA1151 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'DirectX Support': '0' + 'OpenGL Support': N/A +isPart: true +type: CPU +humanName: 'Xeon E3-1280V5' +name: Xeon-E3-1280V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml new file mode 100644 index 00000000..e5138cd7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '35 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L,LPDDR3, DDR4' + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '3.5 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.05 GHz' + 'VRAM Type': 'DDR3L,LPDDR3, DDR4' + 'Maximum VRAM Capacity': '64 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1565LV5' +name: Xeon-E3-1565LV5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml new file mode 100644 index 00000000..090cb09f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '45 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L,LPDDR3, DDR4' + 'Base Frequency': '3 GHz' + 'Boost Frequency': '3.7 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3L,LPDDR3, DDR4' + 'Maximum VRAM Capacity': '64 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1585LV5' +name: Xeon-E3-1585LV5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml new file mode 100644 index 00000000..0175c5f5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml @@ -0,0 +1,28 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 2 + 'Max Memory Frequency': '2133 MHz' + 'Memory Type': 'DDR3L,LPDDR3, DDR4' + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2016-05-31' + Socket: FCBGA1440 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX2 + 'GPU Base Frequency': '350 MHz' + 'GPU Boost Frequency': '1.15 GHz' + 'VRAM Type': 'DDR3L,LPDDR3, DDR4' + 'Maximum VRAM Capacity': '64 GiB' +isPart: true +type: CPU +humanName: 'Xeon E3-1585V5' +name: Xeon-E3-1585V5 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml new file mode 100644 index 00000000..512861ab --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1174 + 'Geekbench Multi-Core Score': 4239 +isPart: true +type: CPU +humanName: 'Xeon W-2123' +name: Xeon-W-2123 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml new file mode 100644 index 00000000..a13f6147 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1320 + 'Geekbench Multi-Core Score': 4880 +isPart: true +type: CPU +humanName: 'Xeon W-2125' +name: Xeon-W-2125 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml new file mode 100644 index 00000000..d75e149f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1216 + 'Geekbench Multi-Core Score': 5755 +isPart: true +type: CPU +humanName: 'Xeon W-2133' +name: Xeon-W-2133 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml new file mode 100644 index 00000000..4fff06ec --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1376 + 'Geekbench Multi-Core Score': 6341 +isPart: true +type: CPU +humanName: 'Xeon W-2135' +name: Xeon-W-2135 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml new file mode 100644 index 00000000..8c8eea09 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '11 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1394 + 'Geekbench Multi-Core Score': 8156 +isPart: true +type: CPU +humanName: 'Xeon W-2145' +name: Xeon-W-2145 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml new file mode 100644 index 00000000..7b803393 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '13.75 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1367 + 'Geekbench Multi-Core Score': 8541 +isPart: true +type: CPU +humanName: 'Xeon W-2155' +name: Xeon-W-2155 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml new file mode 100644 index 00000000..34332928 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '19 MiB' + 'Release Date': '2017-12-07' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2175' +name: Xeon-W-2175 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml new file mode 100644 index 00000000..6e271be5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: Skylake + Market: Server + Lithography: '14 nm' + TDP: '140 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.3 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2017-08-29' + Socket: FCLGA2066 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2195' +name: Xeon-W-2195 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml new file mode 100644 index 00000000..9bb5d610 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml @@ -0,0 +1,26 @@ +humanName: Tigerton +sections: + - + header: '4 Threads' + members: + - Xeon-X7350 + - Xeon-L7345 + - Xeon-E7340 + - Xeon-E7330 + - Xeon-E7320 + - Xeon-E7310 + - + header: '2 Threads' + members: + - Xeon-E7220 + - Xeon-E7210 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': 'Q3 2007' + Sockets: + - PPGA604 + - PGA604 +name: Server-Tigerton diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml new file mode 100644 index 00000000..78198fdc --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: PPGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7210' +name: Xeon-E7210 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml new file mode 100644 index 00000000..ef2f10df --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: PPGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7220' +name: Xeon-E7220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml new file mode 100644 index 00000000..f1d3e2e0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: 'PGA604, PPGA604' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7310' +name: Xeon-E7310 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml new file mode 100644 index 00000000..1d89fd7a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: 'PGA604, PPGA604' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7320' +name: Xeon-E7320 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml new file mode 100644 index 00000000..19c9567d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: 'PGA604, PPGA604' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7330' +name: Xeon-E7330 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml new file mode 100644 index 00000000..a7591274 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.4 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: 'PGA604, PPGA604' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E7340' +name: Xeon-E7340 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml new file mode 100644 index 00000000..3394ab5e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '50 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: PPGA604 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L7345' +name: Xeon-L7345 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml new file mode 100644 index 00000000..39c1d8b8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Tigerton + Market: Server + Lithography: '65 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.93 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Die Size': '286 mm' + 'Release Date': 'Q3 2007' + Socket: 'PGA604, PPGA604' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X7350' +name: Xeon-X7350 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml new file mode 100644 index 00000000..462f0df1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml @@ -0,0 +1,46 @@ +humanName: 'Westmere EP' +sections: + - + header: '9 - 16 Threads' + members: + - Xeon-X5690 + - Xeon-X5680 + - Xeon-X5675 + - Xeon-X5670 + - Xeon-X5660 + - Xeon-X5650 + - Xeon-W3680 + - Xeon-W3670 + - Xeon-L5640 + - Xeon-L5638 + - Xeon-E5649 + - Xeon-E5645 + - + header: '8 Threads' + members: + - Xeon-X5687 + - Xeon-X5677 + - Xeon-X5672 + - Xeon-X5667 + - Xeon-X5647 + - Xeon-L5630 + - Xeon-L5618 + - Xeon-E5640 + - Xeon-E5630 + - Xeon-E5620 + - + header: '4 Threads' + members: + - Xeon-L5609 + - Xeon-E5607 + - Xeon-E5606 + - Xeon-E5603 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2010-03-16' + Sockets: + - LGA1366 +name: Server-Westmere-EP diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml new file mode 100644 index 00000000..03bcbf84 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5603' +name: Xeon-E5603 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml new file mode 100644 index 00000000..388d0057 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5606' +name: Xeon-E5606 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml new file mode 100644 index 00000000..8ee49b82 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'L2 Cache (Total)': '8 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5607' +name: Xeon-E5607 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml new file mode 100644 index 00000000..b98bd16b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.66 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 381 + 'Geekbench Multi-Core Score': 1440 + 'UserBenchmark CPU Score': '59.4' +isPart: true +type: CPU +humanName: 'Xeon E5620' +name: Xeon-E5620 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml new file mode 100644 index 00000000..8e5e23d5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5630' +name: Xeon-E5630 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml new file mode 100644 index 00000000..fa3a6cd8 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5640' +name: Xeon-E5640 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml new file mode 100644 index 00000000..de7c114f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.67 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5645' +name: Xeon-E5645 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml new file mode 100644 index 00000000..24137014 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '80 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.53 GHz' + 'Boost Frequency': '2.93 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E5649' +name: Xeon-E5649 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml new file mode 100644 index 00000000..a5bd6311 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'Boost Frequency': '1.86 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon L5609' +name: Xeon-L5609 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml new file mode 100644 index 00000000..12fc9f7f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Base Frequency': '1.87 GHz' + 'Boost Frequency': '2.26 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true +isPart: true +type: CPU +humanName: 'Xeon L5618' +name: Xeon-L5618 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml new file mode 100644 index 00000000..d1fa5826 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '40 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon L5630' +name: Xeon-L5630 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml new file mode 100644 index 00000000..8b726fa9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true +isPart: true +type: CPU +humanName: 'Xeon L5638' +name: Xeon-L5638 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml new file mode 100644 index 00000000..8b84829f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '60 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon L5640' +name: Xeon-L5640 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml new file mode 100644 index 00000000..df731236 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': 'Q3 2010' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon W3670' +name: Xeon-W3670 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml new file mode 100644 index 00000000..671aaf37 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 569 + 'Geekbench Multi-Core Score': 2628 + 'UserBenchmark CPU Score': '75.3' +isPart: true +type: CPU +humanName: 'Xeon W3680' +name: Xeon-W3680 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml new file mode 100644 index 00000000..52cf0d10 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1066 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon X5647' +name: Xeon-X5647 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml new file mode 100644 index 00000000..e0aa6b6e --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '3.06 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 451 + 'Geekbench Multi-Core Score': 2220 + 'UserBenchmark CPU Score': '70.1' +isPart: true +type: CPU +humanName: 'Xeon X5650' +name: Xeon-X5650 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml new file mode 100644 index 00000000..82e57443 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.8 GHz' + 'Boost Frequency': '3.2 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 468 + 'Geekbench Multi-Core Score': 2261 + 'UserBenchmark CPU Score': '71.3' +isPart: true +type: CPU +humanName: 'Xeon X5660' +name: Xeon-X5660 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml new file mode 100644 index 00000000..a965cb46 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml @@ -0,0 +1,25 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'UserBenchmark CPU Score': '70.8' +isPart: true +type: CPU +humanName: 'Xeon X5667' +name: Xeon-X5667 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml new file mode 100644 index 00000000..a128fa8a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.93 GHz' + 'Boost Frequency': '3.33 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 463 + 'Geekbench Multi-Core Score': 2305 +isPart: true +type: CPU +humanName: 'Xeon X5670' +name: Xeon-X5670 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml new file mode 100644 index 00000000..5f629910 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon X5672' +name: Xeon-X5672 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml new file mode 100644 index 00000000..acc69de5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.06 GHz' + 'Boost Frequency': '3.46 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 493 + 'Geekbench Multi-Core Score': 2321 +isPart: true +type: CPU +humanName: 'Xeon X5675' +name: Xeon-X5675 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml new file mode 100644 index 00000000..444d96cb --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.46 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon X5677' +name: Xeon-X5677 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml new file mode 100644 index 00000000..ab8cd01a --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml @@ -0,0 +1,26 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.33 GHz' + 'Boost Frequency': '3.6 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2010-03-16' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 530 + 'Geekbench Multi-Core Score': 2477 +isPart: true +type: CPU +humanName: 'Xeon X5680' +name: Xeon-X5680 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml new file mode 100644 index 00000000..d49411e2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.86 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon X5687' +name: Xeon-X5687 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml new file mode 100644 index 00000000..4f9cf15b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml @@ -0,0 +1,27 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EP' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 3 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '3.46 GHz' + 'Boost Frequency': '3.73 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Release Date': '2011-02-14' + Socket: FCLGA1366 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' + 'Geekbench Single-Core Score': 544 + 'Geekbench Multi-Core Score': 2587 + 'UserBenchmark CPU Score': '74.7' +isPart: true +type: CPU +humanName: 'Xeon X5690' +name: Xeon-X5690 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml new file mode 100644 index 00000000..93369c2d --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml @@ -0,0 +1,38 @@ +humanName: 'Westmere EX' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-E7-8870 + - Xeon-E7-8867L + - Xeon-E7-8860 + - Xeon-E7-8850 + - Xeon-E7-4870 + - Xeon-E7-4860 + - Xeon-E7-4850 + - Xeon-E7-2870 + - Xeon-E7-2860 + - Xeon-E7-2850 + - + header: '9 - 16 Threads' + members: + - Xeon-E7-8830 + - Xeon-E7-4830 + - Xeon-E7-4820 + - Xeon-E7-4807 + - Xeon-E7-2830 + - Xeon-E7-2820 + - Xeon-E7-2803 + - + header: '8 Threads' + members: + - Xeon-E7-8837 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '32 nm' + 'Release Date': '2011-04-05' + Sockets: + - LGA1567 +name: Server-Westmere-EX diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml new file mode 100644 index 00000000..2c9b19dd --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.73 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2803' +name: Xeon-E7-2803 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml new file mode 100644 index 00000000..04891639 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.266 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2820' +name: Xeon-E7-2820 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml new file mode 100644 index 00000000..f59b833c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2830' +name: Xeon-E7-2830 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml new file mode 100644 index 00000000..b6e5aca3 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2850' +name: Xeon-E7-2850 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml new file mode 100644 index 00000000..bf91aa67 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.666 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2860' +name: Xeon-E7-2860 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml new file mode 100644 index 00000000..74e89d35 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-2870' +name: Xeon-E7-2870 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml new file mode 100644 index 00000000..f338a200 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '95 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4807' +name: Xeon-E7-4807 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml new file mode 100644 index 00000000..fc81ca60 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.266 GHz' + 'L2 Cache (Total)': '18 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4820' +name: Xeon-E7-4820 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml new file mode 100644 index 00000000..36dc143c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4830' +name: Xeon-E7-4830 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml new file mode 100644 index 00000000..295b5eb0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4850' +name: Xeon-E7-4850 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml new file mode 100644 index 00000000..0ae1727f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.666 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4860' +name: Xeon-E7-4860 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml new file mode 100644 index 00000000..0f166117 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-4870' +name: Xeon-E7-4870 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml new file mode 100644 index 00000000..31d76e03 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8830' +name: Xeon-E7-8830 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml new file mode 100644 index 00000000..63c81603 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 8 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.66 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8837' +name: Xeon-E7-8837 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml new file mode 100644 index 00000000..997b4f85 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2 GHz' + 'Boost Frequency': '2.4 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8850' +name: Xeon-E7-8850 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml new file mode 100644 index 00000000..9bb2335f --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.26 GHz' + 'Boost Frequency': '2.666 GHz' + 'L2 Cache (Total)': '24 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8860' +name: Xeon-E7-8860 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml new file mode 100644 index 00000000..d7bf7978 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '105 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.13 GHz' + 'Boost Frequency': '2.533 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8867L' +name: Xeon-E7-8867L diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml new file mode 100644 index 00000000..25107977 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Westmere EX' + Market: Server + Lithography: '32 nm' + TDP: '130 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '1333 MHz' + 'Memory Type': DDR3 + 'Base Frequency': '2.4 GHz' + 'Boost Frequency': '2.8 GHz' + 'L2 Cache (Total)': '30 MiB' + 'Release Date': '2011-04-05' + Socket: LGA1567 + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: 'SSE 4.2' +isPart: true +type: CPU +humanName: 'Xeon E7-8870' +name: Xeon-E7-8870 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml new file mode 100644 index 00000000..2d910acf --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml @@ -0,0 +1,25 @@ +humanName: Wolfdale +sections: + - + header: '2 Threads' + members: + - Xeon-X5272 + - Xeon-X5270 + - Xeon-X5260 + - Xeon-L5240 + - Xeon-L5215 + - Xeon-L3110 + - Xeon-E5220 + - Xeon-E5205 + - Xeon-E3120 + - Xeon-E3110 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2007-11-12' + Sockets: + - LGA775 + - LGA771 +name: Server-Wolfdale diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml new file mode 100644 index 00000000..327db7da --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml @@ -0,0 +1,20 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-01-14' + Socket: LGA775 + 'Other Extensions': + - x86-64 + 'UserBenchmark CPU Score': '42.4' +isPart: true +type: CPU +humanName: 'Xeon E3110' +name: Xeon-E3110 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml new file mode 100644 index 00000000..5d3294d9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.16 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E3120' +name: Xeon-E3120 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml new file mode 100644 index 00000000..19775655 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5205' +name: Xeon-E5205 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml new file mode 100644 index 00000000..8afb8e54 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-03-31' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon E5220' +name: Xeon-E5220 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml new file mode 100644 index 00000000..118d5b6c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '45 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2009-02-27' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L3110' +name: Xeon-L3110 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml new file mode 100644 index 00000000..ec188d13 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '20 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-09-30' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5215' +name: Xeon-L5215 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml new file mode 100644 index 00000000..e04e19f2 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-05-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L5240' +name: Xeon-L5240 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml new file mode 100644 index 00000000..e0c67751 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.33 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5260' +name: Xeon-X5260 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml new file mode 100644 index 00000000..a7d929fa --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2008-10-01' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5270' +name: Xeon-X5270 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml new file mode 100644 index 00000000..d4195ce7 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Wolfdale + Market: Server + Lithography: '45 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3.4 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '107 mm' + 'Release Date': '2007-11-12' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X5272' +name: Xeon-X5272 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml new file mode 100644 index 00000000..df961283 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml @@ -0,0 +1,24 @@ +humanName: Woodcrest +sections: + - + header: '2 Threads' + members: + - Xeon-5160 + - Xeon-5150 + - Xeon-5148 + - Xeon-5140 + - Xeon-5138 + - Xeon-5133 + - Xeon-5130 + - Xeon-5128 + - Xeon-5113 + - Xeon-5110 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '65 nm' + 'Release Date': '2006-06-25' + Sockets: + - LGA771 +name: Server-Woodcrest diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml new file mode 100644 index 00000000..410babb9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5110' +name: Xeon-5110 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml new file mode 100644 index 00000000..2c181293 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml @@ -0,0 +1,17 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.6 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5113' +name: Xeon-5113 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml new file mode 100644 index 00000000..ac10b7c5 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '1.86 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-10-11' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5128' +name: Xeon-5128 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml new file mode 100644 index 00000000..cd33df77 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-06-25' + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5130' +name: Xeon-5130 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml new file mode 100644 index 00000000..35aa9dd0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.2 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5133' +name: Xeon-5133 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml new file mode 100644 index 00000000..2303e127 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '35 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.13 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-10-11' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5138' +name: Xeon-5138 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml new file mode 100644 index 00000000..f3c6946c --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-06-25' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5140' +name: Xeon-5140 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml new file mode 100644 index 00000000..c364e7b9 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '40 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.33 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + 'Release Date': '2006-06-25' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5148' +name: Xeon-5148 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml new file mode 100644 index 00000000..921e71c1 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '65 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5150' +name: Xeon-5150 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml new file mode 100644 index 00000000..2baedc88 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml @@ -0,0 +1,18 @@ +data: + Manufacturer: Intel + Architecture: Woodcrest + Market: Server + Lithography: '65 nm' + TDP: '80 W' + 'Core Count': 2 + 'Thread Count': 2 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '4 MiB' + 'Die Size': '143 mm' + Socket: LGA771 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon 5160' +name: Xeon-5160 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml new file mode 100644 index 00000000..62588a0b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml @@ -0,0 +1,21 @@ +humanName: Yorkfield +sections: + - + header: '4 Threads' + members: + - Xeon-X3380 + - Xeon-X3370 + - Xeon-X3360 + - Xeon-X3350 + - Xeon-X3330 + - Xeon-X3320 + - Xeon-L3360 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '45 nm' + 'Release Date': '2008-03-24' + Sockets: + - LGA775 +name: Server-Yorkfield diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml new file mode 100644 index 00000000..3eb91e06 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '65 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2009-02-23' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon L3360' +name: Xeon-L3360 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml new file mode 100644 index 00000000..9e3d8f93 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.5 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3320' +name: Xeon-X3320 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml new file mode 100644 index 00000000..3b37d25b --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '6 MiB' + 'Die Size': '164 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3330' +name: Xeon-X3330 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml new file mode 100644 index 00000000..d3c539c0 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.66 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3350' +name: Xeon-X3350 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml new file mode 100644 index 00000000..649d6b53 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '2.83 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-03-24' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3360' +name: Xeon-X3360 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml new file mode 100644 index 00000000..c49b2d16 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2008-08-10' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3370' +name: Xeon-X3370 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml new file mode 100644 index 00000000..d87cb8d4 --- /dev/null +++ b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml @@ -0,0 +1,19 @@ +data: + Manufacturer: Intel + Architecture: Yorkfield + Market: Server + Lithography: '45 nm' + TDP: '95 W' + 'Core Count': 4 + 'Thread Count': 4 + 'Base Frequency': '3.16 GHz' + 'L2 Cache (Total)': '12 MiB' + 'Die Size': '214 mm' + 'Release Date': '2009-03-02' + Socket: LGA775 + 'Other Extensions': + - x86-64 +isPart: true +type: CPU +humanName: 'Xeon X3380' +name: Xeon-X3380 diff --git a/specs/intel/undefined-CPUs-Intel.yaml b/specs/intel/undefined-CPUs-Intel.yaml new file mode 100644 index 00000000..a70bd7d0 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel.yaml @@ -0,0 +1,11 @@ +humanName: 'undefined CPUs (Intel)' +sections: + - + header: '2015 - 2019' + members: + - undefined-Cascade-Lake +type: 'Generic Container' +topHeader: 'SELECT ARCHITECTURE:' +data: + Manufacturer: Intel +name: undefined-CPUs-Intel diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml new file mode 100644 index 00000000..7348731a --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml @@ -0,0 +1,37 @@ +humanName: 'Cascade Lake' +sections: + - + header: '17 - 64 Threads' + members: + - Xeon-W-3275M + - Xeon-W-3275 + - Xeon-W-3265M + - Xeon-W-3265 + - Xeon-W-3245M + - Xeon-W-3245 + - Xeon-W-3235 + - Xeon-W-2295 + - Xeon-W-2275 + - Xeon-W-2265 + - Xeon-W-2255 + - + header: '9 - 16 Threads' + members: + - Xeon-W-3225 + - Xeon-W-3223 + - Xeon-W-2245 + - Xeon-W-2235 + - + header: '8 Threads' + members: + - Xeon-W-2225 + - Xeon-W-2223 +type: 'CPU Architecture' +topHeader: 'SELECT CPU:' +data: + Manufacturer: Intel + Lithography: '14 nm' + 'Release Date': '2019-06-03' + Sockets: + - LGA3647 +name: undefined-Cascade-Lake diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml new file mode 100644 index 00000000..29234bde --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '120 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.6 GHz' + 'Boost Frequency': '3.9 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2223' +name: Xeon-W-2223 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml new file mode 100644 index 00000000..30f31eee --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '105 W' + 'Core Count': 4 + 'Thread Count': 8 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '4.1 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2225' +name: Xeon-W-2225 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml new file mode 100644 index 00000000..219031d9 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '130 W' + 'Core Count': 6 + 'Thread Count': 12 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.8 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '8.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2235' +name: Xeon-W-2235 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml new file mode 100644 index 00000000..e434e4fb --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '155 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.9 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2245' +name: Xeon-W-2245 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml new file mode 100644 index 00000000..ea8f488c --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 10 + 'Thread Count': 20 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.5 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2255' +name: Xeon-W-2255 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml new file mode 100644 index 00000000..e2cd9833 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2265' +name: Xeon-W-2265 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml new file mode 100644 index 00000000..27221b13 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml @@ -0,0 +1,22 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 14 + 'Thread Count': 28 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-2275' +name: Xeon-W-2275 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml new file mode 100644 index 00000000..5cf94b5a --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml @@ -0,0 +1,24 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '165 W' + 'Core Count': 18 + 'Thread Count': 36 + 'Max Memory Channels': 4 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3 GHz' + 'Boost Frequency': '4.6 GHz' + 'L2 Cache (Total)': '24.75 MiB' + 'Release Date': '2019-10-07' + AES: true + 'Other Extensions': + - x86-64 + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1469 + 'Geekbench Multi-Core Score': 10431 +isPart: true +type: CPU +humanName: 'Xeon W-2295' +name: Xeon-W-2295 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml new file mode 100644 index 00000000..d9ce05c1 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.5 GHz' + 'Boost Frequency': '4 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1380 + 'Geekbench Multi-Core Score': 7951 +isPart: true +type: CPU +humanName: 'Xeon W-3223' +name: Xeon-W-3223 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml new file mode 100644 index 00000000..a852ff60 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '160 W' + 'Core Count': 8 + 'Thread Count': 16 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2666 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.7 GHz' + 'Boost Frequency': '4.3 GHz' + 'L2 Cache (Total)': '16.5 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-3225' +name: Xeon-W-3225 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml new file mode 100644 index 00000000..20dc750b --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '180 W' + 'Core Count': 12 + 'Thread Count': 24 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.3 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '19.25 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1418 + 'Geekbench Multi-Core Score': 10041 +isPart: true +type: CPU +humanName: 'Xeon W-3235' +name: Xeon-W-3235 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml new file mode 100644 index 00000000..28a3d18a --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1392 + 'Geekbench Multi-Core Score': 11702 +isPart: true +type: CPU +humanName: 'Xeon W-3245' +name: Xeon-W-3245 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml new file mode 100644 index 00000000..0b41a72e --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 16 + 'Thread Count': 32 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '3.2 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '22 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-3245M' +name: Xeon-W-3245M diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml new file mode 100644 index 00000000..dcacb5a3 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-3265' +name: Xeon-W-3265 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml new file mode 100644 index 00000000..fd042f92 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 24 + 'Thread Count': 48 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.7 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '33 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 954 + 'Geekbench Multi-Core Score': 6802 +isPart: true +type: CPU +humanName: 'Xeon W-3265M' +name: Xeon-W-3265M diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml new file mode 100644 index 00000000..408dbebe --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml @@ -0,0 +1,21 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 +isPart: true +type: CPU +humanName: 'Xeon W-3275' +name: Xeon-W-3275 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml new file mode 100644 index 00000000..58d8d4e8 --- /dev/null +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml @@ -0,0 +1,23 @@ +data: + Manufacturer: Intel + Architecture: 'Cascade Lake' + Lithography: '14 nm' + TDP: '205 W' + 'Core Count': 28 + 'Thread Count': 56 + 'Max Memory Channels': 6 + 'Max Memory Frequency': '2933 MHz' + 'Memory Type': DDR4 + 'Base Frequency': '2.5 GHz' + 'Boost Frequency': '4.4 GHz' + 'L2 Cache (Total)': '38.5 MiB' + 'Release Date': '2019-06-03' + Socket: FCLGA3647 + AES: true + AVX/SSE/MMX: AVX-512 + 'Geekbench Single-Core Score': 1217 + 'Geekbench Multi-Core Score': 11569 +isPart: true +type: CPU +humanName: 'Xeon W-3275M' +name: Xeon-W-3275M From aa88ef890618002fd986f271fcf03e0f372e5ee9 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 18 Jan 2024 13:33:23 +0000 Subject: [PATCH 07/41] removed benchmarks --- .../Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml | 1 - .../Desktop-Cascade-Lake/Core-i9-10900X.yaml | 3 --- .../Desktop-Cascade-Lake/Core-i9-10920X.yaml | 3 --- .../Desktop-Cascade-Lake/Core-i9-10940X.yaml | 3 --- .../Desktop-Cascade-Lake/Core-i9-10980XE.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml | 2 -- .../Desktop-Coffee-Lake/Core-i3-9350KF.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml | 4 ---- .../Desktop-Coffee-Lake/Core-i5-9600KF.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml | 4 ---- .../Desktop-Coffee-Lake/Core-i7-9700KF.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml | 4 ---- .../Desktop-Coffee-Lake/Core-i9-9900KF.yaml | 4 ---- .../Desktop-Coffee-Lake/Core-i9-9900KS.yaml | 4 ---- .../Desktop-Coffee-Lake/Pentium-G5400T.yaml | 1 - .../Desktop-Coffee-Lake/Pentium-G5500T.yaml | 1 - .../Desktop-Crystal-Well/Core-i5-4570R.yaml | 3 --- .../Desktop-Devils-Canyon/Core-i5-4690K.yaml | 4 ---- .../Desktop-Devils-Canyon/Core-i7-4790K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml | 1 - .../Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml | 3 --- .../Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml | 3 --- .../Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml | 1 - .../intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml | 1 - .../intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml | 1 - .../intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml | 1 - .../Desktop-Sandy-Bridge-E/Core-i7-3820.yaml | 3 --- .../Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml | 3 --- .../Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml | 3 --- .../Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i3-2120T.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i5-2400S.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i5-2405S.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i5-2450P.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i5-2500K.yaml | 4 ---- .../Desktop-Sandy-Bridge/Core-i5-2500S.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i5-2550K.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i7-2600K.yaml | 4 ---- .../Desktop-Sandy-Bridge/Core-i7-2600S.yaml | 3 --- .../Desktop-Sandy-Bridge/Core-i7-2700K.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml | 4 ---- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml | 2 -- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml | 3 --- .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml | 1 - .../Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml | 1 - .../Embedded-Ivy-Bridge/Core-i7-3610QE.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml | 2 -- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml | 1 - .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml | 4 ---- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml | 2 -- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml | 3 --- .../Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml | 3 --- .../intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml | 1 - .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml | 1 - specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml | 2 -- .../intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml | 1 - .../Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml | 2 -- .../Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml | 1 - .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml | 3 --- .../Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml | 2 -- .../Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml | 2 -- .../intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml | 3 --- .../intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml | 1 - .../intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml | 1 - .../Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml | 2 -- .../Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml | 3 --- .../Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml | 2 -- .../Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml | 2 -- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml | 2 -- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml | 2 -- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml | 2 -- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml | 3 --- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml | 2 -- .../Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml | 2 -- specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml | 2 -- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml | 3 --- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml | 3 --- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml | 3 --- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml | 3 --- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml | 1 - .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml | 2 -- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml | 2 -- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml | 2 -- .../Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml | 3 --- specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml | 1 - .../undefined-Cascade-Lake/Xeon-W-2295.yaml | 2 -- .../undefined-Cascade-Lake/Xeon-W-3223.yaml | 2 -- .../undefined-Cascade-Lake/Xeon-W-3235.yaml | 2 -- .../undefined-Cascade-Lake/Xeon-W-3245.yaml | 2 -- .../undefined-Cascade-Lake/Xeon-W-3265M.yaml | 2 -- .../undefined-Cascade-Lake/Xeon-W-3275M.yaml | 2 -- 668 files changed, 1608 deletions(-) diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml index b68aba6b..97d72049 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml @@ -21,9 +21,6 @@ data: 'Maximum VRAM Capacity': '8 GiB' 'DirectX Support': '0' 'OpenGL Support': 'Yes' - 'Geekbench Single-Core Score': 242 - 'Geekbench Multi-Core Score': 613 - 'UserBenchmark CPU Score': '32.9' isPart: true type: CPU humanName: 'Pentium J4205' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml index 10b9fcdd..0c6103eb 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml @@ -19,7 +19,6 @@ data: 'GPU Base Frequency': '688 MHz' 'GPU Boost Frequency': '896 MHz' 'DirectX Support': '11.2' - 'UserBenchmark CPU Score': '35.2' isPart: true type: CPU humanName: 'Pentium J2900' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml index 3e1451d6..70b62159 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 419 - 'Geekbench Multi-Core Score': 1476 - 'UserBenchmark CPU Score': '61.6' isPart: true type: CPU humanName: 'Core i7-920' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml index 16ff7275..02b0bbfe 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 423 - 'Geekbench Multi-Core Score': 1487 - 'UserBenchmark CPU Score': '64' isPart: true type: CPU humanName: 'Core i7-930' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml index 6ddfe77a..5431cbc4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '65.5' isPart: true type: CPU humanName: 'Core i7-940' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml index a69f81f4..4e52765c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 458 - 'Geekbench Multi-Core Score': 1578 - 'UserBenchmark CPU Score': '65.9' isPart: true type: CPU humanName: 'Core i7-950' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml index eeae1ace..bfe631ae 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 492 - 'Geekbench Multi-Core Score': 1673 - 'UserBenchmark CPU Score': '67.6' isPart: true type: CPU humanName: 'Core i7-960' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml index 90628f76..9cd22699 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '72.4' isPart: true type: CPU humanName: 'Core i7-975' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml index 6b525642..d7308d10 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml @@ -21,8 +21,6 @@ data: 'Maximum VRAM Capacity': '8 GiB' 'DirectX Support': '0' 'OpenGL Support': 'Yes' - 'Geekbench Single-Core Score': 197 - 'Geekbench Multi-Core Score': 568 isPart: true type: CPU humanName: 'Pentium J3710' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml index 05e5ca98..959b5c92 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml @@ -17,10 +17,6 @@ data: AES: true 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 1197 - 'Geekbench Multi-Core Score': 5565 - '3DMark Fire Strike Physics Score': 3688 - 'UserBenchmark CPU Score': '80.6' isPart: true type: CPU humanName: 'Core i7-6800K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml index 58f234f9..266014c6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml @@ -17,10 +17,6 @@ data: AES: true 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 1228 - 'Geekbench Multi-Core Score': 5709 - '3DMark Fire Strike Physics Score': 3926 - 'UserBenchmark CPU Score': '83.6' isPart: true type: CPU humanName: 'Core i7-6850K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml index ff6e94e7..6494881a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml @@ -17,9 +17,6 @@ data: AES: true 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 1236 - 'Geekbench Multi-Core Score': 7227 - 'UserBenchmark CPU Score': '85.9' isPart: true type: CPU humanName: 'Core i7-6900K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml index e89c668c..e600d1db 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml @@ -17,10 +17,6 @@ data: AES: true 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 1221 - 'Geekbench Multi-Core Score': 7817 - '3DMark Fire Strike Physics Score': 6297 - 'UserBenchmark CPU Score': '86.8' isPart: true type: CPU humanName: 'Core i7-6950X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml index 9d3373f2..9ca895c9 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '11.2' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1088 - 'Geekbench Multi-Core Score': 3319 isPart: true type: CPU humanName: 'Core i5-5575R' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml index 7b973d6c..17c55e4f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '11.2' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '81.5' isPart: true type: CPU humanName: 'Core i5-5675C' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml index 0b50a626..ab4d04f6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '11.2' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1349 - 'Geekbench Multi-Core Score': 4618 - 'UserBenchmark CPU Score': '84.9' isPart: true type: CPU humanName: 'Core i7-5775C' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml index 7697019e..3c250c2c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '11.2' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '80.5' isPart: true type: CPU humanName: 'Core i7-5775R' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml index 7aaec8fa..618d184f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml @@ -15,9 +15,6 @@ data: 'Release Date': '2019-10-07' AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1564 - 'Geekbench Multi-Core Score': 9243 - 'UserBenchmark CPU Score': '85.1' isPart: true type: CPU humanName: 'Core i9-10900X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml index 60831c9d..76365940 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml @@ -15,9 +15,6 @@ data: 'Release Date': '2019-10-07' AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1559 - 'Geekbench Multi-Core Score': 10474 - 'UserBenchmark CPU Score': '87.2' isPart: true type: CPU humanName: 'Core i9-10920X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml index 88849b1f..347e8a5d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml @@ -15,9 +15,6 @@ data: 'Release Date': '2019-10-07' AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1555 - 'Geekbench Multi-Core Score': 10752 - 'UserBenchmark CPU Score': '85.7' isPart: true type: CPU humanName: 'Core i9-10940X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml index 87f42412..c09bc5be 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml @@ -15,9 +15,6 @@ data: 'Release Date': '2019-10-07' AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1555 - 'Geekbench Multi-Core Score': 11957 - 'UserBenchmark CPU Score': '84.2' isPart: true type: CPU humanName: 'Core i9-10980XE' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml index a80d3717..f68ce804 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml @@ -17,7 +17,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '640 MHz' - 'UserBenchmark CPU Score': '26.4' isPart: true type: CPU humanName: 'Atom D2700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml index a100cdb2..c0cfa75f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml @@ -19,9 +19,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'Geekbench Single-Core Score': 385 - 'Geekbench Multi-Core Score': 798 - 'UserBenchmark CPU Score': '45.6' isPart: true type: CPU humanName: 'Core i3-530' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml index ab55a8c6..69797f31 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml @@ -19,9 +19,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'Geekbench Single-Core Score': 408 - 'Geekbench Multi-Core Score': 857 - 'UserBenchmark CPU Score': '45.9' isPart: true type: CPU humanName: 'Core i3-540' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml index 0a6197cb..5e70ac6b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml @@ -19,9 +19,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'Geekbench Single-Core Score': 419 - 'Geekbench Multi-Core Score': 883 - 'UserBenchmark CPU Score': '47' isPart: true type: CPU humanName: 'Core i3-550' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml index a86c56d5..2ca87d25 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml @@ -20,9 +20,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'Geekbench Single-Core Score': 451 - 'Geekbench Multi-Core Score': 926 - 'UserBenchmark CPU Score': '46.3' isPart: true type: CPU humanName: 'Core i5-650' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml index 8496ac5d..eac00ee8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml @@ -20,9 +20,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'Geekbench Single-Core Score': 471 - 'Geekbench Multi-Core Score': 981 - 'UserBenchmark CPU Score': '48.7' isPart: true type: CPU humanName: 'Core i5-660' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml index e21e3b3f..d530f2e8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml @@ -20,7 +20,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '900 MHz' - 'UserBenchmark CPU Score': '49.8' isPart: true type: CPU humanName: 'Core i5-661' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml index 2fdb6d09..d6a58ead 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml @@ -20,7 +20,6 @@ data: - x86-64 AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '733 MHz' - 'UserBenchmark CPU Score': '51.8' isPart: true type: CPU humanName: 'Core i5-680' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml index 598bdc39..85a6747f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 'GPU Base Frequency': '533 MHz' - 'UserBenchmark CPU Score': '40.7' isPart: true type: CPU humanName: 'Pentium G6950' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml index f497006e..922bd461 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1213 - 'Geekbench Multi-Core Score': 3352 - 'UserBenchmark CPU Score': '70.6' isPart: true type: CPU humanName: 'Core i3-8100' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml index 11959034..f42bd834 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1055 - 'Geekbench Multi-Core Score': 2968 - 'UserBenchmark CPU Score': '71.1' isPart: true type: CPU humanName: 'Core i3-8100T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml index d66895d7..cb11a314 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '79.9' isPart: true type: CPU humanName: 'Core i3-8300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml index ce35be99..b85f262c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1441 - 'Geekbench Multi-Core Score': 4169 - 'UserBenchmark CPU Score': '81.7' isPart: true type: CPU humanName: 'Core i3-8350K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml index b037a9ef..3c74fe8d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1312 - 'Geekbench Multi-Core Score': 3443 - 'UserBenchmark CPU Score': '79.7' isPart: true type: CPU humanName: 'Core i3-9100' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml index 4d8b11a7..89e3e4ce 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1345 - 'Geekbench Multi-Core Score': 3607 - '3DMark Fire Strike Physics Score': 2572 - 'UserBenchmark CPU Score': '80.1' isPart: true type: CPU humanName: 'Core i3-9100F' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml index 6c7ec56e..4830a4f2 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1191 - 'Geekbench Multi-Core Score': 3157 isPart: true type: CPU humanName: 'Core i3-9100T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml index 931732fd..594fb460 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'UserBenchmark CPU Score': '89.3' isPart: true type: CPU humanName: 'Core i3-9350KF' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml index 7830dd02..9bb6c060 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml @@ -25,10 +25,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1323 - 'Geekbench Multi-Core Score': 4719 - '3DMark Fire Strike Physics Score': 3665 - 'UserBenchmark CPU Score': '81.8' isPart: true type: CPU humanName: 'Core i5-8400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml index 5c61e09f..9d943673 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1080 - 'Geekbench Multi-Core Score': 3864 - 'UserBenchmark CPU Score': '74.7' isPart: true type: CPU humanName: 'Core i5-8400T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml index 288fdd7b..bb06c528 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml @@ -25,10 +25,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1362 - 'Geekbench Multi-Core Score': 4795 - '3DMark Fire Strike Physics Score': 3764 - 'UserBenchmark CPU Score': '82.1' isPart: true type: CPU humanName: 'Core i5-8500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml index c12f4732..028fa4f0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1149 - 'Geekbench Multi-Core Score': 3998 - 'UserBenchmark CPU Score': '73' isPart: true type: CPU humanName: 'Core i5-8500T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml index 54af34b2..47921cea 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1383 - 'Geekbench Multi-Core Score': 4890 - 'UserBenchmark CPU Score': '88.2' isPart: true type: CPU humanName: 'Core i5-8600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml index 42e42c27..d7e961fd 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1486 - 'Geekbench Multi-Core Score': 5448 - '3DMark Fire Strike Physics Score': 4219 - 'UserBenchmark CPU Score': '90.7' isPart: true type: CPU humanName: 'Core i5-8600K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml index 3e6fcbf2..a85e0ef4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '82.2' isPart: true type: CPU humanName: 'Core i5-8600T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml index b106aad5..c03fc9a3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1345 - 'Geekbench Multi-Core Score': 4682 - '3DMark Fire Strike Physics Score': 3760 - 'UserBenchmark CPU Score': '86.5' isPart: true type: CPU humanName: 'Core i5-9400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml index 66e4d4e8..6e1f0022 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1345 - 'Geekbench Multi-Core Score': 4784 - '3DMark Fire Strike Physics Score': 3766 - 'UserBenchmark CPU Score': '84.8' isPart: true type: CPU humanName: 'Core i5-9400F' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml index 837cfe21..03593f5a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1459 - 'Geekbench Multi-Core Score': 5001 - 'UserBenchmark CPU Score': '87' isPart: true type: CPU humanName: 'Core i5-9500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml index a46cb679..2a81661e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1225 - 'Geekbench Multi-Core Score': 4185 isPart: true type: CPU humanName: 'Core i5-9500T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml index b26aee69..14dc452a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1485 - 'Geekbench Multi-Core Score': 5465 - 'UserBenchmark CPU Score': '92.3' isPart: true type: CPU humanName: 'Core i5-9600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml index 80d1e673..d2985a7b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1561 - 'Geekbench Multi-Core Score': 5704 - '3DMark Fire Strike Physics Score': 4277 - 'UserBenchmark CPU Score': '93.2' isPart: true type: CPU humanName: 'Core i5-9600K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml index d922517a..2d84ddb7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1559 - 'Geekbench Multi-Core Score': 5731 - '3DMark Fire Strike Physics Score': 4345 - 'UserBenchmark CPU Score': '93.2' isPart: true type: CPU humanName: 'Core i5-9600KF' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml index 41c6360b..afbc1a09 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml @@ -23,10 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1655 - 'Geekbench Multi-Core Score': 7094 - '3DMark Fire Strike Physics Score': 5163 - 'UserBenchmark CPU Score': '90.8' isPart: true type: CPU humanName: 'Core i7-8086K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml index 0d9a6941..cdc58fd5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml @@ -25,10 +25,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1500 - 'Geekbench Multi-Core Score': 5922 - '3DMark Fire Strike Physics Score': 4908 - 'UserBenchmark CPU Score': '87' isPart: true type: CPU humanName: 'Core i7-8700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml index 62b3b1da..abf43c39 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1547 - 'Geekbench Multi-Core Score': 6406 - '3DMark Fire Strike Physics Score': 5139 - 'UserBenchmark CPU Score': '88.4' isPart: true type: CPU humanName: 'Core i7-8700K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml index bfed28ed..34fdf61e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1301 - 'Geekbench Multi-Core Score': 4850 - 'UserBenchmark CPU Score': '79.4' isPart: true type: CPU humanName: 'Core i7-8700T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml index 5d39c3c4..cb923a16 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1528 - 'Geekbench Multi-Core Score': 6164 - '3DMark Fire Strike Physics Score': 5414 - 'UserBenchmark CPU Score': '92' isPart: true type: CPU humanName: 'Core i7-9700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml index c6a4d2eb..c35a5e2e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1507 - 'Geekbench Multi-Core Score': 6218 - '3DMark Fire Strike Physics Score': 5466 - 'UserBenchmark CPU Score': '92' isPart: true type: CPU humanName: 'Core i7-9700F' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml index f3ca5969..8a3b9e4d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1621 - 'Geekbench Multi-Core Score': 6945 - '3DMark Fire Strike Physics Score': 5901 - 'UserBenchmark CPU Score': '96.9' isPart: true type: CPU humanName: 'Core i7-9700K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml index 31fba18b..e9b3b7ee 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1629 - 'Geekbench Multi-Core Score': 7098 - '3DMark Fire Strike Physics Score': 5929 - 'UserBenchmark CPU Score': '97.1' isPart: true type: CPU humanName: 'Core i7-9700KF' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml index ac18da7f..381c8a5e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1348 - 'Geekbench Multi-Core Score': 5066 isPart: true type: CPU humanName: 'Core i7-9700T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml index dcb858f8..74a531af 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1598 - 'Geekbench Multi-Core Score': 7187 - '3DMark Fire Strike Physics Score': 6750 - 'UserBenchmark CPU Score': '91.4' isPart: true type: CPU humanName: 'Core i9-9900' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml index c5dbe99b..0afd9a2d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1635 - 'Geekbench Multi-Core Score': 7941 - '3DMark Fire Strike Physics Score': 7084 - 'UserBenchmark CPU Score': '97.9' isPart: true type: CPU humanName: 'Core i9-9900K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml index e1250b8d..760cb9eb 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1652 - 'Geekbench Multi-Core Score': 7964 - '3DMark Fire Strike Physics Score': 7105 - 'UserBenchmark CPU Score': '97.8' isPart: true type: CPU humanName: 'Core i9-9900KF' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml index d8e15732..37130011 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1714 - 'Geekbench Multi-Core Score': 8521 - '3DMark Fire Strike Physics Score': 7477 - 'UserBenchmark CPU Score': '98.8' isPart: true type: CPU humanName: 'Core i9-9900KS' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml index f18d725b..a3520a87 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '63.5' isPart: true type: CPU humanName: 'Pentium G5400T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml index b3b8937a..8dacee57 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '62.6' isPart: true type: CPU humanName: 'Pentium G5500T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml index 185bd08b..d8cf0d6f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 823 - 'Geekbench Multi-Core Score': 2549 - 'UserBenchmark CPU Score': '65.2' isPart: true type: CPU humanName: 'Core i5-4570R' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml index 29419738..471e62ac 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1261 - 'Geekbench Multi-Core Score': 3609 - '3DMark Fire Strike Physics Score': 2174 - 'UserBenchmark CPU Score': '69.6' isPart: true type: CPU humanName: 'Core i5-4690K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml index 60ccd351..18c3756c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1359 - 'Geekbench Multi-Core Score': 4395 - '3DMark Fire Strike Physics Score': 2844 - 'UserBenchmark CPU Score': '78.9' isPart: true type: CPU humanName: 'Core i7-4790K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml index b60841c4..7fcb6bdf 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml @@ -14,7 +14,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '19.2' isPart: true type: CPU humanName: 'Atom 230' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml index 2b2ef154..3c3b718a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml @@ -14,7 +14,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20.6' isPart: true type: CPU humanName: 'Atom 330' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml index 1f427a6d..5bbad2c0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 517 - 'Geekbench Multi-Core Score': 2415 - 'UserBenchmark CPU Score': '73.4' isPart: true type: CPU humanName: 'Core i7-970' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml index 2c1d2971..1e25add5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '75.2' isPart: true type: CPU humanName: 'Core i7-980' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml index f741a388..85d9ca10 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 538 - 'Geekbench Multi-Core Score': 2523 isPart: true type: CPU humanName: 'Core i7-980X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml index adbc1fc7..e3d6061d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 563 - 'Geekbench Multi-Core Score': 2629 isPart: true type: CPU humanName: 'Core i7-990X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml index f43a5e45..f5aeb540 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1125 - 'Geekbench Multi-Core Score': 5323 - '3DMark Fire Strike Physics Score': 3784 - 'UserBenchmark CPU Score': '76.8' isPart: true type: CPU humanName: 'Core i7-5820K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml index faa62245..9cc0ddce 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1101 - 'Geekbench Multi-Core Score': 5258 - '3DMark Fire Strike Physics Score': 3954 - 'UserBenchmark CPU Score': '79.8' isPart: true type: CPU humanName: 'Core i7-5930K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml index f2c4d3f8..29e4582e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1261 - 'Geekbench Multi-Core Score': 7342 - '3DMark Fire Strike Physics Score': 5190 - 'UserBenchmark CPU Score': '80.5' isPart: true type: CPU humanName: 'Core i7-5960X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml index 89e6ce3b..a620ad82 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 944 - 'Geekbench Multi-Core Score': 1882 - 'UserBenchmark CPU Score': '52.3' isPart: true type: CPU humanName: 'Core i3-4130' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml index 2ae100a7..0b4f4ac7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 898 - 'Geekbench Multi-Core Score': 1808 - 'UserBenchmark CPU Score': '56.2' isPart: true type: CPU humanName: 'Core i3-4130T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml index e6076b11..2a78664b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1014 - 'Geekbench Multi-Core Score': 2022 - 'UserBenchmark CPU Score': '55.2' isPart: true type: CPU humanName: 'Core i3-4150' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml index 4a460f6d..dbd46334 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 845 - 'Geekbench Multi-Core Score': 1772 isPart: true type: CPU humanName: 'Core i3-4150T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml index d17fa3a1..76c50aa8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 992 - 'Geekbench Multi-Core Score': 1931 - 'UserBenchmark CPU Score': '55.1' isPart: true type: CPU humanName: 'Core i3-4160' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml index 8fd382f8..1474b43f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 908 - 'Geekbench Multi-Core Score': 1732 isPart: true type: CPU humanName: 'Core i3-4160T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml index c938aabe..babf52cc 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1052 - 'Geekbench Multi-Core Score': 2059 - 'UserBenchmark CPU Score': '56.9' isPart: true type: CPU humanName: 'Core i3-4170' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml index acf6dc42..730066d0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 966 - 'Geekbench Multi-Core Score': 1846 isPart: true type: CPU humanName: 'Core i3-4170T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml index 8a890c9d..bdfb955d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1051 - 'Geekbench Multi-Core Score': 2091 - 'UserBenchmark CPU Score': '61.9' isPart: true type: CPU humanName: 'Core i3-4330' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml index 1ca54374..8ecef592 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '64.5' isPart: true type: CPU humanName: 'Core i3-4340' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml index 0a373c62..60439165 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '65.9' isPart: true type: CPU humanName: 'Core i3-4350' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml index a78b0979..06ac798e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1145 - 'Geekbench Multi-Core Score': 2285 - 'UserBenchmark CPU Score': '64.7' isPart: true type: CPU humanName: 'Core i3-4360' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml index b994b6bf..e9e0091f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1173 - 'Geekbench Multi-Core Score': 2388 - 'UserBenchmark CPU Score': '65.8' isPart: true type: CPU humanName: 'Core i3-4370' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml index cd11e0d9..4719951b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 963 - 'Geekbench Multi-Core Score': 2741 - 'UserBenchmark CPU Score': '65.2' isPart: true type: CPU humanName: 'Core i5-4430' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml index 6c17da0c..883f0a9d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 941 - 'Geekbench Multi-Core Score': 2662 isPart: true type: CPU humanName: 'Core i5-4430S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml index c8857422..4e1593df 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1006 - 'Geekbench Multi-Core Score': 2824 - 'UserBenchmark CPU Score': '61.3' isPart: true type: CPU humanName: 'Core i5-4440' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml index 78caea4a..350b954b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1029 - 'Geekbench Multi-Core Score': 2893 - '3DMark Fire Strike Physics Score': 1741 - 'UserBenchmark CPU Score': '62.1' isPart: true type: CPU humanName: 'Core i5-4460' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml index 02c467cc..c7f48ed4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 968 - 'Geekbench Multi-Core Score': 2740 - 'UserBenchmark CPU Score': '66.1' isPart: true type: CPU humanName: 'Core i5-4460S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml index 4f1e311c..b25288e2 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 749 - 'Geekbench Multi-Core Score': 2096 isPart: true type: CPU humanName: 'Core i5-4460T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml index 8966653a..aab75632 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1051 - 'Geekbench Multi-Core Score': 2991 - 'UserBenchmark CPU Score': '62.4' isPart: true type: CPU humanName: 'Core i5-4570' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml index 694e757e..f277d744 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1036 - 'Geekbench Multi-Core Score': 2864 - 'UserBenchmark CPU Score': '66.2' isPart: true type: CPU humanName: 'Core i5-4570S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml index 78904397..488d37fa 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1030 - 'Geekbench Multi-Core Score': 1994 - 'UserBenchmark CPU Score': '57.7' isPart: true type: CPU humanName: 'Core i5-4570T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml index a052000b..6d397e85 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1099 - 'Geekbench Multi-Core Score': 3097 - '3DMark Fire Strike Physics Score': 1882 - 'UserBenchmark CPU Score': '63.5' isPart: true type: CPU humanName: 'Core i5-4590' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml index bcb67866..e479c79f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1074 - 'Geekbench Multi-Core Score': 2905 - 'UserBenchmark CPU Score': '67.1' isPart: true type: CPU humanName: 'Core i5-4590S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml index 59a997c7..12382bd0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 884 - 'Geekbench Multi-Core Score': 2481 isPart: true type: CPU humanName: 'Core i5-4590T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml index d0044800..1031a53a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1143 - 'Geekbench Multi-Core Score': 3191 - 'UserBenchmark CPU Score': '66.5' isPart: true type: CPU humanName: 'Core i5-4670' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml index c812d598..88d496a6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1237 - 'Geekbench Multi-Core Score': 3484 - '3DMark Fire Strike Physics Score': 2144 - 'UserBenchmark CPU Score': '68' isPart: true type: CPU humanName: 'Core i5-4670K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml index 471a2aae..7e2704b7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1119 - 'Geekbench Multi-Core Score': 3190 - 'UserBenchmark CPU Score': '72.4' isPart: true type: CPU humanName: 'Core i5-4670S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml index 2e7943fe..454c6ce7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1007 - 'Geekbench Multi-Core Score': 2794 isPart: true type: CPU humanName: 'Core i5-4670T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml index 4c5d3f80..52fd44b9 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1148 - 'Geekbench Multi-Core Score': 3237 - 'UserBenchmark CPU Score': '67.1' isPart: true type: CPU humanName: 'Core i5-4690' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml index 32f3aa9f..c8529dd9 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1114 - 'Geekbench Multi-Core Score': 3374 isPart: true type: CPU humanName: 'Core i5-4690S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml index 25e6c47c..a7e1ec54 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 899 - 'Geekbench Multi-Core Score': 2855 isPart: true type: CPU humanName: 'Core i7-4765T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml index eaf52d81..f113030b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1149 - 'Geekbench Multi-Core Score': 3680 - '3DMark Fire Strike Physics Score': 2360 - 'UserBenchmark CPU Score': '70.5' isPart: true type: CPU humanName: 'Core i7-4770' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml index abb0746b..40743811 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1237 - 'Geekbench Multi-Core Score': 4000 - '3DMark Fire Strike Physics Score': 2575 - 'UserBenchmark CPU Score': '73.6' isPart: true type: CPU humanName: 'Core i7-4770K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml index 75e942fa..64e34169 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1113 - 'Geekbench Multi-Core Score': 3560 - 'UserBenchmark CPU Score': '71.2' isPart: true type: CPU humanName: 'Core i7-4770S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml index 2d30e67b..07cbeb81 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1088 - 'Geekbench Multi-Core Score': 2992 - 'UserBenchmark CPU Score': '70.3' isPart: true type: CPU humanName: 'Core i7-4770T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml index 33d8f6e6..0f4e5573 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1169 - 'Geekbench Multi-Core Score': 3873 - 'UserBenchmark CPU Score': '73.5' isPart: true type: CPU humanName: 'Core i7-4771' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml index 8314fcd1..1111f1b5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 910 - 'Geekbench Multi-Core Score': 2974 isPart: true type: CPU humanName: 'Core i7-4785T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml index 751bf125..dc129a86 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1188 - 'Geekbench Multi-Core Score': 3802 - '3DMark Fire Strike Physics Score': 2431 - 'UserBenchmark CPU Score': '71.4' isPart: true type: CPU humanName: 'Core i7-4790' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml index ce5f184f..36ef6990 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1166 - 'Geekbench Multi-Core Score': 3647 - 'UserBenchmark CPU Score': '71.8' isPart: true type: CPU humanName: 'Core i7-4790S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml index 647e8e8e..43de522b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1119 - 'Geekbench Multi-Core Score': 3296 - 'UserBenchmark CPU Score': '70.9' isPart: true type: CPU humanName: 'Core i7-4790T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml index e28a0902..f426758f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 531 - 'Geekbench Multi-Core Score': 905 - 'UserBenchmark CPU Score': '48.3' isPart: true type: CPU humanName: 'Pentium G3220' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml index df29062f..40806b6f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 470 - 'Geekbench Multi-Core Score': 819 isPart: true type: CPU humanName: 'Pentium G3220T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml index e1606f92..18d36fa3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 546 - 'Geekbench Multi-Core Score': 962 - 'UserBenchmark CPU Score': '50.2' isPart: true type: CPU humanName: 'Pentium G3240' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml index c627e4c1..b0dbf793 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 570 - 'Geekbench Multi-Core Score': 978 - 'UserBenchmark CPU Score': '51.2' isPart: true type: CPU humanName: 'Pentium G3250' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml index 0491329e..5cd26286 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 521 - 'Geekbench Multi-Core Score': 901 isPart: true type: CPU humanName: 'Pentium G3250T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml index dd9e09e2..478abf8d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 617 - 'Geekbench Multi-Core Score': 1086 - 'UserBenchmark CPU Score': '52.6' Unlocked: 'yes' isPart: true type: CPU diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml index 961eb433..3a03a795 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 587 - 'Geekbench Multi-Core Score': 994 - 'UserBenchmark CPU Score': '51.8' isPart: true type: CPU humanName: 'Pentium G3260' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml index cd44bd74..b2d3e813 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '53.5' isPart: true type: CPU humanName: 'Pentium G3420' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml index 3f31134b..fee791a3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '56.5' isPart: true type: CPU humanName: 'Pentium G3430' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml index 18869e0a..ac0cc492 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '57.1' isPart: true type: CPU humanName: 'Pentium G3440' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml index 1107e490..1c8adc26 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '56' isPart: true type: CPU humanName: 'Pentium G3450' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml index 9142f13a..ab7c6001 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.69921875 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '57.6' isPart: true type: CPU humanName: 'Pentium G3460' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml index a75e623e..0a1b68b8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '1.7001953125 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '59.1' isPart: true type: CPU humanName: 'Pentium G3470' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml index 3818578a..50b36102 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 631 - 'Geekbench Multi-Core Score': 2284 - 'UserBenchmark CPU Score': '71.8' isPart: true type: CPU humanName: 'Core i7-4820K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml index 00f8f833..36e980f6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 657 - 'Geekbench Multi-Core Score': 3301 - 'UserBenchmark CPU Score': '76.9' isPart: true type: CPU humanName: 'Core i7-4930K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml index 62d5818f..3ebba80d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 650 - 'Geekbench Multi-Core Score': 3302 - 'UserBenchmark CPU Score': '78.4' isPart: true type: CPU humanName: 'Core i7-4960X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml index 341e944e..bf2796fd 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 519 - 'Geekbench Multi-Core Score': 1049 - 'UserBenchmark CPU Score': '57.2' isPart: true type: CPU humanName: 'Core i3-3210' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml index 28101770..20de8fc6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 527 - 'Geekbench Multi-Core Score': 1105 - 'UserBenchmark CPU Score': '52.1' isPart: true type: CPU humanName: 'Core i3-3220' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml index 23672896..1fd2f07c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 446 - 'Geekbench Multi-Core Score': 956 - 'UserBenchmark CPU Score': '54.6' isPart: true type: CPU humanName: 'Core i3-3220T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml index 540f2451..0f5c974a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 548 - 'Geekbench Multi-Core Score': 1153 - 'UserBenchmark CPU Score': '58.5' isPart: true type: CPU humanName: 'Core i3-3225' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml index 10c7f630..d8661401 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 544 - 'Geekbench Multi-Core Score': 1121 - 'UserBenchmark CPU Score': '55.1' isPart: true type: CPU humanName: 'Core i3-3240' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml index c4b272ce..adb6000f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 431 - 'Geekbench Multi-Core Score': 937 - 'UserBenchmark CPU Score': '58.7' isPart: true type: CPU humanName: 'Core i3-3250' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml index 58365f45..0c6bcd25 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 551 - 'Geekbench Multi-Core Score': 1607 - 'UserBenchmark CPU Score': '61.3' isPart: true type: CPU humanName: 'Core i5-3330' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml index 8d43591d..48f830f8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 550 - 'Geekbench Multi-Core Score': 1632 - 'UserBenchmark CPU Score': '64.1' isPart: true type: CPU humanName: 'Core i5-3330S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml index 38aff194..1cd5e1d8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 560 - 'Geekbench Multi-Core Score': 1560 - 'UserBenchmark CPU Score': '66.1' isPart: true type: CPU humanName: 'Core i5-3340' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml index 06d4920a..29282f1d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 583 - 'Geekbench Multi-Core Score': 1714 isPart: true type: CPU humanName: 'Core i5-3340S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml index 139536af..eeaee656 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 562 - 'Geekbench Multi-Core Score': 1622 - 'UserBenchmark CPU Score': '65.3' isPart: true type: CPU humanName: 'Core i5-3350P' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml index 8a490f9d..6cd3a413 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 613 - 'Geekbench Multi-Core Score': 1825 - 'UserBenchmark CPU Score': '66.3' isPart: true type: CPU humanName: 'Core i5-3450' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml index 893ac5b5..84116417 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 589 - 'Geekbench Multi-Core Score': 1693 - 'UserBenchmark CPU Score': '68.9' isPart: true type: CPU humanName: 'Core i5-3450S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml index fe77fa21..342933e7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 620 - 'Geekbench Multi-Core Score': 1837 - 'UserBenchmark CPU Score': '63.1' isPart: true type: CPU humanName: 'Core i5-3470' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml index aa992859..15912c3f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 610 - 'Geekbench Multi-Core Score': 1760 - 'UserBenchmark CPU Score': '65.3' isPart: true type: CPU humanName: 'Core i5-3470S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml index b32cef54..7e07467f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 579 - 'Geekbench Multi-Core Score': 1150 - 'UserBenchmark CPU Score': '55.8' isPart: true type: CPU humanName: 'Core i5-3470T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml index 947c015c..5761f7d4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 588 - 'Geekbench Multi-Core Score': 1642 - 'UserBenchmark CPU Score': '68.5' isPart: true type: CPU humanName: 'Core i5-3475S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml index 9b90bacb..e87b3183 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 643 - 'Geekbench Multi-Core Score': 1916 - 'UserBenchmark CPU Score': '68.6' isPart: true type: CPU humanName: 'Core i5-3550' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml index a7fcee24..2e3b66f4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 655 - 'Geekbench Multi-Core Score': 1930 - 'UserBenchmark CPU Score': '65.1' isPart: true type: CPU humanName: 'Core i5-3570' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml index 45df5361..1be3b1f6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml @@ -20,10 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 686 - 'Geekbench Multi-Core Score': 2071 - '3DMark Fire Strike Physics Score': 1695 - 'UserBenchmark CPU Score': '67.6' isPart: true type: CPU humanName: 'Core i5-3570K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml index a2433551..f0580e92 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 654 - 'Geekbench Multi-Core Score': 1928 isPart: true type: CPU humanName: 'Core i5-3570S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml index 540cf46c..631d81e6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml @@ -20,10 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 669 - 'Geekbench Multi-Core Score': 2285 - '3DMark Fire Strike Physics Score': 1988 - 'UserBenchmark CPU Score': '69' isPart: true type: CPU humanName: 'Core i7-3770' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml index 989503c5..ed18cfc7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml @@ -20,10 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 695 - 'Geekbench Multi-Core Score': 2416 - '3DMark Fire Strike Physics Score': 2159 - 'UserBenchmark CPU Score': '72.4' isPart: true type: CPU humanName: 'Core i7-3770K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml index add891d6..498739de 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 672 - 'Geekbench Multi-Core Score': 2220 - 'UserBenchmark CPU Score': '69.3' isPart: true type: CPU humanName: 'Core i7-3770S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml index 0e8655a2..28581000 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'UserBenchmark CPU Score': '50.6' isPart: true type: CPU humanName: 'Pentium G2010' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml index 4c645029..d06109e4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 489 - 'Geekbench Multi-Core Score': 836 - 'UserBenchmark CPU Score': '48.9' isPart: true type: CPU humanName: 'Pentium G2020' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml index 6ca770b4..08939541 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 458 - 'Geekbench Multi-Core Score': 766 - 'UserBenchmark CPU Score': '48.9' isPart: true type: CPU humanName: 'Pentium G2030' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml index 9b30487c..7ea9e412 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'UserBenchmark CPU Score': '52.6' isPart: true type: CPU humanName: 'Pentium G2120' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml index 7a3b2be0..30ca045e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'UserBenchmark CPU Score': '53.6' isPart: true type: CPU humanName: 'Pentium G2130' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml index f4a11774..cf1b1416 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1203 - 'Geekbench Multi-Core Score': 2365 - 'UserBenchmark CPU Score': '57' isPart: true type: CPU humanName: 'Core i3-7100' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml index ba388f73..def3302c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1100 - 'Geekbench Multi-Core Score': 2222 - 'UserBenchmark CPU Score': '60.5' isPart: true type: CPU humanName: 'Core i3-7100T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml index 200502ff..4ceb9abd 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '68.6' isPart: true type: CPU humanName: 'Core i3-7101E' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml index 2caf2ac0..a9cdda33 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '70' isPart: true type: CPU humanName: 'Core i3-7300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml index f395f211..645099d7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '66.8' isPart: true type: CPU humanName: 'Core i3-7300T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml index 93ba3e0a..ce91162e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '73.2' isPart: true type: CPU humanName: 'Core i3-7320' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml index f64691f8..84998ff5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '71.5' isPart: true type: CPU humanName: 'Core i3-7350K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml index e7aced6b..187ba5bc 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1142 - 'Geekbench Multi-Core Score': 3145 - '3DMark Fire Strike Physics Score': 2092 - 'UserBenchmark CPU Score': '63.5' isPart: true type: CPU humanName: 'Core i5-7400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml index 78f6fcfb..6573d05a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 997 - 'Geekbench Multi-Core Score': 2762 - 'UserBenchmark CPU Score': '65.3' isPart: true type: CPU humanName: 'Core i5-7400T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml index 650d763b..d58904ae 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1255 - 'Geekbench Multi-Core Score': 3424 - '3DMark Fire Strike Physics Score': 2302 - 'UserBenchmark CPU Score': '66.8' isPart: true type: CPU humanName: 'Core i5-7500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml index 9a370a99..0bd27b47 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1100 - 'Geekbench Multi-Core Score': 3050 - 'UserBenchmark CPU Score': '66.3' isPart: true type: CPU humanName: 'Core i5-7500T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml index 16865c99..0f89cf0f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1336 - 'Geekbench Multi-Core Score': 3743 - 'UserBenchmark CPU Score': '72' isPart: true type: CPU humanName: 'Core i5-7600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml index 9dd84c5e..47ae1815 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1469 - 'Geekbench Multi-Core Score': 4124 - '3DMark Fire Strike Physics Score': 2740 - 'UserBenchmark CPU Score': '75.8' isPart: true type: CPU humanName: 'Core i5-7600K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml index 0d279012..bfc594dc 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1167 - 'Geekbench Multi-Core Score': 3374 - 'UserBenchmark CPU Score': '75.1' isPart: true type: CPU humanName: 'Core i5-7600T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml index 8a838a66..c73b6942 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'UserBenchmark CPU Score': '84.1' isPart: true type: CPU humanName: 'Core i5-7640X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml index 80fae646..a680cf63 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1362 - 'Geekbench Multi-Core Score': 4436 - '3DMark Fire Strike Physics Score': 3078 - 'UserBenchmark CPU Score': '76.2' isPart: true type: CPU humanName: 'Core i7-7700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml index 859b5659..1cdbba37 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1536 - 'Geekbench Multi-Core Score': 5055 - '3DMark Fire Strike Physics Score': 3498 - 'UserBenchmark CPU Score': '84' isPart: true type: CPU humanName: 'Core i7-7700K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml index c358aa59..1810c260 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1139 - 'Geekbench Multi-Core Score': 3383 - 'UserBenchmark CPU Score': '71.7' isPart: true type: CPU humanName: 'Core i7-7700T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml index e77c2ab9..397dca62 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1536 - 'Geekbench Multi-Core Score': 4950 - 'UserBenchmark CPU Score': '87' isPart: true type: CPU humanName: 'Core i7-7740X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml index 6342129b..ed8a1a71 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 696 - 'Geekbench Multi-Core Score': 1453 - 'UserBenchmark CPU Score': '57.3' isPart: true type: CPU humanName: 'Pentium G4560' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml index 12a008b0..bc1ad568 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '60.2' isPart: true type: CPU humanName: 'Pentium G4560T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml index 4f09b757..de85e74e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 722 - 'Geekbench Multi-Core Score': 1512 - 'UserBenchmark CPU Score': '62.9' isPart: true type: CPU humanName: 'Pentium G4600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml index d59aa0f0..49dafee8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '66.7' isPart: true type: CPU humanName: 'Pentium G4620' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml index a7828740..d6f6b959 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 435 - 'Geekbench Multi-Core Score': 1224 - 'UserBenchmark CPU Score': '61.5' isPart: true type: CPU humanName: 'Core i5-750' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml index 624a96a3..920110dd 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 462 - 'Geekbench Multi-Core Score': 1291 - 'UserBenchmark CPU Score': '63.6' isPart: true type: CPU humanName: 'Core i5-760' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml index 9dfb3e29..83368a0b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 447 - 'Geekbench Multi-Core Score': 1491 - 'UserBenchmark CPU Score': '64.2' isPart: true type: CPU humanName: 'Core i7-860' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml index 57e780c1..51493080 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 483 - 'Geekbench Multi-Core Score': 1560 - 'UserBenchmark CPU Score': '66.1' isPart: true type: CPU humanName: 'Core i7-870' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml index 4f7362ba..0e5007d1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 505 - 'Geekbench Multi-Core Score': 1760 isPart: true type: CPU humanName: 'Core i7-875K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml index f62939d6..22cd30b0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '70.6' isPart: true type: CPU humanName: 'Core i7-880' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml index 1e734ff8..4697d1f5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20.3' isPart: true type: CPU humanName: 'Atom D410' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml index a3879f4c..f32f86a3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20' isPart: true type: CPU humanName: 'Atom D510' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml index 5eb44e04..06ff0ac2 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '22.9' isPart: true type: CPU humanName: 'Atom D525' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml index 62e84eaa..4bb9dca7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 613 - 'Geekbench Multi-Core Score': 2338 - 'UserBenchmark CPU Score': '69.5' isPart: true type: CPU humanName: 'Core i7-3820' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml index 6dcce3d1..10dc7ecb 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 603 - 'Geekbench Multi-Core Score': 2997 - 'UserBenchmark CPU Score': '74.4' isPart: true type: CPU humanName: 'Core i7-3930K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml index 3b76933e..2e9c66f9 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 676 - 'Geekbench Multi-Core Score': 3369 - 'UserBenchmark CPU Score': '77.7' isPart: true type: CPU humanName: 'Core i7-3960X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml index f4e75014..7e562774 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 610 - 'Geekbench Multi-Core Score': 3137 - 'UserBenchmark CPU Score': '77.9' isPart: true type: CPU humanName: 'Core i7-3970X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml index 3dfecf26..b0498a80 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 477 - 'Geekbench Multi-Core Score': 977 - 'UserBenchmark CPU Score': '50.9' isPart: true type: CPU humanName: 'Core i3-2100' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml index 2c14ac3c..eb636be3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 491 - 'Geekbench Multi-Core Score': 962 - 'UserBenchmark CPU Score': '58.5' isPart: true type: CPU humanName: 'Core i3-2105' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml index bbe530c4..210b61e3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 504 - 'Geekbench Multi-Core Score': 1036 - 'UserBenchmark CPU Score': '50.7' isPart: true type: CPU humanName: 'Core i3-2120' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml index c9c7e3cb..63aa71c1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '53.3' isPart: true type: CPU humanName: 'Core i3-2120T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml index 9a0c3e11..b73893d4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '60.3' isPart: true type: CPU humanName: 'Core i3-2125' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml index fecc2fd5..727acef5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 529 - 'Geekbench Multi-Core Score': 1073 - 'UserBenchmark CPU Score': '57.5' isPart: true type: CPU humanName: 'Core i3-2130' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml index 8d43a89c..29bb3a48 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 511 - 'Geekbench Multi-Core Score': 1495 - 'UserBenchmark CPU Score': '64' isPart: true type: CPU humanName: 'Core i5-2300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml index 1c444024..1a709779 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 517 - 'Geekbench Multi-Core Score': 1495 - 'UserBenchmark CPU Score': '64.8' isPart: true type: CPU humanName: 'Core i5-2310' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml index 3798c070..3bad457a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 523 - 'Geekbench Multi-Core Score': 1486 - 'UserBenchmark CPU Score': '63.9' isPart: true type: CPU humanName: 'Core i5-2320' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml index 66e2bb86..357ab7d8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 559 - 'Geekbench Multi-Core Score': 1625 - 'UserBenchmark CPU Score': '60.6' isPart: true type: CPU humanName: 'Core i5-2400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml index f39aa76d..9dbd8b97 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 500 - 'Geekbench Multi-Core Score': 1365 - 'UserBenchmark CPU Score': '60.4' isPart: true type: CPU humanName: 'Core i5-2400S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml index bcc569d0..f61736aa 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 518 - 'Geekbench Multi-Core Score': 1381 - 'UserBenchmark CPU Score': '63.9' isPart: true type: CPU humanName: 'Core i5-2405S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml index a6a4533d..9ee2532d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '70.9' isPart: true type: CPU humanName: 'Core i5-2450P' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml index 267655d0..52db9679 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 585 - 'Geekbench Multi-Core Score': 1717 - 'UserBenchmark CPU Score': '62.9' isPart: true type: CPU humanName: 'Core i5-2500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml index 2e904f5c..a44cee46 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml @@ -20,10 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 636 - 'Geekbench Multi-Core Score': 1907 - '3DMark Fire Strike Physics Score': 1575 - 'UserBenchmark CPU Score': '65.9' isPart: true type: CPU humanName: 'Core i5-2500K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml index d71b2d81..628546e8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 605 - 'Geekbench Multi-Core Score': 1527 - 'UserBenchmark CPU Score': '64.3' isPart: true type: CPU humanName: 'Core i5-2500S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml index 2a5be9a5..86ab353f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 581 - 'Geekbench Multi-Core Score': 1661 - 'UserBenchmark CPU Score': '73.9' isPart: true type: CPU humanName: 'Core i5-2550K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml index 504ea039..7f8d4e4a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'Geekbench Single-Core Score': 609 - 'Geekbench Multi-Core Score': 2040 - 'UserBenchmark CPU Score': '67.1' isPart: true type: CPU humanName: 'Core i7-2600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml index 22cec1a8..3b55401f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml @@ -20,10 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'Geekbench Single-Core Score': 662 - 'Geekbench Multi-Core Score': 2310 - '3DMark Fire Strike Physics Score': 1870 - 'UserBenchmark CPU Score': '70.6' isPart: true type: CPU humanName: 'Core i7-2600K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml index c038d6ed..95d8dea3 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'Geekbench Single-Core Score': 595 - 'Geekbench Multi-Core Score': 1831 - 'UserBenchmark CPU Score': '67' isPart: true type: CPU humanName: 'Core i7-2600S' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml index 1418d83d..310dc2d6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'Geekbench Single-Core Score': 664 - 'Geekbench Multi-Core Score': 2303 - 'UserBenchmark CPU Score': '73' isPart: true type: CPU humanName: 'Core i7-2700K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml index 72d83699..f99f7024 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 390 - 'Geekbench Multi-Core Score': 701 - 'UserBenchmark CPU Score': '46.4' isPart: true type: CPU humanName: 'Pentium G620' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml index 079c0f76..f374e406 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 395 - 'Geekbench Multi-Core Score': 689 - 'UserBenchmark CPU Score': '47.3' isPart: true type: CPU humanName: 'Pentium G630' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml index 431494d3..acf33a86 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '48.3' isPart: true type: CPU humanName: 'Pentium G640' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml index 7e8c94ef..a6c48d2d 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 453 - 'Geekbench Multi-Core Score': 789 - 'UserBenchmark CPU Score': '49.9' isPart: true type: CPU humanName: 'Pentium G645' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml index f6d4bfba..9dac1895 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 444 - 'Geekbench Multi-Core Score': 736 - 'UserBenchmark CPU Score': '51.3' isPart: true type: CPU humanName: 'Pentium G840' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml index 3c489c0a..45f84f9e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 440 - 'Geekbench Multi-Core Score': 754 - 'UserBenchmark CPU Score': '50.9' isPart: true type: CPU humanName: 'Pentium G850' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml index 990a9316..9b165df1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 484 - 'Geekbench Multi-Core Score': 771 - 'UserBenchmark CPU Score': '51.4' isPart: true type: CPU humanName: 'Pentium G860' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml index c753648a..d373c1fb 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '52.4' isPart: true type: CPU humanName: 'Pentium G870' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml index 2ced542a..517d5aa4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1122 - 'Geekbench Multi-Core Score': 2224 - 'UserBenchmark CPU Score': '62' isPart: true type: CPU humanName: 'Core i3-6098P' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml index 2d4646d0..f2cdeaf8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1172 - 'Geekbench Multi-Core Score': 2284 - 'UserBenchmark CPU Score': '55.4' isPart: true type: CPU humanName: 'Core i3-6100' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml index 21150418..a269352c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1021 - 'Geekbench Multi-Core Score': 2059 - 'UserBenchmark CPU Score': '57.6' isPart: true type: CPU humanName: 'Core i3-6100T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml index 8e8e1d38..5192d5fe 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '66.7' isPart: true type: CPU humanName: 'Core i3-6300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml index 7555a437..0e7da575 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1106 - 'Geekbench Multi-Core Score': 2310 - 'UserBenchmark CPU Score': '65.2' isPart: true type: CPU humanName: 'Core i3-6300T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml index a729a76b..e55cd4a7 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1226 - 'Geekbench Multi-Core Score': 2522 - 'UserBenchmark CPU Score': '69.4' isPart: true type: CPU humanName: 'Core i3-6320' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml index 26e16881..208a0515 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1089 - 'Geekbench Multi-Core Score': 2980 - 'UserBenchmark CPU Score': '60.8' isPart: true type: CPU humanName: 'Core i5-6400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml index 8ca157df..ed656dc0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 918 - 'Geekbench Multi-Core Score': 2491 isPart: true type: CPU humanName: 'Core i5-6400T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml index d38d2752..b80e8197 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1082 - 'Geekbench Multi-Core Score': 2989 isPart: true type: CPU humanName: 'Core i5-6402P' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml index 22138870..3064b558 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1146 - 'Geekbench Multi-Core Score': 3152 - '3DMark Fire Strike Physics Score': 2126 - 'UserBenchmark CPU Score': '63.6' isPart: true type: CPU humanName: 'Core i5-6500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml index 5dd4a0f4..1a473359 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1011 - 'Geekbench Multi-Core Score': 2751 isPart: true type: CPU humanName: 'Core i5-6500T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml index 9306ef9a..066c04b8 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1268 - 'Geekbench Multi-Core Score': 3488 - 'UserBenchmark CPU Score': '67.6' isPart: true type: CPU humanName: 'Core i5-6600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml index 0d53b4f8..203fe09a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1384 - 'Geekbench Multi-Core Score': 3952 - '3DMark Fire Strike Physics Score': 2600 - 'UserBenchmark CPU Score': '72.4' isPart: true type: CPU humanName: 'Core i5-6600K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml index 0185e055..014e80b0 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1168 - 'Geekbench Multi-Core Score': 3198 - 'UserBenchmark CPU Score': '72.9' isPart: true type: CPU humanName: 'Core i5-6600T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml index 6abd0a14..8621f192 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1262 - 'Geekbench Multi-Core Score': 4060 - '3DMark Fire Strike Physics Score': 2834 - 'UserBenchmark CPU Score': '72.3' isPart: true type: CPU humanName: 'Core i7-6700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml index 62cb78a6..f2ea2d87 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1443 - 'Geekbench Multi-Core Score': 4815 - '3DMark Fire Strike Physics Score': 3252 - 'UserBenchmark CPU Score': '80.8' isPart: true type: CPU humanName: 'Core i7-6700K' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml index 5cb8b4b9..79abef84 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1169 - 'Geekbench Multi-Core Score': 3505 - 'UserBenchmark CPU Score': '69.9' isPart: true type: CPU humanName: 'Core i7-6700T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml index 19a8bc2d..ea1726b5 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1310 - 'Geekbench Multi-Core Score': 6066 - 'UserBenchmark CPU Score': '77.9' isPart: true type: CPU humanName: 'Core i7-7800X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml index 4f0bfe51..5e63bcd1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1375 - 'Geekbench Multi-Core Score': 7573 - '3DMark Fire Strike Physics Score': 5930 - 'UserBenchmark CPU Score': '80.1' isPart: true type: CPU humanName: 'Core i7-7820X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml index 6b93bdaf..c4c45dc4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1381 - 'Geekbench Multi-Core Score': 7592 - 'UserBenchmark CPU Score': '82.9' isPart: true type: CPU humanName: 'Core i7-9800X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml index 2b5cdc74..29cc6864 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml @@ -18,10 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1417 - 'Geekbench Multi-Core Score': 8964 - '3DMark Fire Strike Physics Score': 7329 - 'UserBenchmark CPU Score': '81.9' isPart: true type: CPU humanName: 'Core i9-7900X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml index 98fd5e42..50611cf1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1331 - 'Geekbench Multi-Core Score': 8895 - 'UserBenchmark CPU Score': '81.6' isPart: true type: CPU humanName: 'Core i9-7920X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml index 6c671de6..42290c11 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml @@ -15,9 +15,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1339 - 'Geekbench Multi-Core Score': 9675 - 'UserBenchmark CPU Score': '83.3' isPart: true type: CPU humanName: 'Core i9-7940X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml index f53b72b4..1ce9ec76 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml @@ -15,9 +15,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1411 - 'Geekbench Multi-Core Score': 10302 - 'UserBenchmark CPU Score': '83.2' isPart: true type: CPU humanName: 'Core i9-7960X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml index 6c3aeed1..72d10521 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml @@ -15,10 +15,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1545 - 'Geekbench Multi-Core Score': 12175 - '3DMark Fire Strike Physics Score': 11005 - 'UserBenchmark CPU Score': '80.1' isPart: true type: CPU humanName: 'Core i9-7980XE' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml index 06045dc6..13bf7e8a 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml @@ -16,7 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'UserBenchmark CPU Score': '81.9' isPart: true type: CPU humanName: 'Core i9-9820X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml index 4cca6a71..791a6cb6 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1430 - 'Geekbench Multi-Core Score': 9029 - 'UserBenchmark CPU Score': '83.7' isPart: true type: CPU humanName: 'Core i9-9900X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml index 7bcac700..964e2d9c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1452 - 'Geekbench Multi-Core Score': 10377 - 'UserBenchmark CPU Score': '86.4' isPart: true type: CPU humanName: 'Core i9-9920X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml index 5c59a661..5f46f23e 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1387 - 'Geekbench Multi-Core Score': 10152 - 'UserBenchmark CPU Score': '85.4' isPart: true type: CPU humanName: 'Core i9-9940X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml index ee75d092..fa58144b 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1387 - 'Geekbench Multi-Core Score': 10629 - 'UserBenchmark CPU Score': '84.9' isPart: true type: CPU humanName: 'Core i9-9960X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml index e562d0c8..74fbd729 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml @@ -16,9 +16,6 @@ data: Socket: FCLGA2066 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1392 - 'Geekbench Multi-Core Score': 10798 - 'UserBenchmark CPU Score': '83' isPart: true type: CPU humanName: 'Core i9-9980XE' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml index 3ac82880..5e0e57fb 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 692 - 'Geekbench Multi-Core Score': 1187 - 'UserBenchmark CPU Score': '47.5' isPart: true type: CPU humanName: 'Pentium G4400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml index 91f86ed6..c6b54674 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 615 - 'Geekbench Multi-Core Score': 1069 isPart: true type: CPU humanName: 'Pentium G4400T' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml index 24159e4e..90671db4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '56.3' isPart: true type: CPU humanName: 'Pentium G4500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml index c0bd4f29..d10a80e1 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '60.1' isPart: true type: CPU humanName: 'Pentium G4520' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml index 000c9228..78126bcd 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml @@ -16,8 +16,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1417 - 'Geekbench Multi-Core Score': 12107 isPart: true type: CPU humanName: 'Xeon W-3175X' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml index a904d290..c6c5fcff 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml @@ -14,9 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 272 - 'Geekbench Multi-Core Score': 442 - 'UserBenchmark CPU Score': '36' isPart: true type: CPU humanName: 'Pentium E5200' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml index 2f6b5612..0517f1bf 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml @@ -14,7 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '35.9' isPart: true type: CPU humanName: 'Pentium E5300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml index 200808ac..d98dea90 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml @@ -14,9 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 252 - 'Geekbench Multi-Core Score': 437 - 'UserBenchmark CPU Score': '36.2' isPart: true type: CPU humanName: 'Pentium E5400' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml index f5ee6961..ff2adb2c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml @@ -14,9 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 283 - 'Geekbench Multi-Core Score': 460 - 'UserBenchmark CPU Score': '36.6' isPart: true type: CPU humanName: 'Pentium E5500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml index be9356d3..73b36368 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml @@ -14,9 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 343 - 'Geekbench Multi-Core Score': 553 - 'UserBenchmark CPU Score': '36.5' isPart: true type: CPU humanName: 'Pentium E5700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml index e1b68f8b..a97cd2e4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml @@ -14,9 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 365 - 'Geekbench Multi-Core Score': 568 - 'UserBenchmark CPU Score': '37.5' isPart: true type: CPU humanName: 'Pentium E5800' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml index e8c35910..24f835f4 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml @@ -14,7 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '37.8' isPart: true type: CPU humanName: 'Pentium E6300' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml index 1c3a62ab..acb2b74c 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml @@ -14,7 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '39.2' isPart: true type: CPU humanName: 'Pentium E6500' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml index 1c4454ee..c9e54468 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml @@ -14,7 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '39' isPart: true type: CPU humanName: 'Pentium E6600' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml index 22b43b17..702d5b1f 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml @@ -14,7 +14,6 @@ data: AES: false 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '39.6' isPart: true type: CPU humanName: 'Pentium E6700' diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml index 3df8a222..32e103aa 100644 --- a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml +++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml @@ -15,7 +15,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '40.7' isPart: true type: CPU humanName: 'Pentium E6800' diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml index c1a5583f..56e077eb 100644 --- a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml +++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1000 MHz' - 'Geekbench Single-Core Score': 516 - 'Geekbench Multi-Core Score': 1814 isPart: true type: CPU humanName: 'Core i7-3610QE' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml index 8f067273..cb4b5122 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '57.7' isPart: true type: CPU humanName: 'Core i5-10210Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml index c3bbafe5..f5a56492 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '48.6' isPart: true type: CPU humanName: 'Core i5-8200Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml index 67882d66..35a28a01 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 943 - 'Geekbench Multi-Core Score': 1684 - 'UserBenchmark CPU Score': '48.5' isPart: true type: CPU humanName: 'Core i5-8210Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml index d68179e4..e5a81e41 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '56.5' isPart: true type: CPU humanName: 'Core i7-10510Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml index e5b90634..6b6d1733 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '50.1' isPart: true type: CPU humanName: 'Core i7-8500Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml index 40ea6cbb..1f3ac581 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '47.4' isPart: true type: CPU humanName: 'Core m3-8100Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml index bd69e426..9fe9c6f8 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml @@ -20,9 +20,6 @@ data: 'Maximum VRAM Capacity': '8 GiB' 'DirectX Support': '0' 'OpenGL Support': 'Yes' - 'Geekbench Single-Core Score': 267 - 'Geekbench Multi-Core Score': 686 - 'UserBenchmark CPU Score': '29.8' isPart: true type: CPU humanName: 'Pentium N4200' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml index a4390926..1af7728b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'Geekbench Single-Core Score': 275 - 'Geekbench Multi-Core Score': 594 isPart: true type: CPU humanName: 'Core i3-330M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml index 7a9b0451..3c02ba79 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'Geekbench Single-Core Score': 283 - 'Geekbench Multi-Core Score': 593 isPart: true type: CPU humanName: 'Core i3-350M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml index 400bdd96..c3bb9575 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'Geekbench Single-Core Score': 314 - 'Geekbench Multi-Core Score': 630 isPart: true type: CPU humanName: 'Core i3-370M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml index 9e4c1409..12fac545 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'Geekbench Single-Core Score': 324 - 'Geekbench Multi-Core Score': 602 isPart: true type: CPU humanName: 'Core i3-380M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml index a9a5d678..106994bf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 314 - 'Geekbench Multi-Core Score': 674 isPart: true type: CPU humanName: 'Core i5-430M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml index b6f66015..7ecb4ae0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 348 - 'Geekbench Multi-Core Score': 676 isPart: true type: CPU humanName: 'Core i5-450M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml index 49e8cb14..677c86ed 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 349 - 'Geekbench Multi-Core Score': 678 isPart: true type: CPU humanName: 'Core i5-460M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml index f1afcc73..6885286f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 380 - 'Geekbench Multi-Core Score': 739 isPart: true type: CPU humanName: 'Core i5-480M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml index 8fabcec6..654ea7bb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 368 - 'Geekbench Multi-Core Score': 741 isPart: true type: CPU humanName: 'Core i5-520M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml index 39c58dea..bdefc0f9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 357 - 'Geekbench Multi-Core Score': 686 isPart: true type: CPU humanName: 'Core i5-540M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml index 24e2e7ec..876fc415 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 405 - 'Geekbench Multi-Core Score': 752 isPart: true type: CPU humanName: 'Core i5-560M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml index 43096908..b01affc3 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 436 - 'Geekbench Multi-Core Score': 771 isPart: true type: CPU humanName: 'Core i5-580M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml index ecd23e14..f86d1399 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 450 - 'Geekbench Multi-Core Score': 849 isPart: true type: CPU humanName: 'Core i7-620M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml index 3f34fd90..adc35229 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml @@ -21,8 +21,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '766 MHz' - 'Geekbench Single-Core Score': 339 - 'Geekbench Multi-Core Score': 708 isPart: true type: CPU humanName: 'Core i7-640M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml index 1cd88d6f..f2251adb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml @@ -19,7 +19,6 @@ data: - x86-64 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'UserBenchmark CPU Score': '35.2' isPart: true type: CPU humanName: 'Pentium P6100' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml index 06e05620..1355271a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml @@ -19,9 +19,6 @@ data: - x86-64 'GPU Base Frequency': '500 MHz' 'GPU Boost Frequency': '667 MHz' - 'Geekbench Single-Core Score': 274 - 'Geekbench Multi-Core Score': 461 - 'UserBenchmark CPU Score': '36.2' isPart: true type: CPU humanName: 'Pentium P6200' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml index fdcba399..8eda36bf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml @@ -18,7 +18,6 @@ data: - x86-64 'GPU Base Frequency': '313 MHz' 'GPU Boost Frequency': '750 MHz' - 'UserBenchmark CPU Score': '32.3' isPart: true type: CPU humanName: 'Pentium N3510' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml index 92709be3..47a6c8fe 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml @@ -18,7 +18,6 @@ data: - x86-64 'GPU Base Frequency': '313 MHz' 'GPU Boost Frequency': '854 MHz' - 'UserBenchmark CPU Score': '34.4' isPart: true type: CPU humanName: 'Pentium N3520' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml index 399dd3b0..5f9d86bc 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml @@ -18,9 +18,6 @@ data: - x86-64 'GPU Base Frequency': '313 MHz' 'GPU Boost Frequency': '896 MHz' - 'Geekbench Single-Core Score': 184 - 'Geekbench Multi-Core Score': 532 - 'UserBenchmark CPU Score': '34.7' isPart: true type: CPU humanName: 'Pentium N3530' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml index 1e538485..ba642985 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml @@ -19,9 +19,6 @@ data: 'GPU Base Frequency': '313 MHz' 'GPU Boost Frequency': '896 MHz' 'DirectX Support': '11.2' - 'Geekbench Single-Core Score': 193 - 'Geekbench Multi-Core Score': 570 - 'UserBenchmark CPU Score': '33.5' isPart: true type: CPU humanName: 'Pentium N3540' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml index 059c8bc1..5f768752 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml @@ -21,9 +21,6 @@ data: 'Maximum VRAM Capacity': '8 GiB' 'DirectX Support': '0' 'OpenGL Support': 'Yes' - 'Geekbench Single-Core Score': 178 - 'Geekbench Multi-Core Score': 501 - 'UserBenchmark CPU Score': '26.2' isPart: true type: CPU humanName: 'Pentium N3700' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml index 9e96da29..4c122752 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml @@ -21,7 +21,6 @@ data: 'Maximum VRAM Capacity': '8 GiB' 'DirectX Support': '0' 'OpenGL Support': 'Yes' - 'UserBenchmark CPU Score': '25.1' isPart: true type: CPU humanName: 'Pentium N3710' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml index ce3883d3..c3102e5d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 595 - 'Geekbench Multi-Core Score': 1191 - 'UserBenchmark CPU Score': '37.5' isPart: true type: CPU humanName: 'Core i3-5005U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml index 697c9d9e..6f9c8b87 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 661 - 'Geekbench Multi-Core Score': 1334 - 'UserBenchmark CPU Score': '47.7' isPart: true type: CPU humanName: 'Core i3-5010U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml index dceda51a..3cb19299 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 680 - 'Geekbench Multi-Core Score': 1338 - 'UserBenchmark CPU Score': '47.8' isPart: true type: CPU humanName: 'Core i3-5015U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml index 295f7eeb..72635699 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 672 - 'Geekbench Multi-Core Score': 1363 isPart: true type: CPU humanName: 'Core i3-5020U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml index 754ccddc..5fde70df 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 769 - 'Geekbench Multi-Core Score': 1482 - 'UserBenchmark CPU Score': '41.7' isPart: true type: CPU humanName: 'Core i5-5200U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml index 63253e4c..c5cb6a68 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 802 - 'Geekbench Multi-Core Score': 1548 - 'UserBenchmark CPU Score': '49.4' isPart: true type: CPU humanName: 'Core i5-5250U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml index aa2cae77..6c0db5bf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 920 - 'Geekbench Multi-Core Score': 1785 - 'UserBenchmark CPU Score': '54.6' isPart: true type: CPU humanName: 'Core i5-5257U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml index a86d2282..277bd235 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1048 - 'Geekbench Multi-Core Score': 2053 - 'UserBenchmark CPU Score': '58' isPart: true type: CPU humanName: 'Core i5-5287U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml index 2affd4df..ac7d9e00 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 809 - 'Geekbench Multi-Core Score': 1559 - 'UserBenchmark CPU Score': '41.6' isPart: true type: CPU humanName: 'Core i5-5300U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml index 287b2448..0e0f3462 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 917 - 'Geekbench Multi-Core Score': 1780 isPart: true type: CPU humanName: 'Core i5-5350U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml index ccefc53b..cbc1be19 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 866 - 'Geekbench Multi-Core Score': 1669 - 'UserBenchmark CPU Score': '46.2' isPart: true type: CPU humanName: 'Core i7-5500U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml index 92a887ac..6d93fe95 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '59.7' isPart: true type: CPU humanName: 'Core i7-5550U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml index 3bd07922..c16a7b0e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1054 - 'Geekbench Multi-Core Score': 2052 - 'UserBenchmark CPU Score': '60.6' isPart: true type: CPU humanName: 'Core i7-5557U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml index 284bceb0..5913c61d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 900 - 'Geekbench Multi-Core Score': 1728 - 'UserBenchmark CPU Score': '49.6' isPart: true type: CPU humanName: 'Core i7-5600U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml index 7feace27..3b2d5436 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 941 - 'Geekbench Multi-Core Score': 1717 - 'UserBenchmark CPU Score': '56.1' isPart: true type: CPU humanName: 'Core i7-5650U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml index 84c1b0fe..5c96d0a8 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1076 - 'Geekbench Multi-Core Score': 3205 - 'UserBenchmark CPU Score': '68.8' isPart: true type: CPU humanName: 'Core i7-5700HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml index eb442053..9b7e7242 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '77.8' isPart: true type: CPU humanName: 'Core i7-5850HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml index 0f4c32c3..f79c5908 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '80.4' isPart: true type: CPU humanName: 'Core i7-5950HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml index 48314e28..a7e22a22 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml @@ -20,9 +20,6 @@ data: 'GPU Base Frequency': '100 MHz' 'GPU Boost Frequency': '800 MHz' 'DirectX Support': '12' - 'Geekbench Single-Core Score': 313 - 'Geekbench Multi-Core Score': 555 - 'UserBenchmark CPU Score': '44.1' isPart: true type: CPU humanName: 'Pentium 3805U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml index cb890346..440757b7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml @@ -20,8 +20,6 @@ data: 'GPU Base Frequency': '300 MHz' 'GPU Boost Frequency': '850 MHz' 'DirectX Support': '12' - 'Geekbench Single-Core Score': 274 - 'Geekbench Multi-Core Score': 555 isPart: true type: CPU humanName: 'Pentium 3825U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml index 3293a31c..63c0b162 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml @@ -16,7 +16,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '400 MHz' - 'UserBenchmark CPU Score': '21.9' isPart: true type: CPU humanName: 'Atom N2600' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml index 2794aaf8..42c2bb59 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml @@ -16,7 +16,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '640 MHz' - 'UserBenchmark CPU Score': '26' isPart: true type: CPU humanName: 'Atom N2800' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml index 2dc4a4d0..0b653c80 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 350 - 'Geekbench Multi-Core Score': 909 isPart: true type: CPU humanName: 'Core i7-720QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml index cb3579e6..6e4d8d0c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 358 - 'Geekbench Multi-Core Score': 974 isPart: true type: CPU humanName: 'Core i7-740QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml index dcb97cad..08fb8229 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml @@ -19,8 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 388 - 'Geekbench Multi-Core Score': 898 isPart: true type: CPU humanName: 'Core i7-840QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml index ad67c7a2..48d65bae 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1218 - 'Geekbench Multi-Core Score': 3624 isPart: true type: CPU humanName: 'Core i3-8100B' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml index e5f45310..ff272c13 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1141 - 'Geekbench Multi-Core Score': 2357 - 'UserBenchmark CPU Score': '65' isPart: true type: CPU humanName: 'Core i3-8109U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml index 009eb3ef..ced04221 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1246 - 'Geekbench Multi-Core Score': 4074 isPart: true type: CPU humanName: 'Core i5-8257U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml index 8066d1c4..188092cf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1205 - 'Geekbench Multi-Core Score': 4035 - 'UserBenchmark CPU Score': '73.1' isPart: true type: CPU humanName: 'Core i5-8259U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml index bcd868fd..a78f555f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1189 - 'Geekbench Multi-Core Score': 3693 - 'UserBenchmark CPU Score': '74.2' isPart: true type: CPU humanName: 'Core i5-8279U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml index f8df2872..136d48ac 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml @@ -23,10 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1239 - 'Geekbench Multi-Core Score': 3663 - '3DMark Fire Strike Physics Score': 2497 - 'UserBenchmark CPU Score': '64.7' isPart: true type: CPU humanName: 'Core i5-8300H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml index 5c4dc864..6fd38b8e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1233 - 'Geekbench Multi-Core Score': 3423 - 'UserBenchmark CPU Score': '76.6' isPart: true type: CPU humanName: 'Core i5-8400H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml index db60f1bd..3c63221c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1347 - 'Geekbench Multi-Core Score': 4939 isPart: true type: CPU humanName: 'Core i5-8500B' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml index 9ed80634..24a2d50c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1237 - 'Geekbench Multi-Core Score': 3616 - '3DMark Fire Strike Physics Score': 2606 - 'UserBenchmark CPU Score': '65' isPart: true type: CPU humanName: 'Core i5-9300H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml index 40846623..989e98d1 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 1312 - 'Geekbench Multi-Core Score': 4143 isPart: true type: CPU humanName: 'Core i5-9300HF' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml index 8b1f91ab..d08012d9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '78.9' isPart: true type: CPU humanName: 'Core i5-9400H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml index 3c112107..6e4cab60 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1308 - 'Geekbench Multi-Core Score': 4066 - 'UserBenchmark CPU Score': '77.5' isPart: true type: CPU humanName: 'Core i7-8559U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml index d415a3d0..f9073f08 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1449 - 'Geekbench Multi-Core Score': 4508 isPart: true type: CPU humanName: 'Core i7-8569U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml index 11a0be12..35d54afb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1546 - 'Geekbench Multi-Core Score': 5924 isPart: true type: CPU humanName: 'Core i7-8700B' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml index d3c52aa9..f0cb02f0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1278 - 'Geekbench Multi-Core Score': 4554 - '3DMark Fire Strike Physics Score': 3544 - 'UserBenchmark CPU Score': '70.1' isPart: true type: CPU humanName: 'Core i7-8750H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml index 78b7dfff..b01fcdd7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1293 - 'Geekbench Multi-Core Score': 4644 - 'UserBenchmark CPU Score': '70.7' isPart: true type: CPU humanName: 'Core i7-8850H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml index 526972b4..c5517d01 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1330 - 'Geekbench Multi-Core Score': 4888 - '3DMark Fire Strike Physics Score': 3795 - 'UserBenchmark CPU Score': '73.3' isPart: true type: CPU humanName: 'Core i7-9750H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml index 92995234..40034932 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1376 - 'Geekbench Multi-Core Score': 5019 - 'UserBenchmark CPU Score': '77.1' isPart: true type: CPU humanName: 'Core i7-9850H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml index 21de6794..b7cec395 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1335 - 'Geekbench Multi-Core Score': 4823 - 'UserBenchmark CPU Score': '74.5' isPart: true type: CPU humanName: 'Core i9-8950HK' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml index f877439b..37686a9b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1328 - 'Geekbench Multi-Core Score': 6018 - 'UserBenchmark CPU Score': '78.9' isPart: true type: CPU humanName: 'Core i9-9880H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml index 5f2bb858..c847bcbf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1396 - 'Geekbench Multi-Core Score': 6228 - 'UserBenchmark CPU Score': '81.8' isPart: true type: CPU humanName: 'Core i9-9980HK' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml index 98af832c..aa53e434 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1400 - 'Geekbench Multi-Core Score': 5032 isPart: true type: CPU humanName: 'Xeon E-2176M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml index 1deba20d..dd2ea983 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1409 - 'Geekbench Multi-Core Score': 5303 isPart: true type: CPU humanName: 'Xeon E-2276M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml index 2d964c7d..2c838b6a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1120 - 'Geekbench Multi-Core Score': 2085 - 'UserBenchmark CPU Score': '46.9' isPart: true type: CPU humanName: 'Core i3-10110U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml index e8ec2c6e..46be95aa 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1101 - 'Geekbench Multi-Core Score': 3037 - 'UserBenchmark CPU Score': '53.4' isPart: true type: CPU humanName: 'Core i5-10210U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml index e44139ae..342bbe23 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1255 - 'Geekbench Multi-Core Score': 3220 - 'UserBenchmark CPU Score': '56.4' isPart: true type: CPU humanName: 'Core i7-10510U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml index 5107079c..27665c67 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '68' isPart: true type: CPU humanName: 'Core i7-10710U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml index 5880cfbd..f02c9895 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 973 - 'Geekbench Multi-Core Score': 3195 - 'UserBenchmark CPU Score': '63.4' isPart: true type: CPU humanName: 'Core i7-4750HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml index 58fc7cf5..234d040d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 964 - 'Geekbench Multi-Core Score': 3230 - 'UserBenchmark CPU Score': '64' isPart: true type: CPU humanName: 'Core i7-4770HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml index b5360b3c..31e3c51f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 993 - 'Geekbench Multi-Core Score': 3344 - 'UserBenchmark CPU Score': '66' isPart: true type: CPU humanName: 'Core i7-4850HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml index b9f0beb0..12e12b02 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1038 - 'Geekbench Multi-Core Score': 3423 isPart: true type: CPU humanName: 'Core i7-4870HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml index 329146f5..f855e466 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1095 - 'Geekbench Multi-Core Score': 3701 - 'UserBenchmark CPU Score': '68' isPart: true type: CPU humanName: 'Core i7-4960HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml index aa7880fc..43e20653 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1156 - 'Geekbench Multi-Core Score': 3589 isPart: true type: CPU humanName: 'Core i7-4980HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml index bd6e6723..a7eb332e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml @@ -13,7 +13,6 @@ data: Socket: PBGA437 'Other Extensions': { } AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20.1' isPart: true type: CPU humanName: 'Atom N270' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml index 0e6724af..5ad92dd2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml @@ -13,7 +13,6 @@ data: Socket: PBGA437 'Other Extensions': { } AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20.3' isPart: true type: CPU humanName: 'Atom N280' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml index 3e09d9fe..8890e563 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 688 - 'Geekbench Multi-Core Score': 1386 - 'UserBenchmark CPU Score': '51' isPart: true type: CPU humanName: 'Core i3-4000M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml index 17b3087d..634e5485 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 494 - 'Geekbench Multi-Core Score': 1021 - 'UserBenchmark CPU Score': '38.5' isPart: true type: CPU humanName: 'Core i3-4005U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml index 9ed3fd7b..ee163f15 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 509 - 'Geekbench Multi-Core Score': 1077 - 'UserBenchmark CPU Score': '44' isPart: true type: CPU humanName: 'Core i3-4010U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml index 0e132935..b15ce2bf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '42.6' isPart: true type: CPU humanName: 'Core i3-4012Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml index 2d92977b..b2b368a5 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 466 - 'Geekbench Multi-Core Score': 870 isPart: true type: CPU humanName: 'Core i3-4020Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml index 1d1583ef..f66e9dcf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 560 - 'Geekbench Multi-Core Score': 1152 - 'UserBenchmark CPU Score': '44.6' isPart: true type: CPU humanName: 'Core i3-4030U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml index 09dee6cc..4ec20d8c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 783 - 'Geekbench Multi-Core Score': 1526 isPart: true type: CPU humanName: 'Core i3-4100M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml index 28e93725..e67e494e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 855 - 'Geekbench Multi-Core Score': 1692 - 'UserBenchmark CPU Score': '57' isPart: true type: CPU humanName: 'Core i5-4200H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml index 9553ca40..aa1afb2e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 856 - 'Geekbench Multi-Core Score': 1675 - 'UserBenchmark CPU Score': '49.6' isPart: true type: CPU humanName: 'Core i5-4200M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml index 29c1efc6..ce7368aa 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 693 - 'Geekbench Multi-Core Score': 1359 - 'UserBenchmark CPU Score': '42.6' isPart: true type: CPU humanName: 'Core i5-4200U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml index d0cbabd0..e1137a52 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 564 - 'Geekbench Multi-Core Score': 946 - 'UserBenchmark CPU Score': '42.9' isPart: true type: CPU humanName: 'Core i5-4202Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml index 245ea983..cef2dc16 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 946 - 'Geekbench Multi-Core Score': 1858 isPart: true type: CPU humanName: 'Core i5-4210H' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml index f6fd6112..241a2ce6 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 883 - 'Geekbench Multi-Core Score': 1751 - 'UserBenchmark CPU Score': '51.3' isPart: true type: CPU humanName: 'Core i5-4210M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml index 00511153..c2363974 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 720 - 'Geekbench Multi-Core Score': 1395 - 'UserBenchmark CPU Score': '41.3' isPart: true type: CPU humanName: 'Core i5-4210U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml index 460ea6ef..31f46950 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '44.4' isPart: true type: CPU humanName: 'Core i5-4210Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml index 7651af9d..841f2bbf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 762 - 'Geekbench Multi-Core Score': 1462 - 'UserBenchmark CPU Score': '50.4' isPart: true type: CPU humanName: 'Core i5-4250U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml index a2538425..0cb7dc15 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 781 - 'Geekbench Multi-Core Score': 1584 - 'UserBenchmark CPU Score': '56.3' isPart: true type: CPU humanName: 'Core i5-4258U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml index 2c8bed91..5e15b1a2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 739 - 'Geekbench Multi-Core Score': 1470 isPart: true type: CPU humanName: 'Core i5-4260U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml index 07ba49d1..37dd31b0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 849 - 'Geekbench Multi-Core Score': 1757 isPart: true type: CPU humanName: 'Core i5-4278U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml index 01801852..5a8f5a92 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 837 - 'Geekbench Multi-Core Score': 1631 isPart: true type: CPU humanName: 'Core i5-4288U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml index 036a8655..9ca40916 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 876 - 'Geekbench Multi-Core Score': 1748 - 'UserBenchmark CPU Score': '51.5' isPart: true type: CPU humanName: 'Core i5-4300M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml index 2b26cfe9..5d41f4ee 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 779 - 'Geekbench Multi-Core Score': 1469 - 'UserBenchmark CPU Score': '43.7' isPart: true type: CPU humanName: 'Core i5-4300U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml index 17290784..d19296ef 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '44.2' isPart: true type: CPU humanName: 'Core i5-4300Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml index 356f79da..22507a77 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1021 - 'Geekbench Multi-Core Score': 2048 isPart: true type: CPU humanName: 'Core i5-4308U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml index 015e63d2..a34b6afc 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 959 - 'Geekbench Multi-Core Score': 1865 isPart: true type: CPU humanName: 'Core i5-4310M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml index 7626890a..4a8c5a63 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 780 - 'Geekbench Multi-Core Score': 1475 - 'UserBenchmark CPU Score': '49.4' isPart: true type: CPU humanName: 'Core i5-4310U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml index eaef11a9..1eca9b90 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 749 - 'Geekbench Multi-Core Score': 1390 - 'UserBenchmark CPU Score': '50.1' isPart: true type: CPU humanName: 'Core i7-4500U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml index f87238de..354b528f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 856 - 'Geekbench Multi-Core Score': 1600 - 'UserBenchmark CPU Score': '47.1' isPart: true type: CPU humanName: 'Core i7-4510U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml index 5000bbe1..4910e85b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '50.5' isPart: true type: CPU humanName: 'Core i7-4550U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml index a64c788b..a3e91c9e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '57.7' isPart: true type: CPU humanName: 'Core i7-4558U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml index 382d85cf..b32c855d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 736 - 'Geekbench Multi-Core Score': 1320 isPart: true type: CPU humanName: 'Core i7-4578U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml index 0df8b30b..2a10a9c5 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 998 - 'Geekbench Multi-Core Score': 1884 - 'UserBenchmark CPU Score': '56' isPart: true type: CPU humanName: 'Core i7-4600M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml index 4d002fe6..83fbb00a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 820 - 'Geekbench Multi-Core Score': 1534 - 'UserBenchmark CPU Score': '49.1' isPart: true type: CPU humanName: 'Core i7-4600U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml index 49db6571..e4410499 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1024 - 'Geekbench Multi-Core Score': 2056 - 'UserBenchmark CPU Score': '58.3' isPart: true type: CPU humanName: 'Core i7-4610M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml index 7210ec4f..08f4b408 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 810 - 'Geekbench Multi-Core Score': 1425 - 'UserBenchmark CPU Score': '51.1' isPart: true type: CPU humanName: 'Core i7-4650U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml index 03a70d06..6ed7958b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 976 - 'Geekbench Multi-Core Score': 3068 - 'UserBenchmark CPU Score': '61.9' isPart: true type: CPU humanName: 'Core i7-4700HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml index a176f18b..87170ded 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 967 - 'Geekbench Multi-Core Score': 2941 - 'UserBenchmark CPU Score': '58.6' isPart: true type: CPU humanName: 'Core i7-4700MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml index ab512d76..7f2604cf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 896 - 'Geekbench Multi-Core Score': 2882 - 'UserBenchmark CPU Score': '61.8' isPart: true type: CPU humanName: 'Core i7-4702HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml index 6ed60112..44e266cb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 910 - 'Geekbench Multi-Core Score': 2806 - 'UserBenchmark CPU Score': '61' isPart: true type: CPU humanName: 'Core i7-4702MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml index 1ba1c667..d73d527c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 947 - 'Geekbench Multi-Core Score': 2860 - 'UserBenchmark CPU Score': '57.9' isPart: true type: CPU humanName: 'Core i7-4710HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml index 117c6ab7..1e595e7e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 996 - 'Geekbench Multi-Core Score': 3101 - 'UserBenchmark CPU Score': '59.7' isPart: true type: CPU humanName: 'Core i7-4710MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml index 4b8622a6..bd74b8a7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 798 - 'Geekbench Multi-Core Score': 2537 - 'UserBenchmark CPU Score': '60.7' isPart: true type: CPU humanName: 'Core i7-4712HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml index c547378e..917fa138 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 952 - 'Geekbench Multi-Core Score': 2510 isPart: true type: CPU humanName: 'Core i7-4712MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml index 40300f66..3c25c8c8 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 974 - 'Geekbench Multi-Core Score': 2981 - 'UserBenchmark CPU Score': '57.8' isPart: true type: CPU humanName: 'Core i7-4720HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml index 80d4fe37..9797aff6 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'UserBenchmark CPU Score': '66.3' isPart: true type: CPU humanName: 'Core i7-4722HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml index f50ed8a7..02322c3e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 970 - 'Geekbench Multi-Core Score': 2835 - 'UserBenchmark CPU Score': '63.3' isPart: true type: CPU humanName: 'Core i7-4800MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml index 30a73d47..534e8473 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1030 - 'Geekbench Multi-Core Score': 3097 - 'UserBenchmark CPU Score': '61.7' isPart: true type: CPU humanName: 'Core i7-4810MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml index 7de68dc1..191c03b5 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 988 - 'Geekbench Multi-Core Score': 2989 - 'UserBenchmark CPU Score': '67.6' isPart: true type: CPU humanName: 'Core i7-4900MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml index 2336b76a..5c399e66 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '2 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.3' - 'Geekbench Single-Core Score': 1033 - 'Geekbench Multi-Core Score': 3279 - 'UserBenchmark CPU Score': '67.3' isPart: true type: CPU humanName: 'Core i7-4910MQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml index e1ce3d40..04ed06da 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml @@ -22,9 +22,6 @@ data: 'GPU Boost Frequency': '1.35 GHz' 'VRAM Type': DDR3L 'Maximum VRAM Capacity': '1.69921875 GiB' - 'Geekbench Single-Core Score': 1105 - 'Geekbench Multi-Core Score': 3430 - 'UserBenchmark CPU Score': '69.1' isPart: true type: CPU humanName: 'Core i7-4930MX' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml index 4ba31790..8b3c2b37 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml @@ -21,9 +21,6 @@ data: 'GPU Boost Frequency': '1.35 GHz' 'VRAM Type': DDR3L 'Maximum VRAM Capacity': '1.69921875 GiB' - 'Geekbench Single-Core Score': 1192 - 'Geekbench Multi-Core Score': 3693 - 'UserBenchmark CPU Score': '69.3' isPart: true type: CPU humanName: 'Core i7-4940MX' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml index cef77abd..5349365c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '400 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '49.1' isPart: true type: CPU humanName: 'Pentium 3550M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml index 10ab3915..62aed6b1 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml @@ -22,9 +22,6 @@ data: 'GPU Boost Frequency': '900 MHz' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1270 - 'Geekbench Multi-Core Score': 2322 - 'UserBenchmark CPU Score': '43.8' isPart: true type: CPU humanName: 'Core i3-1005G1' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml index 2be4eedc..ecbdb6cb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml @@ -22,7 +22,6 @@ data: 'GPU Boost Frequency': '1.05 GHz' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '51.1' isPart: true type: CPU humanName: 'Core i5-1035G1' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml index 723eef6b..2d8bc6ad 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml @@ -22,7 +22,6 @@ data: 'GPU Boost Frequency': '1.05 GHz' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '55.5' isPart: true type: CPU humanName: 'Core i5-1035G4' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml index b0f76709..6148c8a7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml @@ -22,7 +22,6 @@ data: 'GPU Boost Frequency': '1.05 GHz' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '57.7' isPart: true type: CPU humanName: 'Core i5-1035G7' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml index 51a5e5d0..7fad9a75 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml @@ -22,7 +22,6 @@ data: 'GPU Boost Frequency': '1.1 GHz' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '53.2' isPart: true type: CPU humanName: 'Core i7-1065G7' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml index 44ca361a..b4eb3457 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1000 MHz' - 'Geekbench Single-Core Score': 390 - 'Geekbench Multi-Core Score': 799 - 'UserBenchmark CPU Score': '48.2' isPart: true type: CPU humanName: 'Core i3-3110M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml index 8e098540..a0177a4c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 384 - 'Geekbench Multi-Core Score': 844 - 'UserBenchmark CPU Score': '50.1' isPart: true type: CPU humanName: 'Core i3-3120M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml index 8cc76d5a..31235ace 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 289 - 'Geekbench Multi-Core Score': 593 - 'UserBenchmark CPU Score': '43' isPart: true type: CPU humanName: 'Core i3-3217U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml index c8d75155..bbb8be24 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 294 - 'Geekbench Multi-Core Score': 632 - 'UserBenchmark CPU Score': '45.4' isPart: true type: CPU humanName: 'Core i3-3227U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml index 37ad8897..a79ecc83 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml @@ -21,9 +21,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 487 - 'Geekbench Multi-Core Score': 983 - 'UserBenchmark CPU Score': '47.8' isPart: true type: CPU humanName: 'Core i5-3210M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml index 79af27d5..b6230cf0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml @@ -21,9 +21,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 508 - 'Geekbench Multi-Core Score': 1018 - 'UserBenchmark CPU Score': '48.7' isPart: true type: CPU humanName: 'Core i5-3230M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml index 7658169a..c2757ac8 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.05 GHz' - 'Geekbench Single-Core Score': 402 - 'Geekbench Multi-Core Score': 819 - 'UserBenchmark CPU Score': '47.2' isPart: true type: CPU humanName: 'Core i5-3317U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml index 71b2f3ed..0f5156b6 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 512 - 'Geekbench Multi-Core Score': 1047 - 'UserBenchmark CPU Score': '48' isPart: true type: CPU humanName: 'Core i5-3320M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml index 0172069a..55a80466 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 412 - 'Geekbench Multi-Core Score': 843 - 'UserBenchmark CPU Score': '47.2' isPart: true type: CPU humanName: 'Core i5-3337U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml index c71d9bb3..7d43f58e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '850 MHz' - 'UserBenchmark CPU Score': '44.4' isPart: true type: CPU humanName: 'Core i5-3339Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml index 2d10b29f..4c0e9343 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 544 - 'Geekbench Multi-Core Score': 1094 - 'UserBenchmark CPU Score': '52.6' isPart: true type: CPU humanName: 'Core i5-3340M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml index 19afb3c3..39299a22 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 572 - 'Geekbench Multi-Core Score': 1164 - 'UserBenchmark CPU Score': '53.9' isPart: true type: CPU humanName: 'Core i5-3360M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml index cc51b2c3..b2cbf2e0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 622 - 'Geekbench Multi-Core Score': 1258 - 'UserBenchmark CPU Score': '55.4' isPart: true type: CPU humanName: 'Core i5-3380M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml index 8e57cc10..36b5731d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 467 - 'Geekbench Multi-Core Score': 899 - 'UserBenchmark CPU Score': '48.7' isPart: true type: CPU humanName: 'Core i5-3427U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml index 8b79fd07..d9fa9e29 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 432 - 'Geekbench Multi-Core Score': 868 - 'UserBenchmark CPU Score': '49' isPart: true type: CPU humanName: 'Core i5-3437U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml index 11ac719a..094b5c48 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 454 - 'Geekbench Multi-Core Score': 924 - 'UserBenchmark CPU Score': '50.7' isPart: true type: CPU humanName: 'Core i7-3517U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml index 868f36bf..e66b7c0c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 553 - 'Geekbench Multi-Core Score': 1122 - 'UserBenchmark CPU Score': '53.2' isPart: true type: CPU humanName: 'Core i7-3520M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml index 055aa48c..dd32013e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 450 - 'Geekbench Multi-Core Score': 896 - 'UserBenchmark CPU Score': '51.5' isPart: true type: CPU humanName: 'Core i7-3537U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml index 4ff22d2c..fda701d5 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 507 - 'Geekbench Multi-Core Score': 985 - 'UserBenchmark CPU Score': '56' isPart: true type: CPU humanName: 'Core i7-3540M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml index 3a2d86bd..c46f42b9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 510 - 'Geekbench Multi-Core Score': 1762 - 'UserBenchmark CPU Score': '62' isPart: true type: CPU humanName: 'Core i7-3610QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml index 005607c9..a7425b9a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml @@ -21,9 +21,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 514 - 'Geekbench Multi-Core Score': 1684 - 'UserBenchmark CPU Score': '60.5' isPart: true type: CPU humanName: 'Core i7-3612QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml index ae121be2..44a73433 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 548 - 'Geekbench Multi-Core Score': 1870 - 'UserBenchmark CPU Score': '62.4' isPart: true type: CPU humanName: 'Core i7-3615QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml index d02c4879..b3b0791e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 549 - 'Geekbench Multi-Core Score': 1866 - 'UserBenchmark CPU Score': '60.8' isPart: true type: CPU humanName: 'Core i7-3630QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml index 5d7f9d78..c33cd041 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml @@ -21,9 +21,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 504 - 'Geekbench Multi-Core Score': 1661 - 'UserBenchmark CPU Score': '60.7' isPart: true type: CPU humanName: 'Core i7-3632QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml index 054b135c..91885bee 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 528 - 'Geekbench Multi-Core Score': 1826 - 'UserBenchmark CPU Score': '62.1' isPart: true type: CPU humanName: 'Core i7-3635QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml index a3433a34..c5f75f53 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 440 - 'Geekbench Multi-Core Score': 954 - 'UserBenchmark CPU Score': '50.9' isPart: true type: CPU humanName: 'Core i7-3667U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml index 90fe1250..e3c01289 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 465 - 'Geekbench Multi-Core Score': 977 - 'UserBenchmark CPU Score': '52.6' isPart: true type: CPU humanName: 'Core i7-3687U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml index 549d6919..3a750770 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '850 MHz' - 'UserBenchmark CPU Score': '49.4' isPart: true type: CPU humanName: 'Core i7-3689Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml index 2026e867..81cc68bf 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 590 - 'Geekbench Multi-Core Score': 1990 - 'UserBenchmark CPU Score': '64.8' isPart: true type: CPU humanName: 'Core i7-3720QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml index 67aa78cd..6ab43d9e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 588 - 'Geekbench Multi-Core Score': 1957 - 'UserBenchmark CPU Score': '64.4' isPart: true type: CPU humanName: 'Core i7-3740QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml index cdd2358a..343ab9b9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'UserBenchmark CPU Score': '66.3' isPart: true type: CPU humanName: 'Core i7-3820QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml index d665cbda..882f07c9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 635 - 'Geekbench Multi-Core Score': 2150 - 'UserBenchmark CPU Score': '66.1' isPart: true type: CPU humanName: 'Core i7-3840QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml index 229601e2..d61260f2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'UserBenchmark CPU Score': '68.2' isPart: true type: CPU humanName: 'Core i7-3920XM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml index ca9125ac..d326a7a1 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'UserBenchmark CPU Score': '69.6' isPart: true type: CPU humanName: 'Core i7-3940XM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml index dee93ef9..300ab474 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 405 - 'Geekbench Multi-Core Score': 691 - 'UserBenchmark CPU Score': '46.7' isPart: true type: CPU humanName: 'Pentium 2020M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml index fc6b01fc..a67dc063 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'Geekbench Single-Core Score': 302 - 'Geekbench Multi-Core Score': 515 - 'UserBenchmark CPU Score': '43.2' isPart: true type: CPU humanName: 'Pentium 2117U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml index c32abe88..16599c84 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'UserBenchmark CPU Score': '44.4' isPart: true type: CPU humanName: 'Pentium 2127U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml index 21cc99f6..ad43d645 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '72.9' TDP: '65 W' isPart: true type: CPU diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml index 38151883..3a00f1de 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 1204 - 'Geekbench Multi-Core Score': 3974 - 'UserBenchmark CPU Score': '72.5' TDP: '65 W' isPart: true type: CPU diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml index aaf5d7e9..d4868d3a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '77.7' TDP: '65 W' isPart: true type: CPU diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml index e72cfd29..3dfec78a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 1335 - 'Geekbench Multi-Core Score': 4492 - 'UserBenchmark CPU Score': '80.5' TDP: '100 W' isPart: true type: CPU diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml index f897b8db..171f22a8 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - '3DMark Fire Strike Physics Score': 1696 - 'UserBenchmark CPU Score': '53.1' isPart: true type: CPU humanName: 'Core i5-8250U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml index 7817f915..76df15bb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '51.6' isPart: true type: CPU humanName: 'Core i5-8350U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml index 132ec356..19bdbfa2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '53' isPart: true type: CPU humanName: 'Core i7-8550U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml index 048d53d2..343cd073 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '52.3' isPart: true type: CPU humanName: 'Core i7-8650U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml index c91335df..cf1eee41 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '48.5' isPart: true type: CPU humanName: 'Pentium 4417U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml index 3a4e4655..75364a41 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 713 - 'Geekbench Multi-Core Score': 1448 - 'UserBenchmark CPU Score': '40.5' isPart: true type: CPU humanName: 'Core i3-7020U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml index 89ed109e..0f186ed2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 765 - 'Geekbench Multi-Core Score': 1568 - 'UserBenchmark CPU Score': '43.4' isPart: true type: CPU humanName: 'Core i3-7100U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml index c3c18c3a..6277db12 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 824 - 'Geekbench Multi-Core Score': 1686 - 'UserBenchmark CPU Score': '54.9' isPart: true type: CPU humanName: 'Core i3-7130U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml index cd551169..ff06f7eb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml @@ -22,7 +22,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '59.2' isPart: true type: CPU humanName: 'Core i3-7167U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml index d69a9ef1..fddd3f9f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 974 - 'Geekbench Multi-Core Score': 1820 - 'UserBenchmark CPU Score': '47.6' isPart: true type: CPU humanName: 'Core i3-8130U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml index c922d733..001b1dbb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '45.4' isPart: true type: CPU humanName: 'Core i5-7200U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml index ee9645ab..5389c0ae 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1092 - 'Geekbench Multi-Core Score': 2282 - 'UserBenchmark CPU Score': '61.5' isPart: true type: CPU humanName: 'Core i5-7260U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml index 3fecefb3..83df676b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 705 - 'Geekbench Multi-Core Score': 1331 isPart: true type: CPU humanName: 'Core i5-7267U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml index cdef172b..9cd88044 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1052 - 'Geekbench Multi-Core Score': 2864 - '3DMark Fire Strike Physics Score': 1950 - 'UserBenchmark CPU Score': '56.5' isPart: true type: CPU humanName: 'Core i5-7300HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml index e2190751..550968c9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '45' isPart: true type: CPU humanName: 'Core i5-7300U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml index 22119456..145cc93e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1133 - 'Geekbench Multi-Core Score': 2316 isPart: true type: CPU humanName: 'Core i5-7360U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml index b8480ef0..b291a847 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1171 - 'Geekbench Multi-Core Score': 3072 isPart: true type: CPU humanName: 'Core i5-7440HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml index b716752a..f1708a82 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '47.2' isPart: true type: CPU humanName: 'Core i5-7Y54' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml index e872b13f..6e5b7654 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '48.1' isPart: true type: CPU humanName: 'Core i7-7500U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml index 9efa553b..3fdb7a92 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1137 - 'Geekbench Multi-Core Score': 2209 - 'UserBenchmark CPU Score': '54.9' isPart: true type: CPU humanName: 'Core i7-7560U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml index 818b1783..3b11b1bd 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1274 - 'Geekbench Multi-Core Score': 2581 - 'UserBenchmark CPU Score': '63.9' isPart: true type: CPU humanName: 'Core i7-7567U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml index ecf6c636..e5c09c8e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '49.6' isPart: true type: CPU humanName: 'Core i7-7600U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml index 6474453d..3b3e9d17 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1151 - 'Geekbench Multi-Core Score': 2267 - 'UserBenchmark CPU Score': '54.2' isPart: true type: CPU humanName: 'Core i7-7660U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml index 8b9cc647..733ab0c9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1126 - 'Geekbench Multi-Core Score': 3550 - '3DMark Fire Strike Physics Score': 2493 - 'UserBenchmark CPU Score': '62' isPart: true type: CPU humanName: 'Core i7-7700HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml index bcc1fa46..8486aefb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1318 - 'Geekbench Multi-Core Score': 4075 - 'UserBenchmark CPU Score': '71.7' isPart: true type: CPU humanName: 'Core i7-7820HK' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml index 34bbd93e..2ef84822 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1160 - 'Geekbench Multi-Core Score': 3516 - 'UserBenchmark CPU Score': '63' isPart: true type: CPU humanName: 'Core i7-7820HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml index e2d911ff..ba5b708b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1250 - 'Geekbench Multi-Core Score': 4178 - 'UserBenchmark CPU Score': '71.4' isPart: true type: CPU humanName: 'Core i7-7920HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml index be5cd839..f4e4bdb4 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '43.6' isPart: true type: CPU humanName: 'Core i7-7Y75' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml index 1313bda7..96f9c563 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '38.9' isPart: true type: CPU humanName: 'Pentium 4410Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml index 81b5200a..fa9eb70d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 420 - 'Geekbench Multi-Core Score': 891 - 'UserBenchmark CPU Score': '48.7' isPart: true type: CPU humanName: 'Pentium 4415U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml index ce484734..dea26611 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 310 - 'Geekbench Multi-Core Score': 664 isPart: true type: CPU humanName: 'Pentium 4415Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml index 5e7ec5d0..a0b77c25 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml @@ -13,9 +13,6 @@ data: Socket: PGA478 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 218 - 'Geekbench Multi-Core Score': 362 - 'UserBenchmark CPU Score': '33.9' isPart: true type: CPU humanName: 'Pentium T4200' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml index 8a483ab2..5eff93bc 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml @@ -12,9 +12,6 @@ data: Socket: PGA478 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 202 - 'Geekbench Multi-Core Score': 342 - 'UserBenchmark CPU Score': '33.7' isPart: true type: CPU humanName: 'Pentium T4300' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml index e4e58e86..b500022a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml @@ -13,9 +13,6 @@ data: Socket: PGA478 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 247 - 'Geekbench Multi-Core Score': 408 - 'UserBenchmark CPU Score': '34' isPart: true type: CPU humanName: 'Pentium T4400' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml index 3ac29130..8bbaf9e9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml @@ -12,7 +12,6 @@ data: 'Release Date': 'Q1 2010' 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '33.9' isPart: true type: CPU humanName: 'Pentium T4500' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml index a893d654..d621dd4a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml @@ -17,7 +17,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '20.4' isPart: true type: CPU humanName: 'Atom N450' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml index 5b376b76..9cef36da 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml @@ -17,7 +17,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '200 MHz' - 'UserBenchmark CPU Score': '20.7' isPart: true type: CPU humanName: 'Atom N455' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml index 6d1af9ca..00bb1ef0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml @@ -16,7 +16,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '200 MHz' - 'UserBenchmark CPU Score': '20.7' isPart: true type: CPU humanName: 'Atom N550' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml index 7517e8b4..16dcb894 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml @@ -16,7 +16,6 @@ data: - x86-64 AVX/SSE/MMX: false 'GPU Base Frequency': '200 MHz' - 'UserBenchmark CPU Score': '21.5' isPart: true type: CPU humanName: 'Atom N570' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml index dd14f19f..29cce15e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 327 - 'Geekbench Multi-Core Score': 669 - 'UserBenchmark CPU Score': '46.5' isPart: true type: CPU humanName: 'Core i3-2310M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml index 76a17332..54bfc998 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 312 - 'Geekbench Multi-Core Score': 617 - 'UserBenchmark CPU Score': '47.5' isPart: true type: CPU humanName: 'Core i3-2328M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml index a72c2edd..25d2166b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 338 - 'Geekbench Multi-Core Score': 684 - 'UserBenchmark CPU Score': '47' isPart: true type: CPU humanName: 'Core i3-2330M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml index d489c60f..b44ab7c7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml @@ -18,9 +18,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 345 - 'Geekbench Multi-Core Score': 660 - 'UserBenchmark CPU Score': '48.8' isPart: true type: CPU humanName: 'Core i3-2348M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml index 9cca3b8b..238eb56a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 345 - 'Geekbench Multi-Core Score': 712 - 'UserBenchmark CPU Score': '47' isPart: true type: CPU humanName: 'Core i3-2350M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml index 6db33e10..774b500c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml @@ -18,7 +18,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '950 MHz' - 'UserBenchmark CPU Score': '39.8' isPart: true type: CPU humanName: 'Core i3-2357M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml index cd11f3c3..ce8cd5ea 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'Geekbench Single-Core Score': 188 - 'Geekbench Multi-Core Score': 405 - 'UserBenchmark CPU Score': '41.2' isPart: true type: CPU humanName: 'Core i3-2365M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml index c50d236c..4670d023 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'UserBenchmark CPU Score': '42.2' isPart: true type: CPU humanName: 'Core i3-2367M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml index aea04e08..537f5175 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 350 - 'Geekbench Multi-Core Score': 687 - 'UserBenchmark CPU Score': '48.9' isPart: true type: CPU humanName: 'Core i3-2370M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml index a066285d..c91b708c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'UserBenchmark CPU Score': '42.6' isPart: true type: CPU humanName: 'Core i3-2375M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml index 946cb634..ba637159 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 439 - 'Geekbench Multi-Core Score': 860 - 'UserBenchmark CPU Score': '47.9' isPart: true type: CPU humanName: 'Core i5-2410M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml index 1704c597..9cae15a1 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 464 - 'Geekbench Multi-Core Score': 930 - 'UserBenchmark CPU Score': '49.5' isPart: true type: CPU humanName: 'Core i5-2430M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml index cd4731ba..abb8541b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 476 - 'Geekbench Multi-Core Score': 959 - 'UserBenchmark CPU Score': '52.9' isPart: true type: CPU humanName: 'Core i5-2435M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml index 281d4c8f..f34b0a26 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 465 - 'Geekbench Multi-Core Score': 894 - 'UserBenchmark CPU Score': '48.9' isPart: true type: CPU humanName: 'Core i5-2450M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml index 49365c16..2dc3f584 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 347 - 'Geekbench Multi-Core Score': 689 - 'UserBenchmark CPU Score': '45.3' isPart: true type: CPU humanName: 'Core i5-2467M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml index 1a376795..d27e1886 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 471 - 'Geekbench Multi-Core Score': 923 - 'UserBenchmark CPU Score': '47.6' isPart: true type: CPU humanName: 'Core i5-2520M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml index a1190cb7..8d8774d9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '900 MHz' - 'Geekbench Single-Core Score': 310 - 'Geekbench Multi-Core Score': 622 - 'UserBenchmark CPU Score': '44' isPart: true type: CPU humanName: 'Core i5-2537M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml index 7ed886d6..597627fe 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 492 - 'Geekbench Multi-Core Score': 985 - 'UserBenchmark CPU Score': '51.5' isPart: true type: CPU humanName: 'Core i5-2540M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml index 5c64a49b..d1dc3dcc 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'UserBenchmark CPU Score': '49.7' isPart: true type: CPU humanName: 'Core i5-2557M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml index e9204216..a5a3aa1b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 506 - 'Geekbench Multi-Core Score': 1045 - 'UserBenchmark CPU Score': '52.2' isPart: true type: CPU humanName: 'Core i7-2620M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml index cb8f1112..88ad0f91 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 420 - 'Geekbench Multi-Core Score': 1356 - 'UserBenchmark CPU Score': '55.2' isPart: true type: CPU humanName: 'Core i7-2630QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml index bd3b05ed..36e8625b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'UserBenchmark CPU Score': '57.4' isPart: true type: CPU humanName: 'Core i7-2635QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml index c3edb366..6d62e495 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'UserBenchmark CPU Score': '51.1' isPart: true type: CPU humanName: 'Core i7-2637M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml index edb3fc07..4413ed26 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 499 - 'Geekbench Multi-Core Score': 988 - 'UserBenchmark CPU Score': '53.7' isPart: true type: CPU humanName: 'Core i7-2640M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml index 3fd4663c..6d66d841 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 455 - 'Geekbench Multi-Core Score': 1428 - 'UserBenchmark CPU Score': '56.3' isPart: true type: CPU humanName: 'Core i7-2670QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml index d297a329..213740a9 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 452 - 'Geekbench Multi-Core Score': 1362 - 'UserBenchmark CPU Score': '58' isPart: true type: CPU humanName: 'Core i7-2675QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml index 77793d2d..0118eece 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'UserBenchmark CPU Score': '51.4' isPart: true type: CPU humanName: 'Core i7-2677M' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml index ca61d37a..3c4d6317 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 465 - 'Geekbench Multi-Core Score': 1312 - 'UserBenchmark CPU Score': '57.7' isPart: true type: CPU humanName: 'Core i7-2720QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml index 2a27769a..6931d7e2 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 543 - 'Geekbench Multi-Core Score': 1714 - 'UserBenchmark CPU Score': '59.9' isPart: true type: CPU humanName: 'Core i7-2760QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml index d9e5c26a..a9cee090 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 528 - 'Geekbench Multi-Core Score': 1426 - 'UserBenchmark CPU Score': '58.5' isPart: true type: CPU humanName: 'Core i7-2820QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml index 894a5ea8..d0caad58 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 557 - 'Geekbench Multi-Core Score': 1703 - 'UserBenchmark CPU Score': '61.7' isPart: true type: CPU humanName: 'Core i7-2860QM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml index 7dde4df2..a2b60ddb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml @@ -20,7 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'UserBenchmark CPU Score': '62.2' isPart: true type: CPU humanName: 'Core i7-2920XM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml index 5e966ef2..f4d3ab5f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: false 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.3 GHz' - 'Geekbench Single-Core Score': 514 - 'Geekbench Multi-Core Score': 1675 - 'UserBenchmark CPU Score': '64.6' isPart: true type: CPU humanName: 'Core i7-2960XM' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml index 06981784..ceeec091 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml @@ -18,7 +18,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'UserBenchmark CPU Score': '37.6' isPart: true type: CPU humanName: 'Pentium 967' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml index 692fd861..194c3026 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1000 MHz' - 'UserBenchmark CPU Score': '39.9' isPart: true type: CPU humanName: 'Pentium 987' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml index b11de4e0..1c79ee1b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 295 - 'Geekbench Multi-Core Score': 500 - 'UserBenchmark CPU Score': '44' isPart: true type: CPU humanName: 'Pentium B940' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml index b8fbca35..af8a58e0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 281 - 'Geekbench Multi-Core Score': 502 - 'UserBenchmark CPU Score': '43.3' isPart: true type: CPU humanName: 'Pentium B950' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml index 098e7a9d..05b898fa 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.1 GHz' - 'Geekbench Single-Core Score': 323 - 'Geekbench Multi-Core Score': 541 - 'UserBenchmark CPU Score': '43.7' isPart: true type: CPU humanName: 'Pentium B960' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml index 8364a1e0..2d14450a 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml @@ -19,7 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'UserBenchmark CPU Score': '45.6' isPart: true type: CPU humanName: 'Pentium B970' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml index c67d4d46..2d0d8980 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml @@ -19,9 +19,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.15 GHz' - 'Geekbench Single-Core Score': 355 - 'Geekbench Multi-Core Score': 575 - 'UserBenchmark CPU Score': '46.1' isPart: true type: CPU humanName: 'Pentium B980' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml index 1c0366da..b5f8bf4f 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml @@ -13,7 +13,6 @@ data: Socket: PBGA441 'Other Extensions': { } AVX/SSE/MMX: false - 'UserBenchmark CPU Score': '17.3' isPart: true type: CPU humanName: 'Atom Z520' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml index 96bc83b7..45fc54dc 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 636 - 'Geekbench Multi-Core Score': 1313 - 'UserBenchmark CPU Score': '36.1' isPart: true type: CPU humanName: 'Core i3-6006U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml index 514b6382..6ee839a3 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 736 - 'Geekbench Multi-Core Score': 1519 - 'UserBenchmark CPU Score': '43.4' isPart: true type: CPU humanName: 'Core i3-6100U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml index aaebd820..b6d3055c 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 773 - 'Geekbench Multi-Core Score': 1683 - 'UserBenchmark CPU Score': '54.4' isPart: true type: CPU humanName: 'Core i3-6157U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml index 72c67731..6274ecc4 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '56.5' isPart: true type: CPU humanName: 'Core i3-6167U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml index 27dcb1e2..2c602cab 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '41.3' isPart: true type: CPU humanName: 'Core i5-6200U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml index e905cd18..4460e2a7 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 933 - 'Geekbench Multi-Core Score': 1927 - 'UserBenchmark CPU Score': '55.9' isPart: true type: CPU humanName: 'Core i5-6260U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml index d9f7c2be..c8db1e85 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1002 - 'Geekbench Multi-Core Score': 2072 isPart: true type: CPU humanName: 'Core i5-6267U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml index 1cd3c13c..72eaeb38 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 969 - 'Geekbench Multi-Core Score': 2683 - 'UserBenchmark CPU Score': '53.7' isPart: true type: CPU humanName: 'Core i5-6300HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml index 15b6337b..9a7227c1 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '40.4' isPart: true type: CPU humanName: 'Core i5-6300U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml index 365776b0..43b6d59d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 923 - 'Geekbench Multi-Core Score': 1906 isPart: true type: CPU humanName: 'Core i5-6360U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml index 6a952f7d..d1bd74ed 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1039 - 'Geekbench Multi-Core Score': 2690 isPart: true type: CPU humanName: 'Core i5-6440HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml index 096fe15f..512bc442 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '45.6' isPart: true type: CPU humanName: 'Core i7-6500U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml index 2a591114..5ca34726 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml @@ -23,8 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 890 - 'Geekbench Multi-Core Score': 1932 isPart: true type: CPU humanName: 'Core i7-6560U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml index 181e881e..4db13edd 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '57.4' isPart: true type: CPU humanName: 'Core i7-6567U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml index b12cff76..1466fcf3 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '44.5' isPart: true type: CPU humanName: 'Core i7-6600U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml index dc5c7f66..c822c566 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 994 - 'Geekbench Multi-Core Score': 2023 - 'UserBenchmark CPU Score': '53.1' isPart: true type: CPU humanName: 'Core i7-6650U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml index 592ae3ed..01e8bc4e 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml @@ -24,10 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1064 - 'Geekbench Multi-Core Score': 3368 - '3DMark Fire Strike Physics Score': 2345 - 'UserBenchmark CPU Score': '58.7' isPart: true type: CPU humanName: 'Core i7-6700HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml index 71dc5b80..19e31ccb 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1122 - 'Geekbench Multi-Core Score': 3808 isPart: true type: CPU humanName: 'Core i7-6770HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml index 9699e85d..45ba4bd3 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1072 - 'Geekbench Multi-Core Score': 3580 - 'UserBenchmark CPU Score': '68.8' isPart: true type: CPU humanName: 'Core i7-6820HK' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml index 866d828f..9937aac6 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1064 - 'Geekbench Multi-Core Score': 3398 - 'UserBenchmark CPU Score': '60.1' isPart: true type: CPU humanName: 'Core i7-6820HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml index c7fb601c..c9f5444d 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml @@ -24,9 +24,6 @@ data: 'Maximum VRAM Capacity': '64 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1115 - 'Geekbench Multi-Core Score': 3656 - 'UserBenchmark CPU Score': '69.5' isPart: true type: CPU humanName: 'Core i7-6920HQ' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml index 7d9af6af..decd49f0 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml @@ -23,9 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'Geekbench Single-Core Score': 396 - 'Geekbench Multi-Core Score': 815 - 'UserBenchmark CPU Score': '48' isPart: true type: CPU humanName: 'Pentium 4405U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml index 20ca2a8d..f337cb43 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '16 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.4' - 'UserBenchmark CPU Score': '37.7' isPart: true type: CPU humanName: 'Pentium 4405Y' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml index 10402c0a..7c5aa8ff 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '52.8' isPart: true type: CPU humanName: 'Core i3-8145U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml index f9b1f5a5..85f331ea 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '52.7' isPart: true type: CPU humanName: 'Core i5-8265U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml index 75f3396e..b167b76b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '57.3' isPart: true type: CPU humanName: 'Core i5-8365U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml index 6301cf1b..daf40b3b 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '54.7' isPart: true type: CPU humanName: 'Core i7-8565U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml index d8834e8f..2e0f5414 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml @@ -24,7 +24,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '59.6' isPart: true type: CPU humanName: 'Core i7-8665U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml index 5f78494c..2bd08d28 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml @@ -23,7 +23,6 @@ data: 'Maximum VRAM Capacity': '32 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'UserBenchmark CPU Score': '49.8' isPart: true type: CPU humanName: 'Pentium 5405U' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml index c87bde54..fa152991 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml @@ -11,7 +11,6 @@ data: 'Die Size': '90 mm' Socket: PPGA478 'Other Extensions': { } - 'UserBenchmark CPU Score': '30' isPart: true type: CPU humanName: 'Core T2250' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml index 121c2122..60f1d610 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml @@ -11,7 +11,6 @@ data: 'Die Size': '90 mm' Socket: 'PBGA479, PPGA478' 'Other Extensions': { } - 'UserBenchmark CPU Score': '31.5' isPart: true type: CPU humanName: 'Core T2300' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml index 3c538919..fbc4ec26 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml @@ -11,7 +11,6 @@ data: 'Die Size': '90 mm' Socket: 'PBGA479, PPGA478' 'Other Extensions': { } - 'UserBenchmark CPU Score': '31.9' isPart: true type: CPU humanName: 'Core T2400' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml index 97c7ec7f..02e5b424 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml @@ -12,7 +12,6 @@ data: 'Release Date': '2006-02-14' Socket: 'PBGA479, PPGA478' 'Other Extensions': { } - 'UserBenchmark CPU Score': '32.2' isPart: true type: CPU humanName: 'Core T2500' diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml index 9305e2ed..6abfbed3 100644 --- a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml +++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml @@ -11,7 +11,6 @@ data: 'Die Size': '90 mm' Socket: 'PBGA479, PPGA478' 'Other Extensions': { } - 'UserBenchmark CPU Score': '31.9' isPart: true type: CPU humanName: 'Core T2600' diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml index 6e350064..93400562 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '63.1' isPart: true type: CPU humanName: 'Xeon W3520' diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml index 03725a55..39571604 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 432 - 'Geekbench Multi-Core Score': 1495 - 'UserBenchmark CPU Score': '64.6' isPart: true type: CPU humanName: 'Xeon W3530' diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml index b4a1babd..c3f0c8af 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 478 - 'Geekbench Multi-Core Score': 1566 - 'UserBenchmark CPU Score': '65.8' isPart: true type: CPU humanName: 'Xeon W3550' diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml index 9d63ee95..37009690 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 486 - 'Geekbench Multi-Core Score': 1699 - 'UserBenchmark CPU Score': '67' isPart: true type: CPU humanName: 'Xeon W3565' diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml index f1daf8ba..2d784d1b 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '72.7' isPart: true type: CPU humanName: 'Xeon W3570' diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml index 1f9de84b..a4393997 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml @@ -17,8 +17,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 837 - 'Geekbench Multi-Core Score': 4785 isPart: true type: CPU humanName: 'Xeon D-1541' diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml index 8d615ca0..b04045c5 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml @@ -13,7 +13,6 @@ data: Socket: 'LGA771, PLGA771' 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '34.1' isPart: true type: CPU humanName: 'Xeon E5310' diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml index 702fcb7b..9e945017 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml @@ -13,7 +13,6 @@ data: Socket: 'LGA771, PLGA771' 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '35.8' isPart: true type: CPU humanName: 'Xeon E5320' diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml index b3c1413e..9f75f779 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml @@ -13,7 +13,6 @@ data: Socket: 'LGA771, PLGA771' 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '39.5' isPart: true type: CPU humanName: 'Xeon E5335' diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml index cb136e29..e799344b 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml @@ -13,7 +13,6 @@ data: Socket: 'LGA771, PLGA771' 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '40.7' isPart: true type: CPU humanName: 'Xeon E5345' diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml index c34f6d80..ad9b8661 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1557 - 'Geekbench Multi-Core Score': 6527 isPart: true type: CPU humanName: 'Xeon E-2136' diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml index d5eebef9..54ba3c4a 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml @@ -24,8 +24,6 @@ data: 'Maximum VRAM Capacity': '128 GiB' 'DirectX Support': '12' 'OpenGL Support': '4.5' - 'Geekbench Single-Core Score': 1438 - 'Geekbench Multi-Core Score': 5557 isPart: true type: CPU humanName: 'Xeon E-2146G' diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml index 1ae418b7..93dc8f44 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 560 - 'Geekbench Multi-Core Score': 2665 - 'UserBenchmark CPU Score': '76.9' isPart: true type: CPU humanName: 'Xeon W3690' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml index c9748433..7e899462 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '41.9' isPart: true type: CPU humanName: 'Xeon E5405' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml index 5fc77408..3130233a 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '45.2' isPart: true type: CPU humanName: 'Xeon E5420' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml index 81b4a30a..4cd1c744 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '48' isPart: true type: CPU humanName: 'Xeon E5430' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml index ee829115..4fc26741 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml @@ -13,9 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 358 - 'Geekbench Multi-Core Score': 1046 - 'UserBenchmark CPU Score': '49' isPart: true type: CPU humanName: 'Xeon E5440' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml index 6f94bef3..21b00b71 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml @@ -13,9 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 381 - 'Geekbench Multi-Core Score': 1102 - 'UserBenchmark CPU Score': '50.5' isPart: true type: CPU humanName: 'Xeon E5450' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml index dc59aafb..df7332fa 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '47.6' isPart: true type: CPU humanName: 'Xeon E5462' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml index d1cca8cf..ee061717 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '50.7' isPart: true type: CPU humanName: 'Xeon E5472' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml index 79ff3c7a..100c98fc 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '46.7' isPart: true type: CPU humanName: 'Xeon L5420' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml index 0169f84c..d74f434c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '49.6' isPart: true type: CPU humanName: 'Xeon X5450' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml index 19d8acd0..b1a26aa2 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml @@ -13,9 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'Geekbench Single-Core Score': 421 - 'Geekbench Multi-Core Score': 1140 - 'UserBenchmark CPU Score': '51.6' isPart: true type: CPU humanName: 'Xeon X5460' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml index 7213da14..d53b3557 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '54.5' isPart: true type: CPU humanName: 'Xeon X5470' diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml index 584dc94b..147dd1bd 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml @@ -13,7 +13,6 @@ data: Socket: LGA771 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '50.8' isPart: true type: CPU humanName: 'Xeon X5472' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml index 7c6a4fc6..5305a46d 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1070 - 'Geekbench Multi-Core Score': 3070 - 'UserBenchmark CPU Score': '69.4' isPart: true type: CPU humanName: 'Xeon E3-1220 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml index 39850e48..689e947c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1109 - 'Geekbench Multi-Core Score': 3657 - 'UserBenchmark CPU Score': '72.8' isPart: true type: CPU humanName: 'Xeon E3-1230 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml index f05146c3..ad0bbfa9 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1134 - 'Geekbench Multi-Core Score': 3699 - 'UserBenchmark CPU Score': '72.2' isPart: true type: CPU humanName: 'Xeon E3-1240 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml index 66efe63b..372a77d6 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: AVX2 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.2 GHz' - 'Geekbench Single-Core Score': 1153 - 'Geekbench Multi-Core Score': 3765 - 'UserBenchmark CPU Score': '71.5' isPart: true type: CPU humanName: 'Xeon E3-1245 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml index 0236db7c..fc8ee714 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1153 - 'Geekbench Multi-Core Score': 3824 - 'UserBenchmark CPU Score': '75.2' isPart: true type: CPU humanName: 'Xeon E3-1270 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml index d113c832..447c3875 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml @@ -20,9 +20,6 @@ data: AVX/SSE/MMX: AVX2 'GPU Base Frequency': '350 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 1163 - 'Geekbench Multi-Core Score': 3645 - 'UserBenchmark CPU Score': '77.2' isPart: true type: CPU humanName: 'Xeon E3-1275 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml index 198e49e4..b1f83e0f 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX2 - 'Geekbench Single-Core Score': 1131 - 'Geekbench Multi-Core Score': 3702 isPart: true type: CPU humanName: 'Xeon E3-1280 v3' diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml index 7185b13d..6385c43c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 604 - 'Geekbench Multi-Core Score': 2119 isPart: true type: CPU humanName: 'Xeon E3-1230V2' diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml index fc941867..2d8d8e09 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml @@ -13,7 +13,6 @@ data: Socket: LGA775 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '43.1' isPart: true type: CPU humanName: 'Xeon X3220' diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml index 1c9ddec3..b3c9c1fd 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '61.3' isPart: true type: CPU humanName: 'Xeon X3430' diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml index 801778ef..1532bcb2 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 402 - 'Geekbench Multi-Core Score': 1398 - 'UserBenchmark CPU Score': '65.2' isPart: true type: CPU humanName: 'Xeon X3440' diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml index 2613c5fb..a10ffc38 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml @@ -19,9 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 424 - 'Geekbench Multi-Core Score': 1411 - 'UserBenchmark CPU Score': '66' isPart: true type: CPU humanName: 'Xeon X3450' diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml index 75e3e0e1..2417ba91 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '67.7' isPart: true type: CPU humanName: 'Xeon X3460' diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml index 3df56f07..460c466b 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml @@ -19,7 +19,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '68.7' isPart: true type: CPU humanName: 'Xeon X3470' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml index 5bc0757b..db5a2d99 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml @@ -15,7 +15,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '51.9' isPart: true type: CPU humanName: 'Xeon E5504' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml index 3e0d189b..50beb6b2 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml @@ -15,7 +15,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '54.2' isPart: true type: CPU humanName: 'Xeon E5506' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml index 98d046d4..5e9ad1b1 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml @@ -15,7 +15,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '55.2' isPart: true type: CPU humanName: 'Xeon E5507' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml index 75fe00e1..026bdd6e 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '59.1' isPart: true type: CPU humanName: 'Xeon E5520' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml index d42b1a3b..29c7431d 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '61.1' isPart: true type: CPU humanName: 'Xeon E5530' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml index 57b147d9..953ea9e4 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '63.1' isPart: true type: CPU humanName: 'Xeon E5540' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml index 84fc0490..fa72dccc 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '59.5' isPart: true type: CPU humanName: 'Xeon L5520' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml index 355bc24d..0aa95b89 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '68.1' isPart: true type: CPU humanName: 'Xeon X5560' diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml index 272bd590..8a119d73 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml @@ -17,7 +17,6 @@ data: Socket: FCLGA1366 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '69.2' isPart: true type: CPU humanName: 'Xeon X5570' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml index 63148ce4..8dc67629 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 380 - 'Geekbench Multi-Core Score': 1852 isPart: true type: CPU humanName: 'Xeon E5-2420' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml index 63e3bce3..3f9f3d50 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 419 - 'Geekbench Multi-Core Score': 1922 isPart: true type: CPU humanName: 'Xeon E5-2430' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml index e686375b..8d2d67ec 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 596 - 'Geekbench Multi-Core Score': 2268 isPart: true type: CPU humanName: 'Xeon E5-1620' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml index 3f5fd587..fa94deb1 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 603 - 'Geekbench Multi-Core Score': 2958 isPart: true type: CPU humanName: 'Xeon E5-1650' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml index 5d171dc3..e5d3b493 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 641 - 'Geekbench Multi-Core Score': 3082 isPart: true type: CPU humanName: 'Xeon E5-1660' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml index c748a07d..ae34319c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 390 - 'Geekbench Multi-Core Score': 1935 isPart: true type: CPU humanName: 'Xeon E5-2620' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml index d4ef01b9..58e19506 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 401 - 'Geekbench Multi-Core Score': 2265 isPart: true type: CPU humanName: 'Xeon E5-2640' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml index bba74cb1..f236d0d9 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 577 - 'Geekbench Multi-Core Score': 2008 isPart: true type: CPU humanName: 'Xeon E5-2643' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml index 0cc7aebf..26ec303a 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 431 - 'Geekbench Multi-Core Score': 2729 isPart: true type: CPU humanName: 'Xeon E5-2660' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml index d0acda75..59012f10 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 501 - 'Geekbench Multi-Core Score': 3051 - 'UserBenchmark CPU Score': '67.3' isPart: true type: CPU humanName: 'Xeon E5-2670' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml index 53cee3c0..5cbcbd21 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 550 - 'Geekbench Multi-Core Score': 3238 isPart: true type: CPU humanName: 'Xeon E5-2680' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml index 61a87a4e..012abc88 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 603 - 'Geekbench Multi-Core Score': 3654 isPart: true type: CPU humanName: 'Xeon E5-2687W' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml index 62b9d1b8..be9e1d51 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: false - 'Geekbench Single-Core Score': 553 - 'Geekbench Multi-Core Score': 3264 isPart: true type: CPU humanName: 'Xeon E5-2690' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml index bd1b9b04..fa91e122 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 563 - 'Geekbench Multi-Core Score': 1639 isPart: true type: CPU humanName: 'Xeon E3-1220' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml index eb8b253d..5a878f8a 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '850 MHz' 'GPU Boost Frequency': '1.35 GHz' - 'Geekbench Single-Core Score': 568 - 'Geekbench Multi-Core Score': 1681 isPart: true type: CPU humanName: 'Xeon E3-1225' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml index dc0c0b42..261fe32c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 584 - 'Geekbench Multi-Core Score': 1864 isPart: true type: CPU humanName: 'Xeon E3-1230' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml index 4824f322..b5704ed9 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 592 - 'Geekbench Multi-Core Score': 2115 - 'UserBenchmark CPU Score': '70.3' isPart: true type: CPU humanName: 'Xeon E3-1240' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml index 674056a4..2e819677 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml @@ -20,8 +20,6 @@ data: AVX/SSE/MMX: 'SSE 4.2' 'GPU Base Frequency': '650 MHz' 'GPU Boost Frequency': '1.25 GHz' - 'Geekbench Single-Core Score': 472 - 'Geekbench Multi-Core Score': 1564 isPart: true type: CPU humanName: 'Xeon E3-1260L' diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml index 5728a890..00be3c73 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 614 - 'Geekbench Multi-Core Score': 2103 isPart: true type: CPU humanName: 'Xeon E3-1270' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml index 512861ab..8ec1dcae 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1174 - 'Geekbench Multi-Core Score': 4239 isPart: true type: CPU humanName: 'Xeon W-2123' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml index a13f6147..388272fa 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1320 - 'Geekbench Multi-Core Score': 4880 isPart: true type: CPU humanName: 'Xeon W-2125' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml index d75e149f..56a316e7 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1216 - 'Geekbench Multi-Core Score': 5755 isPart: true type: CPU humanName: 'Xeon W-2133' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml index 4fff06ec..d61577d3 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1376 - 'Geekbench Multi-Core Score': 6341 isPart: true type: CPU humanName: 'Xeon W-2135' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml index 8c8eea09..fd1238c1 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1394 - 'Geekbench Multi-Core Score': 8156 isPart: true type: CPU humanName: 'Xeon W-2145' diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml index 7b803393..7ec7ce60 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1367 - 'Geekbench Multi-Core Score': 8541 isPart: true type: CPU humanName: 'Xeon W-2155' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml index b98bd16b..93fdd07f 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 381 - 'Geekbench Multi-Core Score': 1440 - 'UserBenchmark CPU Score': '59.4' isPart: true type: CPU humanName: 'Xeon E5620' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml index 671aaf37..2ec4c7a5 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 569 - 'Geekbench Multi-Core Score': 2628 - 'UserBenchmark CPU Score': '75.3' isPart: true type: CPU humanName: 'Xeon W3680' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml index e0aa6b6e..a24148e5 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 451 - 'Geekbench Multi-Core Score': 2220 - 'UserBenchmark CPU Score': '70.1' isPart: true type: CPU humanName: 'Xeon X5650' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml index 82e57443..f99fe0a7 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 468 - 'Geekbench Multi-Core Score': 2261 - 'UserBenchmark CPU Score': '71.3' isPart: true type: CPU humanName: 'Xeon X5660' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml index a965cb46..ae75fcc7 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml @@ -18,7 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'UserBenchmark CPU Score': '70.8' isPart: true type: CPU humanName: 'Xeon X5667' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml index a128fa8a..065c83e4 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 463 - 'Geekbench Multi-Core Score': 2305 isPart: true type: CPU humanName: 'Xeon X5670' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml index acc69de5..22d17b4a 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 493 - 'Geekbench Multi-Core Score': 2321 isPart: true type: CPU humanName: 'Xeon X5675' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml index ab8cd01a..50d6934c 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml @@ -18,8 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 530 - 'Geekbench Multi-Core Score': 2477 isPart: true type: CPU humanName: 'Xeon X5680' diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml index 4f9cf15b..a18ad01e 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml @@ -18,9 +18,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: 'SSE 4.2' - 'Geekbench Single-Core Score': 544 - 'Geekbench Multi-Core Score': 2587 - 'UserBenchmark CPU Score': '74.7' isPart: true type: CPU humanName: 'Xeon X5690' diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml index 327db7da..50780576 100644 --- a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml +++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml @@ -13,7 +13,6 @@ data: Socket: LGA775 'Other Extensions': - x86-64 - 'UserBenchmark CPU Score': '42.4' isPart: true type: CPU humanName: 'Xeon E3110' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml index 5cf94b5a..c4ca1820 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml @@ -16,8 +16,6 @@ data: 'Other Extensions': - x86-64 AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1469 - 'Geekbench Multi-Core Score': 10431 isPart: true type: CPU humanName: 'Xeon W-2295' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml index d9ce05c1..85fa956f 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml @@ -15,8 +15,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1380 - 'Geekbench Multi-Core Score': 7951 isPart: true type: CPU humanName: 'Xeon W-3223' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml index 20dc750b..e772ddd1 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml @@ -15,8 +15,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1418 - 'Geekbench Multi-Core Score': 10041 isPart: true type: CPU humanName: 'Xeon W-3235' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml index 28a3d18a..02f52bf9 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml @@ -15,8 +15,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1392 - 'Geekbench Multi-Core Score': 11702 isPart: true type: CPU humanName: 'Xeon W-3245' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml index fd042f92..344cbb82 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml @@ -15,8 +15,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 954 - 'Geekbench Multi-Core Score': 6802 isPart: true type: CPU humanName: 'Xeon W-3265M' diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml index 58d8d4e8..10f854dd 100644 --- a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml +++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml @@ -15,8 +15,6 @@ data: Socket: FCLGA3647 AES: true AVX/SSE/MMX: AVX-512 - 'Geekbench Single-Core Score': 1217 - 'Geekbench Multi-Core Score': 11569 isPart: true type: CPU humanName: 'Xeon W-3275M' From 4ed9897f97cb0120bf3543408e18f9fe2c21e09a Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 26 Mar 2024 13:08:53 +0000 Subject: [PATCH 08/41] wip? --- .dir-locals.el | 0 .gitignore | 0 .nvmrc | 0 LICENSE | 0 Makefile | 0 README.md | 0 build/3dmark-parse.js | 0 build/combine-specs.js | 0 build/combine-util.js | 0 build/create-cpu.js | 0 build/create-gpu.js | 0 build/create-spec.js | 0 build/geekbench-parse.js | 0 build/gen-specs.js | 0 build/intel-config.js | 0 build/intel-parse.js | 0 build/userbenchmark-parse.js | 0 build/util.js | 0 package.json | 0 public/.gitignore | 0 public/SpecDB-Markasoftware.png | Bin public/SpecDB-zcskwire2.png | Bin public/_redirects | 0 public/favicon.ico | Bin public/fonts/open-sans-v15-latin-600.woff | Bin public/fonts/open-sans-v15-latin-600.woff2 | Bin public/fonts/open-sans-v15-latin-regular.woff | Bin public/fonts/open-sans-v15-latin-regular.woff2 | Bin public/fonts/quicksand-v7-latin-300.woff | Bin public/fonts/quicksand-v7-latin-300.woff2 | Bin public/fonts/quicksand-v7-latin-regular.woff | Bin public/fonts/quicksand-v7-latin-regular.woff2 | Bin public/humans.txt | 0 public/icon-192.png | Bin public/icon-512.png | Bin public/index.html | 0 public/manifest.json | 0 public/robots.txt | 0 specs/.gitignore | 0 specs/APUs-CUSTOM.yaml | 0 specs/APUs-DESKTOP.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml | 0 specs/APUs-DESKTOP/Cezanne-inherit.yaml | 0 specs/APUs-DESKTOP/Cezanne.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml | 0 specs/APUs-DESKTOP/Kabini-APU.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml | 0 specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml | 0 specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml | 0 specs/APUs-DESKTOP/Kaveri-APU.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7800.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7600.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml | 0 specs/APUs-DESKTOP/Llano-APU.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3300.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3400.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3420.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3500.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3600.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3620.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3650.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3670K.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3800.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3820.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3850.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3870K.yaml | 0 specs/APUs-DESKTOP/Llano/E2-3200.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml | 0 specs/APUs-DESKTOP/Renoir-inherit.yaml | 0 specs/APUs-DESKTOP/Renoir.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml | 0 specs/APUs-DESKTOP/Richland-APU.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6700.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6700T.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6790B.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6790K.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6800B.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6800k.yaml | 0 specs/APUs-DESKTOP/Richland/A4-4000.yaml | 0 specs/APUs-DESKTOP/Richland/A4-4020.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6300.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6300B.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6320.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6320B.yaml | 0 specs/APUs-DESKTOP/Richland/A4-7300.yaml | 0 specs/APUs-DESKTOP/Richland/A4-7300B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6400B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6400K.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6420B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6420K.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500B.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500T.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6600K.yaml | 0 specs/APUs-DESKTOP/Trinity-APU.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5700.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5800B.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5800K.yaml | 0 specs/APUs-DESKTOP/Trinity/A4-5300.yaml | 0 specs/APUs-DESKTOP/Trinity/A4-5300B.yaml | 0 specs/APUs-DESKTOP/Trinity/A6-5400B.yaml | 0 specs/APUs-DESKTOP/Trinity/A6-5400k.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5500.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5500B.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5600K.yaml | 0 specs/APUs-EMBEDDED.yaml | 0 specs/APUs-MOBILE.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge-M.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml | 0 specs/APUs-MOBILE/Carrizo-M.yaml | 0 specs/APUs-MOBILE/Carrizo-inherit.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8700B.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8700P.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8730B.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8780P.yaml | 0 specs/APUs-MOBILE/Carrizo/A12-8800B.yaml | 0 specs/APUs-MOBILE/Carrizo/A12-8830B.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8500B.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8500P.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8530B.yaml | 0 specs/APUs-MOBILE/Carrizo/A8-8600B.yaml | 0 specs/APUs-MOBILE/Carrizo/A8-8600P.yaml | 0 specs/APUs-MOBILE/Carrizo/FX-8800P.yaml | 0 specs/APUs-MOBILE/Cezanne-M-inherit.yaml | 0 specs/APUs-MOBILE/Cezanne-M.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml | 0 specs/APUs-MOBILE/Kaveri-M.yaml | 0 specs/APUs-MOBILE/Kaveri-inherit.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7300.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7350B.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7400P.yaml | 0 specs/APUs-MOBILE/Kaveri/A6-7000.yaml | 0 specs/APUs-MOBILE/Kaveri/A6-7050B.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7100.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7150B.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7200P.yaml | 0 specs/APUs-MOBILE/Kaveri/FX-7500.yaml | 0 specs/APUs-MOBILE/Kaveri/FX-7600P.yaml | 0 specs/APUs-MOBILE/Phoenix-inherit.yaml | 0 specs/APUs-MOBILE/Phoenix.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml | 0 specs/APUs-MOBILE/Raven-Ridge-M.yaml | 0 specs/APUs-MOBILE/Raven-Ridge-inherit.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml | 0 specs/APUs-MOBILE/Renoir-M-inherit.yaml | 0 specs/APUs-MOBILE/Renoir-M.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml | 0 specs/APUs-MOBILE/Richland-M.yaml | 0 specs/APUs-MOBILE/Trinity-M.yaml | 0 specs/APUs-SERVER.yaml | 0 specs/APUs-ULTRA-MOBILE.yaml | 0 specs/CPUs-DESKTOP.yaml | 0 specs/CPUs-DESKTOP/5K86-inherit.yaml | 0 specs/CPUs-DESKTOP/5K86.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR120.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR133.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR150.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR166.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR200.yaml | 0 specs/CPUs-DESKTOP/Agena-inherit.yaml | 0 specs/CPUs-DESKTOP/Agena.yaml | 0 specs/CPUs-DESKTOP/Agena/9100e.yaml | 0 specs/CPUs-DESKTOP/Agena/9150e.yaml | 0 specs/CPUs-DESKTOP/Agena/9350e.yaml | 0 specs/CPUs-DESKTOP/Agena/9450e.yaml | 0 specs/CPUs-DESKTOP/Agena/9500.yaml | 0 specs/CPUs-DESKTOP/Agena/9550.yaml | 0 specs/CPUs-DESKTOP/Agena/9600.yaml | 0 specs/CPUs-DESKTOP/Agena/9600B.yaml | 0 specs/CPUs-DESKTOP/Agena/9600BE.yaml | 0 specs/CPUs-DESKTOP/Agena/9650.yaml | 0 specs/CPUs-DESKTOP/Agena/9750.yaml | 0 specs/CPUs-DESKTOP/Agena/9750B.yaml | 0 specs/CPUs-DESKTOP/Agena/9850.yaml | 0 specs/CPUs-DESKTOP/Agena/9850B.yaml | 0 specs/CPUs-DESKTOP/Agena/9850BE.yaml | 0 specs/CPUs-DESKTOP/Agena/9950BE.yaml | 0 specs/CPUs-DESKTOP/Argon-inherit.yaml | 0 specs/CPUs-DESKTOP/Argon.yaml | 0 specs/CPUs-DESKTOP/Argon/500.yaml | 0 specs/CPUs-DESKTOP/Argon/550.yaml | 0 specs/CPUs-DESKTOP/Argon/600.yaml | 0 specs/CPUs-DESKTOP/Argon/650.yaml | 0 specs/CPUs-DESKTOP/Argon/700.yaml | 0 specs/CPUs-DESKTOP/Barton-inherit.yaml | 0 specs/CPUs-DESKTOP/Barton.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2500.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2800.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-3000.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-3200.yaml | 0 specs/CPUs-DESKTOP/Brisbane-inherit.yaml | 0 specs/CPUs-DESKTOP/Brisbane.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml | 0 .../Bristol-Ridge/Excavator-4C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer-inherit.yaml | 0 specs/CPUs-DESKTOP/Bulldozer.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml | 0 specs/CPUs-DESKTOP/Callisto-inherit.yaml | 0 specs/CPUs-DESKTOP/Callisto.yaml | 0 specs/CPUs-DESKTOP/Callisto/545.yaml | 0 specs/CPUs-DESKTOP/Callisto/550.yaml | 0 specs/CPUs-DESKTOP/Callisto/550BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/555BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/560BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/565BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/570BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/B53.yaml | 0 specs/CPUs-DESKTOP/Callisto/B55.yaml | 0 specs/CPUs-DESKTOP/Callisto/B57.yaml | 0 specs/CPUs-DESKTOP/Callisto/B59.yaml | 0 specs/CPUs-DESKTOP/Callisto/B60.yaml | 0 specs/CPUs-DESKTOP/Carrizo-inherit.yaml | 0 specs/CPUs-DESKTOP/Carrizo.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml | 0 specs/CPUs-DESKTOP/Chomper-inherit.yaml | 0 specs/CPUs-DESKTOP/Chomper.yaml | 0 specs/CPUs-DESKTOP/Chomper/200.yaml | 0 specs/CPUs-DESKTOP/Chomper/233.yaml | 0 specs/CPUs-DESKTOP/Chomper/266.yaml | 0 specs/CPUs-DESKTOP/Chomper/300.yaml | 0 specs/CPUs-DESKTOP/Chomper/333.yaml | 0 specs/CPUs-DESKTOP/Chomper/350.yaml | 0 specs/CPUs-DESKTOP/Chomper/366.yaml | 0 specs/CPUs-DESKTOP/Chomper/380.yaml | 0 specs/CPUs-DESKTOP/Chomper/400.yaml | 0 specs/CPUs-DESKTOP/Chomper/450.yaml | 0 specs/CPUs-DESKTOP/Chomper/475.yaml | 0 specs/CPUs-DESKTOP/Chomper/500.yaml | 0 specs/CPUs-DESKTOP/Chomper/533.yaml | 0 specs/CPUs-DESKTOP/Chomper/550.yaml | 0 specs/CPUs-DESKTOP/ClawHammer-inherit.yaml | 0 specs/CPUs-DESKTOP/ClawHammer.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/2800+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3000+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3200+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3400+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3600+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3700+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml | 0 specs/CPUs-DESKTOP/Colfax-inherit.yaml | 0 specs/CPUs-DESKTOP/Colfax.yaml | 0 specs/CPUs-DESKTOP/Colfax/2920X.yaml | 0 specs/CPUs-DESKTOP/Colfax/2950X.yaml | 0 specs/CPUs-DESKTOP/Colfax/2970WX.yaml | 0 specs/CPUs-DESKTOP/Colfax/2990WX.yaml | 0 specs/CPUs-DESKTOP/Deneb-inherit.yaml | 0 specs/CPUs-DESKTOP/Deneb.yaml | 0 specs/CPUs-DESKTOP/Deneb/805.yaml | 0 specs/CPUs-DESKTOP/Deneb/810.yaml | 0 specs/CPUs-DESKTOP/Deneb/820.yaml | 0 specs/CPUs-DESKTOP/Deneb/830.yaml | 0 specs/CPUs-DESKTOP/Deneb/900e.yaml | 0 specs/CPUs-DESKTOP/Deneb/905e.yaml | 0 specs/CPUs-DESKTOP/Deneb/910.yaml | 0 specs/CPUs-DESKTOP/Deneb/910e.yaml | 0 specs/CPUs-DESKTOP/Deneb/920.yaml | 0 specs/CPUs-DESKTOP/Deneb/925.yaml | 0 specs/CPUs-DESKTOP/Deneb/940BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/945.yaml | 0 specs/CPUs-DESKTOP/Deneb/955.yaml | 0 specs/CPUs-DESKTOP/Deneb/955BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/965BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/970BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/975BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/980BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/B93.yaml | 0 specs/CPUs-DESKTOP/Deneb/B95.yaml | 0 specs/CPUs-DESKTOP/Deneb/B97.yaml | 0 specs/CPUs-DESKTOP/Deneb/B99.yaml | 0 specs/CPUs-DESKTOP/Heka-inherit.yaml | 0 specs/CPUs-DESKTOP/Heka.yaml | 0 specs/CPUs-DESKTOP/Heka/700e.yaml | 0 specs/CPUs-DESKTOP/Heka/705e.yaml | 0 specs/CPUs-DESKTOP/Heka/710.yaml | 0 specs/CPUs-DESKTOP/Heka/715BE.yaml | 0 specs/CPUs-DESKTOP/Heka/720.yaml | 0 specs/CPUs-DESKTOP/Heka/720BE.yaml | 0 specs/CPUs-DESKTOP/Heka/740BE.yaml | 0 specs/CPUs-DESKTOP/Heka/B73.yaml | 0 specs/CPUs-DESKTOP/Heka/B75.yaml | 0 specs/CPUs-DESKTOP/Heka/B77.yaml | 0 specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Kaveri-inherit.yaml | 0 specs/CPUs-DESKTOP/Kaveri.yaml | 0 specs/CPUs-DESKTOP/Kaveri/450.yaml | 0 specs/CPUs-DESKTOP/Kaveri/840.yaml | 0 specs/CPUs-DESKTOP/Kaveri/840P.yaml | 0 specs/CPUs-DESKTOP/Kaveri/860K.yaml | 0 specs/CPUs-DESKTOP/Kaveri/870K.yaml | 0 specs/CPUs-DESKTOP/Kaveri/880K.yaml | 0 specs/CPUs-DESKTOP/Kuma-inherit.yaml | 0 specs/CPUs-DESKTOP/Kuma.yaml | 0 specs/CPUs-DESKTOP/Kuma/6500BE.yaml | 0 specs/CPUs-DESKTOP/Kuma/7450.yaml | 0 specs/CPUs-DESKTOP/Kuma/7550.yaml | 0 specs/CPUs-DESKTOP/Kuma/7750BE.yaml | 0 specs/CPUs-DESKTOP/Kuma/7850BE.yaml | 0 specs/CPUs-DESKTOP/Lima-inherit.yaml | 0 specs/CPUs-DESKTOP/Lima.yaml | 0 specs/CPUs-DESKTOP/Lima/2650E.yaml | 0 specs/CPUs-DESKTOP/Lima/2850E.yaml | 0 specs/CPUs-DESKTOP/Lima/3500+.yaml | 0 specs/CPUs-DESKTOP/Lima/3800+.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1640.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1640B.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1660.yaml | 0 specs/CPUs-DESKTOP/Little-Foot.yaml | 0 specs/CPUs-DESKTOP/Little-Foot/266.yaml | 0 specs/CPUs-DESKTOP/Little-Foot/300.yaml | 0 specs/CPUs-DESKTOP/Llano-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Llano-inherit.yaml | 0 specs/CPUs-DESKTOP/Llano.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml | 0 specs/CPUs-DESKTOP/Manchester-inherit.yaml | 0 specs/CPUs-DESKTOP/Manchester.yaml | 0 specs/CPUs-DESKTOP/Manchester/3200+.yaml | 0 specs/CPUs-DESKTOP/Manchester/3500+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Matisse-inherit.yaml | 0 specs/CPUs-DESKTOP/Matisse.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml | 0 specs/CPUs-DESKTOP/Model-6-inherit.yaml | 0 specs/CPUs-DESKTOP/Model-6.yaml | 0 specs/CPUs-DESKTOP/Model-6/166.yaml | 0 specs/CPUs-DESKTOP/Model-6/200.yaml | 0 specs/CPUs-DESKTOP/Model-6/233.yaml | 0 specs/CPUs-DESKTOP/Newcastle-inherit.yaml | 0 specs/CPUs-DESKTOP/Newcastle.yaml | 0 specs/CPUs-DESKTOP/Newcastle/2800+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3000+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3000+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3200+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3200+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3300+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3400+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3400+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3500+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3800+.yaml | 0 specs/CPUs-DESKTOP/Orion.yaml | 0 specs/CPUs-DESKTOP/Orion/1000.yaml | 0 specs/CPUs-DESKTOP/Orion/900.yaml | 0 specs/CPUs-DESKTOP/Orion/950.yaml | 0 specs/CPUs-DESKTOP/Orleans-inherit.yaml | 0 specs/CPUs-DESKTOP/Orleans.yaml | 0 specs/CPUs-DESKTOP/Orleans/3000+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3200+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml | 0 specs/CPUs-DESKTOP/Orleans/3500+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3800+.yaml | 0 specs/CPUs-DESKTOP/Orleans/4000+.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1600.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1620.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1640.yaml | 0 specs/CPUs-DESKTOP/Palomino-inherit.yaml | 0 specs/CPUs-DESKTOP/Palomino.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1500.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1600.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1700.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1800.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1900.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-2100.yaml | 0 specs/CPUs-DESKTOP/Piledriver-inherit.yaml | 0 specs/CPUs-DESKTOP/Piledriver.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml | 0 specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml | 0 .../Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml | 0 .../Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml | 0 .../Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml | 0 specs/CPUs-DESKTOP/Pluto-inherit.yaml | 0 specs/CPUs-DESKTOP/Pluto.yaml | 0 specs/CPUs-DESKTOP/Pluto/550.yaml | 0 specs/CPUs-DESKTOP/Pluto/600.yaml | 0 specs/CPUs-DESKTOP/Pluto/650.yaml | 0 specs/CPUs-DESKTOP/Pluto/700.yaml | 0 specs/CPUs-DESKTOP/Pluto/750.yaml | 0 specs/CPUs-DESKTOP/Pluto/800.yaml | 0 specs/CPUs-DESKTOP/Pluto/850.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/620.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/630.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/635.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/640.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/645.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/650.yaml | 0 specs/CPUs-DESKTOP/Propus-inherit.yaml | 0 specs/CPUs-DESKTOP/Propus.yaml | 0 specs/CPUs-DESKTOP/Propus/840.yaml | 0 specs/CPUs-DESKTOP/Propus/850.yaml | 0 specs/CPUs-DESKTOP/Rana-inherit.yaml | 0 specs/CPUs-DESKTOP/Rana.yaml | 0 specs/CPUs-DESKTOP/Rana/400e.yaml | 0 specs/CPUs-DESKTOP/Rana/405e.yaml | 0 specs/CPUs-DESKTOP/Rana/415e.yaml | 0 specs/CPUs-DESKTOP/Rana/420e.yaml | 0 specs/CPUs-DESKTOP/Rana/425.yaml | 0 specs/CPUs-DESKTOP/Rana/425e.yaml | 0 specs/CPUs-DESKTOP/Rana/435.yaml | 0 specs/CPUs-DESKTOP/Rana/440.yaml | 0 specs/CPUs-DESKTOP/Rana/445.yaml | 0 specs/CPUs-DESKTOP/Rana/450.yaml | 0 specs/CPUs-DESKTOP/Rana/455.yaml | 0 specs/CPUs-DESKTOP/Rana/460.yaml | 0 specs/CPUs-DESKTOP/Raphael-inherit.yaml | 0 specs/CPUs-DESKTOP/Raphael.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/215.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/220.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/240.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/245.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/255.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/260.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/265.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/270.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/280.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron/180.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron/190.yaml | 0 specs/CPUs-DESKTOP/Regor-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor.yaml | 0 specs/CPUs-DESKTOP/Regor/511.yaml | 0 specs/CPUs-DESKTOP/Regor/521.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron/240.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron/250.yaml | 0 specs/CPUs-DESKTOP/Richland-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Richland-inherit.yaml | 0 specs/CPUs-DESKTOP/Richland.yaml | 0 specs/CPUs-DESKTOP/Richland/350.yaml | 0 specs/CPUs-DESKTOP/Richland/370K.yaml | 0 specs/CPUs-DESKTOP/Richland/750.yaml | 0 specs/CPUs-DESKTOP/Richland/760K.yaml | 0 specs/CPUs-DESKTOP/SSA5.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml | 0 specs/CPUs-DESKTOP/San-Diego-inherit.yaml | 0 specs/CPUs-DESKTOP/San-Diego.yaml | 0 specs/CPUs-DESKTOP/San-Diego/3500+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/3700+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/4000+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/FX_55.yaml | 0 specs/CPUs-DESKTOP/San-Diego/FX_57.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml | 0 specs/CPUs-DESKTOP/Sargas-inherit.yaml | 0 specs/CPUs-DESKTOP/Sargas.yaml | 0 specs/CPUs-DESKTOP/Sargas/160u.yaml | 0 specs/CPUs-DESKTOP/Sargas/170u.yaml | 0 specs/CPUs-DESKTOP/Sharptooth-inherit.yaml | 0 specs/CPUs-DESKTOP/Sharptooth.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/333.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/400.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/450.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml | 0 specs/CPUs-DESKTOP/Thorton-inherit.yaml | 0 specs/CPUs-DESKTOP/Thorton.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2200.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2400.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-3100.yaml | 0 specs/CPUs-DESKTOP/Thuban-inherit.yaml | 0 specs/CPUs-DESKTOP/Thuban.yaml | 0 specs/CPUs-DESKTOP/Thuban/1035T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1045T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1055T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1065T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1075T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1075TBE.yaml | 0 specs/CPUs-DESKTOP/Thuban/1090TBE.yaml | 0 specs/CPUs-DESKTOP/Thuban/1100TBE.yaml | 0 specs/CPUs-DESKTOP/Thunderbird-inherit.yaml | 0 specs/CPUs-DESKTOP/Thunderbird.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1000B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1000C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1100.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1133.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1200B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1200C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1266.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1300.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1333.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1400B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1400C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/600.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/650.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/700.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/750.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/800.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/850.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/900.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/950.yaml | 0 specs/CPUs-DESKTOP/Toledo-inherit.yaml | 0 specs/CPUs-DESKTOP/Toledo.yaml | 0 specs/CPUs-DESKTOP/Toledo/3700+.yaml | 0 specs/CPUs-DESKTOP/Toledo/4000+.yaml | 0 specs/CPUs-DESKTOP/Toledo/FX-60.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Toliman-inherit.yaml | 0 specs/CPUs-DESKTOP/Toliman.yaml | 0 specs/CPUs-DESKTOP/Toliman/8250e.yaml | 0 specs/CPUs-DESKTOP/Toliman/8400.yaml | 0 specs/CPUs-DESKTOP/Toliman/8450.yaml | 0 specs/CPUs-DESKTOP/Toliman/8450e.yaml | 0 specs/CPUs-DESKTOP/Toliman/8550.yaml | 0 specs/CPUs-DESKTOP/Toliman/8600.yaml | 0 specs/CPUs-DESKTOP/Toliman/8600B.yaml | 0 specs/CPUs-DESKTOP/Toliman/8650.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750B.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750BE.yaml | 0 specs/CPUs-DESKTOP/Toliman/8850.yaml | 0 specs/CPUs-DESKTOP/Trinity-Sempron.yaml | 0 specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Trinity-inherit.yaml | 0 specs/CPUs-DESKTOP/Trinity.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml | 0 specs/CPUs-DESKTOP/Valencia/4226.yaml | 0 specs/CPUs-DESKTOP/Valencia/4228HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4230HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4234.yaml | 0 specs/CPUs-DESKTOP/Valencia/4238.yaml | 0 specs/CPUs-DESKTOP/Valencia/4240.yaml | 0 specs/CPUs-DESKTOP/Valencia/4256EE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4274HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4276HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4280.yaml | 0 specs/CPUs-DESKTOP/Valencia/4284.yaml | 0 specs/CPUs-DESKTOP/Venice-inherit.yaml | 0 specs/CPUs-DESKTOP/Venice.yaml | 0 specs/CPUs-DESKTOP/Venice/1500+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3000+.yaml | 0 specs/CPUs-DESKTOP/Venice/3000+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3200+.yaml | 0 specs/CPUs-DESKTOP/Venice/3200+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3400+.yaml | 0 specs/CPUs-DESKTOP/Venice/3400+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3500+.yaml | 0 specs/CPUs-DESKTOP/Venice/3800+.yaml | 0 specs/CPUs-DESKTOP/Vermeer-inherit.yaml | 0 specs/CPUs-DESKTOP/Vermeer.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven-inherit.yaml | 0 specs/CPUs-DESKTOP/Whitehaven.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1900X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1920X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1950X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml | 0 specs/CPUs-DESKTOP/Winchester-inherit.yaml | 0 specs/CPUs-DESKTOP/Winchester.yaml | 0 specs/CPUs-DESKTOP/Winchester/3000+.yaml | 0 specs/CPUs-DESKTOP/Winchester/3200+.yaml | 0 specs/CPUs-DESKTOP/Winchester/3500+.yaml | 0 specs/CPUs-DESKTOP/Windsor-inherit.yaml | 0 specs/CPUs-DESKTOP/Windsor.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-62.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-70.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-72.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-74.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml | 0 specs/CPUs-DESKTOP/Zosma-inherit.yaml | 0 specs/CPUs-DESKTOP/Zosma.yaml | 0 specs/CPUs-DESKTOP/Zosma/650T.yaml | 0 specs/CPUs-DESKTOP/Zosma/840T.yaml | 0 specs/CPUs-DESKTOP/Zosma/960T.yaml | 0 specs/CPUs-DESKTOP/Zosma/960TBE.yaml | 0 specs/CPUs-EMBEDDED.yaml | 0 specs/CPUs-MOBILE.yaml | 0 specs/CPUs-SERVER.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6308.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6320.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6328.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6344.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6348.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6376.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6378.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6380.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml | 0 specs/CPUs-SERVER/Barcelona-inherit.yaml | 0 specs/CPUs-SERVER/Barcelona.yaml | 0 specs/CPUs-SERVER/Barcelona/2344HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2346HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2347.yaml | 0 specs/CPUs-SERVER/Barcelona/2347HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2350.yaml | 0 specs/CPUs-SERVER/Barcelona/2350HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2352.yaml | 0 specs/CPUs-SERVER/Barcelona/2354.yaml | 0 specs/CPUs-SERVER/Barcelona/2356.yaml | 0 specs/CPUs-SERVER/Barcelona/2358SE.yaml | 0 specs/CPUs-SERVER/Barcelona/2360SE.yaml | 0 specs/CPUs-SERVER/Barcelona/8346HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8347.yaml | 0 specs/CPUs-SERVER/Barcelona/8347HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8350.yaml | 0 specs/CPUs-SERVER/Barcelona/8350HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8352.yaml | 0 specs/CPUs-SERVER/Barcelona/8354.yaml | 0 specs/CPUs-SERVER/Barcelona/8356.yaml | 0 specs/CPUs-SERVER/Barcelona/8358SE.yaml | 0 specs/CPUs-SERVER/Barcelona/8360SE.yaml | 0 specs/CPUs-SERVER/Budapest-inherit.yaml | 0 specs/CPUs-SERVER/Budapest.yaml | 0 specs/CPUs-SERVER/Budapest/1352.yaml | 0 specs/CPUs-SERVER/Budapest/1354.yaml | 0 specs/CPUs-SERVER/Budapest/1356.yaml | 0 specs/CPUs-SERVER/Delhi-inherit.yaml | 0 specs/CPUs-SERVER/Delhi.yaml | 0 specs/CPUs-SERVER/Delhi/3320EE.yaml | 0 specs/CPUs-SERVER/Delhi/3350HE.yaml | 0 specs/CPUs-SERVER/Delhi/3365.yaml | 0 specs/CPUs-SERVER/Delhi/3380.yaml | 0 specs/CPUs-SERVER/Genoa-inherit.yaml | 0 specs/CPUs-SERVER/Genoa.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9124.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9224.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9254.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9334.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9354.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9454.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9534.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9554.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9634.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9654.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml | 0 specs/CPUs-SERVER/Interlagos-inherit.yaml | 0 specs/CPUs-SERVER/Interlagos.yaml | 0 specs/CPUs-SERVER/Interlagos/6204.yaml | 0 specs/CPUs-SERVER/Interlagos/6212.yaml | 0 specs/CPUs-SERVER/Interlagos/6220.yaml | 0 specs/CPUs-SERVER/Interlagos/6230HE.yaml | 0 specs/CPUs-SERVER/Interlagos/6234.yaml | 0 specs/CPUs-SERVER/Interlagos/6238.yaml | 0 specs/CPUs-SERVER/Interlagos/6262HE.yaml | 0 specs/CPUs-SERVER/Interlagos/6272.yaml | 0 specs/CPUs-SERVER/Interlagos/6274.yaml | 0 specs/CPUs-SERVER/Interlagos/6276.yaml | 0 specs/CPUs-SERVER/Interlagos/6278.yaml | 0 specs/CPUs-SERVER/Interlagos/6282SE.yaml | 0 specs/CPUs-SERVER/Interlagos/6284SE.yaml | 0 specs/CPUs-SERVER/Istanbul-inherit.yaml | 0 specs/CPUs-SERVER/Istanbul.yaml | 0 specs/CPUs-SERVER/Istanbul/2419.yaml | 0 specs/CPUs-SERVER/Istanbul/2419EE.yaml | 0 specs/CPUs-SERVER/Istanbul/2423HE.yaml | 0 specs/CPUs-SERVER/Istanbul/2425HE.yaml | 0 specs/CPUs-SERVER/Istanbul/2427.yaml | 0 specs/CPUs-SERVER/Istanbul/2431.yaml | 0 specs/CPUs-SERVER/Istanbul/2435.yaml | 0 specs/CPUs-SERVER/Istanbul/2439SE.yaml | 0 specs/CPUs-SERVER/Istanbul/8419.yaml | 0 specs/CPUs-SERVER/Istanbul/8419EE.yaml | 0 specs/CPUs-SERVER/Istanbul/8423.yaml | 0 specs/CPUs-SERVER/Istanbul/8425HE.yaml | 0 specs/CPUs-SERVER/Istanbul/8431.yaml | 0 specs/CPUs-SERVER/Istanbul/8435.yaml | 0 specs/CPUs-SERVER/Istanbul/8439SE.yaml | 0 specs/CPUs-SERVER/Lisbon-inherit.yaml | 0 specs/CPUs-SERVER/Lisbon.yaml | 0 specs/CPUs-SERVER/Lisbon/4122.yaml | 0 specs/CPUs-SERVER/Lisbon/4130.yaml | 0 specs/CPUs-SERVER/Lisbon/4133.yaml | 0 specs/CPUs-SERVER/Lisbon/4162EE.yaml | 0 specs/CPUs-SERVER/Lisbon/4164EE.yaml | 0 specs/CPUs-SERVER/Lisbon/4170HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4171HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4174HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4176HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4180.yaml | 0 specs/CPUs-SERVER/Lisbon/4184.yaml | 0 specs/CPUs-SERVER/Magny-Cours-inherit.yaml | 0 specs/CPUs-SERVER/Magny-Cours.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6124HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6128.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6128HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6132HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6134.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6136.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6140.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6164HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6166HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6168.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6172.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6174.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6176.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6176SE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6180SE.yaml | 0 specs/CPUs-SERVER/Naples-inherit.yaml | 0 specs/CPUs-SERVER/Naples.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7251.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7261.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7281.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7301.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7351.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7351P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7371.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7401.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7401P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7451.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7501.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7551.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7551P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7601.yaml | 0 specs/CPUs-SERVER/Rome-inherit.yaml | 0 specs/CPUs-SERVER/Rome.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7232P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7252.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7262.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7272.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7282.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7302.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7302P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7352.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7402.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7402P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7452.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7502.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7502P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7532.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7542.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7552.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7642.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7662.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7702.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7702P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7742.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F32.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F52.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F72.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7H12.yaml | 0 specs/CPUs-SERVER/Seoul-inherit.yaml | 0 specs/CPUs-SERVER/Seoul.yaml | 0 specs/CPUs-SERVER/Seoul/4310HE.yaml | 0 specs/CPUs-SERVER/Seoul/4332HE.yaml | 0 specs/CPUs-SERVER/Seoul/4334.yaml | 0 specs/CPUs-SERVER/Seoul/4340.yaml | 0 specs/CPUs-SERVER/Seoul/4365EE.yaml | 0 specs/CPUs-SERVER/Seoul/4376HE.yaml | 0 specs/CPUs-SERVER/Seoul/4386.yaml | 0 specs/CPUs-SERVER/Shanghai-inherit.yaml | 0 specs/CPUs-SERVER/Shanghai.yaml | 0 specs/CPUs-SERVER/Shanghai/2372HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2373EE.yaml | 0 specs/CPUs-SERVER/Shanghai/2374HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2376HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2377EE.yaml | 0 specs/CPUs-SERVER/Shanghai/2378.yaml | 0 specs/CPUs-SERVER/Shanghai/2379HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2380.yaml | 0 specs/CPUs-SERVER/Shanghai/2381HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2382.yaml | 0 specs/CPUs-SERVER/Shanghai/2384.yaml | 0 specs/CPUs-SERVER/Shanghai/2386SE.yaml | 0 specs/CPUs-SERVER/Shanghai/2387.yaml | 0 specs/CPUs-SERVER/Shanghai/2389.yaml | 0 specs/CPUs-SERVER/Shanghai/2393SE.yaml | 0 specs/CPUs-SERVER/Shanghai/8374HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8376HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8378.yaml | 0 specs/CPUs-SERVER/Shanghai/8379HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8380.yaml | 0 specs/CPUs-SERVER/Shanghai/8381HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8382.yaml | 0 specs/CPUs-SERVER/Shanghai/8384.yaml | 0 specs/CPUs-SERVER/Shanghai/8386SE.yaml | 0 specs/CPUs-SERVER/Shanghai/8387.yaml | 0 specs/CPUs-SERVER/Shanghai/8389.yaml | 0 specs/CPUs-SERVER/Shanghai/8393SE.yaml | 0 specs/CPUs-SERVER/Snowy-Owl-inherit.yaml | 0 specs/CPUs-SERVER/Snowy-Owl.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml | 0 specs/CPUs-SERVER/Suzuka-inherit.yaml | 0 specs/CPUs-SERVER/Suzuka.yaml | 0 specs/CPUs-SERVER/Suzuka/1381.yaml | 0 specs/CPUs-SERVER/Suzuka/1385.yaml | 0 specs/CPUs-SERVER/Suzuka/1389.yaml | 0 specs/CPUs-SERVER/Valencia-inherit.yaml | 0 specs/CPUs-SERVER/Valencia.yaml | 0 specs/CPUs-SERVER/Warsaw-inherit.yaml | 0 specs/CPUs-SERVER/Warsaw.yaml | 0 specs/CPUs-SERVER/Warsaw/6338P.yaml | 0 specs/CPUs-SERVER/Warsaw/6370P.yaml | 0 specs/CPUs-SERVER/Zurich-inherit.yaml | 0 specs/CPUs-SERVER/Zurich.yaml | 0 specs/CPUs-SERVER/Zurich/3250HE.yaml | 0 specs/CPUs-SERVER/Zurich/3260HE.yaml | 0 specs/CPUs-SERVER/Zurich/3280.yaml | 0 specs/GPUs-CONSUMER.yaml | 0 specs/GPUs-CONSUMER/GCN-1.yaml | 0 specs/GPUs-CONSUMER/GCN-2.yaml | 0 specs/GPUs-CONSUMER/GCN-3.yaml | 0 specs/GPUs-CONSUMER/GCN-4.yaml | 0 specs/GPUs-CONSUMER/GCN-5.1.yaml | 0 specs/GPUs-CONSUMER/GCN-5.yaml | 0 specs/GPUs-CONSUMER/HD4000.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4250.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4350.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4520.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4550.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4570.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4650.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4670.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4700.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4710.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4730.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4750.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4770.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4810.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4830.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4850.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4855.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4860.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4870.yaml | 0 specs/GPUs-CONSUMER/HD4000/HD4890.yaml | 0 specs/GPUs-CONSUMER/HD5000.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5470.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5490.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5530.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5550.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5570.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5610.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5630.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5690.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5730.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5830.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6350.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6570.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6790.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6850.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6970.yaml | 0 specs/GPUs-CONSUMER/HD6000/HD6990.yaml | 0 specs/GPUs-CONSUMER/HD7000.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7730.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7870.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7950.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml | 0 specs/GPUs-CONSUMER/HD7000/HD7990.yaml | 0 specs/GPUs-CONSUMER/HD8000.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8470.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8490.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8570.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8670.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8730.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8760.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8950.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8970.yaml | 0 specs/GPUs-CONSUMER/HD8000/HD8990.yaml | 0 specs/GPUs-CONSUMER/R-200.yaml | 0 specs/GPUs-CONSUMER/R-200/R7-260.yaml | 0 specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-270.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-280.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-280X.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-285.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-290-base.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-290.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml | 0 specs/GPUs-CONSUMER/R-200/R9-295X2.yaml | 0 specs/GPUs-CONSUMER/R-300.yaml | 0 specs/GPUs-CONSUMER/R-300/R7-360.yaml | 0 specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-380X.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-390.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-390X.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-Fury.yaml | 0 specs/GPUs-CONSUMER/R-300/R9-Nano.yaml | 0 specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml | 0 specs/GPUs-CONSUMER/RX-400.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-450.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-455.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-470D.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml | 0 specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml | 0 specs/GPUs-CONSUMER/RX-500.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml | 0 specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml | 0 specs/GPUs-CONSUMER/RX-Vega.yaml | 0 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml | 0 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml | 0 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml | 0 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml | 0 specs/GPUs-CONSUMER/Radeon-VII.yaml | 0 specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml | 0 specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml | 0 specs/GPUs-CONSUMER/TeraScale-1.yaml | 0 specs/GPUs-CONSUMER/TeraScale-2.yaml | 0 specs/GPUs-CONSUMER/TeraScale-3.yaml | 0 specs/Intel/Core/k-unlocked.yaml | 0 specs/Intel/Haswell/G3258.yaml | 0 specs/Intel/Intel.yaml | 0 specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml | 0 specs/Root.yaml | 0 specs/intel/Desktop-CPUs-Intel.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3355.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3355E.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3455.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3455E.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J4205.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1750.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1800.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1850.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1900.yaml | 0 .../Desktop-Bay-Trail/Pentium-J2850.yaml | 0 .../Desktop-Bay-Trail/Pentium-J2900.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Bloomfield.yaml | 0 .../Desktop-Bloomfield/Core-i7-920.yaml | 0 .../Desktop-Bloomfield/Core-i7-930.yaml | 0 .../Desktop-Bloomfield/Core-i7-940.yaml | 0 .../Desktop-Bloomfield/Core-i7-950.yaml | 0 .../Desktop-Bloomfield/Core-i7-960.yaml | 0 .../Desktop-Bloomfield/Core-i7-965.yaml | 0 .../Desktop-Bloomfield/Core-i7-975.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml | 0 .../Desktop-Braswell/Pentium-J3060.yaml | 0 .../Desktop-Braswell/Pentium-J3160.yaml | 0 .../Desktop-Braswell/Pentium-J3710.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6800K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6850K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6900K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6950X.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml | 0 .../Desktop-Broadwell/Core-i5-5575R.yaml | 0 .../Desktop-Broadwell/Core-i5-5675C.yaml | 0 .../Desktop-Broadwell/Core-i5-5675R.yaml | 0 .../Desktop-Broadwell/Core-i7-5775C.yaml | 0 .../Desktop-Broadwell/Core-i7-5775R.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10900X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10920X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10940X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10980XE.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml | 0 .../Desktop-Cedarmill/Pentium-347.yaml | 0 .../Desktop-Cedarmill/Pentium-352.yaml | 0 .../Desktop-Cedarmill/Pentium-356.yaml | 0 .../Desktop-Cedarmill/Pentium-365.yaml | 0 .../Desktop-Cedarmill/Pentium-631.yaml | 0 .../Desktop-Cedarmill/Pentium-641.yaml | 0 .../Desktop-Cedarmill/Pentium-651.yaml | 0 .../Desktop-Cedarmill/Pentium-661.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml | 0 .../Desktop-Cedarview/Atom-D2500.yaml | 0 .../Desktop-Cedarview/Atom-D2550.yaml | 0 .../Desktop-Cedarview/Atom-D2700.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml | 0 .../Desktop-Clarkdale/Core-i3-530.yaml | 0 .../Desktop-Clarkdale/Core-i3-540.yaml | 0 .../Desktop-Clarkdale/Core-i3-550.yaml | 0 .../Desktop-Clarkdale/Core-i3-560.yaml | 0 .../Desktop-Clarkdale/Core-i5-650.yaml | 0 .../Desktop-Clarkdale/Core-i5-655K.yaml | 0 .../Desktop-Clarkdale/Core-i5-660.yaml | 0 .../Desktop-Clarkdale/Core-i5-661.yaml | 0 .../Desktop-Clarkdale/Core-i5-670.yaml | 0 .../Desktop-Clarkdale/Core-i5-680.yaml | 0 .../Desktop-Clarkdale/Pentium-G6950.yaml | 0 .../Desktop-Clarkdale/Pentium-G6951.yaml | 0 .../Desktop-Clarkdale/Pentium-G6960.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8100.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8100T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8300.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8300T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8350K.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100F.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9300.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9300T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9320.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9350K.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9350KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8400.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8400T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8500.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8500T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600K.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400F.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500F.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600K.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600T.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8086K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700T.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700F.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700T.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900K.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900KS.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4900.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4900T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4920.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4930.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4930T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4950.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5400.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5400T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5420.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5420T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5500.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5500T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5600.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5600T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5620.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml | 0 .../Desktop-Conroe/Core-E4300.yaml | 0 .../Desktop-Conroe/Core-E4400.yaml | 0 .../Desktop-Conroe/Core-E4500.yaml | 0 .../Desktop-Conroe/Core-E4600.yaml | 0 .../Desktop-Conroe/Core-E4700.yaml | 0 .../Desktop-Conroe/Core-E6300.yaml | 0 .../Desktop-Conroe/Core-E6320.yaml | 0 .../Desktop-Conroe/Core-E6400.yaml | 0 .../Desktop-Conroe/Core-E6420.yaml | 0 .../Desktop-Conroe/Core-E6540.yaml | 0 .../Desktop-Conroe/Core-E6550.yaml | 0 .../Desktop-Conroe/Core-E6600.yaml | 0 .../Desktop-Conroe/Core-E6700.yaml | 0 .../Desktop-Conroe/Core-E6750.yaml | 0 .../Desktop-Conroe/Core-E6850.yaml | 0 .../Desktop-Conroe/Core-X6800.yaml | 0 .../Desktop-Conroe/Pentium-220.yaml | 0 .../Desktop-Conroe/Pentium-420.yaml | 0 .../Desktop-Conroe/Pentium-430.yaml | 0 .../Desktop-Conroe/Pentium-440.yaml | 0 .../Desktop-Conroe/Pentium-450.yaml | 0 .../Desktop-Conroe/Pentium-E1200.yaml | 0 .../Desktop-Conroe/Pentium-E1400.yaml | 0 .../Desktop-Conroe/Pentium-E1500.yaml | 0 .../Desktop-Conroe/Pentium-E1600.yaml | 0 .../Desktop-Conroe/Pentium-E2140.yaml | 0 .../Desktop-Conroe/Pentium-E2160.yaml | 0 .../Desktop-Conroe/Pentium-E2180.yaml | 0 .../Desktop-Conroe/Pentium-E2200.yaml | 0 .../Desktop-Conroe/Pentium-E2220.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml | 0 .../Desktop-Crystal-Well/Core-i5-4570R.yaml | 0 .../Desktop-Crystal-Well/Core-i5-4670R.yaml | 0 .../Desktop-Crystal-Well/Core-i7-4770R.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml | 0 .../Desktop-Devils-Canyon/Core-i5-4690K.yaml | 0 .../Desktop-Devils-Canyon/Core-i7-4790K.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Diamondville.yaml | 0 .../Desktop-Diamondville/Atom-230.yaml | 0 .../Desktop-Diamondville/Atom-330.yaml | 0 .../Desktop-Gemini-Lake-Refresh.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J4005.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J4105.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J5005.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml | 0 .../Desktop-Gulftown/Core-i7-970.yaml | 0 .../Desktop-Gulftown/Core-i7-980.yaml | 0 .../Desktop-Gulftown/Core-i7-980X.yaml | 0 .../Desktop-Gulftown/Core-i7-990X.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml | 0 .../Desktop-Haswell-E/Core-i7-5820K.yaml | 0 .../Desktop-Haswell-E/Core-i7-5930K.yaml | 0 .../Desktop-Haswell-E/Core-i7-5960X.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml | 0 .../Desktop-Haswell/Core-i3-4130.yaml | 0 .../Desktop-Haswell/Core-i3-4130T.yaml | 0 .../Desktop-Haswell/Core-i3-4150.yaml | 0 .../Desktop-Haswell/Core-i3-4150T.yaml | 0 .../Desktop-Haswell/Core-i3-4160.yaml | 0 .../Desktop-Haswell/Core-i3-4160T.yaml | 0 .../Desktop-Haswell/Core-i3-4170.yaml | 0 .../Desktop-Haswell/Core-i3-4170T.yaml | 0 .../Desktop-Haswell/Core-i3-4330.yaml | 0 .../Desktop-Haswell/Core-i3-4330T.yaml | 0 .../Desktop-Haswell/Core-i3-4340.yaml | 0 .../Desktop-Haswell/Core-i3-4350.yaml | 0 .../Desktop-Haswell/Core-i3-4350T.yaml | 0 .../Desktop-Haswell/Core-i3-4360.yaml | 0 .../Desktop-Haswell/Core-i3-4360T.yaml | 0 .../Desktop-Haswell/Core-i3-4370.yaml | 0 .../Desktop-Haswell/Core-i3-4370T.yaml | 0 .../Desktop-Haswell/Core-i5-4430.yaml | 0 .../Desktop-Haswell/Core-i5-4430S.yaml | 0 .../Desktop-Haswell/Core-i5-4440.yaml | 0 .../Desktop-Haswell/Core-i5-4440S.yaml | 0 .../Desktop-Haswell/Core-i5-4460.yaml | 0 .../Desktop-Haswell/Core-i5-4460S.yaml | 0 .../Desktop-Haswell/Core-i5-4460T.yaml | 0 .../Desktop-Haswell/Core-i5-4570.yaml | 0 .../Desktop-Haswell/Core-i5-4570S.yaml | 0 .../Desktop-Haswell/Core-i5-4570T.yaml | 0 .../Desktop-Haswell/Core-i5-4590.yaml | 0 .../Desktop-Haswell/Core-i5-4590S.yaml | 0 .../Desktop-Haswell/Core-i5-4590T.yaml | 0 .../Desktop-Haswell/Core-i5-4670.yaml | 0 .../Desktop-Haswell/Core-i5-4670K.yaml | 0 .../Desktop-Haswell/Core-i5-4670S.yaml | 0 .../Desktop-Haswell/Core-i5-4670T.yaml | 0 .../Desktop-Haswell/Core-i5-4690.yaml | 0 .../Desktop-Haswell/Core-i5-4690S.yaml | 0 .../Desktop-Haswell/Core-i5-4690T.yaml | 0 .../Desktop-Haswell/Core-i7-4765T.yaml | 0 .../Desktop-Haswell/Core-i7-4770.yaml | 0 .../Desktop-Haswell/Core-i7-4770K.yaml | 0 .../Desktop-Haswell/Core-i7-4770S.yaml | 0 .../Desktop-Haswell/Core-i7-4770T.yaml | 0 .../Desktop-Haswell/Core-i7-4771.yaml | 0 .../Desktop-Haswell/Core-i7-4785T.yaml | 0 .../Desktop-Haswell/Core-i7-4790.yaml | 0 .../Desktop-Haswell/Core-i7-4790S.yaml | 0 .../Desktop-Haswell/Core-i7-4790T.yaml | 0 .../Desktop-Haswell/Pentium-G1820.yaml | 0 .../Desktop-Haswell/Pentium-G1820T.yaml | 0 .../Desktop-Haswell/Pentium-G1830.yaml | 0 .../Desktop-Haswell/Pentium-G1840.yaml | 0 .../Desktop-Haswell/Pentium-G1840T.yaml | 0 .../Desktop-Haswell/Pentium-G1850.yaml | 0 .../Desktop-Haswell/Pentium-G3220.yaml | 0 .../Desktop-Haswell/Pentium-G3220T.yaml | 0 .../Desktop-Haswell/Pentium-G3240.yaml | 0 .../Desktop-Haswell/Pentium-G3240T.yaml | 0 .../Desktop-Haswell/Pentium-G3250.yaml | 0 .../Desktop-Haswell/Pentium-G3250T.yaml | 0 .../Desktop-Haswell/Pentium-G3258.yaml | 0 .../Desktop-Haswell/Pentium-G3260.yaml | 0 .../Desktop-Haswell/Pentium-G3260T.yaml | 0 .../Desktop-Haswell/Pentium-G3420.yaml | 0 .../Desktop-Haswell/Pentium-G3420T.yaml | 0 .../Desktop-Haswell/Pentium-G3430.yaml | 0 .../Desktop-Haswell/Pentium-G3440.yaml | 0 .../Desktop-Haswell/Pentium-G3440T.yaml | 0 .../Desktop-Haswell/Pentium-G3450.yaml | 0 .../Desktop-Haswell/Pentium-G3450T.yaml | 0 .../Desktop-Haswell/Pentium-G3460.yaml | 0 .../Desktop-Haswell/Pentium-G3460T.yaml | 0 .../Desktop-Haswell/Pentium-G3470.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3210.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3220.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3220T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3225.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3240.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3240T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3245.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3250.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3250T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3330.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3330S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3340.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3340S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3350P.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3450.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3450S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3475S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3550.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3550S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570K.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770K.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1610.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1610T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1620.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1620T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1630.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2010.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2020.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2020T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2030.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2030T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2100T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2120.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2120T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2130.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2140.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7100.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7100T.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7101E.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7101TE.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7300.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7300T.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7320.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7350K.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7400.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7400T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7500.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7500T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600K.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7640X.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700K.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700T.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7740X.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930E.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930TE.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3950.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4560.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4560T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4600.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4600T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4620.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Kentsfield.yaml | 0 .../Desktop-Kentsfield/Core-Q6600.yaml | 0 .../Desktop-Kentsfield/Core-Q6700.yaml | 0 .../Desktop-Kentsfield/Core-QX6700.yaml | 0 .../Desktop-Kentsfield/Core-QX6800.yaml | 0 .../Desktop-Kentsfield/Core-QX6850.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml | 0 .../Desktop-Lynnfield/Core-i5-750.yaml | 0 .../Desktop-Lynnfield/Core-i5-750S.yaml | 0 .../Desktop-Lynnfield/Core-i5-760.yaml | 0 .../Desktop-Lynnfield/Core-i7-860.yaml | 0 .../Desktop-Lynnfield/Core-i7-860S.yaml | 0 .../Desktop-Lynnfield/Core-i7-870.yaml | 0 .../Desktop-Lynnfield/Core-i7-870S.yaml | 0 .../Desktop-Lynnfield/Core-i7-875K.yaml | 0 .../Desktop-Lynnfield/Core-i7-880.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml | 0 .../Desktop-Pineview/Atom-D410.yaml | 0 .../Desktop-Pineview/Atom-D425.yaml | 0 .../Desktop-Pineview/Atom-D510.yaml | 0 .../Desktop-Pineview/Atom-D525.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml | 0 .../Desktop-Prescott/Pentium-315.yaml | 0 .../Desktop-Prescott/Pentium-315J.yaml | 0 .../Desktop-Prescott/Pentium-320.yaml | 0 .../Desktop-Prescott/Pentium-325.yaml | 0 .../Desktop-Prescott/Pentium-325J.yaml | 0 .../Desktop-Prescott/Pentium-326.yaml | 0 .../Desktop-Prescott/Pentium-330J.yaml | 0 .../Desktop-Prescott/Pentium-331.yaml | 0 .../Desktop-Prescott/Pentium-335.yaml | 0 .../Desktop-Prescott/Pentium-335J.yaml | 0 .../Desktop-Prescott/Pentium-336.yaml | 0 .../Desktop-Prescott/Pentium-340J.yaml | 0 .../Desktop-Prescott/Pentium-341.yaml | 0 .../Desktop-Prescott/Pentium-345.yaml | 0 .../Desktop-Prescott/Pentium-345J.yaml | 0 .../Desktop-Prescott/Pentium-346.yaml | 0 .../Desktop-Prescott/Pentium-350J.yaml | 0 .../Desktop-Prescott/Pentium-351.yaml | 0 .../Desktop-Prescott/Pentium-355.yaml | 0 .../Desktop-Prescott/Pentium-505.yaml | 0 .../Desktop-Prescott/Pentium-505J.yaml | 0 .../Desktop-Prescott/Pentium-506.yaml | 0 .../Desktop-Prescott/Pentium-511.yaml | 0 .../Desktop-Prescott/Pentium-515.yaml | 0 .../Desktop-Prescott/Pentium-516.yaml | 0 .../Desktop-Prescott/Pentium-517.yaml | 0 .../Desktop-Prescott/Pentium-519.yaml | 0 .../Desktop-Prescott/Pentium-519K.yaml | 0 .../Desktop-Prescott/Pentium-520J.yaml | 0 .../Desktop-Prescott/Pentium-521.yaml | 0 .../Desktop-Prescott/Pentium-524.yaml | 0 .../Desktop-Prescott/Pentium-530J.yaml | 0 .../Desktop-Prescott/Pentium-531.yaml | 0 .../Desktop-Prescott/Pentium-540J.yaml | 0 .../Desktop-Prescott/Pentium-541.yaml | 0 .../Desktop-Prescott/Pentium-550J.yaml | 0 .../Desktop-Prescott/Pentium-551.yaml | 0 .../Desktop-Prescott/Pentium-560J.yaml | 0 .../Desktop-Prescott/Pentium-561.yaml | 0 .../Desktop-Prescott/Pentium-571.yaml | 0 .../Desktop-Prescott/Pentium-620.yaml | 0 .../Desktop-Prescott/Pentium-630.yaml | 0 .../Desktop-Prescott/Pentium-640.yaml | 0 .../Desktop-Prescott/Pentium-650.yaml | 0 .../Desktop-Prescott/Pentium-660.yaml | 0 .../Desktop-Prescott/Pentium-662.yaml | 0 .../Desktop-Prescott/Pentium-670.yaml | 0 .../Desktop-Prescott/Pentium-672.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml | 0 .../Desktop-Presler/Pentium-915.yaml | 0 .../Desktop-Presler/Pentium-920.yaml | 0 .../Desktop-Presler/Pentium-930.yaml | 0 .../Desktop-Presler/Pentium-935.yaml | 0 .../Desktop-Presler/Pentium-940.yaml | 0 .../Desktop-Presler/Pentium-945.yaml | 0 .../Desktop-Presler/Pentium-950.yaml | 0 .../Desktop-Presler/Pentium-955.yaml | 0 .../Desktop-Presler/Pentium-960.yaml | 0 .../Desktop-Presler/Pentium-965.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3820.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2100.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2100T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2102.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2105.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2120.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2120T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2125.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2130.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2300.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2310.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2320.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2380P.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2390T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2400.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2400S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2405S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2450P.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2550K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2700K.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G440.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G460.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G465.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G470.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G530.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G530T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G540.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G540T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G550.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G550T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G555.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G620.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G620T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G622.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G630.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G630T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G632.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G640.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G640T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G645.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G645T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G840.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G850.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G860.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G860T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G870.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml | 0 .../Desktop-Skylake/Core-i3-6098P.yaml | 0 .../Desktop-Skylake/Core-i3-6100.yaml | 0 .../Desktop-Skylake/Core-i3-6100T.yaml | 0 .../Desktop-Skylake/Core-i3-6300.yaml | 0 .../Desktop-Skylake/Core-i3-6300T.yaml | 0 .../Desktop-Skylake/Core-i3-6320.yaml | 0 .../Desktop-Skylake/Core-i5-6400.yaml | 0 .../Desktop-Skylake/Core-i5-6400T.yaml | 0 .../Desktop-Skylake/Core-i5-6402P.yaml | 0 .../Desktop-Skylake/Core-i5-6500.yaml | 0 .../Desktop-Skylake/Core-i5-6500T.yaml | 0 .../Desktop-Skylake/Core-i5-6585R.yaml | 0 .../Desktop-Skylake/Core-i5-6600.yaml | 0 .../Desktop-Skylake/Core-i5-6600K.yaml | 0 .../Desktop-Skylake/Core-i5-6600T.yaml | 0 .../Desktop-Skylake/Core-i5-6685R.yaml | 0 .../Desktop-Skylake/Core-i7-6700.yaml | 0 .../Desktop-Skylake/Core-i7-6700K.yaml | 0 .../Desktop-Skylake/Core-i7-6700T.yaml | 0 .../Desktop-Skylake/Core-i7-6785R.yaml | 0 .../Desktop-Skylake/Core-i7-7800X.yaml | 0 .../Desktop-Skylake/Core-i7-7820X.yaml | 0 .../Desktop-Skylake/Core-i7-9800X.yaml | 0 .../Desktop-Skylake/Core-i9-7900X.yaml | 0 .../Desktop-Skylake/Core-i9-7920X.yaml | 0 .../Desktop-Skylake/Core-i9-7940X.yaml | 0 .../Desktop-Skylake/Core-i9-7960X.yaml | 0 .../Desktop-Skylake/Core-i9-7980XE.yaml | 0 .../Desktop-Skylake/Core-i9-9820X.yaml | 0 .../Desktop-Skylake/Core-i9-9900X.yaml | 0 .../Desktop-Skylake/Core-i9-9920X.yaml | 0 .../Desktop-Skylake/Core-i9-9940X.yaml | 0 .../Desktop-Skylake/Core-i9-9960X.yaml | 0 .../Desktop-Skylake/Core-i9-9980XE.yaml | 0 .../Desktop-Skylake/Pentium-G3900.yaml | 0 .../Desktop-Skylake/Pentium-G3900T.yaml | 0 .../Desktop-Skylake/Pentium-G3920.yaml | 0 .../Desktop-Skylake/Pentium-G4400.yaml | 0 .../Desktop-Skylake/Pentium-G4400T.yaml | 0 .../Desktop-Skylake/Pentium-G4500.yaml | 0 .../Desktop-Skylake/Pentium-G4500T.yaml | 0 .../Desktop-Skylake/Pentium-G4520.yaml | 0 .../Desktop-Skylake/Xeon-W-3175X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Smithfield.yaml | 0 .../Desktop-Smithfield/Pentium-805.yaml | 0 .../Desktop-Smithfield/Pentium-820.yaml | 0 .../Desktop-Smithfield/Pentium-830.yaml | 0 .../Desktop-Smithfield/Pentium-840.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml | 0 .../Desktop-Wolfdale/Core-E7200.yaml | 0 .../Desktop-Wolfdale/Core-E7300.yaml | 0 .../Desktop-Wolfdale/Core-E7400.yaml | 0 .../Desktop-Wolfdale/Core-E7500.yaml | 0 .../Desktop-Wolfdale/Core-E7600.yaml | 0 .../Desktop-Wolfdale/Core-E8190.yaml | 0 .../Desktop-Wolfdale/Core-E8200.yaml | 0 .../Desktop-Wolfdale/Core-E8300.yaml | 0 .../Desktop-Wolfdale/Core-E8400.yaml | 0 .../Desktop-Wolfdale/Core-E8500.yaml | 0 .../Desktop-Wolfdale/Core-E8600.yaml | 0 .../Desktop-Wolfdale/Pentium-E3200.yaml | 0 .../Desktop-Wolfdale/Pentium-E3300.yaml | 0 .../Desktop-Wolfdale/Pentium-E3400.yaml | 0 .../Desktop-Wolfdale/Pentium-E3500.yaml | 0 .../Desktop-Wolfdale/Pentium-E5200.yaml | 0 .../Desktop-Wolfdale/Pentium-E5300.yaml | 0 .../Desktop-Wolfdale/Pentium-E5400.yaml | 0 .../Desktop-Wolfdale/Pentium-E5500.yaml | 0 .../Desktop-Wolfdale/Pentium-E5700.yaml | 0 .../Desktop-Wolfdale/Pentium-E5800.yaml | 0 .../Desktop-Wolfdale/Pentium-E6300.yaml | 0 .../Desktop-Wolfdale/Pentium-E6500.yaml | 0 .../Desktop-Wolfdale/Pentium-E6500K.yaml | 0 .../Desktop-Wolfdale/Pentium-E6600.yaml | 0 .../Desktop-Wolfdale/Pentium-E6700.yaml | 0 .../Desktop-Wolfdale/Pentium-E6800.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml | 0 .../Desktop-Yorkfield/Core-Q8200.yaml | 0 .../Desktop-Yorkfield/Core-Q8200S.yaml | 0 .../Desktop-Yorkfield/Core-Q8300.yaml | 0 .../Desktop-Yorkfield/Core-Q8400.yaml | 0 .../Desktop-Yorkfield/Core-Q8400S.yaml | 0 .../Desktop-Yorkfield/Core-Q9300.yaml | 0 .../Desktop-Yorkfield/Core-Q9400.yaml | 0 .../Desktop-Yorkfield/Core-Q9400S.yaml | 0 .../Desktop-Yorkfield/Core-Q9450.yaml | 0 .../Desktop-Yorkfield/Core-Q9500.yaml | 0 .../Desktop-Yorkfield/Core-Q9505.yaml | 0 .../Desktop-Yorkfield/Core-Q9505S.yaml | 0 .../Desktop-Yorkfield/Core-Q9550.yaml | 0 .../Desktop-Yorkfield/Core-Q9550S.yaml | 0 .../Desktop-Yorkfield/Core-Q9650.yaml | 0 .../Desktop-Yorkfield/Core-QX9650.yaml | 0 .../Desktop-Yorkfield/Core-QX9770.yaml | 0 .../Desktop-Yorkfield/Core-QX9775.yaml | 0 specs/intel/Embedded-CPUs-Intel.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3930.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3940.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3950.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Arrandale.yaml | 0 .../Embedded-Arrandale/Core-i5-520E.yaml | 0 .../Embedded-Arrandale/Core-i7-620LE.yaml | 0 .../Embedded-Arrandale/Core-i7-620UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml | 0 .../Embedded-Bay-Trail/Atom-E3805.yaml | 0 .../Embedded-Bay-Trail/Atom-E3815.yaml | 0 .../Embedded-Bay-Trail/Atom-E3825.yaml | 0 .../Embedded-Bay-Trail/Atom-E3826.yaml | 0 .../Embedded-Bay-Trail/Atom-E3827.yaml | 0 .../Embedded-Bay-Trail/Atom-E3845.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Braswell.yaml | 0 .../Embedded-Braswell/Atom-E8000.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Broadwell.yaml | 0 .../Embedded-Broadwell/Core-i7-5700EQ.yaml | 0 .../Embedded-Broadwell/Core-i7-5850EQ.yaml | 0 .../Embedded-Broadwell/Xeon-E3-1258LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E3-1278LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2608LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2618LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2628LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2648LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2658V4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2699RV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-4628LV4.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100E.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100HL.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i5-9500E.yaml | 0 .../Embedded-Coffee-Lake/Core-i5-9500TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9700E.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9700TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9850HE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9850HL.yaml | 0 .../Embedded-Coffee-Lake/Pentium-G4930E.yaml | 0 .../Embedded-Coffee-Lake/Pentium-G4932E.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2226GE.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2254ME.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2254ML.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2276ME.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2276ML.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2278GE.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Harpertown.yaml | 0 .../Embedded-Harpertown/Xeon-L5408.yaml | 0 .../intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml | 0 .../Embedded-Haswell/Core-i3-4100E.yaml | 0 .../Embedded-Haswell/Core-i3-4102E.yaml | 0 .../Embedded-Haswell/Core-i3-4110E.yaml | 0 .../Embedded-Haswell/Core-i3-4112E.yaml | 0 .../Embedded-Haswell/Core-i3-4330TE.yaml | 0 .../Embedded-Haswell/Core-i3-4340TE.yaml | 0 .../Embedded-Haswell/Core-i5-4400E.yaml | 0 .../Embedded-Haswell/Core-i5-4402E.yaml | 0 .../Embedded-Haswell/Core-i5-4402EC.yaml | 0 .../Embedded-Haswell/Core-i5-4410E.yaml | 0 .../Embedded-Haswell/Core-i5-4422E.yaml | 0 .../Embedded-Haswell/Core-i5-4570TE.yaml | 0 .../Embedded-Haswell/Core-i7-4700EC.yaml | 0 .../Embedded-Haswell/Core-i7-4700EQ.yaml | 0 .../Embedded-Haswell/Core-i7-4702EC.yaml | 0 .../Embedded-Haswell/Core-i7-4770TE.yaml | 0 .../Embedded-Haswell/Pentium-2000E.yaml | 0 .../Embedded-Haswell/Pentium-2002E.yaml | 0 .../Embedded-Haswell/Pentium-G1820TE.yaml | 0 .../Embedded-Haswell/Pentium-G3320TE.yaml | 0 .../Embedded-Haswell/Xeon-E3-1268LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-1428LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2408LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2418LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2428LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2438LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2608LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2618LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2628LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2648LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2658AV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2658V3.yaml | 0 .../Embedded-Haswell/Xeon-E5-4648V3.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml | 0 .../Embedded-Ivy-Bridge/Core-i3-3120ME.yaml | 0 .../Embedded-Ivy-Bridge/Core-i3-3217UE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i5-3610ME.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3517UE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3555LE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3610QE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3612QE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3615QE.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1020E.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1047UE.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1405V2.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-927UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml | 0 .../Embedded-Jasper-Forest/Pentium-P1053.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC3539.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5509.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5539.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5549.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC3518.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC3528.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC5518.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC5528.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml | 0 .../Embedded-Kaby-Lake/Core-i3-7100E.yaml | 0 .../Embedded-Kaby-Lake/Core-i3-7102E.yaml | 0 .../Embedded-Kaby-Lake/Core-i5-7440EQ.yaml | 0 .../Embedded-Kaby-Lake/Core-i5-7442EQ.yaml | 0 .../Embedded-Kaby-Lake/Core-i7-7820EQ.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml | 0 .../Embedded-Nehalem-EP/Xeon-L5508.yaml | 0 .../Embedded-Nehalem-EP/Xeon-L5518.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Rangeley.yaml | 0 .../Embedded-Rangeley/Atom-C2308.yaml | 0 .../Embedded-Rangeley/Atom-C2316.yaml | 0 .../Embedded-Rangeley/Atom-C2338.yaml | 0 .../Embedded-Rangeley/Atom-C2358.yaml | 0 .../Embedded-Rangeley/Atom-C2508.yaml | 0 .../Embedded-Rangeley/Atom-C2516.yaml | 0 .../Embedded-Rangeley/Atom-C2518.yaml | 0 .../Embedded-Rangeley/Atom-C2538.yaml | 0 .../Embedded-Rangeley/Atom-C2558.yaml | 0 .../Embedded-Rangeley/Atom-C2718.yaml | 0 .../Embedded-Rangeley/Atom-C2738.yaml | 0 .../Embedded-Rangeley/Atom-C2758.yaml | 0 .../Embedded-Sandy-Bridge-EN.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml | 0 .../Embedded-Sandy-Bridge-EP.yaml | 0 .../Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml | 0 .../Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml | 0 .../Embedded-Sandy-Bridge/Core-i3-2310E.yaml | 0 .../Embedded-Sandy-Bridge/Core-i3-2340UE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i5-2515E.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2610UE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2655LE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2715QE.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-807UE.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-827E.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-847E.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-B810E.yaml | 0 .../intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml | 0 .../Embedded-Skylake/Core-i3-6100E.yaml | 0 .../Embedded-Skylake/Core-i3-6100TE.yaml | 0 .../Embedded-Skylake/Core-i3-6102E.yaml | 0 .../Embedded-Skylake/Core-i5-6440EQ.yaml | 0 .../Embedded-Skylake/Core-i5-6442EQ.yaml | 0 .../Embedded-Skylake/Core-i5-6500TE.yaml | 0 .../Embedded-Skylake/Core-i7-6700TE.yaml | 0 .../Embedded-Skylake/Core-i7-6820EQ.yaml | 0 .../Embedded-Skylake/Core-i7-6822EQ.yaml | 0 .../Embedded-Skylake/Pentium-G3900E.yaml | 0 .../Embedded-Skylake/Pentium-G3900TE.yaml | 0 .../Embedded-Skylake/Pentium-G3902E.yaml | 0 .../Embedded-Skylake/Pentium-G4400TE.yaml | 0 .../Embedded-Skylake/Xeon-E3-1268LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1505LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1558LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1578LV5.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Stellarton.yaml | 0 .../Embedded-Stellarton/Atom-E645C.yaml | 0 .../Embedded-Stellarton/Atom-E645CT.yaml | 0 .../Embedded-Stellarton/Atom-E665C.yaml | 0 .../Embedded-Stellarton/Atom-E665CT.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E620.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E620T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E640.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E640T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E660.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E660T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E680.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E680T.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml | 0 .../Embedded-Whiskey-Lake/Core-i3-8145UE.yaml | 0 .../Embedded-Whiskey-Lake/Core-i5-8365UE.yaml | 0 .../Embedded-Whiskey-Lake/Core-i7-8665UE.yaml | 0 .../Embedded-Whiskey-Lake/Pentium-4305UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Wolfdale.yaml | 0 .../Embedded-Wolfdale/Xeon-E5240.yaml | 0 .../Embedded-Wolfdale/Xeon-L3014.yaml | 0 .../Embedded-Wolfdale/Xeon-L5238.yaml | 0 specs/intel/Mobile-CPUs-Intel.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml | 0 .../Mobile-Amber-Lake/Pentium-4425Y.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3350.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3350E.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3450.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N4200.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N4200E.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml | 0 .../Mobile-Arrandale/Core-i3-330E.yaml | 0 .../Mobile-Arrandale/Core-i3-330M.yaml | 0 .../Mobile-Arrandale/Core-i3-330UM.yaml | 0 .../Mobile-Arrandale/Core-i3-350M.yaml | 0 .../Mobile-Arrandale/Core-i3-370M.yaml | 0 .../Mobile-Arrandale/Core-i3-380M.yaml | 0 .../Mobile-Arrandale/Core-i3-380UM.yaml | 0 .../Mobile-Arrandale/Core-i3-390M.yaml | 0 .../Mobile-Arrandale/Core-i5-430M.yaml | 0 .../Mobile-Arrandale/Core-i5-430UM.yaml | 0 .../Mobile-Arrandale/Core-i5-450M.yaml | 0 .../Mobile-Arrandale/Core-i5-460M.yaml | 0 .../Mobile-Arrandale/Core-i5-470UM.yaml | 0 .../Mobile-Arrandale/Core-i5-480M.yaml | 0 .../Mobile-Arrandale/Core-i5-520M.yaml | 0 .../Mobile-Arrandale/Core-i5-520UM.yaml | 0 .../Mobile-Arrandale/Core-i5-540M.yaml | 0 .../Mobile-Arrandale/Core-i5-540UM.yaml | 0 .../Mobile-Arrandale/Core-i5-560M.yaml | 0 .../Mobile-Arrandale/Core-i5-560UM.yaml | 0 .../Mobile-Arrandale/Core-i5-580M.yaml | 0 .../Mobile-Arrandale/Core-i7-610E.yaml | 0 .../Mobile-Arrandale/Core-i7-620LM.yaml | 0 .../Mobile-Arrandale/Core-i7-620M.yaml | 0 .../Mobile-Arrandale/Core-i7-620UM.yaml | 0 .../Mobile-Arrandale/Core-i7-640LM.yaml | 0 .../Mobile-Arrandale/Core-i7-640M.yaml | 0 .../Mobile-Arrandale/Core-i7-640UM.yaml | 0 .../Mobile-Arrandale/Core-i7-660LM.yaml | 0 .../Mobile-Arrandale/Core-i7-660UE.yaml | 0 .../Mobile-Arrandale/Core-i7-660UM.yaml | 0 .../Mobile-Arrandale/Core-i7-680UM.yaml | 0 .../Mobile-Arrandale/Pentium-P4500.yaml | 0 .../Mobile-Arrandale/Pentium-P4505.yaml | 0 .../Mobile-Arrandale/Pentium-P4600.yaml | 0 .../Mobile-Arrandale/Pentium-P6000.yaml | 0 .../Mobile-Arrandale/Pentium-P6100.yaml | 0 .../Mobile-Arrandale/Pentium-P6200.yaml | 0 .../Mobile-Arrandale/Pentium-P6300.yaml | 0 .../Mobile-Arrandale/Pentium-U3400.yaml | 0 .../Mobile-Arrandale/Pentium-U3405.yaml | 0 .../Mobile-Arrandale/Pentium-U3600.yaml | 0 .../Mobile-Arrandale/Pentium-U5400.yaml | 0 .../Mobile-Arrandale/Pentium-U5600.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml | 0 .../Mobile-Bay-Trail/Pentium-A1020.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2805.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2806.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2807.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2808.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2810.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2815.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2820.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2830.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2840.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2910.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2920.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2930.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2940.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3510.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3520.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3530.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3540.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml | 0 .../Mobile-Braswell/Pentium-N3000.yaml | 0 .../Mobile-Braswell/Pentium-N3010.yaml | 0 .../Mobile-Braswell/Pentium-N3050.yaml | 0 .../Mobile-Braswell/Pentium-N3060.yaml | 0 .../Mobile-Braswell/Pentium-N3150.yaml | 0 .../Mobile-Braswell/Pentium-N3160.yaml | 0 .../Mobile-Braswell/Pentium-N3700.yaml | 0 .../Mobile-Braswell/Pentium-N3710.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml | 0 .../Mobile-Broadwell/Core-5Y10.yaml | 0 .../Mobile-Broadwell/Core-5Y10a.yaml | 0 .../Mobile-Broadwell/Core-5Y10c.yaml | 0 .../Mobile-Broadwell/Core-5Y31.yaml | 0 .../Mobile-Broadwell/Core-5Y51.yaml | 0 .../Mobile-Broadwell/Core-5Y70.yaml | 0 .../Mobile-Broadwell/Core-5Y71.yaml | 0 .../Mobile-Broadwell/Core-i3-5005U.yaml | 0 .../Mobile-Broadwell/Core-i3-5010U.yaml | 0 .../Mobile-Broadwell/Core-i3-5015U.yaml | 0 .../Mobile-Broadwell/Core-i3-5020U.yaml | 0 .../Mobile-Broadwell/Core-i3-5157U.yaml | 0 .../Mobile-Broadwell/Core-i5-5200U.yaml | 0 .../Mobile-Broadwell/Core-i5-5250U.yaml | 0 .../Mobile-Broadwell/Core-i5-5257U.yaml | 0 .../Mobile-Broadwell/Core-i5-5287U.yaml | 0 .../Mobile-Broadwell/Core-i5-5300U.yaml | 0 .../Mobile-Broadwell/Core-i5-5350H.yaml | 0 .../Mobile-Broadwell/Core-i5-5350U.yaml | 0 .../Mobile-Broadwell/Core-i7-5500U.yaml | 0 .../Mobile-Broadwell/Core-i7-5550U.yaml | 0 .../Mobile-Broadwell/Core-i7-5557U.yaml | 0 .../Mobile-Broadwell/Core-i7-5600U.yaml | 0 .../Mobile-Broadwell/Core-i7-5650U.yaml | 0 .../Mobile-Broadwell/Core-i7-5700HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5750HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5850HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5950HQ.yaml | 0 .../Mobile-Broadwell/Pentium-3205U.yaml | 0 .../Mobile-Broadwell/Pentium-3215U.yaml | 0 .../Mobile-Broadwell/Pentium-3755U.yaml | 0 .../Mobile-Broadwell/Pentium-3765U.yaml | 0 .../Mobile-Broadwell/Pentium-3805U.yaml | 0 .../Mobile-Broadwell/Pentium-3825U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml | 0 .../Mobile-Cedarview/Atom-N2600.yaml | 0 .../Mobile-Cedarview/Atom-N2800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml | 0 .../Mobile-Clarksfield/Core-i7-720QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-740QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-820QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-840QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-920XM.yaml | 0 .../Mobile-Clarksfield/Core-i7-940XM.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8100B.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8100H.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8109U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8257U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8259U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8269U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8279U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8300H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8400B.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8400H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8500B.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9300H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9300HF.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9400H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8557U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8559U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8569U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8700B.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8750H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8850H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9750H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9750HF.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9850H.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-8950HK.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-9880H.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-9980HK.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2176M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2186M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2276M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2286M.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml | 0 .../Mobile-Comet-Lake/Core-i3-10110U.yaml | 0 .../Mobile-Comet-Lake/Core-i5-10210U.yaml | 0 .../Mobile-Comet-Lake/Core-i7-10510U.yaml | 0 .../Mobile-Comet-Lake/Core-i7-10710U.yaml | 0 .../Mobile-Comet-Lake/Pentium-5205U.yaml | 0 .../Mobile-Comet-Lake/Pentium-6405U.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4750HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4760HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4770HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4850HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4860HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4870HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4950HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4960HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4980HQ.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Diamondville.yaml | 0 .../Mobile-Diamondville/Atom-N270.yaml | 0 .../Mobile-Diamondville/Atom-N280.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml | 0 .../Mobile-Dothan/Pentium-350.yaml | 0 .../Mobile-Dothan/Pentium-353.yaml | 0 .../Mobile-Dothan/Pentium-360.yaml | 0 .../Mobile-Dothan/Pentium-370.yaml | 0 .../Mobile-Dothan/Pentium-373.yaml | 0 .../Mobile-Dothan/Pentium-380.yaml | 0 .../Mobile-Dothan/Pentium-383.yaml | 0 .../Mobile-Dothan/Pentium-390.yaml | 0 .../Mobile-Dothan/Pentium-715.yaml | 0 .../Mobile-Dothan/Pentium-725.yaml | 0 .../Mobile-Dothan/Pentium-730.yaml | 0 .../Mobile-Dothan/Pentium-733.yaml | 0 .../Mobile-Dothan/Pentium-735.yaml | 0 .../Mobile-Dothan/Pentium-738.yaml | 0 .../Mobile-Dothan/Pentium-740.yaml | 0 .../Mobile-Dothan/Pentium-745.yaml | 0 .../Mobile-Dothan/Pentium-745A.yaml | 0 .../Mobile-Dothan/Pentium-750.yaml | 0 .../Mobile-Dothan/Pentium-753.yaml | 0 .../Mobile-Dothan/Pentium-755.yaml | 0 .../Mobile-Dothan/Pentium-758.yaml | 0 .../Mobile-Dothan/Pentium-760.yaml | 0 .../Mobile-Dothan/Pentium-765.yaml | 0 .../Mobile-Dothan/Pentium-770.yaml | 0 .../Mobile-Dothan/Pentium-773.yaml | 0 .../Mobile-Dothan/Pentium-778.yaml | 0 .../Mobile-Dothan/Pentium-780.yaml | 0 .../Mobile-Gemini-Lake-Refresh.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N4000.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N4100.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N5000.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml | 0 .../Mobile-Haswell/Core-i3-4000M.yaml | 0 .../Mobile-Haswell/Core-i3-4005U.yaml | 0 .../Mobile-Haswell/Core-i3-4010U.yaml | 0 .../Mobile-Haswell/Core-i3-4010Y.yaml | 0 .../Mobile-Haswell/Core-i3-4012Y.yaml | 0 .../Mobile-Haswell/Core-i3-4020Y.yaml | 0 .../Mobile-Haswell/Core-i3-4025U.yaml | 0 .../Mobile-Haswell/Core-i3-4030U.yaml | 0 .../Mobile-Haswell/Core-i3-4030Y.yaml | 0 .../Mobile-Haswell/Core-i3-4100M.yaml | 0 .../Mobile-Haswell/Core-i3-4100U.yaml | 0 .../Mobile-Haswell/Core-i3-4110M.yaml | 0 .../Mobile-Haswell/Core-i3-4120U.yaml | 0 .../Mobile-Haswell/Core-i3-4158U.yaml | 0 .../Mobile-Haswell/Core-i5-4200H.yaml | 0 .../Mobile-Haswell/Core-i5-4200M.yaml | 0 .../Mobile-Haswell/Core-i5-4200U.yaml | 0 .../Mobile-Haswell/Core-i5-4200Y.yaml | 0 .../Mobile-Haswell/Core-i5-4202Y.yaml | 0 .../Mobile-Haswell/Core-i5-4210H.yaml | 0 .../Mobile-Haswell/Core-i5-4210M.yaml | 0 .../Mobile-Haswell/Core-i5-4210U.yaml | 0 .../Mobile-Haswell/Core-i5-4210Y.yaml | 0 .../Mobile-Haswell/Core-i5-4220Y.yaml | 0 .../Mobile-Haswell/Core-i5-4250U.yaml | 0 .../Mobile-Haswell/Core-i5-4258U.yaml | 0 .../Mobile-Haswell/Core-i5-4260U.yaml | 0 .../Mobile-Haswell/Core-i5-4278U.yaml | 0 .../Mobile-Haswell/Core-i5-4288U.yaml | 0 .../Mobile-Haswell/Core-i5-4300M.yaml | 0 .../Mobile-Haswell/Core-i5-4300U.yaml | 0 .../Mobile-Haswell/Core-i5-4300Y.yaml | 0 .../Mobile-Haswell/Core-i5-4302Y.yaml | 0 .../Mobile-Haswell/Core-i5-4308U.yaml | 0 .../Mobile-Haswell/Core-i5-4310M.yaml | 0 .../Mobile-Haswell/Core-i5-4310U.yaml | 0 .../Mobile-Haswell/Core-i5-4330M.yaml | 0 .../Mobile-Haswell/Core-i5-4340M.yaml | 0 .../Mobile-Haswell/Core-i5-4350U.yaml | 0 .../Mobile-Haswell/Core-i5-4360U.yaml | 0 .../Mobile-Haswell/Core-i7-4500U.yaml | 0 .../Mobile-Haswell/Core-i7-4510U.yaml | 0 .../Mobile-Haswell/Core-i7-4550U.yaml | 0 .../Mobile-Haswell/Core-i7-4558U.yaml | 0 .../Mobile-Haswell/Core-i7-4578U.yaml | 0 .../Mobile-Haswell/Core-i7-4600M.yaml | 0 .../Mobile-Haswell/Core-i7-4600U.yaml | 0 .../Mobile-Haswell/Core-i7-4610M.yaml | 0 .../Mobile-Haswell/Core-i7-4610Y.yaml | 0 .../Mobile-Haswell/Core-i7-4650U.yaml | 0 .../Mobile-Haswell/Core-i7-4700HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4700MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4702HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4702MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4710HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4710MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4712HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4712MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4720HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4722HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4800MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4810MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4900MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4910MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4930MX.yaml | 0 .../Mobile-Haswell/Core-i7-4940MX.yaml | 0 .../Mobile-Haswell/Pentium-2950M.yaml | 0 .../Mobile-Haswell/Pentium-2955U.yaml | 0 .../Mobile-Haswell/Pentium-2957U.yaml | 0 .../Mobile-Haswell/Pentium-2961Y.yaml | 0 .../Mobile-Haswell/Pentium-2970M.yaml | 0 .../Mobile-Haswell/Pentium-2980U.yaml | 0 .../Mobile-Haswell/Pentium-2981U.yaml | 0 .../Mobile-Haswell/Pentium-3550M.yaml | 0 .../Mobile-Haswell/Pentium-3556U.yaml | 0 .../Mobile-Haswell/Pentium-3558U.yaml | 0 .../Mobile-Haswell/Pentium-3560M.yaml | 0 .../Mobile-Haswell/Pentium-3560Y.yaml | 0 .../Mobile-Haswell/Pentium-3561Y.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1000G1.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1000G4.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1005G1.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1030G4.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1030G7.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G1.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G4.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G7.yaml | 0 .../Mobile-Ice-Lake/Core-i7-1060G7.yaml | 0 .../Mobile-Ice-Lake/Core-i7-1065G7.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3110M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3120M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3130M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3217U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3227U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3229Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3210M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3230M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3317U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3320M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3337U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3339Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3340M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3360M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3380M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3427U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3437U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3439Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3517U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3520M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3537U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3540M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3610QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3612QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3615QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3630QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3632QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3635QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3667U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3687U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3689Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3720QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3740QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3820QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3840QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3920XM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3940XM.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1000M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1005M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1007U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1017U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1019Y.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1020M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1037U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2020M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2030M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2117U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2127U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2129Y.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-A1018.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i5-8305G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8705G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8706G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8709G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8809G.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i5-8250U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i5-8350U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i7-8550U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i7-8650U.yaml | 0 .../Mobile-Kaby-Lake-R/Pentium-3867U.yaml | 0 .../Mobile-Kaby-Lake-R/Pentium-4417U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml | 0 .../Mobile-Kaby-Lake/Core-M3-7Y30.yaml | 0 .../Mobile-Kaby-Lake/Core-M3-7Y32.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7020U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7100H.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7100U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7130U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7167U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-8130U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7200U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7260U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7267U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7287U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7300HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7300U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7360U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7440HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7Y54.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7Y57.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7500U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7560U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7567U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7600U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7660U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7700HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7820HK.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7820HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7920HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7Y75.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3865U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3965U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3965Y.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4410Y.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4415U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4415Y.yaml | 0 .../Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml | 0 .../Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml | 0 .../Mobile-Lincroft/Atom-Z600.yaml | 0 .../Mobile-Lincroft/Atom-Z615.yaml | 0 .../Mobile-Lincroft/Atom-Z625.yaml | 0 .../Mobile-Lincroft/Atom-Z650.yaml | 0 .../Mobile-Lincroft/Atom-Z670.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml | 0 .../Mobile-Merom/Pentium-T1600.yaml | 0 .../Mobile-Merom/Pentium-T1700.yaml | 0 .../Mobile-Merom/Pentium-T2310.yaml | 0 .../Mobile-Merom/Pentium-T2330.yaml | 0 .../Mobile-Merom/Pentium-T2370.yaml | 0 .../Mobile-Merom/Pentium-T2390.yaml | 0 .../Mobile-Merom/Pentium-T3200.yaml | 0 .../Mobile-Merom/Pentium-T3400.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml | 0 .../Mobile-Penryn/Core-QX9300.yaml | 0 .../Mobile-Penryn/Core-SL9300.yaml | 0 .../Mobile-Penryn/Core-SL9380.yaml | 0 .../Mobile-Penryn/Core-SL9400.yaml | 0 .../Mobile-Penryn/Core-SL9600.yaml | 0 .../Mobile-Penryn/Core-SP9300.yaml | 0 .../Mobile-Penryn/Core-SP9400.yaml | 0 .../Mobile-Penryn/Core-SP9600.yaml | 0 .../Mobile-Penryn/Core-SU3500.yaml | 0 .../Mobile-Penryn/Core-SU9300.yaml | 0 .../Mobile-Penryn/Core-SU9400.yaml | 0 .../Mobile-Penryn/Core-SU9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml | 0 .../Mobile-Penryn/Pentium-722.yaml | 0 .../Mobile-Penryn/Pentium-723.yaml | 0 .../Mobile-Penryn/Pentium-743.yaml | 0 .../Mobile-Penryn/Pentium-763.yaml | 0 .../Mobile-Penryn/Pentium-900.yaml | 0 .../Mobile-Penryn/Pentium-925.yaml | 0 .../Mobile-Penryn/Pentium-SU2300.yaml | 0 .../Mobile-Penryn/Pentium-T3100.yaml | 0 .../Mobile-Penryn/Pentium-T3300.yaml | 0 .../Mobile-Penryn/Pentium-T3500.yaml | 0 .../Mobile-Penryn/Pentium-T4200.yaml | 0 .../Mobile-Penryn/Pentium-T4300.yaml | 0 .../Mobile-Penryn/Pentium-T4400.yaml | 0 .../Mobile-Penryn/Pentium-T4500.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml | 0 .../Mobile-Pineview/Atom-N450.yaml | 0 .../Mobile-Pineview/Atom-N455.yaml | 0 .../Mobile-Pineview/Atom-N470.yaml | 0 .../Mobile-Pineview/Atom-N475.yaml | 0 .../Mobile-Pineview/Atom-N550.yaml | 0 .../Mobile-Pineview/Atom-N570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2310M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2312M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2328M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2330E.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2330M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2348M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2350M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2357M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2365M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2367M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2370M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2375M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2377M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2410M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2430M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2435M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2450M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2467M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2510E.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2520M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2537M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2540M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2557M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2617M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2620M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2629M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2630QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2635QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2637M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2640M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2649M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2657M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2670QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2675QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2677M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2710QE.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2720QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2760QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2820QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2860QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2920XM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2960XM.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-787.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-797.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-807.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-847.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-857.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-867.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-877.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-887.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-957.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-967.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-977.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-987.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-997.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B710.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B720.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B800.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B810.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B815.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B820.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B830.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B840.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B940.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B950.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B960.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B970.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B980.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Silverthorne.yaml | 0 .../Mobile-Silverthorne/Atom-Z500.yaml | 0 .../Mobile-Silverthorne/Atom-Z510.yaml | 0 .../Mobile-Silverthorne/Atom-Z510P.yaml | 0 .../Mobile-Silverthorne/Atom-Z510PT.yaml | 0 .../Mobile-Silverthorne/Atom-Z515.yaml | 0 .../Mobile-Silverthorne/Atom-Z520.yaml | 0 .../Mobile-Silverthorne/Atom-Z520PT.yaml | 0 .../Mobile-Silverthorne/Atom-Z530.yaml | 0 .../Mobile-Silverthorne/Atom-Z530P.yaml | 0 .../Mobile-Silverthorne/Atom-Z540.yaml | 0 .../Mobile-Silverthorne/Atom-Z550.yaml | 0 .../Mobile-Silverthorne/Atom-Z560.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml | 0 .../Mobile-Skylake/Core-M3-6Y30.yaml | 0 .../Mobile-Skylake/Core-M5-6Y54.yaml | 0 .../Mobile-Skylake/Core-M5-6Y57.yaml | 0 .../Mobile-Skylake/Core-M7-6Y75.yaml | 0 .../Mobile-Skylake/Core-i3-6006U.yaml | 0 .../Mobile-Skylake/Core-i3-6100H.yaml | 0 .../Mobile-Skylake/Core-i3-6100U.yaml | 0 .../Mobile-Skylake/Core-i3-6157U.yaml | 0 .../Mobile-Skylake/Core-i3-6167U.yaml | 0 .../Mobile-Skylake/Core-i5-6200U.yaml | 0 .../Mobile-Skylake/Core-i5-6260U.yaml | 0 .../Mobile-Skylake/Core-i5-6267U.yaml | 0 .../Mobile-Skylake/Core-i5-6287U.yaml | 0 .../Mobile-Skylake/Core-i5-6300HQ.yaml | 0 .../Mobile-Skylake/Core-i5-6300U.yaml | 0 .../Mobile-Skylake/Core-i5-6350HQ.yaml | 0 .../Mobile-Skylake/Core-i5-6360U.yaml | 0 .../Mobile-Skylake/Core-i5-6440HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6500U.yaml | 0 .../Mobile-Skylake/Core-i7-6560U.yaml | 0 .../Mobile-Skylake/Core-i7-6567U.yaml | 0 .../Mobile-Skylake/Core-i7-6600U.yaml | 0 .../Mobile-Skylake/Core-i7-6650U.yaml | 0 .../Mobile-Skylake/Core-i7-6660U.yaml | 0 .../Mobile-Skylake/Core-i7-6700HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6770HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6820HK.yaml | 0 .../Mobile-Skylake/Core-i7-6820HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6870HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6920HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6970HQ.yaml | 0 .../Mobile-Skylake/Pentium-3855U.yaml | 0 .../Mobile-Skylake/Pentium-3955U.yaml | 0 .../Mobile-Skylake/Pentium-4405U.yaml | 0 .../Mobile-Skylake/Pentium-4405Y.yaml | 0 .../Mobile-Skylake/Xeon-E3-1505MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1515MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1535MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1545MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1575MV5.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml | 0 .../Mobile-Whiskey-Lake/Core-i3-8145U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i5-8265U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i5-8365U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i7-8565U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i7-8665U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-4205U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-4305U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-5405U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml | 0 .../Mobile-Yonah/Pentium-T2060.yaml | 0 .../Mobile-Yonah/Pentium-T2080.yaml | 0 .../Mobile-Yonah/Pentium-T2130.yaml | 0 specs/intel/Server-CPUs-Intel.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Avoton.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml | 0 .../intel/Server-CPUs-Intel/Server-Bloomfield.yaml | 0 .../Server-Bloomfield/Xeon-W3520.yaml | 0 .../Server-Bloomfield/Xeon-W3530.yaml | 0 .../Server-Bloomfield/Xeon-W3540.yaml | 0 .../Server-Bloomfield/Xeon-W3550.yaml | 0 .../Server-Bloomfield/Xeon-W3565.yaml | 0 .../Server-Bloomfield/Xeon-W3570.yaml | 0 .../Server-Bloomfield/Xeon-W3580.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml | 0 .../Server-Briarwood/Atom-S1269.yaml | 0 .../Server-Briarwood/Atom-S1279.yaml | 0 .../Server-Briarwood/Atom-S1289.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml | 0 .../Server-Broadwell/Pentium-D1507.yaml | 0 .../Server-Broadwell/Pentium-D1508.yaml | 0 .../Server-Broadwell/Pentium-D1509.yaml | 0 .../Server-Broadwell/Pentium-D1517.yaml | 0 .../Server-Broadwell/Pentium-D1519.yaml | 0 .../Server-Broadwell/Xeon-D-1513N.yaml | 0 .../Server-Broadwell/Xeon-D-1518.yaml | 0 .../Server-Broadwell/Xeon-D-1520.yaml | 0 .../Server-Broadwell/Xeon-D-1521.yaml | 0 .../Server-Broadwell/Xeon-D-1523N.yaml | 0 .../Server-Broadwell/Xeon-D-1527.yaml | 0 .../Server-Broadwell/Xeon-D-1528.yaml | 0 .../Server-Broadwell/Xeon-D-1529.yaml | 0 .../Server-Broadwell/Xeon-D-1531.yaml | 0 .../Server-Broadwell/Xeon-D-1533N.yaml | 0 .../Server-Broadwell/Xeon-D-1537.yaml | 0 .../Server-Broadwell/Xeon-D-1539.yaml | 0 .../Server-Broadwell/Xeon-D-1540.yaml | 0 .../Server-Broadwell/Xeon-D-1541.yaml | 0 .../Server-Broadwell/Xeon-D-1543N.yaml | 0 .../Server-Broadwell/Xeon-D-1548.yaml | 0 .../Server-Broadwell/Xeon-D-1553N.yaml | 0 .../Server-Broadwell/Xeon-D-1557.yaml | 0 .../Server-Broadwell/Xeon-D-1559.yaml | 0 .../Server-Broadwell/Xeon-D-1567.yaml | 0 .../Server-Broadwell/Xeon-D-1571.yaml | 0 .../Server-Broadwell/Xeon-D-1577.yaml | 0 .../Server-Broadwell/Xeon-E3-1265LV4.yaml | 0 .../Server-Broadwell/Xeon-E3-1285LV4.yaml | 0 .../Server-Broadwell/Xeon-E3-1285V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1630V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1680V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2603V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2609V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2623V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2630LV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2630V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2637V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2640V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2643V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2650LV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2667V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2680V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2683V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2687WV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2690V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2695V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2697AV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2697V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2698V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2699AV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2699V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4610V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4627V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4640V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4655V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4667V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4669V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4809V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4820V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4830V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4850V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8860V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8867V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8870V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8880V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8890V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8891V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8893V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8894V4.yaml | 0 .../Server-CPUs-Intel/Server-Cascade-Lake.yaml | 0 .../Server-Cascade-Lake/Xeon-3204.yaml | 0 .../Server-Cascade-Lake/Xeon-4208.yaml | 0 .../Server-Cascade-Lake/Xeon-4209T.yaml | 0 .../Server-Cascade-Lake/Xeon-4210.yaml | 0 .../Server-Cascade-Lake/Xeon-4214.yaml | 0 .../Server-Cascade-Lake/Xeon-4214Y.yaml | 0 .../Server-Cascade-Lake/Xeon-4215.yaml | 0 .../Server-Cascade-Lake/Xeon-4216.yaml | 0 .../Server-Cascade-Lake/Xeon-5215.yaml | 0 .../Server-Cascade-Lake/Xeon-5215L.yaml | 0 .../Server-Cascade-Lake/Xeon-5215M.yaml | 0 .../Server-Cascade-Lake/Xeon-5217.yaml | 0 .../Server-Cascade-Lake/Xeon-5218.yaml | 0 .../Server-Cascade-Lake/Xeon-5218B.yaml | 0 .../Server-Cascade-Lake/Xeon-5218N.yaml | 0 .../Server-Cascade-Lake/Xeon-5218T.yaml | 0 .../Server-Cascade-Lake/Xeon-5220.yaml | 0 .../Server-Cascade-Lake/Xeon-5220S.yaml | 0 .../Server-Cascade-Lake/Xeon-5220T.yaml | 0 .../Server-Cascade-Lake/Xeon-5222.yaml | 0 .../Server-Cascade-Lake/Xeon-6222V.yaml | 0 .../Server-Cascade-Lake/Xeon-6226.yaml | 0 .../Server-Cascade-Lake/Xeon-6230.yaml | 0 .../Server-Cascade-Lake/Xeon-6230N.yaml | 0 .../Server-Cascade-Lake/Xeon-6230T.yaml | 0 .../Server-Cascade-Lake/Xeon-6234.yaml | 0 .../Server-Cascade-Lake/Xeon-6238.yaml | 0 .../Server-Cascade-Lake/Xeon-6238L.yaml | 0 .../Server-Cascade-Lake/Xeon-6238M.yaml | 0 .../Server-Cascade-Lake/Xeon-6238T.yaml | 0 .../Server-Cascade-Lake/Xeon-6240.yaml | 0 .../Server-Cascade-Lake/Xeon-6240L.yaml | 0 .../Server-Cascade-Lake/Xeon-6240M.yaml | 0 .../Server-Cascade-Lake/Xeon-6240Y.yaml | 0 .../Server-Cascade-Lake/Xeon-6242.yaml | 0 .../Server-Cascade-Lake/Xeon-6244.yaml | 0 .../Server-Cascade-Lake/Xeon-6246.yaml | 0 .../Server-Cascade-Lake/Xeon-6248.yaml | 0 .../Server-Cascade-Lake/Xeon-6252.yaml | 0 .../Server-Cascade-Lake/Xeon-6252N.yaml | 0 .../Server-Cascade-Lake/Xeon-6254.yaml | 0 .../Server-Cascade-Lake/Xeon-6262V.yaml | 0 .../Server-Cascade-Lake/Xeon-8253.yaml | 0 .../Server-Cascade-Lake/Xeon-8256.yaml | 0 .../Server-Cascade-Lake/Xeon-8260.yaml | 0 .../Server-Cascade-Lake/Xeon-8260L.yaml | 0 .../Server-Cascade-Lake/Xeon-8260M.yaml | 0 .../Server-Cascade-Lake/Xeon-8260Y.yaml | 0 .../Server-Cascade-Lake/Xeon-8268.yaml | 0 .../Server-Cascade-Lake/Xeon-8270.yaml | 0 .../Server-Cascade-Lake/Xeon-8276.yaml | 0 .../Server-Cascade-Lake/Xeon-8276L.yaml | 0 .../Server-Cascade-Lake/Xeon-8276M.yaml | 0 .../Server-Cascade-Lake/Xeon-8280.yaml | 0 .../Server-Cascade-Lake/Xeon-8280L.yaml | 0 .../Server-Cascade-Lake/Xeon-8280M.yaml | 0 .../Server-Cascade-Lake/Xeon-9221.yaml | 0 .../Server-Cascade-Lake/Xeon-9222.yaml | 0 .../Server-Cascade-Lake/Xeon-9242.yaml | 0 .../Server-Cascade-Lake/Xeon-9282.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Centerton.yaml | 0 .../Server-Centerton/Atom-S1220.yaml | 0 .../Server-Centerton/Atom-S1240.yaml | 0 .../Server-Centerton/Atom-S1260.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml | 0 .../Server-Clarkdale/Xeon-L3406.yaml | 0 .../intel/Server-CPUs-Intel/Server-Clovertown.yaml | 0 .../Server-Clovertown/Xeon-E5310.yaml | 0 .../Server-Clovertown/Xeon-E5320.yaml | 0 .../Server-Clovertown/Xeon-E5335.yaml | 0 .../Server-Clovertown/Xeon-E5345.yaml | 0 .../Server-Clovertown/Xeon-L5310.yaml | 0 .../Server-Clovertown/Xeon-L5318.yaml | 0 .../Server-Clovertown/Xeon-L5320.yaml | 0 .../Server-Clovertown/Xeon-L5335.yaml | 0 .../Server-Clovertown/Xeon-X5355.yaml | 0 .../Server-Clovertown/Xeon-X5365.yaml | 0 .../intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2124.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2124G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2126G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2134.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2136.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2144G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2146G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2174G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2176G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2186G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2224.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2224G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2226G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2234.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2236.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2244G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2246G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2274G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2276G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2278G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2286G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2288G.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Conroe.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Denverton.yaml | 0 .../Server-Denverton/Atom-C3308.yaml | 0 .../Server-Denverton/Atom-C3336.yaml | 0 .../Server-Denverton/Atom-C3338.yaml | 0 .../Server-Denverton/Atom-C3508.yaml | 0 .../Server-Denverton/Atom-C3538.yaml | 0 .../Server-Denverton/Atom-C3558.yaml | 0 .../Server-Denverton/Atom-C3708.yaml | 0 .../Server-Denverton/Atom-C3750.yaml | 0 .../Server-Denverton/Atom-C3758.yaml | 0 .../Server-Denverton/Atom-C3808.yaml | 0 .../Server-Denverton/Atom-C3830.yaml | 0 .../Server-Denverton/Atom-C3850.yaml | 0 .../Server-Denverton/Atom-C3858.yaml | 0 .../Server-Denverton/Atom-C3950.yaml | 0 .../Server-Denverton/Atom-C3955.yaml | 0 .../Server-Denverton/Atom-C3958.yaml | 0 .../intel/Server-CPUs-Intel/Server-Dunnington.yaml | 0 .../Server-Dunnington/Xeon-E7420.yaml | 0 .../Server-Dunnington/Xeon-E7430.yaml | 0 .../Server-Dunnington/Xeon-E7440.yaml | 0 .../Server-Dunnington/Xeon-E7450.yaml | 0 .../Server-Dunnington/Xeon-L7445.yaml | 0 .../Server-Dunnington/Xeon-L7455.yaml | 0 .../Server-Dunnington/Xeon-X7460.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml | 0 .../Server-Gulftown/Xeon-W3690.yaml | 0 .../intel/Server-CPUs-Intel/Server-Harpertown.yaml | 0 .../Server-Harpertown/Xeon-E5405.yaml | 0 .../Server-Harpertown/Xeon-E5410.yaml | 0 .../Server-Harpertown/Xeon-E5420.yaml | 0 .../Server-Harpertown/Xeon-E5430.yaml | 0 .../Server-Harpertown/Xeon-E5440.yaml | 0 .../Server-Harpertown/Xeon-E5450.yaml | 0 .../Server-Harpertown/Xeon-E5462.yaml | 0 .../Server-Harpertown/Xeon-E5472.yaml | 0 .../Server-Harpertown/Xeon-L5410.yaml | 0 .../Server-Harpertown/Xeon-L5420.yaml | 0 .../Server-Harpertown/Xeon-L5430.yaml | 0 .../Server-Harpertown/Xeon-X5450.yaml | 0 .../Server-Harpertown/Xeon-X5460.yaml | 0 .../Server-Harpertown/Xeon-X5470.yaml | 0 .../Server-Harpertown/Xeon-X5472.yaml | 0 .../Server-Harpertown/Xeon-X5482.yaml | 0 .../Server-Harpertown/Xeon-X5492.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Haswell.yaml | 0 .../Server-Haswell/Xeon-E3-1220-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1220LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1225V3.yaml | 0 .../Server-Haswell/Xeon-E3-1226V3.yaml | 0 .../Server-Haswell/Xeon-E3-1230-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1230Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1231V3.yaml | 0 .../Server-Haswell/Xeon-E3-1240-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1240LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1241V3.yaml | 0 .../Server-Haswell/Xeon-E3-1245-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1246V3.yaml | 0 .../Server-Haswell/Xeon-E3-1265Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1270-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1271V3.yaml | 0 .../Server-Haswell/Xeon-E3-1275-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1275LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1276V3.yaml | 0 .../Server-Haswell/Xeon-E3-1280-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1281V3.yaml | 0 .../Server-Haswell/Xeon-E3-1285-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1285Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1286LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1286V3.yaml | 0 .../Server-Haswell/Xeon-E5-1620V3.yaml | 0 .../Server-Haswell/Xeon-E5-1630V3.yaml | 0 .../Server-Haswell/Xeon-E5-1650V3.yaml | 0 .../Server-Haswell/Xeon-E5-1660V3.yaml | 0 .../Server-Haswell/Xeon-E5-1680V3.yaml | 0 .../Server-Haswell/Xeon-E5-2603V3.yaml | 0 .../Server-Haswell/Xeon-E5-2609V3.yaml | 0 .../Server-Haswell/Xeon-E5-2620V3.yaml | 0 .../Server-Haswell/Xeon-E5-2623V3.yaml | 0 .../Server-Haswell/Xeon-E5-2630LV3.yaml | 0 .../Server-Haswell/Xeon-E5-2630V3.yaml | 0 .../Server-Haswell/Xeon-E5-2637V3.yaml | 0 .../Server-Haswell/Xeon-E5-2640V3.yaml | 0 .../Server-Haswell/Xeon-E5-2643V3.yaml | 0 .../Server-Haswell/Xeon-E5-2650LV3.yaml | 0 .../Server-Haswell/Xeon-E5-2650V3.yaml | 0 .../Server-Haswell/Xeon-E5-2660V3.yaml | 0 .../Server-Haswell/Xeon-E5-2667V3.yaml | 0 .../Server-Haswell/Xeon-E5-2670V3.yaml | 0 .../Server-Haswell/Xeon-E5-2680V3.yaml | 0 .../Server-Haswell/Xeon-E5-2683V3.yaml | 0 .../Server-Haswell/Xeon-E5-2687WV3.yaml | 0 .../Server-Haswell/Xeon-E5-2690V3.yaml | 0 .../Server-Haswell/Xeon-E5-2695V3.yaml | 0 .../Server-Haswell/Xeon-E5-2697V3.yaml | 0 .../Server-Haswell/Xeon-E5-2698V3.yaml | 0 .../Server-Haswell/Xeon-E5-2699V3.yaml | 0 .../Server-Haswell/Xeon-E5-4610V3.yaml | 0 .../Server-Haswell/Xeon-E5-4620V3.yaml | 0 .../Server-Haswell/Xeon-E5-4627V3.yaml | 0 .../Server-Haswell/Xeon-E5-4640V3.yaml | 0 .../Server-Haswell/Xeon-E5-4650V3.yaml | 0 .../Server-Haswell/Xeon-E5-4655V3.yaml | 0 .../Server-Haswell/Xeon-E5-4660V3.yaml | 0 .../Server-Haswell/Xeon-E5-4667V3.yaml | 0 .../Server-Haswell/Xeon-E5-4669V3.yaml | 0 .../Server-Haswell/Xeon-E7-4809V3.yaml | 0 .../Server-Haswell/Xeon-E7-4820V3.yaml | 0 .../Server-Haswell/Xeon-E7-4830V3.yaml | 0 .../Server-Haswell/Xeon-E7-4850V3.yaml | 0 .../Server-Haswell/Xeon-E7-8860V3.yaml | 0 .../Server-Haswell/Xeon-E7-8867V3.yaml | 0 .../Server-Haswell/Xeon-E7-8870V3.yaml | 0 .../Server-Haswell/Xeon-E7-8880LV3.yaml | 0 .../Server-Haswell/Xeon-E7-8880V3.yaml | 0 .../Server-Haswell/Xeon-E7-8890V3.yaml | 0 .../Server-Haswell/Xeon-E7-8891V3.yaml | 0 .../Server-Haswell/Xeon-E7-8893V3.yaml | 0 .../intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1602.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1622.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1623N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1627.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1633N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1637.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1649N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1653N.yaml | 0 .../Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml | 0 .../Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml | 0 .../intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1220V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1225V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1230V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1240V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1245V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1270V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1275V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1280V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1290V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4809V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4820V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4830V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4860V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8857V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8891V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8893V2.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1220V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1225V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1230V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1240V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1245V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1270V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1275V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1280V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1285V6.yaml | 0 .../intel/Server-CPUs-Intel/Server-Kentsfield.yaml | 0 .../Server-Kentsfield/Xeon-X3210.yaml | 0 .../Server-Kentsfield/Xeon-X3220.yaml | 0 .../Server-Kentsfield/Xeon-X3230.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml | 0 .../Server-Lynnfield/Xeon-L3426.yaml | 0 .../Server-Lynnfield/Xeon-X3430.yaml | 0 .../Server-Lynnfield/Xeon-X3440.yaml | 0 .../Server-Lynnfield/Xeon-X3450.yaml | 0 .../Server-Lynnfield/Xeon-X3460.yaml | 0 .../Server-Lynnfield/Xeon-X3470.yaml | 0 .../Server-Lynnfield/Xeon-X3480.yaml | 0 .../intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml | 0 .../Server-Nehalem-EP/Xeon-E5502.yaml | 0 .../Server-Nehalem-EP/Xeon-E5503.yaml | 0 .../Server-Nehalem-EP/Xeon-E5504.yaml | 0 .../Server-Nehalem-EP/Xeon-E5506.yaml | 0 .../Server-Nehalem-EP/Xeon-E5507.yaml | 0 .../Server-Nehalem-EP/Xeon-E5520.yaml | 0 .../Server-Nehalem-EP/Xeon-E5530.yaml | 0 .../Server-Nehalem-EP/Xeon-E5540.yaml | 0 .../Server-Nehalem-EP/Xeon-L5506.yaml | 0 .../Server-Nehalem-EP/Xeon-L5520.yaml | 0 .../Server-Nehalem-EP/Xeon-L5530.yaml | 0 .../Server-Nehalem-EP/Xeon-W5580.yaml | 0 .../Server-Nehalem-EP/Xeon-W5590.yaml | 0 .../Server-Nehalem-EP/Xeon-X5550.yaml | 0 .../Server-Nehalem-EP/Xeon-X5560.yaml | 0 .../Server-Nehalem-EP/Xeon-X5570.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml | 0 .../Server-Sandy-Bridge-EN/Pentium-1405.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1220.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1220L.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1225.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1230.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1235.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1240.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1245.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1260L.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1270.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1275.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1280.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1290.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Skylake.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml | 0 .../Server-Skylake/Xeon-4109T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml | 0 .../Server-Skylake/Xeon-4114T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml | 0 .../Server-Skylake/Xeon-4116T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml | 0 .../Server-Skylake/Xeon-5119T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml | 0 .../Server-Skylake/Xeon-5120T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml | 0 .../Server-Skylake/Xeon-6126F.yaml | 0 .../Server-Skylake/Xeon-6126T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml | 0 .../Server-Skylake/Xeon-6130F.yaml | 0 .../Server-Skylake/Xeon-6130T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml | 0 .../Server-Skylake/Xeon-6138F.yaml | 0 .../Server-Skylake/Xeon-6138P.yaml | 0 .../Server-Skylake/Xeon-6138T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml | 0 .../Server-Skylake/Xeon-6142F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml | 0 .../Server-Skylake/Xeon-6148F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml | 0 .../Server-Skylake/Xeon-8160F.yaml | 0 .../Server-Skylake/Xeon-8160T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml | 0 .../Server-Skylake/Xeon-8176F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml | 0 .../Server-Skylake/Xeon-D-2123IT.yaml | 0 .../Server-Skylake/Xeon-D-2141I.yaml | 0 .../Server-Skylake/Xeon-D-2142IT.yaml | 0 .../Server-Skylake/Xeon-D-2143IT.yaml | 0 .../Server-Skylake/Xeon-D-2145NT.yaml | 0 .../Server-Skylake/Xeon-D-2146NT.yaml | 0 .../Server-Skylake/Xeon-D-2161I.yaml | 0 .../Server-Skylake/Xeon-D-2163IT.yaml | 0 .../Server-Skylake/Xeon-D-2166NT.yaml | 0 .../Server-Skylake/Xeon-D-2173IT.yaml | 0 .../Server-Skylake/Xeon-D-2177NT.yaml | 0 .../Server-Skylake/Xeon-D-2183IT.yaml | 0 .../Server-Skylake/Xeon-D-2187NT.yaml | 0 .../Server-Skylake/Xeon-E3-1220V5.yaml | 0 .../Server-Skylake/Xeon-E3-1225V5.yaml | 0 .../Server-Skylake/Xeon-E3-1230V5.yaml | 0 .../Server-Skylake/Xeon-E3-1235LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1240LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1240V5.yaml | 0 .../Server-Skylake/Xeon-E3-1245V5.yaml | 0 .../Server-Skylake/Xeon-E3-1260LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1270V5.yaml | 0 .../Server-Skylake/Xeon-E3-1275V5.yaml | 0 .../Server-Skylake/Xeon-E3-1280V5.yaml | 0 .../Server-Skylake/Xeon-E3-1565LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1585LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1585V5.yaml | 0 .../Server-Skylake/Xeon-W-2123.yaml | 0 .../Server-Skylake/Xeon-W-2125.yaml | 0 .../Server-Skylake/Xeon-W-2133.yaml | 0 .../Server-Skylake/Xeon-W-2135.yaml | 0 .../Server-Skylake/Xeon-W-2145.yaml | 0 .../Server-Skylake/Xeon-W-2155.yaml | 0 .../Server-Skylake/Xeon-W-2175.yaml | 0 .../Server-Skylake/Xeon-W-2195.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml | 0 .../Server-Tigerton/Xeon-E7210.yaml | 0 .../Server-Tigerton/Xeon-E7220.yaml | 0 .../Server-Tigerton/Xeon-E7310.yaml | 0 .../Server-Tigerton/Xeon-E7320.yaml | 0 .../Server-Tigerton/Xeon-E7330.yaml | 0 .../Server-Tigerton/Xeon-E7340.yaml | 0 .../Server-Tigerton/Xeon-L7345.yaml | 0 .../Server-Tigerton/Xeon-X7350.yaml | 0 .../intel/Server-CPUs-Intel/Server-Westmere-EP.yaml | 0 .../Server-Westmere-EP/Xeon-E5603.yaml | 0 .../Server-Westmere-EP/Xeon-E5606.yaml | 0 .../Server-Westmere-EP/Xeon-E5607.yaml | 0 .../Server-Westmere-EP/Xeon-E5620.yaml | 0 .../Server-Westmere-EP/Xeon-E5630.yaml | 0 .../Server-Westmere-EP/Xeon-E5640.yaml | 0 .../Server-Westmere-EP/Xeon-E5645.yaml | 0 .../Server-Westmere-EP/Xeon-E5649.yaml | 0 .../Server-Westmere-EP/Xeon-L5609.yaml | 0 .../Server-Westmere-EP/Xeon-L5618.yaml | 0 .../Server-Westmere-EP/Xeon-L5630.yaml | 0 .../Server-Westmere-EP/Xeon-L5638.yaml | 0 .../Server-Westmere-EP/Xeon-L5640.yaml | 0 .../Server-Westmere-EP/Xeon-W3670.yaml | 0 .../Server-Westmere-EP/Xeon-W3680.yaml | 0 .../Server-Westmere-EP/Xeon-X5647.yaml | 0 .../Server-Westmere-EP/Xeon-X5650.yaml | 0 .../Server-Westmere-EP/Xeon-X5660.yaml | 0 .../Server-Westmere-EP/Xeon-X5667.yaml | 0 .../Server-Westmere-EP/Xeon-X5670.yaml | 0 .../Server-Westmere-EP/Xeon-X5672.yaml | 0 .../Server-Westmere-EP/Xeon-X5675.yaml | 0 .../Server-Westmere-EP/Xeon-X5677.yaml | 0 .../Server-Westmere-EP/Xeon-X5680.yaml | 0 .../Server-Westmere-EP/Xeon-X5687.yaml | 0 .../Server-Westmere-EP/Xeon-X5690.yaml | 0 .../intel/Server-CPUs-Intel/Server-Westmere-EX.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2803.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2820.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2870.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4807.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4820.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4870.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8837.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8867L.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8870.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml | 0 .../Server-Wolfdale/Xeon-E3110.yaml | 0 .../Server-Wolfdale/Xeon-E3120.yaml | 0 .../Server-Wolfdale/Xeon-E5205.yaml | 0 .../Server-Wolfdale/Xeon-E5220.yaml | 0 .../Server-Wolfdale/Xeon-L3110.yaml | 0 .../Server-Wolfdale/Xeon-L5215.yaml | 0 .../Server-Wolfdale/Xeon-L5240.yaml | 0 .../Server-Wolfdale/Xeon-X5260.yaml | 0 .../Server-Wolfdale/Xeon-X5270.yaml | 0 .../Server-Wolfdale/Xeon-X5272.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml | 0 .../Server-Woodcrest/Xeon-5110.yaml | 0 .../Server-Woodcrest/Xeon-5113.yaml | 0 .../Server-Woodcrest/Xeon-5128.yaml | 0 .../Server-Woodcrest/Xeon-5130.yaml | 0 .../Server-Woodcrest/Xeon-5133.yaml | 0 .../Server-Woodcrest/Xeon-5138.yaml | 0 .../Server-Woodcrest/Xeon-5140.yaml | 0 .../Server-Woodcrest/Xeon-5148.yaml | 0 .../Server-Woodcrest/Xeon-5150.yaml | 0 .../Server-Woodcrest/Xeon-5160.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml | 0 .../Server-Yorkfield/Xeon-L3360.yaml | 0 .../Server-Yorkfield/Xeon-X3320.yaml | 0 .../Server-Yorkfield/Xeon-X3330.yaml | 0 .../Server-Yorkfield/Xeon-X3350.yaml | 0 .../Server-Yorkfield/Xeon-X3360.yaml | 0 .../Server-Yorkfield/Xeon-X3370.yaml | 0 .../Server-Yorkfield/Xeon-X3380.yaml | 0 specs/intel/undefined-CPUs-Intel.yaml | 0 .../undefined-Cascade-Lake.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2223.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2225.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2235.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2245.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2255.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2265.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2275.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2295.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3223.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3225.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3235.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3245.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3245M.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3265.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3265M.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3275.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3275M.yaml | 0 src/css/about.css | 0 src/css/base.css | 0 src/css/fonts.css | 0 src/css/mobile.css | 0 src/css/part-selector.css | 0 src/css/scrollbar.css | 0 src/css/spec-viewer.css | 0 src/js/about.js | 0 src/js/components/info-links.js | 0 src/js/components/main-selector.js | 0 src/js/components/part.js | 0 src/js/components/svg.js | 0 src/js/dates.js | 0 src/js/entry.js | 0 src/js/hash.js | 0 src/js/part-selector.js | 0 src/js/pure.js | 0 src/js/row-data.js | 0 src/js/seo.js | 0 src/js/spec-viewer.js | 0 src/js/units.js | 0 tests/bucket.js | 0 tests/combine.js | 0 tests/dates.js | 0 tests/genscrapedsections.js | 0 tests/gensubtext.js | 0 tests/gettabledata.js | 0 tests/row-data.js | 0 tests/seo.js | 0 tests/third-party-matchers.js | 0 tests/units.js | 0 tests/yaml-verify.js | 0 tmp/.gitignore | 0 tmp/find-missing-intel-cpus.py | 0 3539 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .dir-locals.el mode change 100644 => 100755 .gitignore mode change 100644 => 100755 .nvmrc mode change 100644 => 100755 LICENSE mode change 100644 => 100755 Makefile mode change 100644 => 100755 README.md mode change 100644 => 100755 build/3dmark-parse.js mode change 100644 => 100755 build/combine-specs.js mode change 100644 => 100755 build/combine-util.js mode change 100644 => 100755 build/create-cpu.js mode change 100644 => 100755 build/create-gpu.js mode change 100644 => 100755 build/create-spec.js mode change 100644 => 100755 build/geekbench-parse.js mode change 100644 => 100755 build/gen-specs.js mode change 100644 => 100755 build/intel-config.js mode change 100644 => 100755 build/intel-parse.js mode change 100644 => 100755 build/userbenchmark-parse.js mode change 100644 => 100755 build/util.js mode change 100644 => 100755 package.json mode change 100644 => 100755 public/.gitignore mode change 100644 => 100755 public/SpecDB-Markasoftware.png mode change 100644 => 100755 public/SpecDB-zcskwire2.png mode change 100644 => 100755 public/_redirects mode change 100644 => 100755 public/favicon.ico mode change 100644 => 100755 public/fonts/open-sans-v15-latin-600.woff mode change 100644 => 100755 public/fonts/open-sans-v15-latin-600.woff2 mode change 100644 => 100755 public/fonts/open-sans-v15-latin-regular.woff mode change 100644 => 100755 public/fonts/open-sans-v15-latin-regular.woff2 mode change 100644 => 100755 public/fonts/quicksand-v7-latin-300.woff mode change 100644 => 100755 public/fonts/quicksand-v7-latin-300.woff2 mode change 100644 => 100755 public/fonts/quicksand-v7-latin-regular.woff mode change 100644 => 100755 public/fonts/quicksand-v7-latin-regular.woff2 mode change 100644 => 100755 public/humans.txt mode change 100644 => 100755 public/icon-192.png mode change 100644 => 100755 public/icon-512.png mode change 100644 => 100755 public/index.html mode change 100644 => 100755 public/manifest.json mode change 100644 => 100755 public/robots.txt mode change 100644 => 100755 specs/.gitignore mode change 100644 => 100755 specs/APUs-CUSTOM.yaml mode change 100644 => 100755 specs/APUs-DESKTOP.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne-inherit.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7800.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A8-7600.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A4-3300.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A4-3400.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A4-3420.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A6-3500.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A6-3600.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A6-3620.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A6-3650.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A6-3670K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A8-3800.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A8-3820.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A8-3850.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/A8-3870K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Llano/E2-3200.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Raven-Ridge.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir-inherit.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6700.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6700T.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6790B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6790K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6800B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A10-6800k.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-4000.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-4020.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-6300.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-6300B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-6320.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-6320B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-7300.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A4-7300B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A6-6400B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A6-6400K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A6-6420B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A6-6420K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A8-6500.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A8-6500B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A8-6500T.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Richland/A8-6600K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity-APU.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A10-5700.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A10-5800B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A10-5800K.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A4-5300.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A4-5300B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A6-5400B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A6-5400k.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A8-5500.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A8-5500B.yaml mode change 100644 => 100755 specs/APUs-DESKTOP/Trinity/A8-5600K.yaml mode change 100644 => 100755 specs/APUs-EMBEDDED.yaml mode change 100644 => 100755 specs/APUs-MOBILE.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A10-8700B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A10-8700P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A10-8730B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A10-8780P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A12-8800B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A12-8830B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A6-8500B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A6-8500P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A6-8530B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A8-8600B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/A8-8600P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Carrizo/FX-8800P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne-M-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A10-7300.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A10-7350B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A10-7400P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A6-7000.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A6-7050B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A8-7100.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A8-7150B.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/A8-7200P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/FX-7500.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Kaveri/FX-7600P.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir-M-inherit.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Richland-M.yaml mode change 100644 => 100755 specs/APUs-MOBILE/Trinity-M.yaml mode change 100644 => 100755 specs/APUs-SERVER.yaml mode change 100644 => 100755 specs/APUs-ULTRA-MOBILE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86/K5-PR120.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86/K5-PR133.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86/K5-PR150.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86/K5-PR166.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/5K86/K5-PR200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9100e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9150e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9350e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9450e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9600B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9600BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9750B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9850B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9850BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Agena/9950BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon/500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon/550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon/600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon/650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Argon/700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton/XP-2500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton/XP-2600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton/XP-2800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton/XP-3000.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Barton/XP-3200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/545.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/550BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/555BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/560BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/565BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/570BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/B53.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/B55.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/B57.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/B59.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Callisto/B60.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Carrizo-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Carrizo.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Castle-Peak.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/233.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/266.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/333.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/366.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/380.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/475.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/533.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Chomper/550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/2800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3700+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax/2920X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax/2950X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax/2970WX.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Colfax/2990WX.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/805.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/810.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/820.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/830.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/900e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/905e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/910.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/910e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/920.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/925.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/940BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/945.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/955.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/955BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/965BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/970BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/975BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/980BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/B93.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/B95.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/B97.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Deneb/B99.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/700e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/705e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/710.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/715BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/720.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/720BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/740BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/B73.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/B75.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Heka/B77.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/840.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/840P.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/860K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/870K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kaveri/880K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma/6500BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma/7450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma/7550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma/7750BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Kuma/7850BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/2650E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/2850E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/LE-1640.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/LE-1640B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Lima/LE-1660.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Little-Foot.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Little-Foot/266.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Little-Foot/300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano-X2-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Model-6-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Model-6.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Model-6/166.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Model-6/200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Model-6/233.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/2800+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3000+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3200+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3300+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3400+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Newcastle/3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orion.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orion/1000.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orion/900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orion/950.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/3000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/4000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/LE-1600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/LE-1620.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Orleans/LE-1640.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-1500.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-1600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-1700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-1800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-1900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-2000.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Palomino/XP-2100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Pluto/850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/620.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/630.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/635.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/640.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/645.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-Athlon/650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus/840.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Propus/850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/400e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/405e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/415e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/420e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/425.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/425e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/435.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/440.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/445.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/455.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Rana/460.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/215.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/220.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/240.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/245.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/250.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/255.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/260.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/265.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/270.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/280.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Sempron.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Sempron/180.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-Sempron/190.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor/511.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Regor/521.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland-Sempron.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland-Sempron/240.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland-Sempron/250.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland-X2-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland/350.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland/370K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland/750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Richland/760K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SSA5.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego/3700+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego/4000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego/FX_55.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/San-Diego/FX_57.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas/160u.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sargas/170u.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sharptooth-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sharptooth.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sharptooth/333.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sharptooth/400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Sharptooth/450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SledgeHammer.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton/XP-2000.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton/XP-2200.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton/XP-2400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton/XP-2600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thorton/XP-3100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1035T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1045T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1055T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1065T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1075T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1075TBE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1090TBE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thuban/1100TBE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1000B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1000C.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1100.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1133.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1200B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1200C.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1266.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1300.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1333.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1400B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/1400C.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/700.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Thunderbird/950.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/3700+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/4000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/FX-60.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8250e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8400.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8450.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8450e.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8550.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8600.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8600B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8650.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8750.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8750B.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8750BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Toliman/8850.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity-Sempron.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4226.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4228HE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4230HE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4234.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4238.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4240.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4256EE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4274HE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4276HE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4280.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Valencia/4284.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/1500+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3000+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3200+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3400+754.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Venice/3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven/1900X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven/1920X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven/1950X.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Winchester-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Winchester.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Winchester/3000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Winchester/3200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Winchester/3500+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/FX-62.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/FX-70.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/FX-72.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/FX-74.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma-inherit.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma/650T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma/840T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma/960T.yaml mode change 100644 => 100755 specs/CPUs-DESKTOP/Zosma/960TBE.yaml mode change 100644 => 100755 specs/CPUs-EMBEDDED.yaml mode change 100644 => 100755 specs/CPUs-MOBILE.yaml mode change 100644 => 100755 specs/CPUs-SERVER.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6308.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6320.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6328.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6344.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6348.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6376.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6378.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6380.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2344HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2346HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2347.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2347HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2350.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2350HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2352.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2354.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2356.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2358SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/2360SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8346HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8347.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8347HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8350.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8350HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8352.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8354.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8356.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8358SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Barcelona/8360SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Budapest-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Budapest.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Budapest/1352.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Budapest/1354.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Budapest/1356.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi/3320EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi/3350HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi/3365.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Delhi/3380.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9124.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9224.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9254.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9334.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9354.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9454.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9534.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9554.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9634.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9654.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6204.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6212.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6220.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6230HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6234.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6238.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6262HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6272.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6274.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6276.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6278.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6282SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Interlagos/6284SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2419.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2419EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2423HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2425HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2427.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2431.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2435.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/2439SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8419.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8419EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8423.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8425HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8431.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8435.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Istanbul/8439SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4122.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4130.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4133.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4162EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4164EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4170HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4171HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4174HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4176HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4180.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Lisbon/4184.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6124HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6128.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6128HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6132HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6134.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6136.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6140.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6164HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6166HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6168.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6172.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6174.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6176.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6176SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Magny-Cours/6180SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7251.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7261.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7281.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7301.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7351.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7351P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7371.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7401.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7401P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7451.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7501.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7551.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7551P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Naples/Epyc-7601.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7232P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7252.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7262.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7272.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7282.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7302.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7302P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7352.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7402.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7402P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7452.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7502.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7502P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7532.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7542.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7552.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7642.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7662.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7702.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7702P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7742.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7F32.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7F52.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7F72.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Rome/Epyc-7H12.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4310HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4332HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4334.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4340.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4365EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4376HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Seoul/4386.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2372HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2373EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2374HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2376HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2377EE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2378.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2379HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2380.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2381HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2382.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2384.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2386SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2387.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2389.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/2393SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8374HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8376HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8378.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8379HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8380.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8381HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8382.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8384.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8386SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8387.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8389.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Shanghai/8393SE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Suzuka-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Suzuka.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Suzuka/1381.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Suzuka/1385.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Suzuka/1389.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Valencia-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Valencia.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Warsaw-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Warsaw.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Warsaw/6338P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Warsaw/6370P.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Zurich-inherit.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Zurich.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Zurich/3250HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Zurich/3260HE.yaml mode change 100644 => 100755 specs/CPUs-SERVER/Zurich/3280.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-1.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-4.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-5.1.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/GCN-5.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4250.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4350.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4520.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4550.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4570.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4650.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4670.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4700.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4710.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4730.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4750.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4770.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4810.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4830.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4850.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4855.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4860.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4870.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD4000/HD4890.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5470.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5490.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5530.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5550.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5570.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5610.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5630.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5690.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5730.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5830.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6350.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6570.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6790.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6850.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6970.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD6000/HD6990.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7730.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7870.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7950.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD7000/HD7990.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8470.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8490.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8570.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8670.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8730.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8760.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8950.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8970.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/HD8000/HD8990.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R7-260.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-270.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-280.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-280X.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-285.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-290-base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-290.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-200/R9-295X2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R7-360.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-380X.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-390.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-390X.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-Fury.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/R9-Nano.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-450.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-455.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-470D.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-Vega.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/Radeon-VII.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/TeraScale-1.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/TeraScale-2.yaml mode change 100644 => 100755 specs/GPUs-CONSUMER/TeraScale-3.yaml mode change 100644 => 100755 specs/Intel/Core/k-unlocked.yaml mode change 100644 => 100755 specs/Intel/Haswell/G3258.yaml mode change 100644 => 100755 specs/Intel/Intel.yaml mode change 100644 => 100755 specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml mode change 100644 => 100755 specs/Root.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml mode change 100644 => 100755 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml mode change 100644 => 100755 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml mode change 100644 => 100755 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Centerton.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml mode change 100644 => 100755 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml mode change 100644 => 100755 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml mode change 100644 => 100755 src/css/about.css mode change 100644 => 100755 src/css/base.css mode change 100644 => 100755 src/css/fonts.css mode change 100644 => 100755 src/css/mobile.css mode change 100644 => 100755 src/css/part-selector.css mode change 100644 => 100755 src/css/scrollbar.css mode change 100644 => 100755 src/css/spec-viewer.css mode change 100644 => 100755 src/js/about.js mode change 100644 => 100755 src/js/components/info-links.js mode change 100644 => 100755 src/js/components/main-selector.js mode change 100644 => 100755 src/js/components/part.js mode change 100644 => 100755 src/js/components/svg.js mode change 100644 => 100755 src/js/dates.js mode change 100644 => 100755 src/js/entry.js mode change 100644 => 100755 src/js/hash.js mode change 100644 => 100755 src/js/part-selector.js mode change 100644 => 100755 src/js/pure.js mode change 100644 => 100755 src/js/row-data.js mode change 100644 => 100755 src/js/seo.js mode change 100644 => 100755 src/js/spec-viewer.js mode change 100644 => 100755 src/js/units.js mode change 100644 => 100755 tests/bucket.js mode change 100644 => 100755 tests/combine.js mode change 100644 => 100755 tests/dates.js mode change 100644 => 100755 tests/genscrapedsections.js mode change 100644 => 100755 tests/gensubtext.js mode change 100644 => 100755 tests/gettabledata.js mode change 100644 => 100755 tests/row-data.js mode change 100644 => 100755 tests/seo.js mode change 100644 => 100755 tests/third-party-matchers.js mode change 100644 => 100755 tests/units.js mode change 100644 => 100755 tests/yaml-verify.js mode change 100644 => 100755 tmp/.gitignore mode change 100644 => 100755 tmp/find-missing-intel-cpus.py diff --git a/.dir-locals.el b/.dir-locals.el old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.nvmrc b/.nvmrc old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/build/3dmark-parse.js b/build/3dmark-parse.js old mode 100644 new mode 100755 diff --git a/build/combine-specs.js b/build/combine-specs.js old mode 100644 new mode 100755 diff --git a/build/combine-util.js b/build/combine-util.js old mode 100644 new mode 100755 diff --git a/build/create-cpu.js b/build/create-cpu.js old mode 100644 new mode 100755 diff --git a/build/create-gpu.js b/build/create-gpu.js old mode 100644 new mode 100755 diff --git a/build/create-spec.js b/build/create-spec.js old mode 100644 new mode 100755 diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js old mode 100644 new mode 100755 diff --git a/build/gen-specs.js b/build/gen-specs.js old mode 100644 new mode 100755 diff --git a/build/intel-config.js b/build/intel-config.js old mode 100644 new mode 100755 diff --git a/build/intel-parse.js b/build/intel-parse.js old mode 100644 new mode 100755 diff --git a/build/userbenchmark-parse.js b/build/userbenchmark-parse.js old mode 100644 new mode 100755 diff --git a/build/util.js b/build/util.js old mode 100644 new mode 100755 diff --git a/package.json b/package.json old mode 100644 new mode 100755 diff --git a/public/.gitignore b/public/.gitignore old mode 100644 new mode 100755 diff --git a/public/SpecDB-Markasoftware.png b/public/SpecDB-Markasoftware.png old mode 100644 new mode 100755 diff --git a/public/SpecDB-zcskwire2.png b/public/SpecDB-zcskwire2.png old mode 100644 new mode 100755 diff --git a/public/_redirects b/public/_redirects old mode 100644 new mode 100755 diff --git a/public/favicon.ico b/public/favicon.ico old mode 100644 new mode 100755 diff --git a/public/fonts/open-sans-v15-latin-600.woff b/public/fonts/open-sans-v15-latin-600.woff old mode 100644 new mode 100755 diff --git a/public/fonts/open-sans-v15-latin-600.woff2 b/public/fonts/open-sans-v15-latin-600.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/open-sans-v15-latin-regular.woff b/public/fonts/open-sans-v15-latin-regular.woff old mode 100644 new mode 100755 diff --git a/public/fonts/open-sans-v15-latin-regular.woff2 b/public/fonts/open-sans-v15-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/quicksand-v7-latin-300.woff b/public/fonts/quicksand-v7-latin-300.woff old mode 100644 new mode 100755 diff --git a/public/fonts/quicksand-v7-latin-300.woff2 b/public/fonts/quicksand-v7-latin-300.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/quicksand-v7-latin-regular.woff b/public/fonts/quicksand-v7-latin-regular.woff old mode 100644 new mode 100755 diff --git a/public/fonts/quicksand-v7-latin-regular.woff2 b/public/fonts/quicksand-v7-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/public/humans.txt b/public/humans.txt old mode 100644 new mode 100755 diff --git a/public/icon-192.png b/public/icon-192.png old mode 100644 new mode 100755 diff --git a/public/icon-512.png b/public/icon-512.png old mode 100644 new mode 100755 diff --git a/public/index.html b/public/index.html old mode 100644 new mode 100755 diff --git a/public/manifest.json b/public/manifest.json old mode 100644 new mode 100755 diff --git a/public/robots.txt b/public/robots.txt old mode 100644 new mode 100755 diff --git a/specs/.gitignore b/specs/.gitignore old mode 100644 new mode 100755 diff --git a/specs/APUs-CUSTOM.yaml b/specs/APUs-CUSTOM.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP.yaml b/specs/APUs-DESKTOP.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml b/specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne-inherit.yaml b/specs/APUs-DESKTOP/Cezanne-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne.yaml b/specs/APUs-DESKTOP/Cezanne.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini-APU.yaml b/specs/APUs-DESKTOP/Kabini-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml b/specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml b/specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri-APU.yaml b/specs/APUs-DESKTOP/Kaveri-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7800.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7800.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml b/specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml b/specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml b/specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml b/specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml b/specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml b/specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7600.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7600.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml b/specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano-APU.yaml b/specs/APUs-DESKTOP/Llano-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A4-3300.yaml b/specs/APUs-DESKTOP/Llano/A4-3300.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A4-3400.yaml b/specs/APUs-DESKTOP/Llano/A4-3400.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A4-3420.yaml b/specs/APUs-DESKTOP/Llano/A4-3420.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A6-3500.yaml b/specs/APUs-DESKTOP/Llano/A6-3500.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A6-3600.yaml b/specs/APUs-DESKTOP/Llano/A6-3600.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A6-3620.yaml b/specs/APUs-DESKTOP/Llano/A6-3620.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A6-3650.yaml b/specs/APUs-DESKTOP/Llano/A6-3650.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A6-3670K.yaml b/specs/APUs-DESKTOP/Llano/A6-3670K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A8-3800.yaml b/specs/APUs-DESKTOP/Llano/A8-3800.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A8-3820.yaml b/specs/APUs-DESKTOP/Llano/A8-3820.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A8-3850.yaml b/specs/APUs-DESKTOP/Llano/A8-3850.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/A8-3870K.yaml b/specs/APUs-DESKTOP/Llano/A8-3870K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Llano/E2-3200.yaml b/specs/APUs-DESKTOP/Llano/E2-3200.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Raven-Ridge.yaml b/specs/APUs-DESKTOP/Raven-Ridge.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml b/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml b/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir-inherit.yaml b/specs/APUs-DESKTOP/Renoir-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir.yaml b/specs/APUs-DESKTOP/Renoir.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland-APU.yaml b/specs/APUs-DESKTOP/Richland-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6700.yaml b/specs/APUs-DESKTOP/Richland/A10-6700.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6700T.yaml b/specs/APUs-DESKTOP/Richland/A10-6700T.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6790B.yaml b/specs/APUs-DESKTOP/Richland/A10-6790B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6790K.yaml b/specs/APUs-DESKTOP/Richland/A10-6790K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6800B.yaml b/specs/APUs-DESKTOP/Richland/A10-6800B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A10-6800k.yaml b/specs/APUs-DESKTOP/Richland/A10-6800k.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-4000.yaml b/specs/APUs-DESKTOP/Richland/A4-4000.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-4020.yaml b/specs/APUs-DESKTOP/Richland/A4-4020.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-6300.yaml b/specs/APUs-DESKTOP/Richland/A4-6300.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-6300B.yaml b/specs/APUs-DESKTOP/Richland/A4-6300B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-6320.yaml b/specs/APUs-DESKTOP/Richland/A4-6320.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-6320B.yaml b/specs/APUs-DESKTOP/Richland/A4-6320B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-7300.yaml b/specs/APUs-DESKTOP/Richland/A4-7300.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A4-7300B.yaml b/specs/APUs-DESKTOP/Richland/A4-7300B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A6-6400B.yaml b/specs/APUs-DESKTOP/Richland/A6-6400B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A6-6400K.yaml b/specs/APUs-DESKTOP/Richland/A6-6400K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A6-6420B.yaml b/specs/APUs-DESKTOP/Richland/A6-6420B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A6-6420K.yaml b/specs/APUs-DESKTOP/Richland/A6-6420K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500.yaml b/specs/APUs-DESKTOP/Richland/A8-6500.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500B.yaml b/specs/APUs-DESKTOP/Richland/A8-6500B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500T.yaml b/specs/APUs-DESKTOP/Richland/A8-6500T.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Richland/A8-6600K.yaml b/specs/APUs-DESKTOP/Richland/A8-6600K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity-APU.yaml b/specs/APUs-DESKTOP/Trinity-APU.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5700.yaml b/specs/APUs-DESKTOP/Trinity/A10-5700.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5800B.yaml b/specs/APUs-DESKTOP/Trinity/A10-5800B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5800K.yaml b/specs/APUs-DESKTOP/Trinity/A10-5800K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A4-5300.yaml b/specs/APUs-DESKTOP/Trinity/A4-5300.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A4-5300B.yaml b/specs/APUs-DESKTOP/Trinity/A4-5300B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A6-5400B.yaml b/specs/APUs-DESKTOP/Trinity/A6-5400B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A6-5400k.yaml b/specs/APUs-DESKTOP/Trinity/A6-5400k.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5500.yaml b/specs/APUs-DESKTOP/Trinity/A8-5500.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5500B.yaml b/specs/APUs-DESKTOP/Trinity/A8-5500B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5600K.yaml b/specs/APUs-DESKTOP/Trinity/A8-5600K.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-EMBEDDED.yaml b/specs/APUs-EMBEDDED.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE.yaml b/specs/APUs-MOBILE.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge-M.yaml b/specs/APUs-MOBILE/Bristol-Ridge-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml b/specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo-M.yaml b/specs/APUs-MOBILE/Carrizo-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo-inherit.yaml b/specs/APUs-MOBILE/Carrizo-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8700B.yaml b/specs/APUs-MOBILE/Carrizo/A10-8700B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8700P.yaml b/specs/APUs-MOBILE/Carrizo/A10-8700P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8730B.yaml b/specs/APUs-MOBILE/Carrizo/A10-8730B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8780P.yaml b/specs/APUs-MOBILE/Carrizo/A10-8780P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A12-8800B.yaml b/specs/APUs-MOBILE/Carrizo/A12-8800B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A12-8830B.yaml b/specs/APUs-MOBILE/Carrizo/A12-8830B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8500B.yaml b/specs/APUs-MOBILE/Carrizo/A6-8500B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8500P.yaml b/specs/APUs-MOBILE/Carrizo/A6-8500P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8530B.yaml b/specs/APUs-MOBILE/Carrizo/A6-8530B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A8-8600B.yaml b/specs/APUs-MOBILE/Carrizo/A8-8600B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/A8-8600P.yaml b/specs/APUs-MOBILE/Carrizo/A8-8600P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Carrizo/FX-8800P.yaml b/specs/APUs-MOBILE/Carrizo/FX-8800P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne-M-inherit.yaml b/specs/APUs-MOBILE/Cezanne-M-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne-M.yaml b/specs/APUs-MOBILE/Cezanne-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri-M.yaml b/specs/APUs-MOBILE/Kaveri-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri-inherit.yaml b/specs/APUs-MOBILE/Kaveri-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7300.yaml b/specs/APUs-MOBILE/Kaveri/A10-7300.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7350B.yaml b/specs/APUs-MOBILE/Kaveri/A10-7350B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7400P.yaml b/specs/APUs-MOBILE/Kaveri/A10-7400P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A6-7000.yaml b/specs/APUs-MOBILE/Kaveri/A6-7000.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A6-7050B.yaml b/specs/APUs-MOBILE/Kaveri/A6-7050B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7100.yaml b/specs/APUs-MOBILE/Kaveri/A8-7100.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7150B.yaml b/specs/APUs-MOBILE/Kaveri/A8-7150B.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7200P.yaml b/specs/APUs-MOBILE/Kaveri/A8-7200P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/FX-7500.yaml b/specs/APUs-MOBILE/Kaveri/FX-7500.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Kaveri/FX-7600P.yaml b/specs/APUs-MOBILE/Kaveri/FX-7600P.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix-inherit.yaml b/specs/APUs-MOBILE/Phoenix-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix.yaml b/specs/APUs-MOBILE/Phoenix.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge-M.yaml b/specs/APUs-MOBILE/Raven-Ridge-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge-inherit.yaml b/specs/APUs-MOBILE/Raven-Ridge-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir-M-inherit.yaml b/specs/APUs-MOBILE/Renoir-M-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir-M.yaml b/specs/APUs-MOBILE/Renoir-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Richland-M.yaml b/specs/APUs-MOBILE/Richland-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-MOBILE/Trinity-M.yaml b/specs/APUs-MOBILE/Trinity-M.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-SERVER.yaml b/specs/APUs-SERVER.yaml old mode 100644 new mode 100755 diff --git a/specs/APUs-ULTRA-MOBILE.yaml b/specs/APUs-ULTRA-MOBILE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP.yaml b/specs/CPUs-DESKTOP.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86-inherit.yaml b/specs/CPUs-DESKTOP/5K86-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86.yaml b/specs/CPUs-DESKTOP/5K86.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR120.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR120.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR133.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR133.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR150.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR150.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR166.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR166.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR200.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena-inherit.yaml b/specs/CPUs-DESKTOP/Agena-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena.yaml b/specs/CPUs-DESKTOP/Agena.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9100e.yaml b/specs/CPUs-DESKTOP/Agena/9100e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9150e.yaml b/specs/CPUs-DESKTOP/Agena/9150e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9350e.yaml b/specs/CPUs-DESKTOP/Agena/9350e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9450e.yaml b/specs/CPUs-DESKTOP/Agena/9450e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9500.yaml b/specs/CPUs-DESKTOP/Agena/9500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9550.yaml b/specs/CPUs-DESKTOP/Agena/9550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9600.yaml b/specs/CPUs-DESKTOP/Agena/9600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9600B.yaml b/specs/CPUs-DESKTOP/Agena/9600B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9600BE.yaml b/specs/CPUs-DESKTOP/Agena/9600BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9650.yaml b/specs/CPUs-DESKTOP/Agena/9650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9750.yaml b/specs/CPUs-DESKTOP/Agena/9750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9750B.yaml b/specs/CPUs-DESKTOP/Agena/9750B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9850.yaml b/specs/CPUs-DESKTOP/Agena/9850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9850B.yaml b/specs/CPUs-DESKTOP/Agena/9850B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9850BE.yaml b/specs/CPUs-DESKTOP/Agena/9850BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Agena/9950BE.yaml b/specs/CPUs-DESKTOP/Agena/9950BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon-inherit.yaml b/specs/CPUs-DESKTOP/Argon-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon.yaml b/specs/CPUs-DESKTOP/Argon.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon/500.yaml b/specs/CPUs-DESKTOP/Argon/500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon/550.yaml b/specs/CPUs-DESKTOP/Argon/550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon/600.yaml b/specs/CPUs-DESKTOP/Argon/600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon/650.yaml b/specs/CPUs-DESKTOP/Argon/650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Argon/700.yaml b/specs/CPUs-DESKTOP/Argon/700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton-inherit.yaml b/specs/CPUs-DESKTOP/Barton-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton.yaml b/specs/CPUs-DESKTOP/Barton.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2500.yaml b/specs/CPUs-DESKTOP/Barton/XP-2500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2600.yaml b/specs/CPUs-DESKTOP/Barton/XP-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2800.yaml b/specs/CPUs-DESKTOP/Barton/XP-2800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton/XP-3000.yaml b/specs/CPUs-DESKTOP/Barton/XP-3000.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Barton/XP-3200.yaml b/specs/CPUs-DESKTOP/Barton/XP-3200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane-inherit.yaml b/specs/CPUs-DESKTOP/Brisbane-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane.yaml b/specs/CPUs-DESKTOP/Brisbane.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer-inherit.yaml b/specs/CPUs-DESKTOP/Bulldozer-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer.yaml b/specs/CPUs-DESKTOP/Bulldozer.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto-inherit.yaml b/specs/CPUs-DESKTOP/Callisto-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto.yaml b/specs/CPUs-DESKTOP/Callisto.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/545.yaml b/specs/CPUs-DESKTOP/Callisto/545.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/550.yaml b/specs/CPUs-DESKTOP/Callisto/550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/550BE.yaml b/specs/CPUs-DESKTOP/Callisto/550BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/555BE.yaml b/specs/CPUs-DESKTOP/Callisto/555BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/560BE.yaml b/specs/CPUs-DESKTOP/Callisto/560BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/565BE.yaml b/specs/CPUs-DESKTOP/Callisto/565BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/570BE.yaml b/specs/CPUs-DESKTOP/Callisto/570BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/B53.yaml b/specs/CPUs-DESKTOP/Callisto/B53.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/B55.yaml b/specs/CPUs-DESKTOP/Callisto/B55.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/B57.yaml b/specs/CPUs-DESKTOP/Callisto/B57.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/B59.yaml b/specs/CPUs-DESKTOP/Callisto/B59.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Callisto/B60.yaml b/specs/CPUs-DESKTOP/Callisto/B60.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Carrizo-inherit.yaml b/specs/CPUs-DESKTOP/Carrizo-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Carrizo.yaml b/specs/CPUs-DESKTOP/Carrizo.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml b/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml b/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml b/specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml b/specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Castle-Peak.yaml b/specs/CPUs-DESKTOP/Castle-Peak.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper-inherit.yaml b/specs/CPUs-DESKTOP/Chomper-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper.yaml b/specs/CPUs-DESKTOP/Chomper.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/200.yaml b/specs/CPUs-DESKTOP/Chomper/200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/233.yaml b/specs/CPUs-DESKTOP/Chomper/233.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/266.yaml b/specs/CPUs-DESKTOP/Chomper/266.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/300.yaml b/specs/CPUs-DESKTOP/Chomper/300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/333.yaml b/specs/CPUs-DESKTOP/Chomper/333.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/350.yaml b/specs/CPUs-DESKTOP/Chomper/350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/366.yaml b/specs/CPUs-DESKTOP/Chomper/366.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/380.yaml b/specs/CPUs-DESKTOP/Chomper/380.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/400.yaml b/specs/CPUs-DESKTOP/Chomper/400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/450.yaml b/specs/CPUs-DESKTOP/Chomper/450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/475.yaml b/specs/CPUs-DESKTOP/Chomper/475.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/500.yaml b/specs/CPUs-DESKTOP/Chomper/500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/533.yaml b/specs/CPUs-DESKTOP/Chomper/533.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Chomper/550.yaml b/specs/CPUs-DESKTOP/Chomper/550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer-inherit.yaml b/specs/CPUs-DESKTOP/ClawHammer-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer.yaml b/specs/CPUs-DESKTOP/ClawHammer.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/2800+.yaml b/specs/CPUs-DESKTOP/ClawHammer/2800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3000+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3200+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml b/specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3400+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml b/specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3600+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3700+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3700+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml b/specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml b/specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax-inherit.yaml b/specs/CPUs-DESKTOP/Colfax-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax.yaml b/specs/CPUs-DESKTOP/Colfax.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax/2920X.yaml b/specs/CPUs-DESKTOP/Colfax/2920X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax/2950X.yaml b/specs/CPUs-DESKTOP/Colfax/2950X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax/2970WX.yaml b/specs/CPUs-DESKTOP/Colfax/2970WX.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Colfax/2990WX.yaml b/specs/CPUs-DESKTOP/Colfax/2990WX.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb-inherit.yaml b/specs/CPUs-DESKTOP/Deneb-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb.yaml b/specs/CPUs-DESKTOP/Deneb.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/805.yaml b/specs/CPUs-DESKTOP/Deneb/805.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/810.yaml b/specs/CPUs-DESKTOP/Deneb/810.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/820.yaml b/specs/CPUs-DESKTOP/Deneb/820.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/830.yaml b/specs/CPUs-DESKTOP/Deneb/830.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/900e.yaml b/specs/CPUs-DESKTOP/Deneb/900e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/905e.yaml b/specs/CPUs-DESKTOP/Deneb/905e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/910.yaml b/specs/CPUs-DESKTOP/Deneb/910.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/910e.yaml b/specs/CPUs-DESKTOP/Deneb/910e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/920.yaml b/specs/CPUs-DESKTOP/Deneb/920.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/925.yaml b/specs/CPUs-DESKTOP/Deneb/925.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/940BE.yaml b/specs/CPUs-DESKTOP/Deneb/940BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/945.yaml b/specs/CPUs-DESKTOP/Deneb/945.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/955.yaml b/specs/CPUs-DESKTOP/Deneb/955.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/955BE.yaml b/specs/CPUs-DESKTOP/Deneb/955BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/965BE.yaml b/specs/CPUs-DESKTOP/Deneb/965BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/970BE.yaml b/specs/CPUs-DESKTOP/Deneb/970BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/975BE.yaml b/specs/CPUs-DESKTOP/Deneb/975BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/980BE.yaml b/specs/CPUs-DESKTOP/Deneb/980BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/B93.yaml b/specs/CPUs-DESKTOP/Deneb/B93.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/B95.yaml b/specs/CPUs-DESKTOP/Deneb/B95.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/B97.yaml b/specs/CPUs-DESKTOP/Deneb/B97.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Deneb/B99.yaml b/specs/CPUs-DESKTOP/Deneb/B99.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka-inherit.yaml b/specs/CPUs-DESKTOP/Heka-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka.yaml b/specs/CPUs-DESKTOP/Heka.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/700e.yaml b/specs/CPUs-DESKTOP/Heka/700e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/705e.yaml b/specs/CPUs-DESKTOP/Heka/705e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/710.yaml b/specs/CPUs-DESKTOP/Heka/710.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/715BE.yaml b/specs/CPUs-DESKTOP/Heka/715BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/720.yaml b/specs/CPUs-DESKTOP/Heka/720.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/720BE.yaml b/specs/CPUs-DESKTOP/Heka/720BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/740BE.yaml b/specs/CPUs-DESKTOP/Heka/740BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/B73.yaml b/specs/CPUs-DESKTOP/Heka/B73.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/B75.yaml b/specs/CPUs-DESKTOP/Heka/B75.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Heka/B77.yaml b/specs/CPUs-DESKTOP/Heka/B77.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml b/specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri-inherit.yaml b/specs/CPUs-DESKTOP/Kaveri-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri.yaml b/specs/CPUs-DESKTOP/Kaveri.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/450.yaml b/specs/CPUs-DESKTOP/Kaveri/450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/840.yaml b/specs/CPUs-DESKTOP/Kaveri/840.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/840P.yaml b/specs/CPUs-DESKTOP/Kaveri/840P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/860K.yaml b/specs/CPUs-DESKTOP/Kaveri/860K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/870K.yaml b/specs/CPUs-DESKTOP/Kaveri/870K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kaveri/880K.yaml b/specs/CPUs-DESKTOP/Kaveri/880K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma-inherit.yaml b/specs/CPUs-DESKTOP/Kuma-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma.yaml b/specs/CPUs-DESKTOP/Kuma.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma/6500BE.yaml b/specs/CPUs-DESKTOP/Kuma/6500BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma/7450.yaml b/specs/CPUs-DESKTOP/Kuma/7450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma/7550.yaml b/specs/CPUs-DESKTOP/Kuma/7550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma/7750BE.yaml b/specs/CPUs-DESKTOP/Kuma/7750BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Kuma/7850BE.yaml b/specs/CPUs-DESKTOP/Kuma/7850BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima-inherit.yaml b/specs/CPUs-DESKTOP/Lima-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima.yaml b/specs/CPUs-DESKTOP/Lima.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/2650E.yaml b/specs/CPUs-DESKTOP/Lima/2650E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/2850E.yaml b/specs/CPUs-DESKTOP/Lima/2850E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/3500+.yaml b/specs/CPUs-DESKTOP/Lima/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/3800+.yaml b/specs/CPUs-DESKTOP/Lima/3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1640.yaml b/specs/CPUs-DESKTOP/Lima/LE-1640.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1640B.yaml b/specs/CPUs-DESKTOP/Lima/LE-1640B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1660.yaml b/specs/CPUs-DESKTOP/Lima/LE-1660.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Little-Foot.yaml b/specs/CPUs-DESKTOP/Little-Foot.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Little-Foot/266.yaml b/specs/CPUs-DESKTOP/Little-Foot/266.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Little-Foot/300.yaml b/specs/CPUs-DESKTOP/Little-Foot/300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano-X2-inherit.yaml b/specs/CPUs-DESKTOP/Llano-X2-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano-inherit.yaml b/specs/CPUs-DESKTOP/Llano-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano.yaml b/specs/CPUs-DESKTOP/Llano.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester-inherit.yaml b/specs/CPUs-DESKTOP/Manchester-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester.yaml b/specs/CPUs-DESKTOP/Manchester.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/3200+.yaml b/specs/CPUs-DESKTOP/Manchester/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/3500+.yaml b/specs/CPUs-DESKTOP/Manchester/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse-inherit.yaml b/specs/CPUs-DESKTOP/Matisse-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse.yaml b/specs/CPUs-DESKTOP/Matisse.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Model-6-inherit.yaml b/specs/CPUs-DESKTOP/Model-6-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Model-6.yaml b/specs/CPUs-DESKTOP/Model-6.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Model-6/166.yaml b/specs/CPUs-DESKTOP/Model-6/166.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Model-6/200.yaml b/specs/CPUs-DESKTOP/Model-6/200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Model-6/233.yaml b/specs/CPUs-DESKTOP/Model-6/233.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle-inherit.yaml b/specs/CPUs-DESKTOP/Newcastle-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle.yaml b/specs/CPUs-DESKTOP/Newcastle.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/2800+754.yaml b/specs/CPUs-DESKTOP/Newcastle/2800+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3000+.yaml b/specs/CPUs-DESKTOP/Newcastle/3000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3000+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3000+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3200+.yaml b/specs/CPUs-DESKTOP/Newcastle/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3200+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3200+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3300+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3300+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3400+.yaml b/specs/CPUs-DESKTOP/Newcastle/3400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3400+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3400+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3500+.yaml b/specs/CPUs-DESKTOP/Newcastle/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Newcastle/3800+.yaml b/specs/CPUs-DESKTOP/Newcastle/3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orion.yaml b/specs/CPUs-DESKTOP/Orion.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orion/1000.yaml b/specs/CPUs-DESKTOP/Orion/1000.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orion/900.yaml b/specs/CPUs-DESKTOP/Orion/900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orion/950.yaml b/specs/CPUs-DESKTOP/Orion/950.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans-inherit.yaml b/specs/CPUs-DESKTOP/Orleans-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans.yaml b/specs/CPUs-DESKTOP/Orleans.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/3000+.yaml b/specs/CPUs-DESKTOP/Orleans/3000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/3200+.yaml b/specs/CPUs-DESKTOP/Orleans/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml b/specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/3500+.yaml b/specs/CPUs-DESKTOP/Orleans/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/3800+.yaml b/specs/CPUs-DESKTOP/Orleans/3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/4000+.yaml b/specs/CPUs-DESKTOP/Orleans/4000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1600.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1620.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1620.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1640.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1640.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino-inherit.yaml b/specs/CPUs-DESKTOP/Palomino-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino.yaml b/specs/CPUs-DESKTOP/Palomino.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1500.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1500.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1600.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1700.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1800.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1900.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-2000.yaml b/specs/CPUs-DESKTOP/Palomino/XP-2000.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-2100.yaml b/specs/CPUs-DESKTOP/Palomino/XP-2100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver-inherit.yaml b/specs/CPUs-DESKTOP/Piledriver-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver.yaml b/specs/CPUs-DESKTOP/Piledriver.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml b/specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml b/specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto-inherit.yaml b/specs/CPUs-DESKTOP/Pluto-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto.yaml b/specs/CPUs-DESKTOP/Pluto.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/550.yaml b/specs/CPUs-DESKTOP/Pluto/550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/600.yaml b/specs/CPUs-DESKTOP/Pluto/600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/650.yaml b/specs/CPUs-DESKTOP/Pluto/650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/700.yaml b/specs/CPUs-DESKTOP/Pluto/700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/750.yaml b/specs/CPUs-DESKTOP/Pluto/750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/800.yaml b/specs/CPUs-DESKTOP/Pluto/800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Pluto/850.yaml b/specs/CPUs-DESKTOP/Pluto/850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml b/specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon.yaml b/specs/CPUs-DESKTOP/Propus-Athlon.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/620.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/620.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/630.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/630.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/635.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/635.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/640.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/640.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/645.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/645.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/650.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus-inherit.yaml b/specs/CPUs-DESKTOP/Propus-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus.yaml b/specs/CPUs-DESKTOP/Propus.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus/840.yaml b/specs/CPUs-DESKTOP/Propus/840.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Propus/850.yaml b/specs/CPUs-DESKTOP/Propus/850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana-inherit.yaml b/specs/CPUs-DESKTOP/Rana-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana.yaml b/specs/CPUs-DESKTOP/Rana.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/400e.yaml b/specs/CPUs-DESKTOP/Rana/400e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/405e.yaml b/specs/CPUs-DESKTOP/Rana/405e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/415e.yaml b/specs/CPUs-DESKTOP/Rana/415e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/420e.yaml b/specs/CPUs-DESKTOP/Rana/420e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/425.yaml b/specs/CPUs-DESKTOP/Rana/425.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/425e.yaml b/specs/CPUs-DESKTOP/Rana/425e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/435.yaml b/specs/CPUs-DESKTOP/Rana/435.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/440.yaml b/specs/CPUs-DESKTOP/Rana/440.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/445.yaml b/specs/CPUs-DESKTOP/Rana/445.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/450.yaml b/specs/CPUs-DESKTOP/Rana/450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/455.yaml b/specs/CPUs-DESKTOP/Rana/455.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Rana/460.yaml b/specs/CPUs-DESKTOP/Rana/460.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael-inherit.yaml b/specs/CPUs-DESKTOP/Raphael-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael.yaml b/specs/CPUs-DESKTOP/Raphael.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml b/specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon.yaml b/specs/CPUs-DESKTOP/Regor-Athlon.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/215.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/215.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/220.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/220.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/240.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/240.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/245.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/245.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/255.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/255.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/260.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/260.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/265.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/265.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/270.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/270.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/280.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/280.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml b/specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron.yaml b/specs/CPUs-DESKTOP/Regor-Sempron.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron/180.yaml b/specs/CPUs-DESKTOP/Regor-Sempron/180.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron/190.yaml b/specs/CPUs-DESKTOP/Regor-Sempron/190.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor-inherit.yaml b/specs/CPUs-DESKTOP/Regor-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor.yaml b/specs/CPUs-DESKTOP/Regor.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor/511.yaml b/specs/CPUs-DESKTOP/Regor/511.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Regor/521.yaml b/specs/CPUs-DESKTOP/Regor/521.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron.yaml b/specs/CPUs-DESKTOP/Richland-Sempron.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron/240.yaml b/specs/CPUs-DESKTOP/Richland-Sempron/240.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron/250.yaml b/specs/CPUs-DESKTOP/Richland-Sempron/250.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland-X2-inherit.yaml b/specs/CPUs-DESKTOP/Richland-X2-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland-inherit.yaml b/specs/CPUs-DESKTOP/Richland-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland.yaml b/specs/CPUs-DESKTOP/Richland.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland/350.yaml b/specs/CPUs-DESKTOP/Richland/350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland/370K.yaml b/specs/CPUs-DESKTOP/Richland/370K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland/750.yaml b/specs/CPUs-DESKTOP/Richland/750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Richland/760K.yaml b/specs/CPUs-DESKTOP/Richland/760K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SSA5.yaml b/specs/CPUs-DESKTOP/SSA5.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego-inherit.yaml b/specs/CPUs-DESKTOP/San-Diego-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego.yaml b/specs/CPUs-DESKTOP/San-Diego.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego/3500+.yaml b/specs/CPUs-DESKTOP/San-Diego/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego/3700+.yaml b/specs/CPUs-DESKTOP/San-Diego/3700+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego/4000+.yaml b/specs/CPUs-DESKTOP/San-Diego/4000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego/FX_55.yaml b/specs/CPUs-DESKTOP/San-Diego/FX_55.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/San-Diego/FX_57.yaml b/specs/CPUs-DESKTOP/San-Diego/FX_57.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas-inherit.yaml b/specs/CPUs-DESKTOP/Sargas-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas.yaml b/specs/CPUs-DESKTOP/Sargas.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas/160u.yaml b/specs/CPUs-DESKTOP/Sargas/160u.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sargas/170u.yaml b/specs/CPUs-DESKTOP/Sargas/170u.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sharptooth-inherit.yaml b/specs/CPUs-DESKTOP/Sharptooth-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sharptooth.yaml b/specs/CPUs-DESKTOP/Sharptooth.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sharptooth/333.yaml b/specs/CPUs-DESKTOP/Sharptooth/333.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sharptooth/400.yaml b/specs/CPUs-DESKTOP/Sharptooth/400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Sharptooth/450.yaml b/specs/CPUs-DESKTOP/Sharptooth/450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml b/specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SledgeHammer.yaml b/specs/CPUs-DESKTOP/SledgeHammer.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml b/specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml b/specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge.yaml b/specs/CPUs-DESKTOP/Summit-Ridge.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml b/specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred.yaml b/specs/CPUs-DESKTOP/Thoroughbred.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton-inherit.yaml b/specs/CPUs-DESKTOP/Thorton-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton.yaml b/specs/CPUs-DESKTOP/Thorton.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2000.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2000.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2200.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2200.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2400.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2600.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-3100.yaml b/specs/CPUs-DESKTOP/Thorton/XP-3100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban-inherit.yaml b/specs/CPUs-DESKTOP/Thuban-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban.yaml b/specs/CPUs-DESKTOP/Thuban.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1035T.yaml b/specs/CPUs-DESKTOP/Thuban/1035T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1045T.yaml b/specs/CPUs-DESKTOP/Thuban/1045T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1055T.yaml b/specs/CPUs-DESKTOP/Thuban/1055T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1065T.yaml b/specs/CPUs-DESKTOP/Thuban/1065T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1075T.yaml b/specs/CPUs-DESKTOP/Thuban/1075T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1075TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1075TBE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1090TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1090TBE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thuban/1100TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1100TBE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird-inherit.yaml b/specs/CPUs-DESKTOP/Thunderbird-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird.yaml b/specs/CPUs-DESKTOP/Thunderbird.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1000B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1000B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1000C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1000C.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1100.yaml b/specs/CPUs-DESKTOP/Thunderbird/1100.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1133.yaml b/specs/CPUs-DESKTOP/Thunderbird/1133.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1200B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1200B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1200C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1200C.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1266.yaml b/specs/CPUs-DESKTOP/Thunderbird/1266.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1300.yaml b/specs/CPUs-DESKTOP/Thunderbird/1300.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1333.yaml b/specs/CPUs-DESKTOP/Thunderbird/1333.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1400B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1400B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1400C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1400C.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/600.yaml b/specs/CPUs-DESKTOP/Thunderbird/600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/650.yaml b/specs/CPUs-DESKTOP/Thunderbird/650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/700.yaml b/specs/CPUs-DESKTOP/Thunderbird/700.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/750.yaml b/specs/CPUs-DESKTOP/Thunderbird/750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/800.yaml b/specs/CPUs-DESKTOP/Thunderbird/800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/850.yaml b/specs/CPUs-DESKTOP/Thunderbird/850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/900.yaml b/specs/CPUs-DESKTOP/Thunderbird/900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Thunderbird/950.yaml b/specs/CPUs-DESKTOP/Thunderbird/950.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo-inherit.yaml b/specs/CPUs-DESKTOP/Toledo-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo.yaml b/specs/CPUs-DESKTOP/Toledo.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/3700+.yaml b/specs/CPUs-DESKTOP/Toledo/3700+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/4000+.yaml b/specs/CPUs-DESKTOP/Toledo/4000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/FX-60.yaml b/specs/CPUs-DESKTOP/Toledo/FX-60.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman-inherit.yaml b/specs/CPUs-DESKTOP/Toliman-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman.yaml b/specs/CPUs-DESKTOP/Toliman.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8250e.yaml b/specs/CPUs-DESKTOP/Toliman/8250e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8400.yaml b/specs/CPUs-DESKTOP/Toliman/8400.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8450.yaml b/specs/CPUs-DESKTOP/Toliman/8450.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8450e.yaml b/specs/CPUs-DESKTOP/Toliman/8450e.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8550.yaml b/specs/CPUs-DESKTOP/Toliman/8550.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8600.yaml b/specs/CPUs-DESKTOP/Toliman/8600.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8600B.yaml b/specs/CPUs-DESKTOP/Toliman/8600B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8650.yaml b/specs/CPUs-DESKTOP/Toliman/8650.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8750.yaml b/specs/CPUs-DESKTOP/Toliman/8750.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8750B.yaml b/specs/CPUs-DESKTOP/Toliman/8750B.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8750BE.yaml b/specs/CPUs-DESKTOP/Toliman/8750BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Toliman/8850.yaml b/specs/CPUs-DESKTOP/Toliman/8850.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity-Sempron.yaml b/specs/CPUs-DESKTOP/Trinity-Sempron.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml b/specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity-inherit.yaml b/specs/CPUs-DESKTOP/Trinity-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity.yaml b/specs/CPUs-DESKTOP/Trinity.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4226.yaml b/specs/CPUs-DESKTOP/Valencia/4226.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4228HE.yaml b/specs/CPUs-DESKTOP/Valencia/4228HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4230HE.yaml b/specs/CPUs-DESKTOP/Valencia/4230HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4234.yaml b/specs/CPUs-DESKTOP/Valencia/4234.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4238.yaml b/specs/CPUs-DESKTOP/Valencia/4238.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4240.yaml b/specs/CPUs-DESKTOP/Valencia/4240.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4256EE.yaml b/specs/CPUs-DESKTOP/Valencia/4256EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4274HE.yaml b/specs/CPUs-DESKTOP/Valencia/4274HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4276HE.yaml b/specs/CPUs-DESKTOP/Valencia/4276HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4280.yaml b/specs/CPUs-DESKTOP/Valencia/4280.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Valencia/4284.yaml b/specs/CPUs-DESKTOP/Valencia/4284.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice-inherit.yaml b/specs/CPUs-DESKTOP/Venice-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice.yaml b/specs/CPUs-DESKTOP/Venice.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/1500+754.yaml b/specs/CPUs-DESKTOP/Venice/1500+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3000+.yaml b/specs/CPUs-DESKTOP/Venice/3000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3000+754.yaml b/specs/CPUs-DESKTOP/Venice/3000+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3200+.yaml b/specs/CPUs-DESKTOP/Venice/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3200+754.yaml b/specs/CPUs-DESKTOP/Venice/3200+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3400+.yaml b/specs/CPUs-DESKTOP/Venice/3400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3400+754.yaml b/specs/CPUs-DESKTOP/Venice/3400+754.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3500+.yaml b/specs/CPUs-DESKTOP/Venice/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Venice/3800+.yaml b/specs/CPUs-DESKTOP/Venice/3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer-inherit.yaml b/specs/CPUs-DESKTOP/Vermeer-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer.yaml b/specs/CPUs-DESKTOP/Vermeer.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven-inherit.yaml b/specs/CPUs-DESKTOP/Whitehaven-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven.yaml b/specs/CPUs-DESKTOP/Whitehaven.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1900X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1900X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1920X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1920X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1950X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1950X.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml b/specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Winchester-inherit.yaml b/specs/CPUs-DESKTOP/Winchester-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Winchester.yaml b/specs/CPUs-DESKTOP/Winchester.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Winchester/3000+.yaml b/specs/CPUs-DESKTOP/Winchester/3000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Winchester/3200+.yaml b/specs/CPUs-DESKTOP/Winchester/3200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Winchester/3500+.yaml b/specs/CPUs-DESKTOP/Winchester/3500+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor-inherit.yaml b/specs/CPUs-DESKTOP/Windsor-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor.yaml b/specs/CPUs-DESKTOP/Windsor.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-62.yaml b/specs/CPUs-DESKTOP/Windsor/FX-62.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-70.yaml b/specs/CPUs-DESKTOP/Windsor/FX-70.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-72.yaml b/specs/CPUs-DESKTOP/Windsor/FX-72.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-74.yaml b/specs/CPUs-DESKTOP/Windsor/FX-74.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml b/specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma-inherit.yaml b/specs/CPUs-DESKTOP/Zosma-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma.yaml b/specs/CPUs-DESKTOP/Zosma.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma/650T.yaml b/specs/CPUs-DESKTOP/Zosma/650T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma/840T.yaml b/specs/CPUs-DESKTOP/Zosma/840T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma/960T.yaml b/specs/CPUs-DESKTOP/Zosma/960T.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-DESKTOP/Zosma/960TBE.yaml b/specs/CPUs-DESKTOP/Zosma/960TBE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-EMBEDDED.yaml b/specs/CPUs-EMBEDDED.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-MOBILE.yaml b/specs/CPUs-MOBILE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER.yaml b/specs/CPUs-SERVER.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml b/specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi.yaml b/specs/CPUs-SERVER/Abu-Dhabi.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6308.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6308.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6320.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6320.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6328.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6328.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6344.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6344.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6348.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6348.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6376.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6376.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6378.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6378.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6380.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6380.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona-inherit.yaml b/specs/CPUs-SERVER/Barcelona-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona.yaml b/specs/CPUs-SERVER/Barcelona.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2344HE.yaml b/specs/CPUs-SERVER/Barcelona/2344HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2346HE.yaml b/specs/CPUs-SERVER/Barcelona/2346HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2347.yaml b/specs/CPUs-SERVER/Barcelona/2347.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2347HE.yaml b/specs/CPUs-SERVER/Barcelona/2347HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2350.yaml b/specs/CPUs-SERVER/Barcelona/2350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2350HE.yaml b/specs/CPUs-SERVER/Barcelona/2350HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2352.yaml b/specs/CPUs-SERVER/Barcelona/2352.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2354.yaml b/specs/CPUs-SERVER/Barcelona/2354.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2356.yaml b/specs/CPUs-SERVER/Barcelona/2356.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2358SE.yaml b/specs/CPUs-SERVER/Barcelona/2358SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/2360SE.yaml b/specs/CPUs-SERVER/Barcelona/2360SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8346HE.yaml b/specs/CPUs-SERVER/Barcelona/8346HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8347.yaml b/specs/CPUs-SERVER/Barcelona/8347.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8347HE.yaml b/specs/CPUs-SERVER/Barcelona/8347HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8350.yaml b/specs/CPUs-SERVER/Barcelona/8350.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8350HE.yaml b/specs/CPUs-SERVER/Barcelona/8350HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8352.yaml b/specs/CPUs-SERVER/Barcelona/8352.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8354.yaml b/specs/CPUs-SERVER/Barcelona/8354.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8356.yaml b/specs/CPUs-SERVER/Barcelona/8356.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8358SE.yaml b/specs/CPUs-SERVER/Barcelona/8358SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Barcelona/8360SE.yaml b/specs/CPUs-SERVER/Barcelona/8360SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Budapest-inherit.yaml b/specs/CPUs-SERVER/Budapest-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Budapest.yaml b/specs/CPUs-SERVER/Budapest.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Budapest/1352.yaml b/specs/CPUs-SERVER/Budapest/1352.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Budapest/1354.yaml b/specs/CPUs-SERVER/Budapest/1354.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Budapest/1356.yaml b/specs/CPUs-SERVER/Budapest/1356.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi-inherit.yaml b/specs/CPUs-SERVER/Delhi-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi.yaml b/specs/CPUs-SERVER/Delhi.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi/3320EE.yaml b/specs/CPUs-SERVER/Delhi/3320EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi/3350HE.yaml b/specs/CPUs-SERVER/Delhi/3350HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi/3365.yaml b/specs/CPUs-SERVER/Delhi/3365.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Delhi/3380.yaml b/specs/CPUs-SERVER/Delhi/3380.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa-inherit.yaml b/specs/CPUs-SERVER/Genoa-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa.yaml b/specs/CPUs-SERVER/Genoa.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9124.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9124.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9224.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9224.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9254.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9254.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9334.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9334.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9354.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9354.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9454.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9454.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9534.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9534.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9554.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9554.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9634.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9634.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9654.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9654.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos-inherit.yaml b/specs/CPUs-SERVER/Interlagos-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos.yaml b/specs/CPUs-SERVER/Interlagos.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6204.yaml b/specs/CPUs-SERVER/Interlagos/6204.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6212.yaml b/specs/CPUs-SERVER/Interlagos/6212.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6220.yaml b/specs/CPUs-SERVER/Interlagos/6220.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6230HE.yaml b/specs/CPUs-SERVER/Interlagos/6230HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6234.yaml b/specs/CPUs-SERVER/Interlagos/6234.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6238.yaml b/specs/CPUs-SERVER/Interlagos/6238.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6262HE.yaml b/specs/CPUs-SERVER/Interlagos/6262HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6272.yaml b/specs/CPUs-SERVER/Interlagos/6272.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6274.yaml b/specs/CPUs-SERVER/Interlagos/6274.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6276.yaml b/specs/CPUs-SERVER/Interlagos/6276.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6278.yaml b/specs/CPUs-SERVER/Interlagos/6278.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6282SE.yaml b/specs/CPUs-SERVER/Interlagos/6282SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Interlagos/6284SE.yaml b/specs/CPUs-SERVER/Interlagos/6284SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul-inherit.yaml b/specs/CPUs-SERVER/Istanbul-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul.yaml b/specs/CPUs-SERVER/Istanbul.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2419.yaml b/specs/CPUs-SERVER/Istanbul/2419.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2419EE.yaml b/specs/CPUs-SERVER/Istanbul/2419EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2423HE.yaml b/specs/CPUs-SERVER/Istanbul/2423HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2425HE.yaml b/specs/CPUs-SERVER/Istanbul/2425HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2427.yaml b/specs/CPUs-SERVER/Istanbul/2427.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2431.yaml b/specs/CPUs-SERVER/Istanbul/2431.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2435.yaml b/specs/CPUs-SERVER/Istanbul/2435.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/2439SE.yaml b/specs/CPUs-SERVER/Istanbul/2439SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8419.yaml b/specs/CPUs-SERVER/Istanbul/8419.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8419EE.yaml b/specs/CPUs-SERVER/Istanbul/8419EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8423.yaml b/specs/CPUs-SERVER/Istanbul/8423.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8425HE.yaml b/specs/CPUs-SERVER/Istanbul/8425HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8431.yaml b/specs/CPUs-SERVER/Istanbul/8431.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8435.yaml b/specs/CPUs-SERVER/Istanbul/8435.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Istanbul/8439SE.yaml b/specs/CPUs-SERVER/Istanbul/8439SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon-inherit.yaml b/specs/CPUs-SERVER/Lisbon-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon.yaml b/specs/CPUs-SERVER/Lisbon.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4122.yaml b/specs/CPUs-SERVER/Lisbon/4122.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4130.yaml b/specs/CPUs-SERVER/Lisbon/4130.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4133.yaml b/specs/CPUs-SERVER/Lisbon/4133.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4162EE.yaml b/specs/CPUs-SERVER/Lisbon/4162EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4164EE.yaml b/specs/CPUs-SERVER/Lisbon/4164EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4170HE.yaml b/specs/CPUs-SERVER/Lisbon/4170HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4171HE.yaml b/specs/CPUs-SERVER/Lisbon/4171HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4174HE.yaml b/specs/CPUs-SERVER/Lisbon/4174HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4176HE.yaml b/specs/CPUs-SERVER/Lisbon/4176HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4180.yaml b/specs/CPUs-SERVER/Lisbon/4180.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Lisbon/4184.yaml b/specs/CPUs-SERVER/Lisbon/4184.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours-inherit.yaml b/specs/CPUs-SERVER/Magny-Cours-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours.yaml b/specs/CPUs-SERVER/Magny-Cours.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6124HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6124HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6128.yaml b/specs/CPUs-SERVER/Magny-Cours/6128.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6128HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6128HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6132HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6132HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6134.yaml b/specs/CPUs-SERVER/Magny-Cours/6134.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6136.yaml b/specs/CPUs-SERVER/Magny-Cours/6136.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6140.yaml b/specs/CPUs-SERVER/Magny-Cours/6140.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6164HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6164HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6166HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6166HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6168.yaml b/specs/CPUs-SERVER/Magny-Cours/6168.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6172.yaml b/specs/CPUs-SERVER/Magny-Cours/6172.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6174.yaml b/specs/CPUs-SERVER/Magny-Cours/6174.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6176.yaml b/specs/CPUs-SERVER/Magny-Cours/6176.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6176SE.yaml b/specs/CPUs-SERVER/Magny-Cours/6176SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Magny-Cours/6180SE.yaml b/specs/CPUs-SERVER/Magny-Cours/6180SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples-inherit.yaml b/specs/CPUs-SERVER/Naples-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples.yaml b/specs/CPUs-SERVER/Naples.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7251.yaml b/specs/CPUs-SERVER/Naples/Epyc-7251.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7261.yaml b/specs/CPUs-SERVER/Naples/Epyc-7261.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7281.yaml b/specs/CPUs-SERVER/Naples/Epyc-7281.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7301.yaml b/specs/CPUs-SERVER/Naples/Epyc-7301.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7351.yaml b/specs/CPUs-SERVER/Naples/Epyc-7351.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7351P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7351P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7371.yaml b/specs/CPUs-SERVER/Naples/Epyc-7371.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7401.yaml b/specs/CPUs-SERVER/Naples/Epyc-7401.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7401P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7401P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7451.yaml b/specs/CPUs-SERVER/Naples/Epyc-7451.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7501.yaml b/specs/CPUs-SERVER/Naples/Epyc-7501.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7551.yaml b/specs/CPUs-SERVER/Naples/Epyc-7551.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7551P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7551P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7601.yaml b/specs/CPUs-SERVER/Naples/Epyc-7601.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome-inherit.yaml b/specs/CPUs-SERVER/Rome-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome.yaml b/specs/CPUs-SERVER/Rome.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7232P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7232P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7252.yaml b/specs/CPUs-SERVER/Rome/Epyc-7252.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7262.yaml b/specs/CPUs-SERVER/Rome/Epyc-7262.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7272.yaml b/specs/CPUs-SERVER/Rome/Epyc-7272.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7282.yaml b/specs/CPUs-SERVER/Rome/Epyc-7282.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7302.yaml b/specs/CPUs-SERVER/Rome/Epyc-7302.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7302P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7302P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7352.yaml b/specs/CPUs-SERVER/Rome/Epyc-7352.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7402.yaml b/specs/CPUs-SERVER/Rome/Epyc-7402.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7402P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7402P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7452.yaml b/specs/CPUs-SERVER/Rome/Epyc-7452.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7502.yaml b/specs/CPUs-SERVER/Rome/Epyc-7502.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7502P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7502P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7532.yaml b/specs/CPUs-SERVER/Rome/Epyc-7532.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7542.yaml b/specs/CPUs-SERVER/Rome/Epyc-7542.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7552.yaml b/specs/CPUs-SERVER/Rome/Epyc-7552.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7642.yaml b/specs/CPUs-SERVER/Rome/Epyc-7642.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7662.yaml b/specs/CPUs-SERVER/Rome/Epyc-7662.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7702.yaml b/specs/CPUs-SERVER/Rome/Epyc-7702.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7702P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7702P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7742.yaml b/specs/CPUs-SERVER/Rome/Epyc-7742.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F32.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F32.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F52.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F52.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F72.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F72.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7H12.yaml b/specs/CPUs-SERVER/Rome/Epyc-7H12.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul-inherit.yaml b/specs/CPUs-SERVER/Seoul-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul.yaml b/specs/CPUs-SERVER/Seoul.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4310HE.yaml b/specs/CPUs-SERVER/Seoul/4310HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4332HE.yaml b/specs/CPUs-SERVER/Seoul/4332HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4334.yaml b/specs/CPUs-SERVER/Seoul/4334.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4340.yaml b/specs/CPUs-SERVER/Seoul/4340.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4365EE.yaml b/specs/CPUs-SERVER/Seoul/4365EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4376HE.yaml b/specs/CPUs-SERVER/Seoul/4376HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Seoul/4386.yaml b/specs/CPUs-SERVER/Seoul/4386.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai-inherit.yaml b/specs/CPUs-SERVER/Shanghai-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai.yaml b/specs/CPUs-SERVER/Shanghai.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2372HE.yaml b/specs/CPUs-SERVER/Shanghai/2372HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2373EE.yaml b/specs/CPUs-SERVER/Shanghai/2373EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2374HE.yaml b/specs/CPUs-SERVER/Shanghai/2374HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2376HE.yaml b/specs/CPUs-SERVER/Shanghai/2376HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2377EE.yaml b/specs/CPUs-SERVER/Shanghai/2377EE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2378.yaml b/specs/CPUs-SERVER/Shanghai/2378.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2379HE.yaml b/specs/CPUs-SERVER/Shanghai/2379HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2380.yaml b/specs/CPUs-SERVER/Shanghai/2380.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2381HE.yaml b/specs/CPUs-SERVER/Shanghai/2381HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2382.yaml b/specs/CPUs-SERVER/Shanghai/2382.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2384.yaml b/specs/CPUs-SERVER/Shanghai/2384.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2386SE.yaml b/specs/CPUs-SERVER/Shanghai/2386SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2387.yaml b/specs/CPUs-SERVER/Shanghai/2387.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2389.yaml b/specs/CPUs-SERVER/Shanghai/2389.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/2393SE.yaml b/specs/CPUs-SERVER/Shanghai/2393SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8374HE.yaml b/specs/CPUs-SERVER/Shanghai/8374HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8376HE.yaml b/specs/CPUs-SERVER/Shanghai/8376HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8378.yaml b/specs/CPUs-SERVER/Shanghai/8378.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8379HE.yaml b/specs/CPUs-SERVER/Shanghai/8379HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8380.yaml b/specs/CPUs-SERVER/Shanghai/8380.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8381HE.yaml b/specs/CPUs-SERVER/Shanghai/8381HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8382.yaml b/specs/CPUs-SERVER/Shanghai/8382.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8384.yaml b/specs/CPUs-SERVER/Shanghai/8384.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8386SE.yaml b/specs/CPUs-SERVER/Shanghai/8386SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8387.yaml b/specs/CPUs-SERVER/Shanghai/8387.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8389.yaml b/specs/CPUs-SERVER/Shanghai/8389.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Shanghai/8393SE.yaml b/specs/CPUs-SERVER/Shanghai/8393SE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl-inherit.yaml b/specs/CPUs-SERVER/Snowy-Owl-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl.yaml b/specs/CPUs-SERVER/Snowy-Owl.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Suzuka-inherit.yaml b/specs/CPUs-SERVER/Suzuka-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Suzuka.yaml b/specs/CPUs-SERVER/Suzuka.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Suzuka/1381.yaml b/specs/CPUs-SERVER/Suzuka/1381.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Suzuka/1385.yaml b/specs/CPUs-SERVER/Suzuka/1385.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Suzuka/1389.yaml b/specs/CPUs-SERVER/Suzuka/1389.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Valencia-inherit.yaml b/specs/CPUs-SERVER/Valencia-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Valencia.yaml b/specs/CPUs-SERVER/Valencia.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Warsaw-inherit.yaml b/specs/CPUs-SERVER/Warsaw-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Warsaw.yaml b/specs/CPUs-SERVER/Warsaw.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Warsaw/6338P.yaml b/specs/CPUs-SERVER/Warsaw/6338P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Warsaw/6370P.yaml b/specs/CPUs-SERVER/Warsaw/6370P.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Zurich-inherit.yaml b/specs/CPUs-SERVER/Zurich-inherit.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Zurich.yaml b/specs/CPUs-SERVER/Zurich.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Zurich/3250HE.yaml b/specs/CPUs-SERVER/Zurich/3250HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Zurich/3260HE.yaml b/specs/CPUs-SERVER/Zurich/3260HE.yaml old mode 100644 new mode 100755 diff --git a/specs/CPUs-SERVER/Zurich/3280.yaml b/specs/CPUs-SERVER/Zurich/3280.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER.yaml b/specs/GPUs-CONSUMER.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-1.yaml b/specs/GPUs-CONSUMER/GCN-1.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-2.yaml b/specs/GPUs-CONSUMER/GCN-2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-3.yaml b/specs/GPUs-CONSUMER/GCN-3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-4.yaml b/specs/GPUs-CONSUMER/GCN-4.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-5.1.yaml b/specs/GPUs-CONSUMER/GCN-5.1.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/GCN-5.yaml b/specs/GPUs-CONSUMER/GCN-5.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000.yaml b/specs/GPUs-CONSUMER/HD4000.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4250.yaml b/specs/GPUs-CONSUMER/HD4000/HD4250.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4350.yaml b/specs/GPUs-CONSUMER/HD4000/HD4350.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4520.yaml b/specs/GPUs-CONSUMER/HD4000/HD4520.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4550.yaml b/specs/GPUs-CONSUMER/HD4000/HD4550.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml b/specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4570.yaml b/specs/GPUs-CONSUMER/HD4000/HD4570.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4650.yaml b/specs/GPUs-CONSUMER/HD4000/HD4650.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4700.yaml b/specs/GPUs-CONSUMER/HD4000/HD4700.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4710.yaml b/specs/GPUs-CONSUMER/HD4000/HD4710.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4730.yaml b/specs/GPUs-CONSUMER/HD4000/HD4730.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4750.yaml b/specs/GPUs-CONSUMER/HD4000/HD4750.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4770.yaml b/specs/GPUs-CONSUMER/HD4000/HD4770.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4810.yaml b/specs/GPUs-CONSUMER/HD4000/HD4810.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4830.yaml b/specs/GPUs-CONSUMER/HD4000/HD4830.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4850.yaml b/specs/GPUs-CONSUMER/HD4000/HD4850.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4855.yaml b/specs/GPUs-CONSUMER/HD4000/HD4855.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4860.yaml b/specs/GPUs-CONSUMER/HD4000/HD4860.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4870.yaml b/specs/GPUs-CONSUMER/HD4000/HD4870.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4890.yaml b/specs/GPUs-CONSUMER/HD4000/HD4890.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000.yaml b/specs/GPUs-CONSUMER/HD5000.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5470.yaml b/specs/GPUs-CONSUMER/HD5000/HD5470.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5490.yaml b/specs/GPUs-CONSUMER/HD5000/HD5490.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5530.yaml b/specs/GPUs-CONSUMER/HD5000/HD5530.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5550.yaml b/specs/GPUs-CONSUMER/HD5000/HD5550.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5610.yaml b/specs/GPUs-CONSUMER/HD5000/HD5610.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5630.yaml b/specs/GPUs-CONSUMER/HD5000/HD5630.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5690.yaml b/specs/GPUs-CONSUMER/HD5000/HD5690.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5730.yaml b/specs/GPUs-CONSUMER/HD5000/HD5730.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5830.yaml b/specs/GPUs-CONSUMER/HD5000/HD5830.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000.yaml b/specs/GPUs-CONSUMER/HD6000.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6350.yaml b/specs/GPUs-CONSUMER/HD6000/HD6350.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6570.yaml b/specs/GPUs-CONSUMER/HD6000/HD6570.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6790.yaml b/specs/GPUs-CONSUMER/HD6000/HD6790.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6850.yaml b/specs/GPUs-CONSUMER/HD6000/HD6850.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6970.yaml b/specs/GPUs-CONSUMER/HD6000/HD6970.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6990.yaml b/specs/GPUs-CONSUMER/HD6000/HD6990.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000.yaml b/specs/GPUs-CONSUMER/HD7000.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7730.yaml b/specs/GPUs-CONSUMER/HD7000/HD7730.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7870.yaml b/specs/GPUs-CONSUMER/HD7000/HD7870.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml b/specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7950.yaml b/specs/GPUs-CONSUMER/HD7000/HD7950.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml b/specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7990.yaml b/specs/GPUs-CONSUMER/HD7000/HD7990.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000.yaml b/specs/GPUs-CONSUMER/HD8000.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml b/specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8470.yaml b/specs/GPUs-CONSUMER/HD8000/HD8470.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8490.yaml b/specs/GPUs-CONSUMER/HD8000/HD8490.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8570.yaml b/specs/GPUs-CONSUMER/HD8000/HD8570.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8670.yaml b/specs/GPUs-CONSUMER/HD8000/HD8670.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8730.yaml b/specs/GPUs-CONSUMER/HD8000/HD8730.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8760.yaml b/specs/GPUs-CONSUMER/HD8000/HD8760.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml b/specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml b/specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8950.yaml b/specs/GPUs-CONSUMER/HD8000/HD8950.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8970.yaml b/specs/GPUs-CONSUMER/HD8000/HD8970.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8990.yaml b/specs/GPUs-CONSUMER/HD8000/HD8990.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200.yaml b/specs/GPUs-CONSUMER/R-200.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R7-260.yaml b/specs/GPUs-CONSUMER/R-200/R7-260.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml b/specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml b/specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-270.yaml b/specs/GPUs-CONSUMER/R-200/R9-270.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-280.yaml b/specs/GPUs-CONSUMER/R-200/R9-280.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-280X.yaml b/specs/GPUs-CONSUMER/R-200/R9-280X.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-285.yaml b/specs/GPUs-CONSUMER/R-200/R9-285.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290-base.yaml b/specs/GPUs-CONSUMER/R-200/R9-290-base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290.yaml b/specs/GPUs-CONSUMER/R-200/R9-290.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-200/R9-295X2.yaml b/specs/GPUs-CONSUMER/R-200/R9-295X2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300.yaml b/specs/GPUs-CONSUMER/R-300.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R7-360.yaml b/specs/GPUs-CONSUMER/R-300/R7-360.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-380X.yaml b/specs/GPUs-CONSUMER/R-300/R9-380X.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-390.yaml b/specs/GPUs-CONSUMER/R-300/R9-390.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-390X.yaml b/specs/GPUs-CONSUMER/R-300/R9-390X.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml b/specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-Fury.yaml b/specs/GPUs-CONSUMER/R-300/R9-Fury.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/R9-Nano.yaml b/specs/GPUs-CONSUMER/R-300/R9-Nano.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400.yaml b/specs/GPUs-CONSUMER/RX-400.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-450.yaml b/specs/GPUs-CONSUMER/RX-400/RX-450.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-455.yaml b/specs/GPUs-CONSUMER/RX-400/RX-455.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470D.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470D.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500.yaml b/specs/GPUs-CONSUMER/RX-500.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-Vega.yaml b/specs/GPUs-CONSUMER/RX-Vega.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/Radeon-VII.yaml b/specs/GPUs-CONSUMER/Radeon-VII.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml b/specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml b/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/TeraScale-1.yaml b/specs/GPUs-CONSUMER/TeraScale-1.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/TeraScale-2.yaml b/specs/GPUs-CONSUMER/TeraScale-2.yaml old mode 100644 new mode 100755 diff --git a/specs/GPUs-CONSUMER/TeraScale-3.yaml b/specs/GPUs-CONSUMER/TeraScale-3.yaml old mode 100644 new mode 100755 diff --git a/specs/Intel/Core/k-unlocked.yaml b/specs/Intel/Core/k-unlocked.yaml old mode 100644 new mode 100755 diff --git a/specs/Intel/Haswell/G3258.yaml b/specs/Intel/Haswell/G3258.yaml old mode 100644 new mode 100755 diff --git a/specs/Intel/Intel.yaml b/specs/Intel/Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml b/specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml old mode 100644 new mode 100755 diff --git a/specs/Root.yaml b/specs/Root.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel.yaml b/specs/intel/Desktop-CPUs-Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel.yaml b/specs/intel/Embedded-CPUs-Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel.yaml b/specs/intel/Mobile-CPUs-Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel.yaml b/specs/intel/Server-CPUs-Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel.yaml b/specs/intel/undefined-CPUs-Intel.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml old mode 100644 new mode 100755 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml old mode 100644 new mode 100755 diff --git a/src/css/about.css b/src/css/about.css old mode 100644 new mode 100755 diff --git a/src/css/base.css b/src/css/base.css old mode 100644 new mode 100755 diff --git a/src/css/fonts.css b/src/css/fonts.css old mode 100644 new mode 100755 diff --git a/src/css/mobile.css b/src/css/mobile.css old mode 100644 new mode 100755 diff --git a/src/css/part-selector.css b/src/css/part-selector.css old mode 100644 new mode 100755 diff --git a/src/css/scrollbar.css b/src/css/scrollbar.css old mode 100644 new mode 100755 diff --git a/src/css/spec-viewer.css b/src/css/spec-viewer.css old mode 100644 new mode 100755 diff --git a/src/js/about.js b/src/js/about.js old mode 100644 new mode 100755 diff --git a/src/js/components/info-links.js b/src/js/components/info-links.js old mode 100644 new mode 100755 diff --git a/src/js/components/main-selector.js b/src/js/components/main-selector.js old mode 100644 new mode 100755 diff --git a/src/js/components/part.js b/src/js/components/part.js old mode 100644 new mode 100755 diff --git a/src/js/components/svg.js b/src/js/components/svg.js old mode 100644 new mode 100755 diff --git a/src/js/dates.js b/src/js/dates.js old mode 100644 new mode 100755 diff --git a/src/js/entry.js b/src/js/entry.js old mode 100644 new mode 100755 diff --git a/src/js/hash.js b/src/js/hash.js old mode 100644 new mode 100755 diff --git a/src/js/part-selector.js b/src/js/part-selector.js old mode 100644 new mode 100755 diff --git a/src/js/pure.js b/src/js/pure.js old mode 100644 new mode 100755 diff --git a/src/js/row-data.js b/src/js/row-data.js old mode 100644 new mode 100755 diff --git a/src/js/seo.js b/src/js/seo.js old mode 100644 new mode 100755 diff --git a/src/js/spec-viewer.js b/src/js/spec-viewer.js old mode 100644 new mode 100755 diff --git a/src/js/units.js b/src/js/units.js old mode 100644 new mode 100755 diff --git a/tests/bucket.js b/tests/bucket.js old mode 100644 new mode 100755 diff --git a/tests/combine.js b/tests/combine.js old mode 100644 new mode 100755 diff --git a/tests/dates.js b/tests/dates.js old mode 100644 new mode 100755 diff --git a/tests/genscrapedsections.js b/tests/genscrapedsections.js old mode 100644 new mode 100755 diff --git a/tests/gensubtext.js b/tests/gensubtext.js old mode 100644 new mode 100755 diff --git a/tests/gettabledata.js b/tests/gettabledata.js old mode 100644 new mode 100755 diff --git a/tests/row-data.js b/tests/row-data.js old mode 100644 new mode 100755 diff --git a/tests/seo.js b/tests/seo.js old mode 100644 new mode 100755 diff --git a/tests/third-party-matchers.js b/tests/third-party-matchers.js old mode 100644 new mode 100755 diff --git a/tests/units.js b/tests/units.js old mode 100644 new mode 100755 diff --git a/tests/yaml-verify.js b/tests/yaml-verify.js old mode 100644 new mode 100755 diff --git a/tmp/.gitignore b/tmp/.gitignore old mode 100644 new mode 100755 diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py old mode 100644 new mode 100755 From 4c2f8b5968699e92a86deccfc0c34983708e550f Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 16 Jul 2024 13:20:28 +0100 Subject: [PATCH 09/41] gpus --- gpu-arch-vendor.json | 0 specs/GPUs-CONSUMER.yaml | 83 +++++++ specs/GPUs-CONSUMER/Ada-Lovelace.yaml | 62 ++++++ .../Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4050.yaml | 35 +++ .../Ada-Lovelace/GeForce-RTX-4060-AD106.yaml | 35 +++ .../Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml | 34 +++ .../GeForce-RTX-4060-Ti-16-GB.yaml | 39 ++++ .../GeForce-RTX-4060-Ti-8-GB.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4060.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml | 39 ++++ .../GeForce-RTX-4070-Ti-SUPER.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4070-Ti.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4070.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml | 38 ++++ .../Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4080-Ti.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4080.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4090-D.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml | 34 +++ .../Ada-Lovelace/GeForce-RTX-4090-Ti.yaml | 39 ++++ .../Ada-Lovelace/GeForce-RTX-4090.yaml | 39 ++++ specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml | 36 +++ specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml | 38 ++++ specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml | 36 +++ specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml | 38 ++++ specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml | 38 ++++ .../Ada-Lovelace/RTX-2000-Ada-Generation.yaml | 35 +++ .../RTX-2000-Embedded-Ada-Generation.yaml | 33 +++ .../RTX-2000-Max-Q-Ada-Generation.yaml | 33 +++ .../RTX-2000-Mobile-Ada-Generation.yaml | 33 +++ .../RTX-3000-Mobile-Ada-Generation.yaml | 33 +++ .../RTX-3500-Embedded-Ada-Generation.yaml | 33 +++ .../RTX-3500-Mobile-Ada-Generation.yaml | 33 +++ .../Ada-Lovelace/RTX-4000-Ada-Generation.yaml | 35 +++ .../RTX-4000-Mobile-Ada-Generation.yaml | 33 +++ .../RTX-4000-SFF-Ada-Generation.yaml | 35 +++ .../Ada-Lovelace/RTX-4500-Ada-Generation.yaml | 35 +++ .../Ada-Lovelace/RTX-5000-Ada-Generation.yaml | 36 +++ .../RTX-5000-Embedded-Ada-Generation.yaml | 33 +++ .../RTX-5000-Max-Q-Ada-Generation.yaml | 33 +++ .../RTX-5000-Mobile-Ada-Generation.yaml | 33 +++ .../Ada-Lovelace/RTX-5880-Ada-Generation.yaml | 36 +++ .../Ada-Lovelace/RTX-6000-Ada-Generation.yaml | 36 +++ .../GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml | 39 ++++ specs/GPUs-CONSUMER/Ampere.yaml | 123 ++++++++++ specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml | 36 +++ .../GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml | 31 +++ .../GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml | 31 +++ specs/GPUs-CONSUMER/Ampere/A100X.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/A10G.yaml | 36 +++ specs/GPUs-CONSUMER/Ampere/A10M.yaml | 35 +++ specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml | 35 +++ specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml | 35 +++ specs/GPUs-CONSUMER/Ampere/A2.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/A30X.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml | 35 +++ .../GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml | 31 +++ .../GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml | 32 +++ .../GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml | 36 +++ specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml | 36 +++ .../GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml | 31 +++ specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml | 31 +++ specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml | 31 +++ .../GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml | 33 +++ .../Ampere/GeForce-RTX-2050-Max-Q.yaml | 38 ++++ .../Ampere/GeForce-RTX-2050-Mobile.yaml | 38 ++++ .../Ampere/GeForce-RTX-3050-4-GB.yaml | 38 ++++ .../Ampere/GeForce-RTX-3050-6-GB.yaml | 38 ++++ .../Ampere/GeForce-RTX-3050-8-GB-GA107.yaml | 39 ++++ .../Ampere/GeForce-RTX-3050-8-GB.yaml | 38 ++++ .../GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml | 33 +++ .../GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml | 33 +++ .../Ampere/GeForce-RTX-3050-Max-Q.yaml | 33 +++ .../GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml | 33 +++ .../GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml | 33 +++ .../Ampere/GeForce-RTX-3050-Mobile.yaml | 34 +++ .../Ampere/GeForce-RTX-3050-OEM.yaml | 38 ++++ .../Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml | 33 +++ .../Ampere/GeForce-RTX-3050-Ti-Mobile.yaml | 33 +++ .../Ampere/GeForce-RTX-3060-12-GB-GA104.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-12-GB.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-3840SP.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-8-GB-GA104.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-Max-Q.yaml | 32 +++ .../Ampere/GeForce-RTX-3060-Mobile.yaml | 32 +++ .../Ampere/GeForce-RTX-3060-Ti-GA103.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml | 38 ++++ .../Ampere/GeForce-RTX-3060-Ti.yaml | 38 ++++ .../Ampere/GeForce-RTX-3070-Max-Q.yaml | 33 +++ .../Ampere/GeForce-RTX-3070-Mobile.yaml | 33 +++ .../Ampere/GeForce-RTX-3070-Ti-16-GB.yaml | 38 ++++ .../GeForce-RTX-3070-Ti-8-GB-GA102.yaml | 38 ++++ .../Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml | 32 +++ .../Ampere/GeForce-RTX-3070-Ti-Mobile.yaml | 32 +++ .../Ampere/GeForce-RTX-3070-Ti.yaml | 38 ++++ .../Ampere/GeForce-RTX-3070-TiM.yaml | 38 ++++ .../Ampere/GeForce-RTX-3070.yaml | 38 ++++ .../Ampere/GeForce-RTX-3080-12-GB.yaml | 39 ++++ .../Ampere/GeForce-RTX-3080-Max-Q.yaml | 33 +++ .../Ampere/GeForce-RTX-3080-Mobile.yaml | 33 +++ .../Ampere/GeForce-RTX-3080-Ti-20-GB.yaml | 39 ++++ .../Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml | 33 +++ .../Ampere/GeForce-RTX-3080-Ti-Mobile.yaml | 33 +++ .../Ampere/GeForce-RTX-3080-Ti.yaml | 39 ++++ .../Ampere/GeForce-RTX-3080.yaml | 39 ++++ .../Ampere/GeForce-RTX-3090-Ti.yaml | 39 ++++ .../Ampere/GeForce-RTX-3090.yaml | 39 ++++ .../Ampere/Jetson-AGX-Orin-32-GB.yaml | 31 +++ .../Ampere/Jetson-AGX-Orin-64-GB.yaml | 31 +++ .../Ampere/Jetson-Orin-NX-16-GB.yaml | 32 +++ .../Ampere/Jetson-Orin-NX-8-GB.yaml | 32 +++ .../Ampere/Jetson-Orin-Nano-4-GB.yaml | 31 +++ .../Ampere/Jetson-Orin-Nano-8-GB.yaml | 31 +++ specs/GPUs-CONSUMER/Ampere/PG506-207.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/PG506-217.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/PG506-232.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/PG506-242.yaml | 33 +++ .../Ampere/RTX-A1000-Embedded.yaml | 33 +++ .../Ampere/RTX-A1000-Mobile-6-GB.yaml | 33 +++ .../Ampere/RTX-A1000-Mobile.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml | 35 +++ .../Ampere/RTX-A2000-Embedded.yaml | 34 +++ .../GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml | 33 +++ .../Ampere/RTX-A2000-Mobile.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml | 36 +++ .../Ampere/RTX-A3000-Mobile-12-GB.yaml | 32 +++ .../Ampere/RTX-A3000-Mobile.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml | 32 +++ .../Ampere/RTX-A4000-Mobile.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml | 36 +++ specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml | 36 +++ .../Ampere/RTX-A4500-Embedded.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml | 32 +++ .../Ampere/RTX-A4500-Mobile.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml | 35 +++ .../Ampere/RTX-A500-Embedded.yaml | 33 +++ .../GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml | 33 +++ specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml | 35 +++ specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml | 35 +++ .../GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml | 32 +++ .../Ampere/RTX-A5000-Mobile.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml | 35 +++ .../GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml | 32 +++ .../Ampere/RTX-A5500-Mobile.yaml | 32 +++ specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml | 35 +++ specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml | 35 +++ specs/GPUs-CONSUMER/CDNA-1.0.yaml | 14 ++ .../CDNA-1.0/Radeon-Instinct-MI100.yaml | 32 +++ specs/GPUs-CONSUMER/CDNA-2.0.yaml | 17 ++ .../CDNA-2.0/Radeon-Instinct-MI200.yaml | 30 +++ .../CDNA-2.0/Radeon-Instinct-MI210.yaml | 32 +++ .../CDNA-2.0/Radeon-Instinct-MI250.yaml | 32 +++ .../CDNA-2.0/Radeon-Instinct-MI250X.yaml | 32 +++ specs/GPUs-CONSUMER/CDNA-3.0.yaml | 15 ++ .../CDNA-3.0/Radeon-Instinct-MI300.yaml | 32 +++ .../CDNA-3.0/Radeon-Instinct-MI300X.yaml | 31 +++ specs/GPUs-CONSUMER/Celsius.yaml | 68 ++++++ .../Celsius/GeForce-256-DDR.yaml | 25 +++ .../Celsius/GeForce-256-SDR.yaml | 25 +++ .../Celsius/GeForce-6200-AGP.yaml | 26 +++ .../Celsius/GeForce-PCX-4300.yaml | 27 +++ .../Celsius/GeForce2-GTS-PRO.yaml | 26 +++ specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml | 26 +++ .../Celsius/GeForce2-Go-100.yaml | 25 +++ .../Celsius/GeForce2-Go-200.yaml | 25 +++ specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml | 25 +++ .../Celsius/GeForce2-MX-+-nForce-220.yaml | 24 ++ .../Celsius/GeForce2-MX-+-nForce-420.yaml | 24 ++ .../Celsius/GeForce2-MX-200-LP.yaml | 26 +++ .../Celsius/GeForce2-MX-200-PCI.yaml | 26 +++ .../Celsius/GeForce2-MX-200.yaml | 28 +++ .../Celsius/GeForce2-MX-400-PCI.yaml | 26 +++ .../Celsius/GeForce2-MX-400.yaml | 28 +++ .../Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml | 25 +++ .../Celsius/GeForce2-MX-DH-Pro-TV.yaml | 25 +++ .../Celsius/GeForce2-MX-PCI.yaml | 25 +++ specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml | 25 +++ specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml | 27 +++ specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml | 27 +++ .../GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml | 29 +++ .../Celsius/GeForce4-410-Go.yaml | 25 +++ .../Celsius/GeForce4-420-Go.yaml | 25 +++ .../Celsius/GeForce4-440-Go.yaml | 25 +++ .../Celsius/GeForce4-448-Go.yaml | 24 ++ .../Celsius/GeForce4-460-Go.yaml | 25 +++ .../Celsius/GeForce4-488-Go.yaml | 24 ++ .../Celsius/GeForce4-MX-+-nForce2.yaml | 24 ++ .../Celsius/GeForce4-MX-4000-PCI.yaml | 28 +++ .../Celsius/GeForce4-MX-4000-Rev.-2.yaml | 27 +++ .../Celsius/GeForce4-MX-4000.yaml | 27 +++ .../Celsius/GeForce4-MX-420-PCI.yaml | 26 +++ .../Celsius/GeForce4-MX-420.yaml | 26 +++ .../Celsius/GeForce4-MX-440-8x.yaml | 26 +++ .../Celsius/GeForce4-MX-440-Mac-Edition.yaml | 26 +++ .../Celsius/GeForce4-MX-440-SE.yaml | 26 +++ .../Celsius/GeForce4-MX-440.yaml | 28 +++ .../Celsius/Quadro-NVS-280-SD.yaml | 26 +++ .../Celsius/Quadro-NVS-50-PCI.yaml | 28 +++ specs/GPUs-CONSUMER/Celsius/Quadro.yaml | 26 +++ specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml | 25 +++ .../Celsius/Quadro2-MXR-Low-Profile.yaml | 26 +++ specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml | 26 +++ specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml | 28 +++ .../Celsius/Quadro4-100-NVS-PCI.yaml | 28 +++ .../Celsius/Quadro4-100-NVS.yaml | 26 +++ .../Celsius/Quadro4-200-NVS.yaml | 26 +++ .../Celsius/Quadro4-380-XGL.yaml | 27 +++ .../Celsius/Quadro4-400-NVS-PCI.yaml | 25 +++ .../Celsius/Quadro4-500-Go-GL.yaml | 25 +++ .../Celsius/Quadro4-500-XGL.yaml | 27 +++ .../Celsius/Quadro4-550-XGL.yaml | 26 +++ .../Celsius/Quadro4-580-XGL.yaml | 25 +++ specs/GPUs-CONSUMER/Curie.yaml | 164 ++++++++++++++ .../Curie/GeForce-6100-+-nForce-400.yaml | 25 +++ .../Curie/GeForce-6100-+-nForce-405.yaml | 25 +++ .../Curie/GeForce-6100-+-nForce-420.yaml | 25 +++ .../Curie/GeForce-6100-+-nForce-430.yaml | 25 +++ specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml | 24 ++ .../GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml | 24 ++ .../Curie/GeForce-6150-SE-+-nForce-430.yaml | 24 ++ specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml | 25 +++ .../Curie/GeForce-6200-LE-AGP-512-MB.yaml | 28 +++ .../Curie/GeForce-6200-LE-AGP.yaml | 28 +++ .../Curie/GeForce-6200-LE-PCI.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml | 28 +++ .../Curie/GeForce-6200-SE-TurboCache.yaml | 27 +++ .../Curie/GeForce-6200-TurboCache.yaml | 27 +++ .../Curie/GeForce-6200-X2-PCI.yaml | 26 +++ specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml | 28 +++ specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml | 27 +++ .../Curie/GeForce-6600-GT-AGP.yaml | 27 +++ .../Curie/GeForce-6600-GT-Dual.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml | 27 +++ .../Curie/GeForce-6600-LE-AGP.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml | 27 +++ specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml | 27 +++ .../Curie/GeForce-6800-GT-DDL.yaml | 27 +++ .../Curie/GeForce-6800-GT-Dual.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml | 27 +++ .../Curie/GeForce-6800-Ultra-DDL.yaml | 27 +++ .../Curie/GeForce-6800-Ultra.yaml | 29 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml | 27 +++ specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml | 27 +++ .../Curie/GeForce-7000M-+-nForce-610M.yaml | 25 +++ .../Curie/GeForce-7025-+-nForce-630a.yaml | 25 +++ .../Curie/GeForce-7050-+-nForce-610i.yaml | 25 +++ .../Curie/GeForce-7050-+-nForce-620i.yaml | 27 +++ .../Curie/GeForce-7050-+-nForce-630a.yaml | 25 +++ .../Curie/GeForce-7050-+-nForce-630i.yaml | 27 +++ .../Curie/GeForce-7050-PV-+-nForce-630a.yaml | 25 +++ .../Curie/GeForce-7050-SE-+-nForce-630a.yaml | 25 +++ .../Curie/GeForce-7100-+-nForce-630i.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml | 27 +++ .../Curie/GeForce-7150-+-nForce-630i.yaml | 25 +++ .../Curie/GeForce-7150M-+-nForce-630M.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml | 28 +++ .../Curie/GeForce-7300-GS-Low-Profile.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml | 28 +++ .../Curie/GeForce-7300-GT-AGP.yaml | 28 +++ .../Curie/GeForce-7300-GT-Mac-Edition.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml | 27 +++ .../GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml | 27 +++ .../Curie/GeForce-7600-GS-AGP.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml | 28 +++ .../Curie/GeForce-7600-GT-AGP.yaml | 28 +++ .../Curie/GeForce-7600-GT-Mac-Edition.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml | 27 +++ .../Curie/GeForce-7800-GS+-20Pipes-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GS+-24Pipes-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GS+-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GS-20Pipes-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GS-24Pipes-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GS-AGP.yaml | 28 +++ .../Curie/GeForce-7800-GT-Dual.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml | 30 +++ .../Curie/GeForce-7800-GTX-512.yaml | 30 +++ .../GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml | 28 +++ .../Curie/GeForce-7900-GS-AGP.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml | 29 +++ .../GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml | 28 +++ .../Curie/GeForce-7950-GT-AGP.yaml | 28 +++ .../GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml | 31 +++ .../GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml | 30 +++ .../GeForce-Go-6100-+-nForce-Go-430.yaml | 25 +++ .../GeForce-Go-6150-+-nForce-Go-430.yaml | 25 +++ .../Curie/GeForce-Go-6200-TE.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml | 25 +++ .../Curie/GeForce-Go-6600-NPB-128M.yaml | 26 +++ .../Curie/GeForce-Go-6600-TE.yaml | 26 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml | 26 +++ .../Curie/GeForce-Go-6800-Ultra.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml | 24 ++ .../Curie/GeForce-Go-7600-GT.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml | 25 +++ .../Curie/GeForce-Go-7800-GTX.yaml | 25 +++ .../GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml | 24 ++ .../Curie/GeForce-Go-7900-GS.yaml | 24 ++ .../Curie/GeForce-Go-7900-GTX.yaml | 25 +++ .../Curie/GeForce-Go-7900-SE.yaml | 24 ++ .../Curie/GeForce-Go-7950-GTX.yaml | 25 +++ .../Curie/Playstation-3-GPU-28nm.yaml | 26 +++ .../Curie/Playstation-3-GPU-40nm.yaml | 26 +++ .../Curie/Playstation-3-GPU-65nm.yaml | 26 +++ .../Curie/Playstation-3-GPU-90nm.yaml | 26 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml | 29 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml | 30 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml | 26 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml | 25 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml | 30 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml | 30 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml | 29 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml | 29 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml | 25 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml | 25 +++ .../Curie/Quadro-FX-4000-SDI.yaml | 30 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml | 30 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml | 29 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml | 28 +++ .../Curie/Quadro-FX-4500-SDI.yaml | 29 +++ .../Curie/Quadro-FX-4500-X2.yaml | 28 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml | 31 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml | 30 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml | 30 +++ .../Curie/Quadro-FX-5500-SDI.yaml | 29 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml | 29 +++ specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml | 23 ++ specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml | 29 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml | 25 +++ .../GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml | 26 +++ .../GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml | 26 +++ .../GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml | 25 +++ .../GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml | 24 ++ specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml | 27 +++ .../GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml | 25 +++ .../Curie/Quadro-NVS-440-PCIe-x1.yaml | 27 +++ .../Curie/Quadro-NVS-440-PCIe-x16.yaml | 27 +++ .../GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml | 24 ++ .../Curie/Quadro-Plex-1000-Model-II.yaml | 24 ++ specs/GPUs-CONSUMER/Fahrenheit.yaml | 21 ++ specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml | 25 +++ .../Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml | 26 +++ .../Fahrenheit/Riva-TNT2-M64-Vanta.yaml | 26 +++ .../Fahrenheit/Riva-TNT2-M64.yaml | 26 +++ .../Fahrenheit/Riva-TNT2-PRO.yaml | 26 +++ .../Fahrenheit/Riva-TNT2-Ultra.yaml | 26 +++ specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml | 26 +++ specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml | 26 +++ specs/GPUs-CONSUMER/Fermi-2.0.yaml | 84 +++++++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml | 29 +++ .../Fermi-2.0/GeForce-510-OEM.yaml | 31 +++ .../Fermi-2.0/GeForce-605-OEM.yaml | 32 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml | 28 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml | 28 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml | 28 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml | 28 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-520-OEM.yaml | 31 +++ .../Fermi-2.0/GeForce-GT-520-PCI.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml | 31 +++ .../Fermi-2.0/GeForce-GT-520.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-520MX.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-545-OEM.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-545.yaml | 31 +++ .../Fermi-2.0/GeForce-GT-550M.yaml | 28 +++ .../Fermi-2.0/GeForce-GT-555M-2-GB.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-555M-3-GB.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-610-OEM.yaml | 31 +++ .../Fermi-2.0/GeForce-GT-610-PCI.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-610.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-620-OEM.yaml | 31 +++ .../Fermi-2.0/GeForce-GT-625M.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-635M.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-645-OEM.yaml | 30 +++ .../Fermi-2.0/GeForce-GT-705-OEM.yaml | 32 +++ .../Fermi-2.0/GeForce-GT-710M.yaml | 27 +++ .../Fermi-2.0/GeForce-GT-720A.yaml | 29 +++ .../Fermi-2.0/GeForce-GT-720M.yaml | 29 +++ .../Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml | 32 +++ .../Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-460-SE-v2.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-460-v2.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-550-Ti.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-555-OEM.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-560-OEM.yaml | 34 +++ .../Fermi-2.0/GeForce-GTX-560-SE.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-560-Ti-448.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml | 31 +++ .../Fermi-2.0/GeForce-GTX-560-Ti.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-560.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-560M.yaml | 29 +++ .../Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-570.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-570M.yaml | 29 +++ .../Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml | 32 +++ .../Fermi-2.0/GeForce-GTX-580.yaml | 33 +++ .../Fermi-2.0/GeForce-GTX-580M.yaml | 29 +++ .../Fermi-2.0/GeForce-GTX-590.yaml | 34 +++ .../Fermi-2.0/GeForce-GTX-670M.yaml | 29 +++ .../Fermi-2.0/GeForce-GTX-675M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml | 30 +++ specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml | 30 +++ specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml | 28 +++ .../GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml | 32 +++ .../Fermi-2.0/Quadro-Plex-7000.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml | 30 +++ .../GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml | 30 +++ .../GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml | 29 +++ .../GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml | 28 +++ specs/GPUs-CONSUMER/Fermi.yaml | 75 +++++++ .../GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml | 28 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml | 29 +++ .../Fermi/GeForce-GT-420-OEM.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml | 29 +++ .../Fermi/GeForce-GT-430-OEM.yaml | 32 +++ .../Fermi/GeForce-GT-430-PCI.yaml | 32 +++ specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml | 29 +++ .../Fermi/GeForce-GT-440-Mac-Edition.yaml | 32 +++ .../Fermi/GeForce-GT-440-OEM.yaml | 31 +++ specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml | 29 +++ .../Fermi/GeForce-GT-640M-LE.yaml | 26 +++ specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml | 32 +++ .../Fermi/GeForce-GTS-450-OEM.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml | 33 +++ .../Fermi/GeForce-GTX-460-SE.yaml | 32 +++ .../Fermi/GeForce-GTX-460-X2.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml | 32 +++ .../Fermi/GeForce-GTX-470-X2.yaml | 28 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml | 29 +++ .../Fermi/GeForce-GTX-480-Core-512.yaml | 31 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml | 34 +++ specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml | 33 +++ specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml | 31 +++ specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml | 28 +++ specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml | 29 +++ .../Fermi/Quadro-4000-Mac-Edition.yaml | 31 +++ specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml | 33 +++ specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml | 29 +++ .../GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml | 32 +++ specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml | 33 +++ specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml | 28 +++ specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml | 32 +++ .../GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml | 32 +++ specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml | 33 +++ specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml | 30 +++ specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml | 30 +++ specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml | 29 +++ specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml | 27 +++ specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml | 29 +++ specs/GPUs-CONSUMER/G100.yaml | 14 ++ specs/GPUs-CONSUMER/G100/Productiva-G100.yaml | 27 +++ specs/GPUs-CONSUMER/G200.yaml | 19 ++ specs/GPUs-CONSUMER/G200/Marvel-G200.yaml | 28 +++ .../G200/Millennium-G200-SD.yaml | 29 +++ specs/GPUs-CONSUMER/G200/Millennium-G200.yaml | 29 +++ .../GPUs-CONSUMER/G200/Millennium-G200A.yaml | 29 +++ specs/GPUs-CONSUMER/G200/Millennium-G250.yaml | 29 +++ specs/GPUs-CONSUMER/G200/Mystique-G200.yaml | 28 +++ specs/GPUs-CONSUMER/G400.yaml | 20 ++ specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml | 28 +++ .../G400/Millennium-G400-MAX.yaml | 29 +++ specs/GPUs-CONSUMER/G400/Millennium-G400.yaml | 28 +++ .../G400/Millennium-G450-LP.yaml | 27 +++ .../G400/Millennium-G450-x2-MMS.yaml | 28 +++ .../G400/Millennium-G450-x4-MMS.yaml | 27 +++ specs/GPUs-CONSUMER/G400/Millennium-G450.yaml | 29 +++ specs/GPUs-CONSUMER/G500.yaml | 15 ++ .../G500/Millennium-G550-PCIe.yaml | 26 +++ specs/GPUs-CONSUMER/G500/Millennium-G550.yaml | 28 +++ specs/GPUs-CONSUMER/GCN-1.0.yaml | 184 +++++++++++++++ specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml | 31 +++ specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml | 29 +++ specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml | 31 +++ specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml | 28 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml | 28 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml | 27 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml | 31 +++ .../GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 35 +++ .../GCN-1.0/FirePro-S10000-Passive.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml | 30 +++ .../GCN-1.0/FirePro-W5000-DVI.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml | 31 +++ specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml | 33 +++ .../GCN-1.0/FirePro-W9000-X2.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml | 33 +++ .../GCN-1.0/Radeon-520-Mobile-DDR3.yaml | 29 +++ .../GCN-1.0/Radeon-520-Mobile-GDDR5.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml | 29 +++ .../GCN-1.0/Radeon-610-Mobile.yaml | 29 +++ specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7730M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7750M.yaml | 28 +++ .../GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7770M.yaml | 27 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7850M.yaml | 28 +++ .../GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7870-XT.yaml | 34 +++ .../GCN-1.0/Radeon-HD-7870M.yaml | 27 +++ .../GCN-1.0/Radeon-HD-7950-Boost.yaml | 36 +++ .../GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml | 32 +++ .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml | 34 +++ .../GCN-1.0/Radeon-HD-7950M.yaml | 27 +++ .../GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml | 36 +++ .../GCN-1.0/Radeon-HD-7970-X2.yaml | 34 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml | 34 +++ .../GCN-1.0/Radeon-HD-7970M-X2.yaml | 29 +++ .../GCN-1.0/Radeon-HD-7970M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml | 36 +++ .../GCN-1.0/Radeon-HD-8530M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8550M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8570-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8570A.yaml | 30 +++ .../GCN-1.0/Radeon-HD-8570M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8590M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8670-OEM.yaml | 33 +++ .../GCN-1.0/Radeon-HD-8670A.yaml | 28 +++ .../GCN-1.0/Radeon-HD-8670M.yaml | 28 +++ .../GCN-1.0/Radeon-HD-8690M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8730-OEM.yaml | 31 +++ .../GCN-1.0/Radeon-HD-8730A.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8730M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8740-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8750A.yaml | 28 +++ .../GCN-1.0/Radeon-HD-8750M.yaml | 27 +++ .../GCN-1.0/Radeon-HD-8760-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8770M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8790M.yaml | 31 +++ .../GCN-1.0/Radeon-HD-8830M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8850M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8860-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8870-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8870M.yaml | 29 +++ .../GCN-1.0/Radeon-HD-8950-OEM.yaml | 34 +++ .../GCN-1.0/Radeon-HD-8970-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-HD-8970M.yaml | 30 +++ .../GCN-1.0/Radeon-HD-8990-OEM.yaml | 34 +++ .../GCN-1.0/Radeon-R5-240-OEM.yaml | 33 +++ .../GCN-1.0/Radeon-R5-340-OEM.yaml | 34 +++ .../GCN-1.0/Radeon-R5-340X-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-R5-430-OEM.yaml | 33 +++ .../GCN-1.0/Radeon-R5-435-OEM.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml | 28 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml | 26 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml | 26 +++ .../GCN-1.0/Radeon-R5-M230-Rebrand.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml | 30 +++ .../GCN-1.0/Radeon-R5-M240-Rebrand.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml | 28 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml | 30 +++ .../GCN-1.0/Radeon-R6-M340DX.yaml | 30 +++ .../GCN-1.0/Radeon-R6-M435DX.yaml | 30 +++ .../GCN-1.0/Radeon-R7-240-OEM.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml | 34 +++ .../GCN-1.0/Radeon-R7-250-OEM.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml | 32 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml | 32 +++ .../GCN-1.0/Radeon-R7-250XE.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml | 34 +++ .../GCN-1.0/Radeon-R7-265X-OEM.yaml | 34 +++ .../GCN-1.0/Radeon-R7-340-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-R7-350-640SP.yaml | 32 +++ .../GCN-1.0/Radeon-R7-350-Fake-Card.yaml | 30 +++ .../GCN-1.0/Radeon-R7-350-OEM.yaml | 33 +++ .../GCN-1.0/Radeon-R7-350X-OEM.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml | 34 +++ .../GCN-1.0/Radeon-R7-430-OEM.yaml | 32 +++ .../GCN-1.0/Radeon-R7-435-OEM.yaml | 30 +++ .../GCN-1.0/Radeon-R7-450-OEM.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml | 29 +++ .../GCN-1.0/Radeon-R7-M260DX.yaml | 30 +++ .../GCN-1.0/Radeon-R7-M260X.yaml | 29 +++ .../GCN-1.0/Radeon-R7-M265DX.yaml | 30 +++ .../GCN-1.0/Radeon-R7-M270DX.yaml | 30 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml | 30 +++ .../GCN-1.0/Radeon-R7-M365X.yaml | 27 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml | 27 +++ .../GCN-1.0/Radeon-R7-M465X.yaml | 29 +++ .../GCN-1.0/Radeon-R8-M350DX.yaml | 30 +++ .../GCN-1.0/Radeon-R8-M435DX.yaml | 30 +++ .../GCN-1.0/Radeon-R9-255-OEM.yaml | 31 +++ .../GCN-1.0/Radeon-R9-270-1024SP.yaml | 33 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml | 34 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml | 36 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml | 36 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml | 36 +++ .../GCN-1.0/Radeon-R9-280X2.yaml | 32 +++ .../GCN-1.0/Radeon-R9-370-1024SP.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml | 35 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml | 26 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M275X.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml | 31 +++ .../GCN-1.0/Radeon-R9-M290X.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M365X.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M375X.yaml | 29 +++ .../GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml | 31 +++ .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml | 35 +++ specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml | 29 +++ .../GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml | 29 +++ specs/GPUs-CONSUMER/GCN-1.yaml | 11 - specs/GPUs-CONSUMER/GCN-2.0.yaml | 76 +++++++ .../GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml | 33 +++ .../GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml | 33 +++ .../GCN-2.0/Playstation-4-GPU.yaml | 29 +++ .../GCN-2.0/Playstation-4-Pro-GPU.yaml | 28 +++ .../GCN-2.0/Playstation-4-Slim-GPU.yaml | 29 +++ .../GCN-2.0/Radeon-E8870-MXM.yaml | 29 +++ .../GCN-2.0/Radeon-E8870-PCIe.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml | 32 +++ .../GCN-2.0/Radeon-HD-8180-IGP.yaml | 28 +++ .../GCN-2.0/Radeon-HD-8210-IGP.yaml | 28 +++ .../GCN-2.0/Radeon-HD-8210E.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml | 28 +++ .../GCN-2.0/Radeon-HD-8250-IGP.yaml | 30 +++ .../GCN-2.0/Radeon-HD-8280-IGP.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8280E.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8330E.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8400-IGP.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8400E.yaml | 27 +++ .../GCN-2.0/Radeon-HD-8770-OEM.yaml | 32 +++ .../GCN-2.0/Radeon-HD-8950M.yaml | 28 +++ .../GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R2-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R3-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml | 27 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml | 32 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml | 32 +++ .../GCN-2.0/Radeon-R7-360-896SP.yaml | 32 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml | 34 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml | 31 +++ .../GCN-2.0/Radeon-R7-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R7-Mobile-Graphics.yaml | 27 +++ .../GCN-2.0/Radeon-R9-260-OEM.yaml | 32 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml | 34 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml | 34 +++ .../GCN-2.0/Radeon-R9-290X2.yaml | 31 +++ .../GCN-2.0/Radeon-R9-295X2.yaml | 34 +++ .../GCN-2.0/Radeon-R9-360-OEM.yaml | 35 +++ .../GCN-2.0/Radeon-R9-390-X2.yaml | 31 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml | 34 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml | 34 +++ .../GCN-2.0/Radeon-R9-M270X.yaml | 29 +++ .../GCN-2.0/Radeon-R9-M280X.yaml | 29 +++ .../GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml | 29 +++ .../GCN-2.0/Radeon-R9-M385X.yaml | 29 +++ .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml | 29 +++ .../GCN-2.0/Radeon-R9-M470X.yaml | 29 +++ .../GCN-2.0/Radeon-RX-455-OEM.yaml | 32 +++ .../GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml | 28 +++ specs/GPUs-CONSUMER/GCN-2.yaml | 12 - specs/GPUs-CONSUMER/GCN-3.0.yaml | 71 ++++++ .../GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml | 29 +++ .../GCN-3.0/FirePro-S7150-x2.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml | 31 +++ .../GCN-3.0/FirePro-S9300-X2.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml | 29 +++ .../GCN-3.0/Radeon-530-Mobile-DDR3.yaml | 31 +++ .../GCN-3.0/Radeon-530-Mobile-GDDR5.yaml | 31 +++ .../GCN-3.0/Radeon-530X-Mobile.yaml | 31 +++ .../GCN-3.0/Radeon-535-Mobile.yaml | 31 +++ .../GCN-3.0/Radeon-620-Mobile.yaml | 29 +++ .../GCN-3.0/Radeon-625-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml | 29 +++ specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml | 31 +++ .../GCN-3.0/Radeon-Instinct-MI8.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml | 31 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml | 33 +++ .../GCN-3.0/Radeon-R4-Mobile-Graphics.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml | 28 +++ .../GCN-3.0/Radeon-R5-Graphics.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml | 27 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml | 26 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml | 28 +++ .../GCN-3.0/Radeon-R5-Mobile-Graphics.yaml | 29 +++ .../GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml | 29 +++ .../GCN-3.0/Radeon-R6-M255DX.yaml | 30 +++ .../GCN-3.0/Radeon-R6-Mobile-Graphics.yaml | 29 +++ .../GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml | 28 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml | 28 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml | 30 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml | 29 +++ .../GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml | 29 +++ .../GCN-3.0/Radeon-R8-M365DX.yaml | 30 +++ .../GCN-3.0/Radeon-R8-M445DX.yaml | 30 +++ .../GCN-3.0/Radeon-R8-M535DX.yaml | 30 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml | 34 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml | 31 +++ .../GCN-3.0/Radeon-R9-380-OEM.yaml | 33 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml | 33 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml | 33 +++ .../GCN-3.0/Radeon-R9-FURY-X.yaml | 32 +++ .../GCN-3.0/Radeon-R9-FURY-X2.yaml | 28 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml | 32 +++ .../GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml | 28 +++ .../GCN-3.0/Radeon-R9-M295X.yaml | 29 +++ .../GCN-3.0/Radeon-R9-M390X.yaml | 29 +++ .../GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml | 29 +++ .../GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml | 29 +++ .../GCN-3.0/Radeon-R9-M395X.yaml | 29 +++ .../GCN-3.0/Radeon-R9-M485X.yaml | 29 +++ .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml | 32 +++ specs/GPUs-CONSUMER/GCN-3.yaml | 12 - specs/GPUs-CONSUMER/GCN-4.0.yaml | 104 +++++++++ specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml | 31 +++ .../GCN-4.0/Radeon-540-Mobile.yaml | 29 +++ .../GCN-4.0/Radeon-540X-Mobile.yaml | 31 +++ specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml | 34 +++ .../GCN-4.0/Radeon-550X-640SP.yaml | 33 +++ .../GCN-4.0/Radeon-550X-Mobile.yaml | 29 +++ specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml | 34 +++ .../GCN-4.0/Radeon-630-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-E9171-MCM.yaml | 31 +++ .../GCN-4.0/Radeon-E9172-MXM.yaml | 31 +++ .../GCN-4.0/Radeon-E9173-PCIe.yaml | 31 +++ .../GCN-4.0/Radeon-E9174-MXM.yaml | 31 +++ .../GCN-4.0/Radeon-E9175-PCIe.yaml | 31 +++ .../GCN-4.0/Radeon-E9260-MXM.yaml | 29 +++ .../GCN-4.0/Radeon-E9260-PCIe.yaml | 33 +++ .../GCN-4.0/Radeon-E9390-PCIe.yaml | 31 +++ .../GCN-4.0/Radeon-E9550-MXM.yaml | 31 +++ .../GCN-4.0/Radeon-E9560-PCIe.yaml | 31 +++ .../GCN-4.0/Radeon-Instinct-MI6.yaml | 33 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml | 28 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml | 29 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml | 29 +++ .../GCN-4.0/Radeon-Pro-555X.yaml | 29 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml | 29 +++ .../GCN-4.0/Radeon-Pro-560X.yaml | 29 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-570X.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml | 29 +++ .../GCN-4.0/Radeon-Pro-575X.yaml | 29 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-580X.yaml | 30 +++ .../GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-V5300X.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-V7300X.yaml | 32 +++ .../GCN-4.0/Radeon-Pro-V7350X2.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-2100.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-3100.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml | 29 +++ .../GCN-4.0/Radeon-Pro-WX-3200.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-WX-4100.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-Pro-WX-5100.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml | 32 +++ .../GCN-4.0/Radeon-Pro-WX-7100.yaml | 33 +++ .../GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml | 32 +++ .../GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml | 30 +++ .../GCN-4.0/Radeon-RX-460-1024SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-460-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml | 34 +++ .../GCN-4.0/Radeon-RX-470-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml | 34 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml | 32 +++ .../GCN-4.0/Radeon-RX-480-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml | 34 +++ .../GCN-4.0/Radeon-RX-540-Mobile.yaml | 29 +++ .../GCN-4.0/Radeon-RX-540X-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-RX-550-512SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-550-640SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-550-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml | 34 +++ .../GCN-4.0/Radeon-RX-550X-640SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-550X-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml | 34 +++ .../GCN-4.0/Radeon-RX-560-896SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-560-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-RX-560-XT.yaml | 32 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml | 34 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml | 34 +++ .../GCN-4.0/Radeon-RX-560DX.yaml | 34 +++ .../GCN-4.0/Radeon-RX-560X-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml | 34 +++ .../GCN-4.0/Radeon-RX-570-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-RX-570-X2.yaml | 32 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml | 34 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml | 34 +++ .../GCN-4.0/Radeon-RX-580-2048SP.yaml | 34 +++ .../GCN-4.0/Radeon-RX-580-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-RX-580-OEM.yaml | 32 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml | 32 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml | 32 +++ .../GCN-4.0/Radeon-RX-580X-Mobile.yaml | 29 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml | 32 +++ .../GCN-4.0/Radeon-RX-590-GME.yaml | 32 +++ .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml | 32 +++ .../GCN-4.0/Radeon-RX-640-Mobile.yaml | 31 +++ .../GCN-4.0/Radeon-RX-640-OEM.yaml | 29 +++ .../GCN-4.0/Radeon-RX-Vega-M-GH.yaml | 30 +++ .../GCN-4.0/Radeon-RX-Vega-M-GL.yaml | 30 +++ specs/GPUs-CONSUMER/GCN-4.yaml | 12 - specs/GPUs-CONSUMER/GCN-5.0.yaml | 52 +++++ .../GCN-5.0/Atari-VCS-400-GPU.yaml | 31 +++ .../GCN-5.0/Atari-VCS-800-GPU.yaml | 31 +++ .../GCN-5.0/Radeon-Instinct-MI25.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-V320.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-V340-16-GB.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-V340-8-GB.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-Vega-16.yaml | 30 +++ .../GCN-5.0/Radeon-Pro-Vega-20.yaml | 30 +++ .../GCN-5.0/Radeon-Pro-Vega-48.yaml | 29 +++ .../GCN-5.0/Radeon-Pro-Vega-56.yaml | 31 +++ .../GCN-5.0/Radeon-Pro-Vega-64.yaml | 31 +++ .../GCN-5.0/Radeon-Pro-Vega-64X.yaml | 31 +++ .../GCN-5.0/Radeon-Pro-WX-8100.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-WX-8200.yaml | 33 +++ .../GCN-5.0/Radeon-Pro-WX-9100.yaml | 33 +++ .../GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml | 30 +++ .../GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml | 30 +++ .../GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml | 30 +++ .../GCN-5.0/Radeon-RX-Vega-11.yaml | 30 +++ .../GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml | 32 +++ .../GCN-5.0/Radeon-RX-Vega-56.yaml | 34 +++ .../Radeon-RX-Vega-64-Limited-Edition.yaml | 34 +++ .../Radeon-RX-Vega-64-Liquid-Cooling.yaml | 34 +++ .../GCN-5.0/Radeon-RX-Vega-64.yaml | 34 +++ .../GCN-5.0/Radeon-RX-Vega-Nano.yaml | 33 +++ .../GCN-5.0/Radeon-Vega-10-Mobile.yaml | 30 +++ .../GCN-5.0/Radeon-Vega-11-Embedded.yaml | 30 +++ .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml | 30 +++ .../GCN-5.0/Radeon-Vega-3-Embedded.yaml | 30 +++ .../GCN-5.0/Radeon-Vega-3-Mobile.yaml | 30 +++ .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml | 30 +++ .../GCN-5.0/Radeon-Vega-6-Embedded.yaml | 29 +++ .../GCN-5.0/Radeon-Vega-6-Mobile.yaml | 29 +++ .../GCN-5.0/Radeon-Vega-8-Embedded.yaml | 30 +++ .../GCN-5.0/Radeon-Vega-8-Mobile.yaml | 30 +++ .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml | 30 +++ ...eon-Vega-Frontier-Edition-Watercooled.yaml | 33 +++ .../GCN-5.0/Radeon-Vega-Frontier-Edition.yaml | 33 +++ .../GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml | 27 +++ specs/GPUs-CONSUMER/GCN-5.1.yaml | 33 ++- .../GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml | 29 +++ .../GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml | 29 +++ .../GCN-5.1/Radeon-Graphics-384SP.yaml | 30 +++ .../GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml | 30 +++ .../GCN-5.1/Radeon-Graphics-448SP.yaml | 29 +++ .../GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml | 29 +++ .../GCN-5.1/Radeon-Graphics-512SP.yaml | 30 +++ .../GCN-5.1/Radeon-Instinct-MI50.yaml | 32 +++ .../GCN-5.1/Radeon-Instinct-MI60.yaml | 33 +++ .../GCN-5.1/Radeon-Pro-V420.yaml | 33 +++ .../GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml | 33 +++ .../GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml | 30 +++ .../GCN-5.1/Radeon-Pro-Vega-II.yaml | 30 +++ specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml | 34 +++ specs/GPUs-CONSUMER/GCN-5.yaml | 12 - specs/GPUs-CONSUMER/Generation-1.0.yaml | 19 ++ .../Generation-1.0/i752-Graphics.yaml | 24 ++ specs/GPUs-CONSUMER/Generation-1.0/i752.yaml | 24 ++ .../Generation-1.0/i810-Graphics.yaml | 24 ++ .../Generation-1.0/i815-Graphics.yaml | 24 ++ .../Generation-1.0/i830M-Graphics.yaml | 27 +++ .../Generation-1.0/i830MG-Graphics.yaml | 27 +++ specs/GPUs-CONSUMER/Generation-11.0.yaml | 20 ++ .../Iris-Plus-Graphics-G4-48EU-Mobile.yaml | 29 +++ .../Iris-Plus-Graphics-G7-64EU-Mobile.yaml | 29 +++ .../UHD-Graphics-24EU-Mobile.yaml | 29 +++ .../UHD-Graphics-32EU-Mobile.yaml | 29 +++ .../UHD-Graphics-G1-32EU-Mobile.yaml | 29 +++ .../UHD-Graphics-G4-48EU-Mobile.yaml | 29 +++ .../UHD-Graphics-G7-64EU-Mobile.yaml | 29 +++ specs/GPUs-CONSUMER/Generation-12.1.yaml | 24 ++ .../Generation-12.1/H3C-XG310.yaml | 30 +++ .../Iris-Xe-Graphics-G4-48EU-Mobile.yaml | 29 +++ .../Iris-Xe-Graphics-G7-80EU-Mobile.yaml | 29 +++ .../Iris-Xe-Graphics-G7-96EU-Mobile.yaml | 29 +++ .../Generation-12.1/Iris-Xe-MAX-Graphics.yaml | 29 +++ .../UHD-Graphics-16EU-Mobile.yaml | 29 +++ .../Generation-12.1/UHD-Graphics-16EU.yaml | 28 +++ .../Generation-12.1/UHD-Graphics-750.yaml | 28 +++ .../Generation-12.1/UHD-Graphics-P750.yaml | 29 +++ .../Generation-12.1/Xe-DG1-SDV.yaml | 31 +++ .../GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml | 33 +++ specs/GPUs-CONSUMER/Generation-12.2.yaml | 22 ++ .../Iris-Xe-Graphics-80EU-Mobile.yaml | 28 +++ .../Iris-Xe-Graphics-96EU-Mobile.yaml | 29 +++ .../UHD-Graphics-48EU-Mobile.yaml | 29 +++ .../UHD-Graphics-64EU-Mobile.yaml | 28 +++ .../UHD-Graphics-710-Mobile.yaml | 29 +++ .../Generation-12.2/UHD-Graphics-710.yaml | 28 +++ .../Generation-12.2/UHD-Graphics-730.yaml | 28 +++ .../UHD-Graphics-770-Mobile.yaml | 29 +++ .../Generation-12.2/UHD-Graphics-770.yaml | 28 +++ specs/GPUs-CONSUMER/Generation-12.5.yaml | 21 ++ .../Generation-12.5/Arctic-Sound-1T.yaml | 29 +++ .../Generation-12.5/Arctic-Sound-2T.yaml | 29 +++ .../Generation-12.5/Arctic-Sound-M.yaml | 29 +++ .../Data-Center-GPU-Max-1100.yaml | 34 +++ .../Data-Center-GPU-Max-1350.yaml | 32 +++ .../Data-Center-GPU-Max-1550.yaml | 32 +++ .../Data-Center-GPU-Max-NEXT.yaml | 34 +++ .../Data-Center-GPU-Max-Subsystem.yaml | 34 +++ specs/GPUs-CONSUMER/Generation-12.7.yaml | 34 +++ .../Generation-12.7/Arc-A310.yaml | 34 +++ .../Generation-12.7/Arc-A350.yaml | 33 +++ .../Generation-12.7/Arc-A350M.yaml | 33 +++ .../Generation-12.7/Arc-A370M.yaml | 33 +++ .../Generation-12.7/Arc-A380M.yaml | 33 +++ .../Generation-12.7/Arc-A530M.yaml | 32 +++ .../Generation-12.7/Arc-A550M.yaml | 32 +++ .../Generation-12.7/Arc-A570M.yaml | 32 +++ .../Generation-12.7/Arc-A580.yaml | 35 +++ .../Generation-12.7/Arc-A730M.yaml | 32 +++ .../Generation-12.7/Arc-A750.yaml | 35 +++ .../Generation-12.7/Arc-A770.yaml | 35 +++ .../Generation-12.7/Arc-A770M.yaml | 32 +++ .../Generation-12.7/Arc-A780.yaml | 35 +++ .../Generation-12.7/Arc-Pro-A30M.yaml | 33 +++ .../Generation-12.7/Arc-Pro-A40.yaml | 34 +++ .../Generation-12.7/Arc-Pro-A50.yaml | 34 +++ .../Generation-12.7/Arc-Pro-A60.yaml | 32 +++ .../Generation-12.7/Arc-Pro-A60M.yaml | 32 +++ .../Data-Center-GPU-Flex-140.yaml | 36 +++ .../Data-Center-GPU-Flex-170.yaml | 33 +++ specs/GPUs-CONSUMER/Generation-2.0.yaml | 16 ++ .../Generation-2.0/Extreme-Graphics-2.yaml | 27 +++ .../Generation-2.0/Extreme-Graphics.yaml | 25 +++ .../Generation-2.0/i852GM-Graphics.yaml | 27 +++ specs/GPUs-CONSUMER/Generation-3.0.yaml | 14 ++ .../GPUs-CONSUMER/Generation-3.0/GMA-900.yaml | 24 ++ specs/GPUs-CONSUMER/Generation-3.5.yaml | 14 ++ .../GPUs-CONSUMER/Generation-3.5/GMA-950.yaml | 26 +++ specs/GPUs-CONSUMER/Generation-4.0.yaml | 19 ++ .../Generation-4.0/GMA-3000.yaml | 25 +++ .../Generation-4.0/GMA-3100.yaml | 24 ++ .../Generation-4.0/GMA-3150.yaml | 26 +++ .../Generation-4.0/GMA-X3000.yaml | 25 +++ .../Generation-4.0/GMA-X3100.yaml | 25 +++ .../Generation-4.0/GMA-X3500.yaml | 25 +++ specs/GPUs-CONSUMER/Generation-5.0.yaml | 17 ++ .../Generation-5.0/GMA-X4500.yaml | 26 +++ .../Generation-5.0/GMA-X4500M.yaml | 26 +++ .../Generation-5.0/GMA-X4500MHD.yaml | 26 +++ .../Generation-5.0/GMA-X4700MHD.yaml | 26 +++ specs/GPUs-CONSUMER/Generation-5.75.yaml | 15 ++ .../Generation-5.75/HD-Graphics-12EU.yaml | 26 +++ .../HD-Graphics-16EU-Mobile.yaml | 28 +++ specs/GPUs-CONSUMER/Generation-6.0.yaml | 18 ++ .../Generation-6.0/HD-Graphics-2000.yaml | 28 +++ .../HD-Graphics-3000-Mobile.yaml | 28 +++ .../Generation-6.0/HD-Graphics-3000.yaml | 28 +++ .../HD-Graphics-6EU-Mobile.yaml | 28 +++ .../Generation-6.0/HD-Graphics-P3000.yaml | 28 +++ specs/GPUs-CONSUMER/Generation-7.0.yaml | 18 ++ .../HD-Graphics-32EU-Mobile.yaml | 29 +++ .../HD-Graphics-4000-Mobile.yaml | 29 +++ .../Generation-7.0/HD-Graphics-4000.yaml | 29 +++ .../Generation-7.0/HD-Graphics-6EU.yaml | 30 +++ .../Generation-7.0/HD-Graphics-P4000.yaml | 29 +++ specs/GPUs-CONSUMER/Generation-7.5.yaml | 26 +++ .../HD-Graphics-10EU-Mobile.yaml | 29 +++ .../Generation-7.5/HD-Graphics-10EU.yaml | 29 +++ .../HD-Graphics-4200-Mobile.yaml | 29 +++ .../HD-Graphics-4400-Mobile.yaml | 29 +++ .../Generation-7.5/HD-Graphics-4400.yaml | 29 +++ .../HD-Graphics-4600-Mobile.yaml | 29 +++ .../Generation-7.5/HD-Graphics-4600.yaml | 29 +++ .../HD-Graphics-5000-Mobile.yaml | 29 +++ .../Generation-7.5/HD-Graphics-P4600.yaml | 29 +++ .../Generation-7.5/HD-Graphics-P4700.yaml | 29 +++ .../Iris-Graphics-5100-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-5200-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-5200.yaml | 29 +++ specs/GPUs-CONSUMER/Generation-8.0.yaml | 25 +++ .../HD-Graphics-12EU-Mobile.yaml | 27 +++ .../HD-Graphics-400-Mobile.yaml | 29 +++ .../HD-Graphics-405-Mobile.yaml | 29 +++ .../HD-Graphics-5300-Mobile.yaml | 29 +++ .../HD-Graphics-5500-Mobile.yaml | 29 +++ .../HD-Graphics-5600-Mobile.yaml | 29 +++ .../HD-Graphics-6000-Mobile.yaml | 29 +++ .../Generation-8.0/HD-Graphics-P5700.yaml | 29 +++ .../Iris-Graphics-6100-Mobile.yaml | 30 +++ .../Iris-Pro-Graphics-6200-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-6200.yaml | 29 +++ .../Iris-Pro-Graphics-P6300.yaml | 29 +++ specs/GPUs-CONSUMER/Generation-9.0.yaml | 28 +++ .../HD-Graphics-500-Mobile.yaml | 29 +++ .../HD-Graphics-505-Mobile.yaml | 29 +++ .../HD-Graphics-510-Mobile.yaml | 29 +++ .../Generation-9.0/HD-Graphics-510.yaml | 29 +++ .../HD-Graphics-515-Mobile.yaml | 29 +++ .../HD-Graphics-520-Mobile.yaml | 29 +++ .../HD-Graphics-530-Mobile.yaml | 29 +++ .../Generation-9.0/HD-Graphics-530.yaml | 29 +++ .../Generation-9.0/HD-Graphics-P530.yaml | 29 +++ .../Iris-Graphics-540-Mobile.yaml | 28 +++ .../Iris-Graphics-550-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-580-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-P555.yaml | 29 +++ .../Iris-Pro-Graphics-P580-Mobile.yaml | 29 +++ .../Iris-Pro-Graphics-P580.yaml | 29 +++ specs/GPUs-CONSUMER/Generation-9.5.yaml | 35 +++ .../HD-Graphics-610-Mobile.yaml | 29 +++ .../Generation-9.5/HD-Graphics-610.yaml | 29 +++ .../HD-Graphics-615-Mobile.yaml | 29 +++ .../HD-Graphics-620-Mobile.yaml | 29 +++ .../HD-Graphics-630-Mobile.yaml | 29 +++ .../Generation-9.5/HD-Graphics-630.yaml | 29 +++ .../HD-Graphics-P630-Mobile.yaml | 29 +++ .../Iris-Plus-Graphics-640-Mobile.yaml | 29 +++ .../Iris-Plus-Graphics-645-Mobile.yaml | 29 +++ .../Iris-Plus-Graphics-650-Mobile.yaml | 29 +++ .../Iris-Plus-Graphics-655-Mobile.yaml | 29 +++ .../UHD-Graphics-600-Mobile.yaml | 29 +++ .../UHD-Graphics-605-Mobile.yaml | 29 +++ .../UHD-Graphics-610-Mobile.yaml | 29 +++ .../Generation-9.5/UHD-Graphics-610.yaml | 29 +++ .../UHD-Graphics-615-Mobile.yaml | 29 +++ .../UHD-Graphics-617-Mobile.yaml | 29 +++ .../UHD-Graphics-620-Mobile.yaml | 29 +++ .../UHD-Graphics-630-Mobile.yaml | 29 +++ .../Generation-9.5/UHD-Graphics-630.yaml | 29 +++ .../UHD-Graphics-P630-Mobile.yaml | 29 +++ .../Generation-9.5/UHD-Graphics-P630.yaml | 29 +++ specs/GPUs-CONSUMER/HD4000.yaml | 44 ---- specs/GPUs-CONSUMER/HD4000/HD4250.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4350.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4520.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4550.yaml | 22 -- .../GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml | 21 -- specs/GPUs-CONSUMER/HD4000/HD4570.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4650.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4670.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4700.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4710.yaml | 22 -- specs/GPUs-CONSUMER/HD4000/HD4730.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4750.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4770.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4810.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4830.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4850.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4855.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4860.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4870.yaml | 23 -- specs/GPUs-CONSUMER/HD4000/HD4890.yaml | 23 -- specs/GPUs-CONSUMER/HD5000.yaml | 52 ----- .../HD5000/HD5450-1GiB-DDR2.yaml | 23 -- .../HD5000/HD5450-1GiB-DDR3.yaml | 24 -- .../HD5000/HD5450-2GiB-DDR3.yaml | 23 -- .../HD5000/HD5450-512MiB-DDR2.yaml | 23 -- .../HD5000/HD5450-512MiB-DDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5470.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5490.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5530.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5550.yaml | 23 -- .../HD5000/HD5570-2GiB-GDDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5570.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5610.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5630.yaml | 23 -- .../HD5000/HD5670-1GiB-GDDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml | 23 -- .../HD5000/HD5670-2GiB-GDDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml | 23 -- .../HD5000/HD5670-512MiB-GDDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5690.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5730.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml | 22 -- specs/GPUs-CONSUMER/HD5000/HD5830.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml | 23 -- .../HD5000/HD5870-Eyefinity-6.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000.yaml | 38 ---- specs/GPUs-CONSUMER/HD6000/HD6350.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml | 23 -- .../HD6000/HD6450-512MiB-DDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6570.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml | 23 -- .../HD6000/HD6670-512MiB-DDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6790.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6850.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml | 22 -- specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6970.yaml | 23 -- specs/GPUs-CONSUMER/HD6000/HD6990.yaml | 23 -- specs/GPUs-CONSUMER/HD7000.yaml | 42 ---- specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7730.yaml | 24 -- .../GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml | 24 -- .../GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml | 24 -- .../GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7870.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7950.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml | 23 -- specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml | 23 -- .../GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml | 24 -- .../GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml | 24 -- specs/GPUs-CONSUMER/HD7000/HD7990.yaml | 24 -- specs/GPUs-CONSUMER/HD8000.yaml | 34 --- specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml | 22 -- specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml | 22 -- specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml | 22 -- specs/GPUs-CONSUMER/HD8000/HD8470.yaml | 22 -- specs/GPUs-CONSUMER/HD8000/HD8490.yaml | 22 -- specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml | 23 -- specs/GPUs-CONSUMER/HD8000/HD8570.yaml | 23 -- specs/GPUs-CONSUMER/HD8000/HD8670.yaml | 24 -- specs/GPUs-CONSUMER/HD8000/HD8730.yaml | 23 -- specs/GPUs-CONSUMER/HD8000/HD8760.yaml | 23 -- specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml | 23 -- specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml | 24 -- specs/GPUs-CONSUMER/HD8000/HD8950.yaml | 24 -- specs/GPUs-CONSUMER/HD8000/HD8970.yaml | 24 -- specs/GPUs-CONSUMER/HD8000/HD8990.yaml | 24 -- specs/GPUs-CONSUMER/Hopper.yaml | 21 ++ specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml | 33 +++ .../GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml | 33 +++ .../GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml | 33 +++ .../GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml | 31 +++ .../GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml | 31 +++ .../GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml | 31 +++ .../GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml | 33 +++ specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml | 31 +++ specs/GPUs-CONSUMER/IBM.yaml | 17 ++ specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml | 25 +++ specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml | 27 +++ specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml | 27 +++ specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml | 27 +++ specs/GPUs-CONSUMER/Kelvin.yaml | 29 +++ .../GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml | 29 +++ .../GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml | 29 +++ specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml | 27 +++ .../Kelvin/GeForce4-Go-4200.yaml | 25 +++ .../Kelvin/GeForce4-Ti-4200-8X.yaml | 28 +++ .../Kelvin/GeForce4-Ti-4200.yaml | 26 +++ .../Kelvin/GeForce4-Ti-4400.yaml | 28 +++ .../Kelvin/GeForce4-Ti-4600.yaml | 29 +++ .../Kelvin/GeForce4-Ti-4800.yaml | 29 +++ specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml | 28 +++ .../Kelvin/Quadro4-700-Go-GL.yaml | 25 +++ .../GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml | 28 +++ .../GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml | 28 +++ .../GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml | 28 +++ .../GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml | 28 +++ specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler-2.0.yaml | 34 +++ .../Kepler-2.0/GeForce-710A.yaml | 28 +++ .../Kepler-2.0/GeForce-805A.yaml | 30 +++ .../Kepler-2.0/GeForce-810A.yaml | 30 +++ .../Kepler-2.0/GeForce-825M.yaml | 30 +++ .../Kepler-2.0/GeForce-910M.yaml | 31 +++ .../Kepler-2.0/GeForce-920A.yaml | 31 +++ .../Kepler-2.0/GeForce-920M.yaml | 31 +++ .../GeForce-GT-630-Rev.-2-PCIe-x8.yaml | 32 +++ .../Kepler-2.0/GeForce-GT-630-Rev.-2.yaml | 32 +++ .../Kepler-2.0/GeForce-GT-635-OEM.yaml | 31 +++ .../Kepler-2.0/GeForce-GT-640-Rev.-2.yaml | 32 +++ .../Kepler-2.0/GeForce-GT-710-OEM.yaml | 28 +++ .../Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml | 33 +++ .../Kepler-2.0/GeForce-GT-710.yaml | 31 +++ .../Kepler-2.0/GeForce-GT-720.yaml | 32 +++ .../Kepler-2.0/GeForce-GT-730A.yaml | 31 +++ .../Kepler-2.0/GeForce-GT-735M.yaml | 31 +++ .../GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml | 32 +++ .../Kepler-2.0/Quadro-K510M.yaml | 30 +++ .../Kepler-2.0/Quadro-K610M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml | 32 +++ specs/GPUs-CONSUMER/Kepler.yaml | 138 ++++++++++++ specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml | 27 +++ specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml | 30 +++ .../Kepler/GeForce-GT-1030-GK107.yaml | 31 +++ .../Kepler/GeForce-GT-630-OEM.yaml | 32 +++ .../Kepler/GeForce-GT-640-OEM.yaml | 32 +++ .../Kepler/GeForce-GT-640M-Mac-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml | 31 +++ .../Kepler/GeForce-GT-650M-Mac-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml | 31 +++ .../Kepler/GeForce-GT-720-OEM.yaml | 31 +++ .../Kepler/GeForce-GT-730-OEM.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml | 31 +++ .../Kepler/GeForce-GT-740-OEM.yaml | 30 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml | 32 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml | 31 +++ .../Kepler/GeForce-GT-750M-Mac-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml | 31 +++ .../Kepler/GeForce-GT-755M-Mac-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml | 31 +++ .../Kepler/GeForce-GTX-645-OEM.yaml | 32 +++ .../Kepler/GeForce-GTX-650-Ti-Boost.yaml | 34 +++ .../Kepler/GeForce-GTX-650-Ti-OEM.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml | 31 +++ .../Kepler/GeForce-GTX-660-OEM.yaml | 34 +++ .../Kepler/GeForce-GTX-660-Ti.yaml | 34 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml | 34 +++ .../Kepler/GeForce-GTX-660M-Mac-Edition.yaml | 30 +++ .../Kepler/GeForce-GTX-660M.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml | 36 +++ .../Kepler/GeForce-GTX-670MX.yaml | 30 +++ .../Kepler/GeForce-GTX-675MX-Mac-Edition.yaml | 31 +++ .../Kepler/GeForce-GTX-675MX.yaml | 29 +++ .../Kepler/GeForce-GTX-680-Mac-Edition.yaml | 36 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml | 36 +++ .../Kepler/GeForce-GTX-680M.yaml | 31 +++ .../Kepler/GeForce-GTX-680MX-Mac-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml | 36 +++ .../Kepler/GeForce-GTX-750-Ti-OEM.yaml | 30 +++ .../Kepler/GeForce-GTX-760-OEM-Rebrand.yaml | 34 +++ .../Kepler/GeForce-GTX-760-OEM.yaml | 33 +++ .../GeForce-GTX-760-Ti-OEM-Rebrand.yaml | 34 +++ .../Kepler/GeForce-GTX-760-Ti-OEM.yaml | 33 +++ .../Kepler/GeForce-GTX-760-X2.yaml | 34 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml | 34 +++ .../Kepler/GeForce-GTX-760A.yaml | 31 +++ .../Kepler/GeForce-GTX-760M.yaml | 31 +++ .../Kepler/GeForce-GTX-765M.yaml | 31 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml | 36 +++ .../Kepler/GeForce-GTX-770M.yaml | 31 +++ .../Kepler/GeForce-GTX-775M-Mac-Edition.yaml | 31 +++ .../Kepler/GeForce-GTX-780-6-GB.yaml | 36 +++ .../Kepler/GeForce-GTX-780-Rev.-2.yaml | 36 +++ .../Kepler/GeForce-GTX-780-Ti-6-GB.yaml | 35 +++ .../Kepler/GeForce-GTX-780-Ti.yaml | 36 +++ .../GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml | 36 +++ .../Kepler/GeForce-GTX-780M-Mac-Edition.yaml | 31 +++ .../Kepler/GeForce-GTX-780M.yaml | 31 +++ .../Kepler/GeForce-GTX-870M.yaml | 31 +++ .../Kepler/GeForce-GTX-880M.yaml | 31 +++ .../Kepler/GeForce-GTX-TITAN-BLACK.yaml | 36 +++ .../Kepler/GeForce-GTX-TITAN-Z.yaml | 36 +++ .../Kepler/GeForce-GTX-TITAN.yaml | 36 +++ specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/NVS-510.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml | 33 +++ specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml | 33 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml | 33 +++ .../Kepler/Quadro-K2000M-Embedded.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml | 33 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml | 33 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml | 35 +++ .../Kepler/Quadro-K5000-Mac-Edition.yaml | 32 +++ .../Kepler/Quadro-K5000-SYNC.yaml | 33 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml | 32 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml | 31 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml | 34 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml | 33 +++ .../Kepler/Quadro-K6000-SDI.yaml | 32 +++ specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml | 35 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml | 29 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml | 32 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml | 28 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml | 30 +++ specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml | 31 +++ specs/GPUs-CONSUMER/Knights.yaml | 20 ++ specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml | 29 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml | 26 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml | 26 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml | 26 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml | 28 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml | 28 +++ .../GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml | 26 +++ specs/GPUs-CONSUMER/MP.yaml | 17 ++ specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml | 26 +++ specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml | 27 +++ specs/GPUs-CONSUMER/MP/QID-PRO.yaml | 26 +++ specs/GPUs-CONSUMER/MP/QID.yaml | 26 +++ specs/GPUs-CONSUMER/Mach.yaml | 35 +++ specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml | 25 +++ specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml | 25 +++ specs/GPUs-CONSUMER/Mach/3D-Rage.yaml | 25 +++ specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml | 25 +++ .../Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml | 25 +++ .../Mach/Graphics-Pro-Turbo.yaml | 24 ++ .../Mach/Graphics-Ultra-Pro-ISA.yaml | 24 ++ .../Mach/Graphics-Ultra-Pro-PCI.yaml | 24 ++ .../Mach/Graphics-Ultra-Pro-VLB.yaml | 24 ++ .../Mach/Graphics-Ultra-XLR-VLB.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml | 25 +++ .../GPUs-CONSUMER/Mach/Graphics-Vantage.yaml | 24 ++ .../Mach/Graphics-Wonder-PCI.yaml | 24 ++ .../Mach/Graphics-Wonder-VLB.yaml | 24 ++ .../Mach/Graphics-Xpression-ISA.yaml | 24 ++ .../Mach/Graphics-Xpression.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml | 26 +++ .../GPUs-CONSUMER/Mach/Video-Xpression+.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/WinBoost.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/WinCharger.yaml | 24 ++ specs/GPUs-CONSUMER/Mach/WinTurbo.yaml | 24 ++ specs/GPUs-CONSUMER/Maxwell-2.0.yaml | 54 +++++ .../GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml | 29 +++ .../Maxwell-2.0/GRID-M60-1Q.yaml | 31 +++ .../Maxwell-2.0/GRID-M60-2Q.yaml | 31 +++ .../Maxwell-2.0/GRID-M60-4A.yaml | 31 +++ .../Maxwell-2.0/GRID-M60-8Q.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-750-GM206.yaml | 31 +++ .../GeForce-GTX-950-Low-Power.yaml | 35 +++ .../Maxwell-2.0/GeForce-GTX-950-OEM.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-950.yaml | 35 +++ .../Maxwell-2.0/GeForce-GTX-960-OEM.yaml | 34 +++ .../Maxwell-2.0/GeForce-GTX-960.yaml | 35 +++ .../Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml | 30 +++ .../Maxwell-2.0/GeForce-GTX-965M.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-970.yaml | 37 +++ .../Maxwell-2.0/GeForce-GTX-970M.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-980-Mobile.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-980-Ti.yaml | 37 +++ .../Maxwell-2.0/GeForce-GTX-980.yaml | 37 +++ .../Maxwell-2.0/GeForce-GTX-980M.yaml | 31 +++ .../Maxwell-2.0/GeForce-GTX-TITAN-X.yaml | 37 +++ .../Maxwell-2.0/Jetson-Nano.yaml | 32 +++ .../GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml | 28 +++ .../Maxwell-2.0/Quadro-M2000.yaml | 33 +++ .../Maxwell-2.0/Quadro-M2200-Mobile.yaml | 30 +++ .../Maxwell-2.0/Quadro-M3000-SE.yaml | 30 +++ .../Maxwell-2.0/Quadro-M3000M.yaml | 31 +++ .../Maxwell-2.0/Quadro-M4000.yaml | 31 +++ .../Maxwell-2.0/Quadro-M4000M.yaml | 31 +++ .../Maxwell-2.0/Quadro-M5000.yaml | 35 +++ .../Maxwell-2.0/Quadro-M5000M.yaml | 31 +++ .../Maxwell-2.0/Quadro-M5500-Mobile.yaml | 30 +++ .../Maxwell-2.0/Quadro-M6000-24-GB.yaml | 35 +++ .../Maxwell-2.0/Quadro-M6000.yaml | 34 +++ .../Maxwell-2.0/Switch-GPU-16nm.yaml | 32 +++ .../Maxwell-2.0/Switch-GPU-20nm.yaml | 32 +++ specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml | 29 +++ .../Maxwell-2.0/Tesla-M40-24-GB.yaml | 32 +++ .../GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml | 32 +++ .../Maxwell-2.0/Tesla-M6-Mobile.yaml | 31 +++ .../Maxwell-2.0/Tesla-M6-X2-Mobile.yaml | 31 +++ .../GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell.yaml | 56 +++++ specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml | 32 +++ specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml | 27 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml | 30 +++ .../GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml | 31 +++ .../GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml | 30 +++ .../Maxwell/GeForce-GTX-745-OEM.yaml | 32 +++ .../Maxwell/GeForce-GTX-750-Ti.yaml | 34 +++ .../Maxwell/GeForce-GTX-750.yaml | 34 +++ .../Maxwell/GeForce-GTX-850A.yaml | 30 +++ .../Maxwell/GeForce-GTX-850M.yaml | 29 +++ .../Maxwell/GeForce-GTX-860M-OEM.yaml | 31 +++ .../Maxwell/GeForce-GTX-860M.yaml | 31 +++ .../Maxwell/GeForce-GTX-950A.yaml | 31 +++ .../Maxwell/GeForce-GTX-950M-Mac-Edition.yaml | 31 +++ .../Maxwell/GeForce-GTX-950M.yaml | 31 +++ .../Maxwell/GeForce-GTX-960M.yaml | 31 +++ .../GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml | 31 +++ .../GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml | 33 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml | 34 +++ .../GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml | 35 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml | 31 +++ .../GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml | 31 +++ .../Maxwell/Quadro-M1200-Mobile.yaml | 30 +++ .../GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml | 31 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml | 31 +++ .../Maxwell/Quadro-M520-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml | 30 +++ .../Maxwell/Quadro-M620-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml | 32 +++ specs/GPUs-CONSUMER/PX.yaml | 14 ++ specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml | 28 +++ specs/GPUs-CONSUMER/Parhelia.yaml | 25 +++ .../Parhelia/Millenium-P650-LP-MDD-PCIe.yaml | 26 +++ .../Parhelia/Millenium-P650-PCIe.yaml | 26 +++ .../Parhelia/Millenium-P650.yaml | 26 +++ .../Parhelia/Millenium-P750.yaml | 25 +++ .../Parhelia/Parhelia-128-MB.yaml | 27 +++ .../Parhelia/Parhelia-256-MB.yaml | 27 +++ .../GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml | 28 +++ .../Parhelia/Parhelia-DL256.yaml | 26 +++ .../Parhelia/Parhelia-HR256.yaml | 26 +++ .../GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml | 26 +++ .../Parhelia/Parhelia-Precision-SDT.yaml | 26 +++ .../Parhelia/Parhelia-Precision-SGT.yaml | 26 +++ specs/GPUs-CONSUMER/Pascal.yaml | 99 +++++++++ .../Pascal/GeForce-GT-1010-DDR4.yaml | 34 +++ .../GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml | 34 +++ .../Pascal/GeForce-GT-1030-DDR4.yaml | 36 +++ .../GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml | 36 +++ .../Pascal/GeForce-GTX-1050-3-GB.yaml | 36 +++ .../Pascal/GeForce-GTX-1050-Max-Q.yaml | 31 +++ .../Pascal/GeForce-GTX-1050-Mobile.yaml | 30 +++ .../Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml | 30 +++ .../Pascal/GeForce-GTX-1050-Ti-Mobile.yaml | 29 +++ .../Pascal/GeForce-GTX-1050-Ti.yaml | 36 +++ .../Pascal/GeForce-GTX-1050.yaml | 36 +++ .../Pascal/GeForce-GTX-1060-3-GB-GP104.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-3-GB.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-5-GB.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-6-GB-GP104.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-6-GB.yaml | 36 +++ .../Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml | 35 +++ .../Pascal/GeForce-GTX-1060-Max-Q.yaml | 31 +++ .../Pascal/GeForce-GTX-1060-Mobile.yaml | 31 +++ .../Pascal/GeForce-GTX-1070-GDDR5X.yaml | 37 +++ .../Pascal/GeForce-GTX-1070-Max-Q.yaml | 31 +++ .../Pascal/GeForce-GTX-1070-Mobile.yaml | 31 +++ .../Pascal/GeForce-GTX-1070-Ti.yaml | 37 +++ .../Pascal/GeForce-GTX-1070.yaml | 37 +++ .../Pascal/GeForce-GTX-1080-11Gbps.yaml | 37 +++ .../Pascal/GeForce-GTX-1080-Max-Q.yaml | 31 +++ .../Pascal/GeForce-GTX-1080-Mobile.yaml | 31 +++ .../Pascal/GeForce-GTX-1080-Ti-10-GB.yaml | 35 +++ .../Pascal/GeForce-GTX-1080-Ti-12-GB.yaml | 35 +++ .../Pascal/GeForce-GTX-1080-Ti.yaml | 36 +++ .../Pascal/GeForce-GTX-1080.yaml | 37 +++ .../Pascal/GeForce-MX150-GP107.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/P102-100.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P102-101.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P104-100.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P104-101.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P106-090.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P106-100.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/P106M.yaml | 29 +++ specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml | 35 +++ .../Pascal/Quadro-P1000-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml | 32 +++ .../Pascal/Quadro-P2000-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml | 33 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml | 32 +++ .../Pascal/Quadro-P3000-Mobile.yaml | 31 +++ .../Pascal/Quadro-P3200-Max-Q.yaml | 30 +++ .../Pascal/Quadro-P3200-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml | 33 +++ .../Pascal/Quadro-P4000-Max-Q.yaml | 31 +++ .../Pascal/Quadro-P4000-Mobile.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml | 33 +++ .../Pascal/Quadro-P4200-Max-Q.yaml | 30 +++ .../Pascal/Quadro-P4200-Mobile.yaml | 30 +++ .../Pascal/Quadro-P500-Mobile.yaml | 29 +++ .../Pascal/Quadro-P5000-Mobile.yaml | 31 +++ .../Pascal/Quadro-P5000-X2-Mobile.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml | 35 +++ .../Pascal/Quadro-P520-Max-Q.yaml | 29 +++ .../Pascal/Quadro-P520-Mobile.yaml | 29 +++ .../Pascal/Quadro-P5200-Max-Q.yaml | 30 +++ .../Pascal/Quadro-P5200-Mobile.yaml | 30 +++ .../Pascal/Quadro-P600-Mobile.yaml | 29 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml | 35 +++ .../Pascal/Quadro-P620-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml | 32 +++ .../GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml | 37 +++ specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml | 36 +++ specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml | 32 +++ .../GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml | 29 +++ .../Pascal/Tesla-P100-PCIe-12-GB.yaml | 32 +++ .../Pascal/Tesla-P100-PCIe-16-GB.yaml | 32 +++ .../GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml | 31 +++ specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml | 32 +++ specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml | 32 +++ .../GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml | 31 +++ specs/GPUs-CONSUMER/PowerVR-SGX535.yaml | 15 ++ .../GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml | 26 +++ .../GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml | 26 +++ specs/GPUs-CONSUMER/PowerVR-SGX545.yaml | 15 ++ .../PowerVR-SGX545/GMA-3650.yaml | 26 +++ specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml | 24 ++ specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml | 14 ++ .../Playstation-Vita-GPU.yaml | 27 +++ specs/GPUs-CONSUMER/R-200.yaml | 32 --- specs/GPUs-CONSUMER/R-200/R7-260.yaml | 22 -- specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml | 23 -- specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/R-200/R9-270.yaml | 24 -- specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml | 24 -- specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml | 24 -- specs/GPUs-CONSUMER/R-200/R9-280.yaml | 24 -- specs/GPUs-CONSUMER/R-200/R9-280X.yaml | 24 -- specs/GPUs-CONSUMER/R-200/R9-285.yaml | 22 -- specs/GPUs-CONSUMER/R-200/R9-290-base.yaml | 10 - specs/GPUs-CONSUMER/R-200/R9-290.yaml | 18 -- specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml | 8 - specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml | 8 - specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml | 15 -- specs/GPUs-CONSUMER/R-200/R9-295X2.yaml | 18 -- specs/GPUs-CONSUMER/R-300.yaml | 33 --- specs/GPUs-CONSUMER/R-300/R7-360.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml | 8 - specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml | 8 - specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml | 20 -- specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml | 8 - specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml | 8 - specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml | 20 -- specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-380X.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-390.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-390X.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-Fury.yaml | 23 -- specs/GPUs-CONSUMER/R-300/R9-Nano.yaml | 23 -- specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml | 23 -- specs/GPUs-CONSUMER/R300.yaml | 90 ++++++++ .../R300/All-In-Wonder-2006-AGP-Edition.yaml | 26 +++ .../R300/All-In-Wonder-9500.yaml | 26 +++ .../R300/All-In-Wonder-9600-PRO.yaml | 25 +++ .../R300/All-In-Wonder-9600-XT.yaml | 26 +++ .../R300/All-In-Wonder-9600.yaml | 25 +++ .../R300/All-In-Wonder-9700-PRO.yaml | 28 +++ .../R300/All-In-Wonder-9800-PRO.yaml | 28 +++ .../R300/All-In-Wonder-9800-SE.yaml | 28 +++ .../R300/All-In-Wonder-X600-PRO.yaml | 28 +++ .../R300/FireGL-9500-Z1-128.yaml | 26 +++ .../R300/FireGL-9600-T2-128.yaml | 28 +++ .../R300/FireGL-9600-T2-64S.yaml | 26 +++ .../R300/FireGL-9700-X1-128.yaml | 26 +++ .../R300/FireGL-9700-X1-256.yaml | 26 +++ .../R300/FireGL-9700-X1-256p.yaml | 28 +++ .../R300/FireGL-9800-X2-256.yaml | 28 +++ .../R300/FireGL-9800-X2-256T.yaml | 26 +++ specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml | 28 +++ specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml | 26 +++ specs/GPUs-CONSUMER/R300/FireMV-2200.yaml | 27 +++ specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml | 27 +++ .../R300/FireMV-2400-PCIe-x1.yaml | 27 +++ .../R300/Mobility-FireGL-T2.yaml | 24 ++ .../R300/Mobility-FireGL-T2e.yaml | 24 ++ .../R300/Mobility-FireGL-V3100.yaml | 24 ++ .../R300/Mobility-FireGL-V3200.yaml | 24 ++ .../R300/Mobility-Radeon-9500.yaml | 23 ++ .../R300/Mobility-Radeon-9550.yaml | 24 ++ .../R300/Mobility-Radeon-9600-PRO-Turbo.yaml | 23 ++ .../R300/Mobility-Radeon-9600-PRO.yaml | 23 ++ .../R300/Mobility-Radeon-9600.yaml | 23 ++ .../R300/Mobility-Radeon-9700-SE.yaml | 23 ++ .../R300/Mobility-Radeon-9700.yaml | 24 ++ .../R300/Mobility-Radeon-X300-IGP.yaml | 26 +++ .../R300/Mobility-Radeon-X300.yaml | 24 ++ .../R300/Mobility-Radeon-X600-SE.yaml | 24 ++ .../R300/Mobility-Radeon-X600.yaml | 24 ++ specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9500.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml | 27 +++ specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9550.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml | 26 +++ specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9600.yaml | 28 +++ .../R300/Radeon-9700-PRO-X4.yaml | 25 +++ specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9700.yaml | 28 +++ .../R300/Radeon-9800-PRO-MAXX.yaml | 28 +++ .../R300/Radeon-9800-PRO-Mac-Edition.yaml | 26 +++ specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml | 31 +++ specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml | 28 +++ .../R300/Radeon-9800-XT-Mac-Edition.yaml | 26 +++ specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml | 26 +++ specs/GPUs-CONSUMER/R300/Radeon-9800.yaml | 28 +++ .../GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml | 27 +++ .../R300/Radeon-X300-SE-HyperMemory.yaml | 26 +++ specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X300.yaml | 27 +++ .../R300/Radeon-X550-HyperMemory.yaml | 27 +++ specs/GPUs-CONSUMER/R300/Radeon-X550.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R300/Radeon-X600.yaml | 27 +++ .../R300/Radeon-Xpress--200M-IGP.yaml | 26 +++ .../R300/Radeon-Xpress-1100-IGP.yaml | 25 +++ .../R300/Radeon-Xpress-1100-Mobile-IGP.yaml | 26 +++ .../R300/Radeon-Xpress-1150-IGP.yaml | 25 +++ .../R300/Radeon-Xpress-1150-Mobile-IGP.yaml | 26 +++ .../R300/Radeon-Xpress-200-IGP.yaml | 25 +++ .../R300/Radeon-Xpress-200M-IGP.yaml | 26 +++ specs/GPUs-CONSUMER/R400.yaml | 70 ++++++ .../R400/All-In-Wonder-X800-GT.yaml | 26 +++ .../R400/All-In-Wonder-X800-SE.yaml | 26 +++ .../R400/All-In-Wonder-X800-VE.yaml | 26 +++ .../R400/All-In-Wonder-X800-XL.yaml | 26 +++ .../R400/All-In-Wonder-X800-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml | 30 +++ specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml | 30 +++ specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml | 30 +++ specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml | 28 +++ .../R400/Mobility-FireGL-V5000.yaml | 24 ++ .../R400/Mobility-Radeon-9800.yaml | 24 ++ .../R400/Mobility-Radeon-X700-XL.yaml | 24 ++ .../R400/Mobility-Radeon-X700.yaml | 24 ++ .../R400/Mobility-Radeon-X800-XT.yaml | 24 ++ .../R400/Mobility-Radeon-X800.yaml | 24 ++ specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml | 25 +++ specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml | 27 +++ specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml | 27 +++ specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml | 27 +++ specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml | 28 +++ .../R400/Radeon-X700-PRO-AGP.yaml | 27 +++ specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml | 31 +++ specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X700.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml | 27 +++ .../R400/Radeon-X800-CrossFire-Edition.yaml | 26 +++ .../R400/Radeon-X800-GT-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml | 28 +++ .../R400/Radeon-X800-GTO-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml | 28 +++ .../GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml | 28 +++ .../R400/Radeon-X800-PRO-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml | 28 +++ .../R400/Radeon-X800-SE-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml | 28 +++ .../R400/Radeon-X800-VE-AGP.yaml | 28 +++ .../R400/Radeon-X800-XL-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml | 28 +++ .../R400/Radeon-X800-XT-AGP.yaml | 28 +++ .../R400/Radeon-X800-XT-Mac-Edition.yaml | 26 +++ .../R400/Radeon-X800-XT-Platinum-AGP.yaml | 28 +++ .../R400/Radeon-X800-XT-Platinum.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X800.yaml | 28 +++ .../R400/Radeon-X850-CrossFire-Edition.yaml | 28 +++ .../R400/Radeon-X850-PRO-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml | 28 +++ .../R400/Radeon-X850-XT-AGP.yaml | 28 +++ .../R400/Radeon-X850-XT-Platinum-AGP.yaml | 31 +++ .../R400/Radeon-X850-XT-Platinum.yaml | 31 +++ specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml | 28 +++ .../R400/Radeon-Xpress-1200-IGP.yaml | 25 +++ .../R400/Radeon-Xpress-1200-Mobile-IGP.yaml | 26 +++ .../R400/Radeon-Xpress-1250-IGP.yaml | 25 +++ .../R400/Radeon-Xpress-1250-Mobile-IGP.yaml | 26 +++ .../R400/Radeon-Xpress-1270-Mobile-IGP.yaml | 26 +++ specs/GPUs-CONSUMER/RDNA-1.0.yaml | 41 ++++ .../RDNA-1.0/Radeon-Pro-5300.yaml | 31 +++ .../RDNA-1.0/Radeon-Pro-5300M.yaml | 30 +++ .../RDNA-1.0/Radeon-Pro-5500-XT.yaml | 31 +++ .../RDNA-1.0/Radeon-Pro-5500M.yaml | 30 +++ .../RDNA-1.0/Radeon-Pro-5600M.yaml | 31 +++ .../RDNA-1.0/Radeon-Pro-5700-XT.yaml | 31 +++ .../RDNA-1.0/Radeon-Pro-5700.yaml | 31 +++ .../RDNA-1.0/Radeon-Pro-V520.yaml | 33 +++ .../RDNA-1.0/Radeon-Pro-V540.yaml | 33 +++ .../RDNA-1.0/Radeon-Pro-W5300M.yaml | 30 +++ .../RDNA-1.0/Radeon-Pro-W5500.yaml | 33 +++ .../RDNA-1.0/Radeon-Pro-W5500M.yaml | 30 +++ .../RDNA-1.0/Radeon-Pro-W5500X.yaml | 30 +++ .../RDNA-1.0/Radeon-Pro-W5700.yaml | 32 +++ .../RDNA-1.0/Radeon-Pro-W5700X.yaml | 30 +++ .../RDNA-1.0/Radeon-RX-5300-OEM.yaml | 32 +++ .../RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml | 32 +++ .../RDNA-1.0/Radeon-RX-5300M.yaml | 30 +++ .../RDNA-1.0/Radeon-RX-5500-OEM.yaml | 33 +++ .../RDNA-1.0/Radeon-RX-5500-XT.yaml | 32 +++ .../RDNA-1.0/Radeon-RX-5500M.yaml | 30 +++ .../RDNA-1.0/Radeon-RX-5600-OEM.yaml | 31 +++ .../RDNA-1.0/Radeon-RX-5600-XT.yaml | 32 +++ .../RDNA-1.0/Radeon-RX-5600M.yaml | 31 +++ .../Radeon-RX-5700-XT-50th-Anniversary.yaml | 34 +++ .../RDNA-1.0/Radeon-RX-5700-XT.yaml | 34 +++ .../RDNA-1.0/Radeon-RX-5700.yaml | 34 +++ .../RDNA-1.0/Radeon-RX-5700M.yaml | 30 +++ specs/GPUs-CONSUMER/RDNA-2.0.yaml | 64 ++++++ .../RDNA-2.0/Playstation-5-GPU.yaml | 31 +++ specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml | 31 +++ specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml | 31 +++ specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml | 31 +++ .../RDNA-2.0/Radeon-Graphics-128SP.yaml | 31 +++ .../RDNA-2.0/Radeon-PRO-V620.yaml | 35 +++ .../RDNA-2.0/Radeon-PRO-W6300.yaml | 32 +++ .../RDNA-2.0/Radeon-PRO-W6400.yaml | 32 +++ .../RDNA-2.0/Radeon-PRO-W6600.yaml | 33 +++ .../RDNA-2.0/Radeon-PRO-W6800.yaml | 35 +++ .../RDNA-2.0/Radeon-Pro-W6300M.yaml | 32 +++ .../RDNA-2.0/Radeon-Pro-W6500M.yaml | 32 +++ .../RDNA-2.0/Radeon-Pro-W6600M.yaml | 32 +++ .../RDNA-2.0/Radeon-Pro-W6600X.yaml | 30 +++ .../RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml | 35 +++ .../RDNA-2.0/Radeon-Pro-W6800X.yaml | 36 +++ .../RDNA-2.0/Radeon-Pro-W6900X.yaml | 34 +++ .../RDNA-2.0/Radeon-RX-6300.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6300M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6400.yaml | 34 +++ .../RDNA-2.0/Radeon-RX-6450M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6500-XT.yaml | 34 +++ .../RDNA-2.0/Radeon-RX-6500M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6550M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6550S.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6600-XT.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6600.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6600M.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6600S.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6650-XT.yaml | 34 +++ .../RDNA-2.0/Radeon-RX-6650M-XT.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6650M.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6700-XT.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6700.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6700M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6700S.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6750-XT.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6800-XT.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6800.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6800M.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6800S.yaml | 31 +++ .../RDNA-2.0/Radeon-RX-6850M-XT.yaml | 32 +++ .../RDNA-2.0/Radeon-RX-6900-XT.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6900-XTX.yaml | 37 +++ .../RDNA-2.0/Radeon-RX-6950-XT.yaml | 37 +++ .../RDNA-2.0/Steam-Deck-GPU.yaml | 33 +++ .../RDNA-2.0/Steam-Deck-OLED-GPU.yaml | 32 +++ .../RDNA-2.0/Xbox-Series-S-GPU.yaml | 29 +++ .../RDNA-2.0/Xbox-Series-X-GPU.yaml | 29 +++ specs/GPUs-CONSUMER/RDNA-3.0.yaml | 40 ++++ .../RDNA-3.0/ROG-Ally-Extreme-GPU.yaml | 33 +++ .../GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml | 33 +++ specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml | 31 +++ specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml | 31 +++ specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml | 31 +++ .../RDNA-3.0/Radeon-PRO-W7500.yaml | 35 +++ .../RDNA-3.0/Radeon-PRO-W7600.yaml | 35 +++ .../RDNA-3.0/Radeon-PRO-W7700.yaml | 35 +++ .../RDNA-3.0/Radeon-PRO-W7800.yaml | 38 ++++ .../RDNA-3.0/Radeon-PRO-W7900.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7500-XT.yaml | 35 +++ .../RDNA-3.0/Radeon-RX-7600-XT.yaml | 35 +++ .../RDNA-3.0/Radeon-RX-7600.yaml | 35 +++ .../RDNA-3.0/Radeon-RX-7600M-XT.yaml | 33 +++ .../RDNA-3.0/Radeon-RX-7600M.yaml | 33 +++ .../RDNA-3.0/Radeon-RX-7600S.yaml | 33 +++ .../RDNA-3.0/Radeon-RX-7700-XT.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7700.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7700S.yaml | 33 +++ .../RDNA-3.0/Radeon-RX-7800-XT.yaml | 36 +++ .../RDNA-3.0/Radeon-RX-7900-GRE.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7900-XT.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7900-XTX.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7900M.yaml | 33 +++ .../RDNA-3.0/Radeon-RX-7950-XT.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7950-XTX.yaml | 38 ++++ .../RDNA-3.0/Radeon-RX-7990-XTX.yaml | 38 ++++ specs/GPUs-CONSUMER/RX-400.yaml | 24 -- specs/GPUs-CONSUMER/RX-400/RX-450.yaml | 23 -- specs/GPUs-CONSUMER/RX-400/RX-455.yaml | 23 -- specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml | 8 - specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml | 8 - specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml | 21 -- specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml | 8 - specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml | 8 - specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml | 21 -- specs/GPUs-CONSUMER/RX-400/RX-470D.yaml | 24 -- specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml | 10 - specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml | 10 - specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml | 19 -- specs/GPUs-CONSUMER/RX-500.yaml | 23 -- specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml | 24 -- specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml | 24 -- specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml | 24 -- specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml | 24 -- specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml | 19 -- .../GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml | 10 - specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml | 19 -- specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml | 19 -- specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml | 19 -- specs/GPUs-CONSUMER/RX-Vega.yaml | 18 -- specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml | 17 -- .../RX-Vega/RX-Vega-64-Liquid.yaml | 17 -- specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml | 17 -- specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml | 10 - specs/GPUs-CONSUMER/Radeon-VII.yaml | 14 -- .../GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml | 21 -- specs/GPUs-CONSUMER/Rage-2.yaml | 15 ++ .../GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml | 25 +++ .../GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml | 25 +++ specs/GPUs-CONSUMER/Rage-3.yaml | 18 ++ .../GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml | 25 +++ .../GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml | 25 +++ .../Rage-3/Rage-PRO-Turbo-AGP.yaml | 28 +++ .../Rage-3/Rage-PRO-Turbo-PCI.yaml | 25 +++ specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-4.yaml | 35 +++ .../Rage-4/All-In-Wonder-128-PCI.yaml | 26 +++ .../Rage-4/All-In-Wonder-128-PRO-Ultra.yaml | 25 +++ .../Rage-4/All-In-Wonder-128-PRO.yaml | 26 +++ .../Rage-4/All-In-Wonder-128.yaml | 25 +++ .../GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml | 26 +++ .../Rage-4/Rage-128-PRO-Ultra-GL.yaml | 26 +++ .../Rage-4/Rage-128-PRO-Ultra.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml | 26 +++ .../GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml | 26 +++ .../GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml | 26 +++ .../GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml | 26 +++ .../GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml | 26 +++ .../Rage-4/Rage-Mobility-128-AGP-2X.yaml | 25 +++ .../Rage-4/Rage-Mobility-128-AGP-4X.yaml | 25 +++ .../Rage-4/Rage-Mobility-CL.yaml | 25 +++ .../GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml | 25 +++ .../Rage-4/Rage-Mobility-M1.yaml | 25 +++ .../Rage-4/Rage-Mobility-M3.yaml | 25 +++ .../Rage-4/Rage-Mobility-M4.yaml | 25 +++ .../GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml | 25 +++ specs/GPUs-CONSUMER/Rage-5.yaml | 14 ++ specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-6.yaml | 42 ++++ .../Rage-6/All-In-Wonder-Radeon-7200.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-6/ES1000.yaml | 25 +++ .../Rage-6/Mobility-Radeon-7000-IGP.yaml | 26 +++ .../Rage-6/Mobility-Radeon-7000.yaml | 25 +++ .../Rage-6/Mobility-Radeon-P.yaml | 25 +++ .../GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml | 25 +++ .../Rage-6/Radeon-7000-Mac-Edition-PCI.yaml | 27 +++ .../Rage-6/Radeon-7000-Mac-Edition.yaml | 27 +++ .../GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml | 28 +++ .../Rage-6/Radeon-7200-64-MB.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml | 26 +++ .../Rage-6/Radeon-DDR-VIVO-OEM.yaml | 25 +++ .../Rage-6/Radeon-DDR-VIVO-SE.yaml | 25 +++ .../GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml | 25 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml | 26 +++ .../GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml | 26 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-7.yaml | 53 +++++ .../Rage-7/All-In-Wonder-9000-PRO.yaml | 27 +++ .../Rage-7/All-In-Wonder-9200-SE.yaml | 25 +++ .../Rage-7/All-In-Wonder-9200.yaml | 25 +++ .../Rage-7/All-In-Wonder-Radeon-7500-VE.yaml | 25 +++ .../Rage-7/All-In-Wonder-Radeon-7500.yaml | 25 +++ .../Rage-7/All-In-Wonder-Radeon-8500.yaml | 27 +++ .../Rage-7/All-In-Wonder-Radeon-8500DV.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml | 27 +++ .../Rage-7/Mobility-FireGL-7800.yaml | 25 +++ .../Rage-7/Mobility-FireGL-9000.yaml | 24 ++ .../Rage-7/Mobility-Radeon-7500.yaml | 24 ++ .../Rage-7/Mobility-Radeon-7500C.yaml | 24 ++ .../Rage-7/Mobility-Radeon-9000-IGP.yaml | 26 +++ .../Rage-7/Mobility-Radeon-9000.yaml | 24 ++ .../Rage-7/Mobility-Radeon-9100-IGP.yaml | 26 +++ .../Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml | 26 +++ .../Rage-7/Mobility-Radeon-9200.yaml | 24 ++ .../GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml | 26 +++ .../Rage-7/Radeon-7500-Mac-Edition.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml | 25 +++ .../GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml | 26 +++ .../Rage-7/Radeon-9000-PRO-Mac-Edition.yaml | 26 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml | 30 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml | 25 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml | 27 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml | 27 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml | 27 +++ .../Rage-7/Radeon-9200-SE-PCI.yaml | 27 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml | 28 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml | 28 +++ .../GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml | 27 +++ specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml | 28 +++ specs/GPUs-CONSUMER/Rankine.yaml | 71 ++++++ .../Rankine/GeForce-FX-5100.yaml | 25 +++ .../Rankine/GeForce-FX-5200-LE.yaml | 28 +++ .../Rankine/GeForce-FX-5200-PCI.yaml | 29 +++ .../Rankine/GeForce-FX-5200-Rev.-2.yaml | 28 +++ .../GeForce-FX-5200-Ultra-Mac-Edition.yaml | 27 +++ .../Rankine/GeForce-FX-5200-Ultra.yaml | 29 +++ .../Rankine/GeForce-FX-5200.yaml | 28 +++ .../Rankine/GeForce-FX-5500-PCI.yaml | 29 +++ .../Rankine/GeForce-FX-5500.yaml | 29 +++ .../Rankine/GeForce-FX-5600-Ultra.yaml | 29 +++ .../Rankine/GeForce-FX-5600-XT-PCI.yaml | 26 +++ .../Rankine/GeForce-FX-5600-XT.yaml | 28 +++ .../Rankine/GeForce-FX-5600.yaml | 28 +++ .../Rankine/GeForce-FX-5700-EP.yaml | 27 +++ .../GeForce-FX-5700-Engineering-Sample.yaml | 27 +++ .../Rankine/GeForce-FX-5700-LE.yaml | 27 +++ .../Rankine/GeForce-FX-5700-Ultra.yaml | 29 +++ .../Rankine/GeForce-FX-5700-VE.yaml | 27 +++ .../Rankine/GeForce-FX-5700.yaml | 27 +++ .../Rankine/GeForce-FX-5800-Ultra.yaml | 28 +++ .../Rankine/GeForce-FX-5800.yaml | 28 +++ .../Rankine/GeForce-FX-5900-Ultra.yaml | 29 +++ .../Rankine/GeForce-FX-5900-XT.yaml | 27 +++ .../Rankine/GeForce-FX-5900-ZT.yaml | 27 +++ .../Rankine/GeForce-FX-5900.yaml | 29 +++ .../Rankine/GeForce-FX-5950-Ultra.yaml | 30 +++ .../Rankine/GeForce-FX-Go5100.yaml | 25 +++ .../Rankine/GeForce-FX-Go5200-32M.yaml | 25 +++ .../Rankine/GeForce-FX-Go5200-64M.yaml | 25 +++ .../Rankine/GeForce-FX-Go5200-NPB-32M.yaml | 25 +++ .../Rankine/GeForce-FX-Go5200-NPB-64M.yaml | 25 +++ .../Rankine/GeForce-FX-Go5200.yaml | 25 +++ .../Rankine/GeForce-FX-Go5250.yaml | 24 ++ .../Rankine/GeForce-FX-Go5300.yaml | 24 ++ .../Rankine/GeForce-FX-Go5350.yaml | 24 ++ .../Rankine/GeForce-FX-Go5600.yaml | 25 +++ .../Rankine/GeForce-FX-Go5650.yaml | 25 +++ .../Rankine/GeForce-FX-Go5700.yaml | 25 +++ .../Rankine/GeForce-PCX-5300.yaml | 27 +++ .../Rankine/GeForce-PCX-5750.yaml | 29 +++ .../Rankine/GeForce-PCX-5900.yaml | 27 +++ .../Rankine/GeForce-PCX-5950.yaml | 27 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml | 30 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml | 30 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml | 30 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml | 30 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml | 30 +++ .../Rankine/Quadro-FX-3000G.yaml | 30 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml | 28 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml | 30 +++ .../Rankine/Quadro-FX-600-PCI.yaml | 29 +++ .../GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml | 30 +++ .../Rankine/Quadro-FX-Go1000.yaml | 25 +++ .../Rankine/Quadro-FX-Go700.yaml | 25 +++ .../Rankine/Quadro-NVS-280-AGP.yaml | 27 +++ .../Rankine/Quadro-NVS-280-PCI.yaml | 27 +++ .../Rankine/Quadro-NVS-280-PCIe.yaml | 27 +++ .../Rankine/Quadro-NVS-55-PCI.yaml | 28 +++ specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml | 10 - specs/GPUs-CONSUMER/TeraScale-1.yaml | 10 - specs/GPUs-CONSUMER/TeraScale-2.yaml | 210 +++++++++++++++++- .../TeraScale-2/FirePro-2270-PCIe-x1.yaml | 30 +++ .../TeraScale-2/FirePro-2270.yaml | 30 +++ .../TeraScale-2/FirePro-2460-Multi-View.yaml | 30 +++ .../TeraScale-2/FirePro-M2000.yaml | 26 +++ .../TeraScale-2/FirePro-M3900.yaml | 26 +++ .../TeraScale-2/FirePro-M5800.yaml | 26 +++ .../TeraScale-2/FirePro-M5950.yaml | 27 +++ .../TeraScale-2/FirePro-M7820.yaml | 28 +++ .../TeraScale-2/FirePro-M8900.yaml | 28 +++ .../TeraScale-2/FirePro-V3800.yaml | 32 +++ .../TeraScale-2/FirePro-V3900.yaml | 32 +++ .../TeraScale-2/FirePro-V4800.yaml | 32 +++ .../TeraScale-2/FirePro-V4900.yaml | 32 +++ .../TeraScale-2/FirePro-V5800-DVI.yaml | 30 +++ .../TeraScale-2/FirePro-V5800.yaml | 32 +++ .../TeraScale-2/FirePro-V7800.yaml | 32 +++ .../TeraScale-2/FirePro-V7800P.yaml | 31 +++ .../TeraScale-2/FirePro-V8800.yaml | 33 +++ .../TeraScale-2/FirePro-V9800.yaml | 33 +++ .../TeraScale-2/FirePro-V9800P.yaml | 31 +++ .../TeraScale-2/FireStream-9350.yaml | 31 +++ .../TeraScale-2/FireStream-9370.yaml | 31 +++ .../TeraScale-2/Mobility-Radeon-HD-5430.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5450.yaml | 27 +++ .../TeraScale-2/Mobility-Radeon-HD-5470.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5570.yaml | 27 +++ .../TeraScale-2/Mobility-Radeon-HD-5650.yaml | 26 +++ .../Mobility-Radeon-HD-5670-Mac-Edition.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5730.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5750.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5770.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5830.yaml | 26 +++ .../Mobility-Radeon-HD-5850-Mac-Edition.yaml | 27 +++ .../TeraScale-2/Mobility-Radeon-HD-5850.yaml | 26 +++ .../TeraScale-2/Mobility-Radeon-HD-5870.yaml | 27 +++ .../TeraScale-2/Radeon-E6460.yaml | 27 +++ .../TeraScale-2/Radeon-E6465.yaml | 27 +++ .../TeraScale-2/Radeon-E6760-MXM.yaml | 27 +++ .../TeraScale-2/Radeon-E6760-PCIe.yaml | 28 +++ .../TeraScale-2/Radeon-HD-5450-PCI.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml | 30 +++ .../TeraScale-2/Radeon-HD-5450.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5470.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5490.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5530.yaml | 30 +++ .../TeraScale-2/Radeon-HD-5550.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5570-OEM.yaml | 30 +++ .../TeraScale-2/Radeon-HD-5570.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5630.yaml | 31 +++ .../Radeon-HD-5670-640SP-Edition.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5670.yaml | 33 +++ .../TeraScale-2/Radeon-HD-5690.yaml | 30 +++ .../TeraScale-2/Radeon-HD-5730.yaml | 30 +++ .../TeraScale-2/Radeon-HD-5750.yaml | 31 +++ .../Radeon-HD-5770-Mac-Edition.yaml | 33 +++ .../TeraScale-2/Radeon-HD-5770-X2.yaml | 29 +++ .../TeraScale-2/Radeon-HD-5770.yaml | 31 +++ .../TeraScale-2/Radeon-HD-5830.yaml | 34 +++ .../TeraScale-2/Radeon-HD-5850.yaml | 34 +++ .../Radeon-HD-5870-Eyefinity-6.yaml | 32 +++ .../Radeon-HD-5870-Mac-Edition.yaml | 34 +++ .../TeraScale-2/Radeon-HD-5870.yaml | 34 +++ .../TeraScale-2/Radeon-HD-5950.yaml | 33 +++ .../TeraScale-2/Radeon-HD-5970.yaml | 34 +++ .../TeraScale-2/Radeon-HD-6230.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6250-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6250.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6290-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6290.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6310-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6320-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6330M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6350.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6350A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6350M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6370D-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6370M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6380G-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6390.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6410D-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6430M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6450-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6450.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6450A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6450M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6470M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6480G-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6490.yaml | 31 +++ .../Radeon-HD-6490M-Mac-Edition.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6490M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6510.yaml | 30 +++ .../TeraScale-2/Radeon-HD-6520G-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6530.yaml | 30 +++ .../TeraScale-2/Radeon-HD-6530D-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6530M.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6550A.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6550D-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6550M.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6570-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6570.yaml | 31 +++ .../Radeon-HD-6570M-Mac-Edition.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6570M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6610.yaml | 30 +++ .../TeraScale-2/Radeon-HD-6610M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6620G-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6625M.yaml | 26 +++ .../Radeon-HD-6630M-Mac-Edition.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6630M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6650A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6650M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-6670.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6670A.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6730M.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6750.yaml | 31 +++ .../Radeon-HD-6750M-Mac-Edition.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6750M.yaml | 27 +++ .../Radeon-HD-6770-Green-Edition.yaml | 30 +++ .../TeraScale-2/Radeon-HD-6770.yaml | 31 +++ .../Radeon-HD-6770M-Mac-Edition.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6770M.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6790.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6830M.yaml | 26 +++ .../Radeon-HD-6850-1440SP-Edition.yaml | 32 +++ .../TeraScale-2/Radeon-HD-6850-X2.yaml | 30 +++ .../TeraScale-2/Radeon-HD-6850.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6850M.yaml | 26 +++ .../Radeon-HD-6870-1600SP-Edition.yaml | 32 +++ .../TeraScale-2/Radeon-HD-6870-X2.yaml | 31 +++ .../TeraScale-2/Radeon-HD-6870.yaml | 33 +++ .../TeraScale-2/Radeon-HD-6870M.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6950M.yaml | 27 +++ .../Radeon-HD-6970M-Mac-Edition.yaml | 28 +++ .../TeraScale-2/Radeon-HD-6970M-Rebrand.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6970M-X2.yaml | 28 +++ .../TeraScale-2/Radeon-HD-6970M.yaml | 28 +++ .../TeraScale-2/Radeon-HD-6990M-Rebrand.yaml | 27 +++ .../TeraScale-2/Radeon-HD-6990M.yaml | 28 +++ .../TeraScale-2/Radeon-HD-7290-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7310-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7330M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7340-IGP.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml | 29 +++ .../TeraScale-2/Radeon-HD-7350-OEM.yaml | 30 +++ .../TeraScale-2/Radeon-HD-7350M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7370M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7410M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7430M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7450-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-7450A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7450M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7470-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-7470A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7470M.yaml | 28 +++ .../TeraScale-2/Radeon-HD-7490M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7510-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-7510M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7530M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7550M.yaml | 28 +++ .../TeraScale-2/Radeon-HD-7570-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-7570.yaml | 30 +++ .../TeraScale-2/Radeon-HD-7570M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7590M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7610M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7630M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7650A.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7650M-Rebrand.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7650M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7670-OEM.yaml | 32 +++ .../TeraScale-2/Radeon-HD-7670A.yaml | 27 +++ .../TeraScale-2/Radeon-HD-7670M-Rebrand.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7670M.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7690M-Rebrand.yaml | 26 +++ .../Radeon-HD-7690M-XT-Rebrand.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7690M-XT.yaml | 26 +++ .../TeraScale-2/Radeon-HD-7690M.yaml | 28 +++ .../TeraScale-2/Radeon-HD-7720-OEM.yaml | 30 +++ .../TeraScale-2/Radeon-HD-8350-OEM.yaml | 30 +++ .../TeraScale-2/Radeon-HD-8450-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-8470-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-8490-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-HD-8510-OEM.yaml | 30 +++ .../TeraScale-2/Radeon-HD-8550-OEM.yaml | 30 +++ .../Radeon-HD-8570-OEM-Rebrand.yaml | 29 +++ .../TeraScale-2/Radeon-R5-220-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-R5-230-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-R5-230.yaml | 31 +++ .../TeraScale-2/Radeon-R5-235-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-R5-235X-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-R5-310-OEM.yaml | 31 +++ .../TeraScale-2/Radeon-R5-A220.yaml | 31 +++ .../GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml | 27 +++ specs/GPUs-CONSUMER/TeraScale-3.yaml | 55 ++++- .../TeraScale-3/FirePro-A300.yaml | 29 +++ .../TeraScale-3/FirePro-A320.yaml | 29 +++ .../TeraScale-3/FirePro-V5900.yaml | 34 +++ .../TeraScale-3/FirePro-V7900-SDI.yaml | 33 +++ .../TeraScale-3/FirePro-V7900.yaml | 31 +++ .../TeraScale-3/Radeon-HD-6930.yaml | 32 +++ .../TeraScale-3/Radeon-HD-6950.yaml | 34 +++ .../TeraScale-3/Radeon-HD-6970-X2.yaml | 30 +++ .../TeraScale-3/Radeon-HD-6970.yaml | 34 +++ .../TeraScale-3/Radeon-HD-6990.yaml | 34 +++ .../TeraScale-3/Radeon-HD-7400G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7420G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7480D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-7500G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7520G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7540D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-7560D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-7560G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7600G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7620G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7640G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-7660D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-7660G-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-8310G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8350G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8370D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-8410G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8450G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8470D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-8510G-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-8550D-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8550G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8570D-IGP.yaml | 26 +++ .../TeraScale-3/Radeon-HD-8610G-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8650D-IGP.yaml | 28 +++ .../TeraScale-3/Radeon-HD-8650G-IGP.yaml | 28 +++ specs/GPUs-CONSUMER/TeraScale.yaml | 180 +++++++++++++++ .../GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml | 28 +++ .../GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml | 28 +++ .../GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml | 32 +++ .../GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml | 33 +++ .../GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml | 32 +++ .../GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml | 32 +++ .../TeraScale/FireMV-2260-PCIe-x1.yaml | 29 +++ .../GPUs-CONSUMER/TeraScale/FireMV-2260.yaml | 29 +++ .../TeraScale/FirePro-2260-PCI.yaml | 29 +++ .../FirePro-2450-Multi-View-PCIe-x1.yaml | 30 +++ .../TeraScale/FirePro-2450-Multi-View.yaml | 30 +++ .../TeraScale/FirePro-M5725.yaml | 26 +++ .../TeraScale/FirePro-M7740.yaml | 29 +++ .../TeraScale/FirePro-RG220.yaml | 29 +++ .../TeraScale/FirePro-RG220A.yaml | 29 +++ .../TeraScale/FirePro-V3700.yaml | 30 +++ .../TeraScale/FirePro-V3750.yaml | 32 +++ .../TeraScale/FirePro-V5700.yaml | 32 +++ .../TeraScale/FirePro-V7750.yaml | 32 +++ .../TeraScale/FirePro-V7760.yaml | 30 +++ .../TeraScale/FirePro-V7770.yaml | 30 +++ .../TeraScale/FirePro-V8700-Duo.yaml | 30 +++ .../TeraScale/FirePro-V8700.yaml | 34 +++ .../TeraScale/FirePro-V8750.yaml | 34 +++ .../TeraScale/FireStream-9170.yaml | 32 +++ .../TeraScale/FireStream-9250.yaml | 31 +++ .../TeraScale/FireStream-9270.yaml | 32 +++ .../TeraScale/Mobility-FireGL-V5600.yaml | 26 +++ .../TeraScale/Mobility-FireGL-V5700.yaml | 26 +++ .../TeraScale/Mobility-FireGL-V5725.yaml | 26 +++ ...obility-Radeon-HD-2400-XT-Mac-Edition.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-2400-XT.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-2400.yaml | 26 +++ ...obility-Radeon-HD-2600-XT-Mac-Edition.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-2600-XT.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-2600.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-2700.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3410.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-3430.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3450.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3470.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3650.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3670.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3850-X2.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-3850.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3870-X2.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-3870.yaml | 27 +++ .../Mobility-Radeon-HD-4100-IGP.yaml | 28 +++ .../Mobility-Radeon-HD-4200-IGP.yaml | 28 +++ .../Mobility-Radeon-HD-4225-IGP.yaml | 28 +++ .../Mobility-Radeon-HD-4250-IGP.yaml | 30 +++ .../Mobility-Radeon-HD-4270-IGP.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-4330.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-4350.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-4530.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-4550.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-4570.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-4650.yaml | 27 +++ .../Mobility-Radeon-HD-4670-Mac-Edition.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-4670.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-4830.yaml | 27 +++ .../Mobility-Radeon-HD-4850-Mac-Edition.yaml | 29 +++ .../TeraScale/Mobility-Radeon-HD-4850-X2.yaml | 29 +++ .../TeraScale/Mobility-Radeon-HD-4850.yaml | 27 +++ .../TeraScale/Mobility-Radeon-HD-4860.yaml | 29 +++ .../TeraScale/Mobility-Radeon-HD-4870-X2.yaml | 29 +++ .../TeraScale/Mobility-Radeon-HD-4870.yaml | 29 +++ .../TeraScale/Mobility-Radeon-HD-5145.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-5165.yaml | 26 +++ .../TeraScale/Mobility-Radeon-HD-530v.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-540v.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-545v.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-550v.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-560v.yaml | 28 +++ .../TeraScale/Mobility-Radeon-HD-565v.yaml | 28 +++ .../TeraScale/Radeon-3000-IGP.yaml | 27 +++ .../TeraScale/Radeon-3100-IGP.yaml | 27 +++ .../TeraScale/Radeon-3100-Mobile-IGP.yaml | 28 +++ .../GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml | 27 +++ .../TeraScale/Radeon-E4690-MXM.yaml | 27 +++ .../TeraScale/Radeon-E4690-PCIe.yaml | 28 +++ .../TeraScale/Radeon-HD-2350-PRO.yaml | 29 +++ .../TeraScale/Radeon-HD-2400-PRO-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-2400-PRO-PCI.yaml | 28 +++ .../TeraScale/Radeon-HD-2400-PRO.yaml | 30 +++ .../TeraScale/Radeon-HD-2400-XT.yaml | 30 +++ .../TeraScale/Radeon-HD-2400.yaml | 29 +++ .../TeraScale/Radeon-HD-2600-PRO-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-2600-PRO.yaml | 30 +++ .../TeraScale/Radeon-HD-2600-XT-AGP.yaml | 30 +++ .../Radeon-HD-2600-XT-Mac-Edition.yaml | 27 +++ .../TeraScale/Radeon-HD-2600-XT-X2.yaml | 29 +++ .../TeraScale/Radeon-HD-2600-XT.yaml | 29 +++ .../TeraScale/Radeon-HD-2900-GT.yaml | 30 +++ .../TeraScale/Radeon-HD-2900-PRO.yaml | 31 +++ .../TeraScale/Radeon-HD-2900-XT.yaml | 31 +++ .../TeraScale/Radeon-HD-2900-XTX.yaml | 31 +++ .../TeraScale/Radeon-HD-2950-PRO.yaml | 32 +++ .../TeraScale/Radeon-HD-2950-XTX.yaml | 32 +++ .../TeraScale/Radeon-HD-3200-IGP.yaml | 26 +++ .../TeraScale/Radeon-HD-3200-Mobile-IGP.yaml | 28 +++ .../TeraScale/Radeon-HD-3300-IGP.yaml | 27 +++ .../TeraScale/Radeon-HD-3410.yaml | 29 +++ .../TeraScale/Radeon-HD-3450-AGP.yaml | 28 +++ .../TeraScale/Radeon-HD-3450-PCI.yaml | 30 +++ .../TeraScale/Radeon-HD-3450-X2.yaml | 29 +++ .../TeraScale/Radeon-HD-3450.yaml | 30 +++ .../TeraScale/Radeon-HD-3470.yaml | 31 +++ .../TeraScale/Radeon-HD-3550.yaml | 28 +++ .../TeraScale/Radeon-HD-3570.yaml | 28 +++ .../TeraScale/Radeon-HD-3610.yaml | 30 +++ .../TeraScale/Radeon-HD-3650-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-3650.yaml | 30 +++ .../TeraScale/Radeon-HD-3690.yaml | 31 +++ .../TeraScale/Radeon-HD-3730.yaml | 30 +++ .../TeraScale/Radeon-HD-3750.yaml | 30 +++ .../TeraScale/Radeon-HD-3830.yaml | 29 +++ .../TeraScale/Radeon-HD-3850-AGP.yaml | 31 +++ .../TeraScale/Radeon-HD-3850-X2.yaml | 31 +++ .../TeraScale/Radeon-HD-3850-X3.yaml | 29 +++ .../TeraScale/Radeon-HD-3850.yaml | 32 +++ .../TeraScale/Radeon-HD-3870-AGP.yaml | 32 +++ .../TeraScale/Radeon-HD-3870-Mac-Edition.yaml | 32 +++ .../TeraScale/Radeon-HD-3870-X2.yaml | 34 +++ .../TeraScale/Radeon-HD-3870.yaml | 32 +++ .../TeraScale/Radeon-HD-4200-IGP.yaml | 26 +++ .../TeraScale/Radeon-HD-4250-IGP.yaml | 26 +++ .../TeraScale/Radeon-HD-4250.yaml | 30 +++ .../TeraScale/Radeon-HD-4290-IGP.yaml | 26 +++ .../TeraScale/Radeon-HD-4350-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-4350-PCI.yaml | 31 +++ .../TeraScale/Radeon-HD-4350-PCIe-x1.yaml | 30 +++ .../TeraScale/Radeon-HD-4350.yaml | 28 +++ .../TeraScale/Radeon-HD-4450.yaml | 31 +++ .../TeraScale/Radeon-HD-4520.yaml | 31 +++ .../TeraScale/Radeon-HD-4550.yaml | 31 +++ .../TeraScale/Radeon-HD-4570-Rebrand.yaml | 30 +++ .../TeraScale/Radeon-HD-4570.yaml | 31 +++ .../TeraScale/Radeon-HD-4580.yaml | 31 +++ .../TeraScale/Radeon-HD-4650-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-4650.yaml | 31 +++ .../TeraScale/Radeon-HD-4670-AGP.yaml | 30 +++ .../TeraScale/Radeon-HD-4670-X2.yaml | 28 +++ .../TeraScale/Radeon-HD-4670.yaml | 31 +++ .../TeraScale/Radeon-HD-4700.yaml | 30 +++ .../TeraScale/Radeon-HD-4710.yaml | 30 +++ .../TeraScale/Radeon-HD-4720.yaml | 30 +++ .../TeraScale/Radeon-HD-4730-OEM.yaml | 30 +++ .../TeraScale/Radeon-HD-4730.yaml | 32 +++ .../TeraScale/Radeon-HD-4750.yaml | 31 +++ .../TeraScale/Radeon-HD-4770.yaml | 32 +++ .../TeraScale/Radeon-HD-4810.yaml | 32 +++ .../TeraScale/Radeon-HD-4830.yaml | 34 +++ .../TeraScale/Radeon-HD-4850-X2.yaml | 32 +++ .../TeraScale/Radeon-HD-4850.yaml | 32 +++ .../TeraScale/Radeon-HD-4855.yaml | 32 +++ .../TeraScale/Radeon-HD-4860.yaml | 31 +++ .../TeraScale/Radeon-HD-4870-Mac-Edition.yaml | 32 +++ .../TeraScale/Radeon-HD-4870-X2.yaml | 34 +++ .../TeraScale/Radeon-HD-4870.yaml | 34 +++ .../TeraScale/Radeon-HD-4890.yaml | 34 +++ .../TeraScale/Radeon-Xpress-2100-IGP.yaml | 26 +++ .../TeraScale/Xbox-360-E-GPU.yaml | 29 +++ .../TeraScale/Xbox-360-GPU-65nm.yaml | 29 +++ .../TeraScale/Xbox-360-GPU-80nm.yaml | 29 +++ .../TeraScale/Xbox-360-GPU-90nm.yaml | 29 +++ .../TeraScale/Xbox-360-S-GPU.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla-2.0.yaml | 86 +++++++ .../Tesla-2.0/GeForce-205-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-210-OEM.yaml | 30 +++ .../Tesla-2.0/GeForce-210-PCI.yaml | 28 +++ .../Tesla-2.0/GeForce-210-Rev.-2.yaml | 31 +++ .../GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml | 31 +++ .../GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml | 28 +++ .../Tesla-2.0/GeForce-310-OEM.yaml | 31 +++ .../GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml | 28 +++ .../Tesla-2.0/GeForce-315-OEM.yaml | 31 +++ .../GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml | 28 +++ .../Tesla-2.0/GeForce-320M-Mac-Edition.yaml | 27 +++ .../Tesla-2.0/GeForce-405-OEM.yaml | 30 +++ .../GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml | 27 +++ .../Tesla-2.0/GeForce-505-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml | 29 +++ .../Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml | 31 +++ .../Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml | 30 +++ .../Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml | 31 +++ .../Tesla-2.0/GeForce-G105M.yaml | 28 +++ .../Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml | 31 +++ .../Tesla-2.0/GeForce-G210M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-220-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-GT-220.yaml | 31 +++ .../Tesla-2.0/GeForce-GT-230M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-240.yaml | 31 +++ .../Tesla-2.0/GeForce-GT-240M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-320-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-GT-325M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-330-OEM.yaml | 31 +++ .../GeForce-GT-330M-Mac-Edition.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-330M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-335M.yaml | 28 +++ .../Tesla-2.0/GeForce-GT-340-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-GT-415-OEM.yaml | 31 +++ .../Tesla-2.0/GeForce-GTS-250M.yaml | 26 +++ .../Tesla-2.0/GeForce-GTS-260M.yaml | 26 +++ .../Tesla-2.0/GeForce-GTS-350M.yaml | 28 +++ .../Tesla-2.0/GeForce-GTS-360M.yaml | 28 +++ .../GeForce-GTX-260-Core-216-Rev.-2.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-260-Core-216.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-260-OEM.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-260.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-275.yaml | 30 +++ .../Tesla-2.0/GeForce-GTX-280.yaml | 33 +++ .../GeForce-GTX-285-Mac-Edition.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-285-X2.yaml | 34 +++ .../Tesla-2.0/GeForce-GTX-285.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml | 32 +++ .../Tesla-2.0/GeForce-GTX-295.yaml | 34 +++ .../GeForce-GTX-470-PhysX-Edition.yaml | 30 +++ specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml | 26 +++ specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml | 32 +++ specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml | 31 +++ .../Tesla-2.0/Quadro-FX-1800M.yaml | 28 +++ .../Tesla-2.0/Quadro-FX-380-LP.yaml | 32 +++ .../Tesla-2.0/Quadro-FX-3800.yaml | 33 +++ .../Tesla-2.0/Quadro-FX-380M.yaml | 27 +++ .../Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml | 32 +++ .../Tesla-2.0/Quadro-FX-4800.yaml | 32 +++ .../Tesla-2.0/Quadro-FX-5800.yaml | 33 +++ .../Tesla-2.0/Quadro-FX-880M.yaml | 28 +++ .../Tesla-2.0/Quadro-Plex-2200-D2.yaml | 27 +++ .../Tesla-2.0/Quadro-Plex-2200-S4.yaml | 27 +++ .../GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml | 30 +++ .../GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml | 30 +++ .../GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml | 30 +++ .../GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml | 27 +++ .../GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla.yaml | 173 +++++++++++++++ .../Tesla/GeForce-8100-+-nForce-720a.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml | 28 +++ .../Tesla/GeForce-8200M-G-mGPU-AMD.yaml | 27 +++ .../Tesla/GeForce-8200M-G-mGPU-Intel.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml | 28 +++ .../Tesla/GeForce-8400-GS-PCI.yaml | 31 +++ .../Tesla/GeForce-8400-GS-Rev.-2.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml | 30 +++ specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml | 29 +++ .../Tesla/GeForce-8600-GT-Mac-Edition.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml | 31 +++ .../Tesla/GeForce-8600-GTS-Mac-Edition.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml | 28 +++ .../Tesla/GeForce-8800-GS-Mac-Edition.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml | 31 +++ .../Tesla/GeForce-8800-GT-Mac-Edition.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml | 31 +++ .../Tesla/GeForce-8800-GTS-320.yaml | 31 +++ .../Tesla/GeForce-8800-GTS-512.yaml | 31 +++ .../Tesla/GeForce-8800-GTS-640.yaml | 31 +++ .../Tesla/GeForce-8800-GTS-Core-112.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml | 31 +++ .../Tesla/GeForce-8800-Ultra.yaml | 31 +++ .../Tesla/GeForce-8800M-GTS.yaml | 28 +++ .../Tesla/GeForce-8800M-GTX.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml | 28 +++ .../Tesla/GeForce-9100M-G-mGPU-AMD.yaml | 27 +++ .../Tesla/GeForce-9100M-G-mGPU-Intel.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml | 28 +++ .../Tesla/GeForce-9200M-GS-GDDR3.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml | 27 +++ .../Tesla/GeForce-9300-+-nForce-730i.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml | 27 +++ .../Tesla/GeForce-9300M-GS-GDDR3.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml | 28 +++ .../Tesla/GeForce-9400-GT-PCI.yaml | 30 +++ .../Tesla/GeForce-9400-GT-Rev.-2.yaml | 30 +++ .../GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml | 31 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml | 27 +++ .../Tesla/GeForce-9500-GS-Rev.-2.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml | 30 +++ .../Tesla/GeForce-9500-GT-Mac-Edition.yaml | 30 +++ .../Tesla/GeForce-9500-GT-Rev.-2.yaml | 31 +++ .../Tesla/GeForce-9500-GT-Rev.-3.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml | 27 +++ .../Tesla/GeForce-9600-GS-OEM.yaml | 30 +++ .../Tesla/GeForce-9600-GSO-512.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml | 30 +++ .../Tesla/GeForce-9600-GT-Green-Edition.yaml | 31 +++ .../Tesla/GeForce-9600-GT-Mac-Edition.yaml | 29 +++ .../Tesla/GeForce-9600-GT-Rev.-2.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml | 32 +++ .../GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml | 30 +++ .../GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml | 28 +++ .../Tesla/GeForce-9600M-GT-Mac-Edition.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml | 28 +++ .../Tesla/GeForce-9700M-GTS.yaml | 27 +++ .../Tesla/GeForce-9800-GT-Rebrand.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml | 32 +++ .../Tesla/GeForce-9800-GTX+.yaml | 33 +++ .../GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml | 33 +++ .../GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml | 28 +++ .../Tesla/GeForce-9800M-GTS.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml | 31 +++ specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml | 30 +++ .../Tesla/GeForce-GT-120-Mac-Edition.yaml | 30 +++ .../Tesla/GeForce-GT-120-OEM.yaml | 30 +++ .../Tesla/GeForce-GT-120M-Mac-Edition.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml | 28 +++ .../Tesla/GeForce-GT-130-Mac-Edition.yaml | 30 +++ .../Tesla/GeForce-GT-130-OEM.yaml | 30 +++ .../GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml | 28 +++ .../Tesla/GeForce-GT-140-OEM.yaml | 30 +++ .../GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml | 28 +++ .../Tesla/GeForce-GT-230-OEM.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml | 28 +++ .../Tesla/GeForce-GT-240M-LE.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml | 28 +++ .../Tesla/GeForce-GTS-150-OEM.yaml | 30 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml | 28 +++ .../Tesla/GeForce-GTS-240-OEM.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml | 28 +++ .../Tesla/GeForce-GTX-275-PhysX-Edition.yaml | 31 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/ION-LE.yaml | 26 +++ specs/GPUs-CONSUMER/Tesla/ION.yaml | 26 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml | 28 +++ .../Tesla/Quadro-FX-1700-Mac-Edition.yaml | 31 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml | 32 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml | 32 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml | 32 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml | 29 +++ .../GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml | 28 +++ .../Tesla/Quadro-FX-4600-SDI.yaml | 31 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml | 32 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml | 26 +++ .../Tesla/Quadro-FX-4700-X2.yaml | 33 +++ .../Tesla/Quadro-FX-5600-Mac-Edition.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml | 32 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml | 32 +++ specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml | 27 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml | 28 +++ specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml | 29 +++ specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml | 28 +++ .../GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml | 27 +++ .../Tesla/Quadro-Plex-1000-Model-IV.yaml | 26 +++ .../Tesla/Quadro-Plex-2100-D4.yaml | 26 +++ .../Tesla/Quadro-Plex-2100-S4.yaml | 26 +++ specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml | 30 +++ specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml | 27 +++ specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml | 26 +++ specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml | 26 +++ specs/GPUs-CONSUMER/Turing.yaml | 104 +++++++++ specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml | 34 +++ specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml | 37 +++ specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml | 37 +++ .../GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml | 35 +++ .../GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml | 35 +++ .../GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml | 35 +++ .../GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml | 35 +++ .../Turing/GeForce-GTX-1630.yaml | 37 +++ .../Turing/GeForce-GTX-1650-GDDR6.yaml | 37 +++ .../Turing/GeForce-GTX-1650-Max-Q.yaml | 29 +++ .../Turing/GeForce-GTX-1650-Mobile.yaml | 29 +++ .../Turing/GeForce-GTX-1650-SUPER.yaml | 37 +++ .../Turing/GeForce-GTX-1650-TU106.yaml | 37 +++ .../Turing/GeForce-GTX-1650-TU116.yaml | 37 +++ .../Turing/GeForce-GTX-1650-Ti-Max-Q.yaml | 30 +++ .../Turing/GeForce-GTX-1650-Ti-Mobile.yaml | 30 +++ .../Turing/GeForce-GTX-1650.yaml | 37 +++ .../Turing/GeForce-GTX-1660-SUPER.yaml | 37 +++ .../Turing/GeForce-GTX-1660-Ti-Max-Q.yaml | 30 +++ .../Turing/GeForce-GTX-1660-Ti-Mobile.yaml | 30 +++ .../Turing/GeForce-GTX-1660-Ti.yaml | 37 +++ .../Turing/GeForce-GTX-1660.yaml | 37 +++ .../Turing/GeForce-MX450-12W.yaml | 30 +++ .../Turing/GeForce-MX450-30.5W-10Gbps.yaml | 30 +++ .../Turing/GeForce-MX450-30.5W-8Gbps.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml | 31 +++ .../Turing/GeForce-RTX-2060-12-GB.yaml | 40 ++++ .../GeForce-RTX-2060-Max-Q-Refresh.yaml | 33 +++ .../Turing/GeForce-RTX-2060-Max-Q.yaml | 34 +++ .../GeForce-RTX-2060-Mobile-Refresh.yaml | 34 +++ .../Turing/GeForce-RTX-2060-Mobile.yaml | 34 +++ .../Turing/GeForce-RTX-2060-SUPER-Mobile.yaml | 35 +++ .../Turing/GeForce-RTX-2060-SUPER.yaml | 40 ++++ .../Turing/GeForce-RTX-2060-TU104.yaml | 40 ++++ .../Turing/GeForce-RTX-2060.yaml | 40 ++++ .../GeForce-RTX-2070-Max-Q-Refresh.yaml | 33 +++ .../Turing/GeForce-RTX-2070-Max-Q.yaml | 34 +++ .../GeForce-RTX-2070-Mobile-Refresh.yaml | 33 +++ .../Turing/GeForce-RTX-2070-Mobile.yaml | 34 +++ .../Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml | 33 +++ .../Turing/GeForce-RTX-2070-SUPER-Mobile.yaml | 34 +++ .../Turing/GeForce-RTX-2070-SUPER.yaml | 39 ++++ .../Turing/GeForce-RTX-2070.yaml | 40 ++++ .../GeForce-RTX-2080-Engineering-Sample.yaml | 39 ++++ .../Turing/GeForce-RTX-2080-Max-Q.yaml | 34 +++ .../Turing/GeForce-RTX-2080-Mobile.yaml | 34 +++ .../Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml | 34 +++ .../Turing/GeForce-RTX-2080-SUPER-Mobile.yaml | 34 +++ .../Turing/GeForce-RTX-2080-SUPER.yaml | 39 ++++ .../Turing/GeForce-RTX-2080-Ti-12-GB.yaml | 39 ++++ .../Turing/GeForce-RTX-2080-Ti.yaml | 39 ++++ .../Turing/GeForce-RTX-2080.yaml | 39 ++++ .../Turing/Quadro-RTX-3000-Max-Q.yaml | 33 +++ .../Quadro-RTX-3000-Mobile-Refresh.yaml | 34 +++ .../Turing/Quadro-RTX-3000-Mobile.yaml | 34 +++ .../Turing/Quadro-RTX-3000-X2-Mobile.yaml | 34 +++ .../Turing/Quadro-RTX-4000-Max-Q.yaml | 33 +++ .../Turing/Quadro-RTX-4000-Mobile.yaml | 34 +++ .../GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml | 36 +++ .../Turing/Quadro-RTX-5000-Max-Q.yaml | 33 +++ .../Quadro-RTX-5000-Mobile-Refresh.yaml | 33 +++ .../Turing/Quadro-RTX-5000-Mobile.yaml | 34 +++ .../Turing/Quadro-RTX-5000-X2-Mobile.yaml | 34 +++ .../GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml | 36 +++ .../Turing/Quadro-RTX-6000-Mobile.yaml | 33 +++ .../Turing/Quadro-RTX-6000-Passive.yaml | 36 +++ .../GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml | 36 +++ .../Turing/Quadro-RTX-8000-Passive.yaml | 36 +++ .../GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml | 36 +++ .../Turing/Quadro-T1000-Max-Q.yaml | 30 +++ .../Turing/Quadro-T1000-Mobile-GDDR6.yaml | 31 +++ .../Turing/Quadro-T1000-Mobile.yaml | 30 +++ .../Turing/Quadro-T1200-Max-Q.yaml | 30 +++ .../Turing/Quadro-T1200-Mobile.yaml | 30 +++ .../Turing/Quadro-T2000-Max-Q.yaml | 30 +++ .../Turing/Quadro-T2000-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T1000.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T400.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/T600.yaml | 30 +++ specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml | 39 ++++ .../GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml | 36 +++ specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml | 35 +++ .../GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml | 34 +++ specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml | 34 +++ specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml | 93 ++++++++ .../All-In-Wonder-2006-PCIe-Edition.yaml | 27 +++ .../All-In-Wonder-X1800-XL.yaml | 29 +++ .../All-In-Wonder-X1900.yaml | 28 +++ .../Ultra-Threaded-SE/FireGL-V3300.yaml | 26 +++ .../Ultra-Threaded-SE/FireGL-V3350.yaml | 26 +++ .../Ultra-Threaded-SE/FireGL-V3400.yaml | 26 +++ .../Ultra-Threaded-SE/FireGL-V5200.yaml | 26 +++ .../Ultra-Threaded-SE/FireGL-V7200.yaml | 30 +++ .../Ultra-Threaded-SE/FireGL-V7300.yaml | 30 +++ .../Ultra-Threaded-SE/FireGL-V7350.yaml | 30 +++ .../FireMV-2250-PCIe-x1.yaml | 27 +++ .../Ultra-Threaded-SE/FireMV-2250.yaml | 28 +++ .../Mobility-FireGL-V5200.yaml | 24 ++ .../Mobility-FireGL-V5250.yaml | 24 ++ .../Mobility-Radeon-HD-2300.yaml | 24 ++ .../Mobility-Radeon-X1300.yaml | 24 ++ .../Mobility-Radeon-X1350.yaml | 24 ++ .../Mobility-Radeon-X1400.yaml | 23 ++ .../Mobility-Radeon-X1450.yaml | 24 ++ .../Mobility-Radeon-X1600-Mac-Edition.yaml | 23 ++ .../Mobility-Radeon-X1600.yaml | 24 ++ .../Mobility-Radeon-X1700.yaml | 24 ++ .../Mobility-Radeon-X1800-XT.yaml | 24 ++ .../Mobility-Radeon-X1800.yaml | 25 +++ .../Mobility-Radeon-X1900.yaml | 24 ++ .../Mobility-Radeon-X2300-HD.yaml | 24 ++ .../Mobility-Radeon-X2300.yaml | 24 ++ .../Mobility-Radeon-X2500.yaml | 23 ++ .../Ultra-Threaded-SE/Radeon-X1300-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1300-CE.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1300-LE.yaml | 26 +++ .../Ultra-Threaded-SE/Radeon-X1300-PCI.yaml | 27 +++ .../Radeon-X1300-PRO-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1300-PRO.yaml | 26 +++ .../Radeon-X1300-XT-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1300-XT.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1300.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1550-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1550-PCI.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1550.yaml | 28 +++ .../Radeon-X1600-PRO-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1600-PRO.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1600-SE.yaml | 28 +++ .../Radeon-X1600-XT-Dual.yaml | 25 +++ .../Ultra-Threaded-SE/Radeon-X1600-XT.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1600.yaml | 27 +++ .../Ultra-Threaded-SE/Radeon-X1650-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1650-GT.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1650-GTO.yaml | 26 +++ .../Radeon-X1650-PRO-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1650-PRO.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1650-SE.yaml | 27 +++ .../Radeon-X1650-XT-AGP.yaml | 28 +++ .../Radeon-X1650-XT-Dual.yaml | 26 +++ .../Ultra-Threaded-SE/Radeon-X1650-XT.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1650.yaml | 27 +++ .../Ultra-Threaded-SE/Radeon-X1700-FSC.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1700-SE.yaml | 28 +++ .../Radeon-X1800-CrossFire-Edition.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1800-GTO.yaml | 31 +++ .../Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml | 26 +++ .../Ultra-Threaded-SE/Radeon-X1800-XL.yaml | 31 +++ .../Ultra-Threaded-SE/Radeon-X1800-XT.yaml | 28 +++ .../Radeon-X1900-CrossFire-Edition.yaml | 28 +++ .../Radeon-X1900-G5-Mac-Edition.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1900-GT.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1900-XT.yaml | 29 +++ .../Ultra-Threaded-SE/Radeon-X1900-XTX.yaml | 29 +++ .../Radeon-X1950-CrossFire-Edition.yaml | 28 +++ .../Radeon-X1950-GT-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1950-GT.yaml | 28 +++ .../Radeon-X1950-PRO-AGP.yaml | 28 +++ .../Radeon-X1950-PRO-DUAL.yaml | 29 +++ .../Ultra-Threaded-SE/Radeon-X1950-PRO.yaml | 30 +++ .../Radeon-X1950-XT-AGP.yaml | 28 +++ .../Ultra-Threaded-SE/Radeon-X1950-XT.yaml | 28 +++ .../Radeon-X1950-XTX-Uber-Edition.yaml | 29 +++ .../Ultra-Threaded-SE/Radeon-X1950-XTX.yaml | 29 +++ .../Ultra-Threaded-SE/Stream-Processor.yaml | 30 +++ .../Ultra-Threaded-SE/Wii-GPU.yaml | 25 +++ specs/GPUs-CONSUMER/VLIW-Vec4.yaml | 17 ++ .../GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml | 26 +++ .../GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml | 26 +++ .../GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml | 24 ++ .../GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml | 24 ++ specs/GPUs-CONSUMER/Volta.yaml | 31 +++ .../Volta/Jetson-AGX-Xavier-16-GB.yaml | 33 +++ .../Volta/Jetson-AGX-Xavier-32-GB.yaml | 33 +++ .../Volta/Jetson-Xavier-NX-16-GB.yaml | 33 +++ .../Volta/Jetson-Xavier-NX-8-GB.yaml | 33 +++ specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml | 35 +++ .../Volta/TITAN-V-CEO-Edition.yaml | 37 +++ specs/GPUs-CONSUMER/Volta/TITAN-V.yaml | 38 ++++ .../GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml | 32 +++ .../GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml | 32 +++ .../Volta/Tesla-V100-DGXS-16-GB.yaml | 32 +++ .../Volta/Tesla-V100-DGXS-32-GB.yaml | 32 +++ .../GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml | 32 +++ .../Volta/Tesla-V100-PCIe-16-GB.yaml | 32 +++ .../Volta/Tesla-V100-PCIe-32-GB.yaml | 32 +++ .../Volta/Tesla-V100-SXM2-16-GB.yaml | 32 +++ .../Volta/Tesla-V100-SXM2-32-GB.yaml | 32 +++ .../Volta/Tesla-V100-SXM3-32-GB.yaml | 32 +++ .../Volta/Tesla-V100S-PCIe-32-GB.yaml | 32 +++ specs/GPUs-CONSUMER/Voodoo-Scalable.yaml | 30 +++ .../Voodoo-Scalable/Spectre-1000.yaml | 25 +++ .../Voodoo-Scalable/Spectre-2000.yaml | 27 +++ .../Voodoo-Scalable/Spectre-3000.yaml | 27 +++ .../Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml | 28 +++ .../Voodoo4-2-4200-PCI-16-MB.yaml | 28 +++ .../Voodoo4-2-4200-PCI-32-MB.yaml | 28 +++ .../Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo4-4000-AGP.yaml | 25 +++ .../Voodoo-Scalable/Voodoo4-4500-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo4-4500-PCI.yaml | 26 +++ .../Voodoo-Scalable/Voodoo4-4800-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo5-5000-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo5-5000-PCI.yaml | 26 +++ .../Voodoo-Scalable/Voodoo5-5500-AGP.yaml | 26 +++ .../Voodoo-Scalable/Voodoo5-5500-PCI.yaml | 26 +++ .../Voodoo-Scalable/Voodoo5-6000.yaml | 26 +++ specs/GPUs-CONSUMER/Wonder.yaml | 23 ++ .../Wonder/Color-Emulation-Card.yaml | 23 ++ .../GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml | 23 ++ .../GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml | 23 ++ .../GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml | 23 ++ .../Wonder/Graphics-Solution-Plus.yaml | 23 ++ .../Wonder/Graphics-Solution.yaml | 23 ++ .../Wonder/VGA-Improved-Performance.yaml | 24 ++ specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml | 23 ++ .../GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml | 23 ++ specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml | 23 ++ specs/GPUs-CONSUMER/XG4.yaml | 23 ++ specs/GPUs-CONSUMER/XG4/Volari-8300.yaml | 26 +++ specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml | 26 +++ .../XG4/Volari-Duo-V5-Ultra.yaml | 24 ++ .../XG4/Volari-Duo-V8-Ultra.yaml | 28 +++ specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml | 27 +++ specs/GPUs-CONSUMER/XG4/Volari-V3.yaml | 26 +++ specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml | 24 ++ specs/GPUs-CONSUMER/XG4/Volari-V5.yaml | 26 +++ specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml | 26 +++ specs/GPUs-CONSUMER/XG4/Volari-V8.yaml | 26 +++ specs/GPUs-CONSUMER/Xe-LPG.yaml | 17 ++ .../Xe-LPG/Arc-Graphics-112EU-Mobile.yaml | 28 +++ .../Xe-LPG/Arc-Graphics-128EU-Mobile.yaml | 28 +++ .../Xe-LPG/Arc-Graphics-48EU-Mobile.yaml | 28 +++ .../Xe-LPG/Arc-Graphics-64EU-Mobile.yaml | 28 +++ specs/GPUs-CONSUMER/i740.yaml | 16 ++ specs/GPUs-CONSUMER/i740/i740-8-MB.yaml | 24 ++ specs/GPUs-CONSUMER/i740/i740-Graphics.yaml | 24 ++ specs/GPUs-CONSUMER/i740/i740.yaml | 24 ++ specs/Intel/Core/k-unlocked.yaml | 4 - specs/Intel/Haswell/G3258.yaml | 3 - specs/Intel/Intel.yaml | 4 - specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml | 12 - src/js/pure.js | 8 +- src/toSQL/converter.py | 14 ++ src/toSQL/specs.js | 1 + 3057 files changed, 86247 insertions(+), 4292 deletions(-) create mode 100644 gpu-arch-vendor.json create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml create mode 100644 specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A100X.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A10G.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A10M.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A2.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A30X.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/PG506-207.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/PG506-217.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/PG506-232.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/PG506-242.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml create mode 100644 specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-1.0.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-3.0.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml create mode 100644 specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Curie.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml create mode 100644 specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml create mode 100644 specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml create mode 100644 specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml create mode 100644 specs/GPUs-CONSUMER/G100.yaml create mode 100644 specs/GPUs-CONSUMER/G100/Productiva-G100.yaml create mode 100644 specs/GPUs-CONSUMER/G200.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Marvel-G200.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Millennium-G200.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Millennium-G250.yaml create mode 100644 specs/GPUs-CONSUMER/G200/Mystique-G200.yaml create mode 100644 specs/GPUs-CONSUMER/G400.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G400.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml create mode 100644 specs/GPUs-CONSUMER/G400/Millennium-G450.yaml create mode 100644 specs/GPUs-CONSUMER/G500.yaml create mode 100644 specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/G500/Millennium-G550.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml delete mode 100755 specs/GPUs-CONSUMER/GCN-1.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml delete mode 100755 specs/GPUs-CONSUMER/GCN-2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml delete mode 100755 specs/GPUs-CONSUMER/GCN-3.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml delete mode 100755 specs/GPUs-CONSUMER/GCN-4.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER/GCN-5.1.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml create mode 100644 specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml delete mode 100755 specs/GPUs-CONSUMER/GCN-5.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i752.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-3.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-3.5.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.75.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4250.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4350.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4520.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4550.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4570.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4650.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4670.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4700.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4710.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4730.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4750.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4770.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4810.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4830.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4850.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4855.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4860.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4870.yaml delete mode 100755 specs/GPUs-CONSUMER/HD4000/HD4890.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5470.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5490.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5530.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5550.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5570.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5610.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5630.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5690.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5730.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5830.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6350.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6570.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6790.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6850.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6970.yaml delete mode 100755 specs/GPUs-CONSUMER/HD6000/HD6990.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7730.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7870.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7950.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/HD7000/HD7990.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8470.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8490.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8570.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8670.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8730.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8760.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8950.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8970.yaml delete mode 100755 specs/GPUs-CONSUMER/HD8000/HD8990.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml create mode 100644 specs/GPUs-CONSUMER/IBM.yaml create mode 100644 specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml create mode 100644 specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml create mode 100644 specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml create mode 100644 specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml create mode 100644 specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/NVS-510.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml create mode 100644 specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml create mode 100644 specs/GPUs-CONSUMER/Knights.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml create mode 100644 specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml create mode 100644 specs/GPUs-CONSUMER/MP.yaml create mode 100644 specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/MP/QID-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/MP/QID.yaml create mode 100644 specs/GPUs-CONSUMER/Mach.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/3D-Rage.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/WinBoost.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/WinCharger.yaml create mode 100644 specs/GPUs-CONSUMER/Mach/WinTurbo.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml create mode 100644 specs/GPUs-CONSUMER/PX.yaml create mode 100644 specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml create mode 100644 specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P102-100.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P102-101.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P104-100.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P104-101.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P106-090.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P106-100.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/P106M.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml create mode 100644 specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX535.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX545.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml create mode 100644 specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R7-260.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-270.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-280.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-280X.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-285.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-290-base.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-290.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml delete mode 100755 specs/GPUs-CONSUMER/R-200/R9-295X2.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R7-360.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-380X.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-390.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-390X.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-Fury.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/R9-Nano.yaml delete mode 100755 specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml create mode 100644 specs/GPUs-CONSUMER/R300.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireMV-2200.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9500.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9550.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9600.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9700.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-9800.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X300.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X550.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-X600.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400.yaml create mode 100644 specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml create mode 100644 specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml create mode 100644 specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml create mode 100644 specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml create mode 100644 specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml create mode 100644 specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X700.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X800.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-450.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-455.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-470D.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-Vega.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml delete mode 100755 specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml delete mode 100755 specs/GPUs-CONSUMER/Radeon-VII.yaml delete mode 100755 specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-2.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-5.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/ES1000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml delete mode 100755 specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml delete mode 100755 specs/GPUs-CONSUMER/TeraScale-1.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER/TeraScale-2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER/TeraScale-3.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml create mode 100644 specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/ION-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/ION.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml create mode 100644 specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml create mode 100644 specs/GPUs-CONSUMER/Turing.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T1000.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T400.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/T600.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml create mode 100644 specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/VLIW-Vec4.yaml create mode 100644 specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml create mode 100644 specs/GPUs-CONSUMER/Volta.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/TITAN-V.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml create mode 100644 specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml create mode 100644 specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml create mode 100644 specs/GPUs-CONSUMER/XG4.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-8300.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V3.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V5.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml create mode 100644 specs/GPUs-CONSUMER/XG4/Volari-V8.yaml create mode 100644 specs/GPUs-CONSUMER/Xe-LPG.yaml create mode 100644 specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml create mode 100644 specs/GPUs-CONSUMER/i740.yaml create mode 100644 specs/GPUs-CONSUMER/i740/i740-8-MB.yaml create mode 100644 specs/GPUs-CONSUMER/i740/i740-Graphics.yaml create mode 100644 specs/GPUs-CONSUMER/i740/i740.yaml delete mode 100755 specs/Intel/Core/k-unlocked.yaml delete mode 100755 specs/Intel/Haswell/G3258.yaml delete mode 100755 specs/Intel/Intel.yaml delete mode 100755 specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml create mode 100644 src/toSQL/converter.py create mode 100755 src/toSQL/specs.js diff --git a/gpu-arch-vendor.json b/gpu-arch-vendor.json new file mode 100644 index 00000000..e69de29b diff --git a/specs/GPUs-CONSUMER.yaml b/specs/GPUs-CONSUMER.yaml index 0c31aa23..c75a343d 100755 --- a/specs/GPUs-CONSUMER.yaml +++ b/specs/GPUs-CONSUMER.yaml @@ -21,3 +21,86 @@ sections: - HD6000 - HD5000 - HD4000 + - header: test series + members: + - Mach + - Rage-2 + - Rage-3 + - Ampere + - GCN-1.0 + - Rage-4 + - R300 + - Ultra-Threaded-SE + - Rage-7 + - Rage-6 + - R400 + - Generation-12.7 + - Xe-LPG + - Generation-12.5 + - GCN-5.0 + - Knights + - Turing + - Wonder + - Generation-2.0 + - IBM + - TeraScale + - TeraScale-2 + - TeraScale-3 + - GCN-2.0 + - GCN-3.0 + - Rage-5 + - Celsius + - Kelvin + - Tesla-2.0 + - Fermi-2.0 + - Fermi + - Kepler-2.0 + - Kepler + - Maxwell + - Curie + - Tesla + - Rankine + - Pascal + - Maxwell-2.0 + - Ada-Lovelace + - PowerVR-SGX545 + - PowerVR-SGX535 + - Generation-3.0 + - Generation-3.5 + - Generation-4.0 + - Generation-5.0 + - Generation-12.1 + - Hopper + - Generation-7.0 + - Generation-6.0 + - Generation-7.5 + - Generation-5.75 + - Generation-8.0 + - Generation-9.0 + - Generation-9.5 + - i740 + - Generation-1.0 + - Generation-11.0 + - Generation-12.2 + - Volta + - PX + - G200 + - G400 + - Parhelia + - G500 + - GCN-4.0 + - RDNA-2.0 + - PowerVR-Series5XT + - G100 + - MP + - RDNA-3.0 + - GCN-5.1 + - CDNA-1.0 + - CDNA-2.0 + - CDNA-3.0 + - RDNA-1.0 + - Fahrenheit + - Voodoo-Scalable + - VLIW-Vec4 + - XG4 + diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace.yaml new file mode 100644 index 00000000..72c4eb29 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace.yaml @@ -0,0 +1,62 @@ +name: Ada-Lovelace +humanName: Ada Lovelace +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022-09-20' +sections: + - header: WHOLE RANGE + members: + - GeForce-RTX-4050 + - GeForce-RTX-4050-Max-Q + - GeForce-RTX-4050-Mobile + - GeForce-RTX-4060 + - GeForce-RTX-4060-AD106 + - GeForce-RTX-4060-Max-Q + - GeForce-RTX-4060-Mobile + - GeForce-RTX-4060-Ti-8-GB + - GeForce-RTX-4060-Ti-16-GB + - GeForce-RTX-4070 + - GeForce-RTX-4070-Max-Q + - GeForce-RTX-4070-Mobile + - GeForce-RTX-4070-SUPER + - GeForce-RTX-4070-Ti + - GeForce-RTX-4070-Ti-SUPER + - GeForce-RTX-4080 + - GeForce-RTX-4080-12-GB + - GeForce-RTX-4080-Max-Q + - GeForce-RTX-4080-Mobile + - GeForce-RTX-4080-SUPER + - GeForce-RTX-4080-Ti + - GeForce-RTX-4090 + - GeForce-RTX-4090-D + - GeForce-RTX-4090-Max-Q + - GeForce-RTX-4090-Mobile + - GeForce-RTX-4090-Ti + - L4 + - L40 + - L40-CNX + - L40G + - L40S + - RTX-2000-Ada-Generation + - RTX-2000-Embedded-Ada-Generation + - RTX-2000-Max-Q-Ada-Generation + - RTX-2000-Mobile-Ada-Generation + - RTX-3000-Mobile-Ada-Generation + - RTX-3500-Embedded-Ada-Generation + - RTX-3500-Mobile-Ada-Generation + - RTX-4000-Ada-Generation + - RTX-4000-Mobile-Ada-Generation + - RTX-4000-SFF-Ada-Generation + - RTX-4500-Ada-Generation + - RTX-5000-Ada-Generation + - RTX-5000-Embedded-Ada-Generation + - RTX-5000-Max-Q-Ada-Generation + - RTX-5000-Mobile-Ada-Generation + - RTX-5880-Ada-Generation + - RTX-6000-Ada-Generation + - TITAN-Ada diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml new file mode 100644 index 00000000..b96115a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4050-Max-Q +humanName: GeForce RTX 4050 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1605 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 159 mm² + GPU: AD107 + GPU Variant: GN21-X2 + TDP: 35 W + FP32 Compute: 8.218 TFLOPS + FP64 Compute: 128.4 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml new file mode 100644 index 00000000..fb0cd955 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4050-Mobile +humanName: GeForce RTX 4050 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1455 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 159 mm² + GPU: AD107 + GPU Variant: GN21-X2 + TDP: 50 W + FP32 Compute: 8.986 TFLOPS + FP64 Compute: 140.4 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml new file mode 100644 index 00000000..2cb0500b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml @@ -0,0 +1,35 @@ +name: GeForce-RTX-4050 +humanName: GeForce RTX 4050 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '120' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 2505 MHz + GPU Boost Frequency: 2640 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 216.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 159 mm² + GPU: AD107 + TDP: 150 W + FP32 Compute: 13.52 TFLOPS + FP64 Compute: 211.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Ray Tracing Cores: 18 + Tensor Cores: 120 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml new file mode 100644 index 00000000..bf33f30b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml @@ -0,0 +1,35 @@ +name: GeForce-RTX-4060-AD106 +humanName: GeForce RTX 4060 AD106 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '120' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1830 MHz + GPU Boost Frequency: 2535 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 3840 + Die Size: 188 mm² + GPU: AD106 + TDP: 200 W + FP32 Compute: 19.47 TFLOPS + FP64 Compute: 304.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Ray Tracing Cores: 30 + Tensor Cores: 120 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml new file mode 100644 index 00000000..04c7a7f7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4060-Max-Q +humanName: GeForce RTX 4060 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1470 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + GPU Variant: GN21-X4 + TDP: 35 W + FP32 Compute: 9.032 TFLOPS + FP64 Compute: 141.1 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml new file mode 100644 index 00000000..89f20fea --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4060-Mobile +humanName: GeForce RTX 4060 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1545 MHz + GPU Boost Frequency: 1890 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + GPU Variant: GN21-X4 + TDP: 115 W + FP32 Compute: 11.61 TFLOPS + FP64 Compute: 181.4 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml new file mode 100644 index 00000000..36bb7f3c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4060-Ti-16-GB +humanName: GeForce RTX 4060 Ti 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '136' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-05-18' + GPU Base Frequency: 2310 MHz + GPU Boost Frequency: 2535 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 136 + Shader Processor Count: 4352 + Die Size: 188 mm² + GPU: AD106 + GPU Variant: AD106-351-A1 + TDP: 165 W + FP32 Compute: 22.06 TFLOPS + FP64 Compute: 344.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 240 mm + Width: 111 mm + Height: 40 mm + Ray Tracing Cores: 34 + Tensor Cores: 136 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml new file mode 100644 index 00000000..f815f944 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4060-Ti-8-GB +humanName: GeForce RTX 4060 Ti 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '136' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-05-18' + GPU Base Frequency: 2310 MHz + GPU Boost Frequency: 2535 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 136 + Shader Processor Count: 4352 + Die Size: 188 mm² + GPU: AD106 + GPU Variant: AD106-350-A1 + TDP: 160 W + FP32 Compute: 22.06 TFLOPS + FP64 Compute: 344.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 240 mm + Width: 111 mm + Height: 40 mm + Ray Tracing Cores: 34 + Tensor Cores: 136 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml new file mode 100644 index 00000000..cbef7680 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4060 +humanName: GeForce RTX 4060 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-05-18' + GPU Base Frequency: 1830 MHz + GPU Boost Frequency: 2460 MHz + VRAM Frequency: 2125 MHz + VRAM Bandwidth: 272.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + GPU Variant: AD107-400-A1 + TDP: 115 W + FP32 Compute: 15.11 TFLOPS + FP64 Compute: 236.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 240 mm + Width: 111 mm + Height: 40 mm + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml new file mode 100644 index 00000000..b607368b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4070-Max-Q +humanName: GeForce RTX 4070 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '144' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1230 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 144 + Shader Processor Count: 4608 + Die Size: 188 mm² + GPU: AD106 + GPU Variant: GN21-X6 + TDP: 35 W + FP32 Compute: 11.34 TFLOPS + FP64 Compute: 177.1 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 144 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml new file mode 100644 index 00000000..32019203 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4070-Mobile +humanName: GeForce RTX 4070 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '144' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 144 + Shader Processor Count: 4608 + Die Size: 188 mm² + GPU: AD106 + GPU Variant: GN21-X6 + TDP: 115 W + FP32 Compute: 15.62 TFLOPS + FP64 Compute: 244.1 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 144 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml new file mode 100644 index 00000000..9ae3c834 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4070-SUPER +humanName: GeForce RTX 4070 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '224' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-01-08' + GPU Base Frequency: 1980 MHz + GPU Boost Frequency: 2475 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 504.2 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 224 + Shader Processor Count: 7168 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: AD104-350-A1 + TDP: 220 W + FP32 Compute: 35.48 TFLOPS + FP64 Compute: 554.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Height: 42 mm + Ray Tracing Cores: 56 + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml new file mode 100644 index 00000000..b7054264 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4070-Ti-SUPER +humanName: GeForce RTX 4070 Ti SUPER +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '264' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-01-08' + GPU Base Frequency: 2340 MHz + GPU Boost Frequency: 2610 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 672.3 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 264 + Shader Processor Count: 8448 + Die Size: 379 mm² + GPU: AD103 + GPU Variant: AD103-275-A1 + TDP: 285 W + FP32 Compute: 44.10 TFLOPS + FP64 Compute: 689.0 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 310 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 66 + Tensor Cores: 264 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml new file mode 100644 index 00000000..0fd566e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4070-Ti +humanName: GeForce RTX 4070 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 2310 MHz + GPU Boost Frequency: 2610 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 504.2 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 240 + Shader Processor Count: 7680 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: AD104-400-A1 + TDP: 285 W + FP32 Compute: 40.09 TFLOPS + FP64 Compute: 626.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 285 mm + Width: 112 mm + Height: 42 mm + Ray Tracing Cores: 60 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml new file mode 100644 index 00000000..ff030db9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4070 +humanName: GeForce RTX 4070 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-04-12' + GPU Base Frequency: 1920 MHz + GPU Boost Frequency: 2475 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 504.2 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: AD104-250-A1 + TDP: 200 W + FP32 Compute: 29.15 TFLOPS + FP64 Compute: 455.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 240 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml new file mode 100644 index 00000000..b7068735 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-4080-12-GB +humanName: GeForce RTX 4080 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 2310 MHz + GPU Boost Frequency: 2610 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 504.2 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 240 + Shader Processor Count: 7680 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: AD104-400-A1 + TDP: 285 W + FP32 Compute: 40.09 TFLOPS + FP64 Compute: 626.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 60 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml new file mode 100644 index 00000000..bcb7cf60 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4080-Max-Q +humanName: GeForce RTX 4080 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 795 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: GN21-X9 + TDP: 60 W + FP32 Compute: 20.04 TFLOPS + FP64 Compute: 313.2 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml new file mode 100644 index 00000000..cd21ab29 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4080-Mobile +humanName: GeForce RTX 4080 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1290 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: GN21-X9 + TDP: 110 W + FP32 Compute: 24.72 TFLOPS + FP64 Compute: 386.3 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml new file mode 100644 index 00000000..c3aa0a76 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4080-SUPER +humanName: GeForce RTX 4080 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-01-08' + GPU Base Frequency: 2295 MHz + GPU Boost Frequency: 2550 MHz + VRAM Frequency: 1438 MHz + VRAM Bandwidth: 736.3 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 320 + Shader Processor Count: 10240 + Die Size: 379 mm² + GPU: AD103 + GPU Variant: AD103-400-A1 + TDP: 320 W + FP32 Compute: 52.22 TFLOPS + FP64 Compute: 816.0 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 310 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 80 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml new file mode 100644 index 00000000..d8d5f9ce --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4080-Ti +humanName: GeForce RTX 4080 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '440' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 2100 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 1325 MHz + VRAM Bandwidth: 848.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6X + VRAM Bus Width: 320 bit + Render Output Unit Count: 144 + Texture Mapping Unit Count: 440 + Shader Processor Count: 14080 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-225-A1 + TDP: 400 W + FP32 Compute: 67.58 TFLOPS + FP64 Compute: 1,056 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 336 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 110 + Tensor Cores: 440 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml new file mode 100644 index 00000000..89e8b29c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4080 +humanName: GeForce RTX 4080 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-09-20' + GPU Base Frequency: 2205 MHz + GPU Boost Frequency: 2505 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 716.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + GPU Variant: AD103-300-A1 + TDP: 320 W + FP32 Compute: 48.74 TFLOPS + FP64 Compute: 761.5 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 310 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml new file mode 100644 index 00000000..125c2b7c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4090-D +humanName: GeForce RTX 4090 D +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '456' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-12-28' + GPU Base Frequency: 2280 MHz + GPU Boost Frequency: 2520 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,008 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 176 + Texture Mapping Unit Count: 456 + Shader Processor Count: 14592 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-250-A1 + TDP: 425 W + FP32 Compute: 73.54 TFLOPS + FP64 Compute: 1,149 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 304 mm + Width: 137 mm + Height: 61 mm + Ray Tracing Cores: 114 + Tensor Cores: 456 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml new file mode 100644 index 00000000..c4c92d5a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4090-Max-Q +humanName: GeForce RTX 4090 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + GPU Variant: GN21-X11 + TDP: 80 W + FP32 Compute: 28.31 TFLOPS + FP64 Compute: 442.3 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml new file mode 100644 index 00000000..79522d2e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-4090-Mobile +humanName: GeForce RTX 4090 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-03' + GPU Base Frequency: 1335 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + GPU Variant: GN21-X11 + TDP: 120 W + FP32 Compute: 32.98 TFLOPS + FP64 Compute: 515.3 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml new file mode 100644 index 00000000..1b04835d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4090-Ti +humanName: GeForce RTX 4090 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 2325 MHz + GPU Boost Frequency: 2565 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 1,152 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-400-A1 + TDP: 600 W + FP32 Compute: 93.24 TFLOPS + FP64 Compute: 1,457 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 2x 16-pin + Length: 336 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml new file mode 100644 index 00000000..b252521f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-4090 +humanName: GeForce RTX 4090 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '512' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-09-20' + GPU Base Frequency: 2235 MHz + GPU Boost Frequency: 2520 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,008 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 176 + Texture Mapping Unit Count: 512 + Shader Processor Count: 16384 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-300-A1 + TDP: 450 W + FP32 Compute: 82.58 TFLOPS + FP64 Compute: 1,290 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 304 mm + Width: 137 mm + Height: 61 mm + Ray Tracing Cores: 128 + Tensor Cores: 512 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml new file mode 100644 index 00000000..57a9fd82 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml @@ -0,0 +1,36 @@ +name: L4 +humanName: L4 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 795 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 300.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 240 + Shader Processor Count: 7680 + Die Size: 294 mm² + GPU: AD104 + GPU Variant: AD104-???-A1 + TDP: 72 W + FP32 Compute: 31.33 TFLOPS + FP64 Compute: 489.6 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 169 mm + Width: 56 mm + Ray Tracing Cores: 60 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml new file mode 100644 index 00000000..6b8af827 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml @@ -0,0 +1,38 @@ +name: L40-CNX +humanName: L40 CNX +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-13' + GPU Base Frequency: 1005 MHz + GPU Boost Frequency: 2475 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-???-A1 + TDP: 300 W + FP32 Compute: 89.97 TFLOPS + FP64 Compute: 1,406 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml new file mode 100644 index 00000000..6fcc31e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml @@ -0,0 +1,36 @@ +name: L40 +humanName: L40 +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-13' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 2490 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-895-A1 + TDP: 300 W + FP32 Compute: 90.52 TFLOPS + FP64 Compute: 1,414 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml new file mode 100644 index 00000000..cb653120 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml @@ -0,0 +1,38 @@ +name: L40G +humanName: L40G +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-13' + GPU Base Frequency: 1005 MHz + GPU Boost Frequency: 2475 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-???-A1 + TDP: 300 W + FP32 Compute: 89.97 TFLOPS + FP64 Compute: 1,406 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml new file mode 100644 index 00000000..e3ee7ba0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml @@ -0,0 +1,38 @@ +name: L40S +humanName: L40S +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-13' + GPU Base Frequency: 1110 MHz + GPU Boost Frequency: 2520 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-???-A1 + TDP: 300 W + FP32 Compute: 91.61 TFLOPS + FP64 Compute: 1,431 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml new file mode 100644 index 00000000..fe4952d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml @@ -0,0 +1,35 @@ +name: RTX-2000-Ada-Generation +humanName: RTX 2000 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '88' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-02-12' + GPU Base Frequency: 1635 MHz + GPU Boost Frequency: 2115 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 88 + Shader Processor Count: 2816 + Die Size: 159 mm² + GPU: AD107 + TDP: 70 W + FP32 Compute: 11.91 TFLOPS + FP64 Compute: 186.1 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm + Ray Tracing Cores: 22 + Tensor Cores: 88 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml new file mode 100644 index 00000000..9dee2a19 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-2000-Embedded-Ada-Generation +humanName: RTX 2000 Embedded Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1635 MHz + GPU Boost Frequency: 2115 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + TDP: 50 W + FP32 Compute: 12.99 TFLOPS + FP64 Compute: 203.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml new file mode 100644 index 00000000..ecd03fc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-2000-Max-Q-Ada-Generation +humanName: RTX 2000 Max-Q Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + TDP: 35 W + FP32 Compute: 8.940 TFLOPS + FP64 Compute: 139.7 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml new file mode 100644 index 00000000..65211e29 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-2000-Mobile-Ada-Generation +humanName: RTX 2000 Mobile Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1635 MHz + GPU Boost Frequency: 2115 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 3072 + Die Size: 159 mm² + GPU: AD107 + TDP: 50 W + FP32 Compute: 12.99 TFLOPS + FP64 Compute: 203.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 24 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml new file mode 100644 index 00000000..afb561be --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-3000-Mobile-Ada-Generation +humanName: RTX 3000 Mobile Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '144' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 144 + Shader Processor Count: 4608 + Die Size: 188 mm² + GPU: AD106 + TDP: 115 W + FP32 Compute: 15.62 TFLOPS + FP64 Compute: 244.1 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 144 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml new file mode 100644 index 00000000..e0bee024 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-3500-Embedded-Ada-Generation +humanName: RTX 3500 Embedded Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1725 MHz + GPU Boost Frequency: 2250 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 294 mm² + GPU: AD104 + TDP: 100 W + FP32 Compute: 23.04 TFLOPS + FP64 Compute: 360.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml new file mode 100644 index 00000000..5fb83253 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-3500-Mobile-Ada-Generation +humanName: RTX 3500 Mobile Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1110 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 294 mm² + GPU: AD104 + TDP: 100 W + FP32 Compute: 15.82 TFLOPS + FP64 Compute: 247.2 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml new file mode 100644 index 00000000..d9e37cfb --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml @@ -0,0 +1,35 @@ +name: RTX-4000-Ada-Generation +humanName: RTX 4000 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-08-09' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2175 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 280.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 294 mm² + GPU: AD104 + TDP: 130 W + FP32 Compute: 26.73 TFLOPS + FP64 Compute: 417.6 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 245 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml new file mode 100644 index 00000000..cbe1650c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-4000-Mobile-Ada-Generation +humanName: RTX 4000 Mobile Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1290 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 294 mm² + GPU: AD104 + TDP: 110 W + FP32 Compute: 24.72 TFLOPS + FP64 Compute: 386.3 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml new file mode 100644 index 00000000..a17f5349 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml @@ -0,0 +1,35 @@ +name: RTX-4000-SFF-Ada-Generation +humanName: RTX 4000 SFF Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 720 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 280.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 294 mm² + GPU: AD104 + TDP: 70 W + FP32 Compute: 19.17 TFLOPS + FP64 Compute: 299.5 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml new file mode 100644 index 00000000..74eec6d4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml @@ -0,0 +1,35 @@ +name: RTX-4500-Ada-Generation +humanName: RTX 4500 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-08-09' + GPU Base Frequency: 2070 MHz + GPU Boost Frequency: 2580 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 240 + Shader Processor Count: 7680 + Die Size: 294 mm² + GPU: AD104 + TDP: 130 W + FP32 Compute: 39.63 TFLOPS + FP64 Compute: 619.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: None + Length: 245 mm + Width: 112 mm + Ray Tracing Cores: 60 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml new file mode 100644 index 00000000..deaece92 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml @@ -0,0 +1,36 @@ +name: RTX-5000-Ada-Generation +humanName: RTX 5000 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '400' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-08-09' + GPU Base Frequency: 1155 MHz + GPU Boost Frequency: 2550 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 176 + Texture Mapping Unit Count: 400 + Shader Processor Count: 12800 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102 + TDP: 250 W + FP32 Compute: 65.28 TFLOPS + FP64 Compute: 1,020 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 100 + Tensor Cores: 400 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml new file mode 100644 index 00000000..5b9bebe9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-5000-Embedded-Ada-Generation +humanName: RTX 5000 Embedded Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1425 MHz + GPU Boost Frequency: 2115 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + TDP: 120 W + FP32 Compute: 41.15 TFLOPS + FP64 Compute: 643.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml new file mode 100644 index 00000000..1db9af84 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-5000-Max-Q-Ada-Generation +humanName: RTX 5000 Max-Q Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1680 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + TDP: 120 W + FP32 Compute: 32.69 TFLOPS + FP64 Compute: 510.7 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml new file mode 100644 index 00000000..7a226b6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml @@ -0,0 +1,33 @@ +name: RTX-5000-Mobile-Ada-Generation +humanName: RTX 5000 Mobile Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '304' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1425 MHz + GPU Boost Frequency: 2115 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 304 + Shader Processor Count: 9728 + Die Size: 379 mm² + GPU: AD103 + TDP: 120 W + FP32 Compute: 41.15 TFLOPS + FP64 Compute: 643.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 76 + Tensor Cores: 304 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml new file mode 100644 index 00000000..732bba3f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml @@ -0,0 +1,36 @@ +name: RTX-5880-Ada-Generation +humanName: RTX 5880 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '440' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-01-05' + GPU Base Frequency: 1155 MHz + GPU Boost Frequency: 2550 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 176 + Texture Mapping Unit Count: 440 + Shader Processor Count: 14080 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102 + TDP: 285 W + FP32 Compute: 71.81 TFLOPS + FP64 Compute: 1,122 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 110 + Tensor Cores: 440 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml new file mode 100644 index 00000000..5c9fbe97 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml @@ -0,0 +1,36 @@ +name: RTX-6000-Ada-Generation +humanName: RTX 6000 Ada Generation +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '568' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-12-03' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 2505 MHz + VRAM Frequency: 2500 MHz + VRAM Bandwidth: 960.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 568 + Shader Processor Count: 18176 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102 + TDP: 300 W + FP32 Compute: 91.06 TFLOPS + FP64 Compute: 1,423 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 142 + Tensor Cores: 568 diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml new file mode 100644 index 00000000..8bec9415 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml @@ -0,0 +1,39 @@ +name: TITAN-Ada +humanName: TITAN Ada +isPart: true +type: Graphics Card +data: + Architecture: Ada Lovelace + Lithography: 5 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 2235 MHz + GPU Boost Frequency: 2520 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 1,152 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 576 + Shader Processor Count: 18432 + Die Size: 609 mm² + GPU: AD102 + GPU Variant: AD102-450-A1 + TDP: 800 W + FP32 Compute: 92.90 TFLOPS + FP64 Compute: 1,452 GFLOPS (1:64) + Slot Width: Quad-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 2x 16-pin + Length: 336 mm + Width: 140 mm + Height: 73 mm + Ray Tracing Cores: 144 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Ampere.yaml b/specs/GPUs-CONSUMER/Ampere.yaml new file mode 100644 index 00000000..92f559f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere.yaml @@ -0,0 +1,123 @@ +name: Ampere +humanName: Ampere +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2020-05-14' +sections: + - header: WHOLE RANGE + members: + - A2 + - A2-PCIe + - A10-PCIe + - A10G + - A10M + - A16-PCIe + - A30-PCIe + - A30X + - A40-PCIe + - A100-PCIe-40-GB + - A100-PCIe-80-GB + - A100-SXM4-40-GB + - A100-SXM4-80-GB + - A100X + - A800-PCIe-40-GB + - A800-PCIe-80-GB + - A800-SXM4-80-GB + - CMP-70HX + - CMP-90HX + - CMP-170HX-8-GB + - CMP-170HX-10-GB + - DRIVE-A100-PROD + - GeForce-MX570 + - GeForce-MX570-A + - GeForce-RTX-2050-Max-Q + - GeForce-RTX-2050-Mobile + - GeForce-RTX-3050-4-GB + - GeForce-RTX-3050-6-GB + - GeForce-RTX-3050-8-GB + - GeForce-RTX-3050-8-GB-GA107 + - GeForce-RTX-3050-Max-Q + - GeForce-RTX-3050-Max-Q-Refresh-4-GB + - GeForce-RTX-3050-Max-Q-Refresh-6-GB + - GeForce-RTX-3050-Mobile + - GeForce-RTX-3050-Mobile-Refresh-4-GB + - GeForce-RTX-3050-Mobile-Refresh-6-GB + - GeForce-RTX-3050-OEM + - GeForce-RTX-3050-Ti-Max-Q + - GeForce-RTX-3050-Ti-Mobile + - GeForce-RTX-3060-8-GB-GA104 + - GeForce-RTX-3060-12-GB + - GeForce-RTX-3060-12-GB-GA104 + - GeForce-RTX-3060-3840SP + - GeForce-RTX-3060-Max-Q + - GeForce-RTX-3060-Mobile + - GeForce-RTX-3060-Ti + - GeForce-RTX-3060-Ti-GA103 + - GeForce-RTX-3060-Ti-GDDR6X + - GeForce-RTX-3070 + - GeForce-RTX-3070-Max-Q + - GeForce-RTX-3070-Mobile + - GeForce-RTX-3070-Ti + - GeForce-RTX-3070-Ti-8-GB-GA102 + - GeForce-RTX-3070-Ti-16-GB + - GeForce-RTX-3070-TiM + - GeForce-RTX-3070-Ti-Max-Q + - GeForce-RTX-3070-Ti-Mobile + - GeForce-RTX-3080 + - GeForce-RTX-3080-12-GB + - GeForce-RTX-3080-Max-Q + - GeForce-RTX-3080-Mobile + - GeForce-RTX-3080-Ti + - GeForce-RTX-3080-Ti-20-GB + - GeForce-RTX-3080-Ti-Max-Q + - GeForce-RTX-3080-Ti-Mobile + - GeForce-RTX-3090 + - GeForce-RTX-3090-Ti + - GRID-A100A + - GRID-A100B + - Jetson-AGX-Orin-32-GB + - Jetson-AGX-Orin-64-GB + - Jetson-Orin-Nano-4-GB + - Jetson-Orin-Nano-8-GB + - Jetson-Orin-NX-8-GB + - Jetson-Orin-NX-16-GB + - PG506-207 + - PG506-217 + - PG506-232 + - PG506-242 + - RTX-A4-Mobile + - RTX-A500 + - RTX-A500-Embedded + - RTX-A500-Mobile + - RTX-A1000-Embedded + - RTX-A1000-Mobile + - RTX-A1000-Mobile-6-GB + - RTX-A2000 + - RTX-A2000-12-GB + - RTX-A2000-Embedded + - RTX-A2000-Max-Q + - RTX-A2000-Mobile + - RTX-A3000-Mobile + - RTX-A3000-Mobile-12-GB + - RTX-A4000-Max-Q + - RTX-A4000-Mobile + - RTX-A4000H + - RTX-A4500 + - RTX-A4500-Embedded + - RTX-A4500-Max-Q + - RTX-A4500-Mobile + - RTX-A5000 + - RTX-A5000-Max-Q + - RTX-A5000-Mobile + - RTX-A5000-8Q + - RTX-A5000-12Q + - RTX-A5500 + - RTX-A5500-Max-Q + - RTX-A5500-Mobile + - RTX-A6000 + - RTX-A4000 diff --git a/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml new file mode 100644 index 00000000..e26f8a88 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml @@ -0,0 +1,36 @@ +name: A10-PCIe +humanName: A10 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 885 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 600.2 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 9216 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-890-A1 + TDP: 150 W + FP32 Compute: 31.24 TFLOPS + FP64 Compute: 976.3 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 72 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml new file mode 100644 index 00000000..083708a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml @@ -0,0 +1,33 @@ +name: A100-PCIe-40-GB +humanName: A100 PCIe 40 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-06-22' + GPU Base Frequency: 765 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,555 GB/s + VRAM Capacity: 40 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 250 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml new file mode 100644 index 00000000..1fd87288 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml @@ -0,0 +1,33 @@ +name: A100-PCIe-80-GB +humanName: A100 PCIe 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-06-28' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1512 MHz + VRAM Bandwidth: 1,935 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 300 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml new file mode 100644 index 00000000..ee7b41f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml @@ -0,0 +1,31 @@ +name: A100-SXM4-40-GB +humanName: A100 SXM4 40 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-05-14' + GPU Base Frequency: 1095 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,555 GB/s + VRAM Capacity: 40 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml new file mode 100644 index 00000000..a7dec7b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml @@ -0,0 +1,31 @@ +name: A100-SXM4-80-GB +humanName: A100 SXM4 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-11-16' + GPU Base Frequency: 1275 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: OAM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A100X.yaml b/specs/GPUs-CONSUMER/Ampere/A100X.yaml new file mode 100644 index 00000000..6cc672e3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A100X.yaml @@ -0,0 +1,33 @@ +name: A100X +humanName: A100X +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-06-28' + GPU Base Frequency: 795 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 300 W + FP32 Compute: 19.91 TFLOPS + FP64 Compute: 9.953 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A10G.yaml b/specs/GPUs-CONSUMER/Ampere/A10G.yaml new file mode 100644 index 00000000..a84f8db2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A10G.yaml @@ -0,0 +1,36 @@ +name: A10G +humanName: A10G +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1320 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 600.2 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 9216 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-890-A1 + TDP: 150 W + FP32 Compute: 31.52 TFLOPS + FP64 Compute: 985.0 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 72 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Ampere/A10M.yaml b/specs/GPUs-CONSUMER/Ampere/A10M.yaml new file mode 100644 index 00000000..a5825b01 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A10M.yaml @@ -0,0 +1,35 @@ +name: A10M +humanName: A10M +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '224' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 975 MHz + GPU Boost Frequency: 1635 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 600.2 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 224 + Shader Processor Count: 7168 + Die Size: 628 mm² + GPU: GA102 + TDP: 150 W + FP32 Compute: 23.44 TFLOPS + FP64 Compute: 732.5 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 56 + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml new file mode 100644 index 00000000..5ad940bb --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml @@ -0,0 +1,35 @@ +name: A16-PCIe +humanName: A16 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '40' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1312 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 200.1 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GA107 + TDP: 250 W + FP32 Compute: 4.493 TFLOPS + FP64 Compute: 140.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 10 + Tensor Cores: 40 diff --git a/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml new file mode 100644 index 00000000..aa2a1051 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml @@ -0,0 +1,35 @@ +name: A2-PCIe +humanName: A2 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '40' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-11-10' + GPU Base Frequency: 1440 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 200.1 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GA107 + TDP: 60 W + FP32 Compute: 4.531 TFLOPS + FP64 Compute: 141.6 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Length: 168 mm + Width: 69 mm + Ray Tracing Cores: 10 + Tensor Cores: 40 diff --git a/specs/GPUs-CONSUMER/Ampere/A2.yaml b/specs/GPUs-CONSUMER/Ampere/A2.yaml new file mode 100644 index 00000000..d32d52c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A2.yaml @@ -0,0 +1,33 @@ +name: A2 +humanName: A2 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '40' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-11-10' + GPU Base Frequency: 1440 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1563 MHz + VRAM Bandwidth: 200.1 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GA107 + TDP: 60 W + FP32 Compute: 4.531 TFLOPS + FP64 Compute: 70.80 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Ray Tracing Cores: 10 + Tensor Cores: 40 diff --git a/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml new file mode 100644 index 00000000..9ddf8118 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml @@ -0,0 +1,33 @@ +name: A30-PCIe +humanName: A30 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 933.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2e + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 165 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/A30X.yaml b/specs/GPUs-CONSUMER/Ampere/A30X.yaml new file mode 100644 index 00000000..c38feee7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A30X.yaml @@ -0,0 +1,33 @@ +name: A30X +humanName: A30X +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 1,223 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2e + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 230 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml new file mode 100644 index 00000000..7b1122d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml @@ -0,0 +1,35 @@ +name: A40-PCIe +humanName: A40 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '336' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-10-05' + GPU Base Frequency: 1305 MHz + GPU Boost Frequency: 1740 MHz + VRAM Frequency: 1812 MHz + VRAM Bandwidth: 695.8 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 336 + Shader Processor Count: 10752 + Die Size: 628 mm² + GPU: GA102 + TDP: 300 W + FP32 Compute: 37.42 TFLOPS + FP64 Compute: 584.6 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 3x DisplayPort 1.4a + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 84 + Tensor Cores: 336 diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml new file mode 100644 index 00000000..ae06b041 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml @@ -0,0 +1,33 @@ +name: A800-PCIe-40-GB +humanName: A800 PCIe 40 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2022-11-08' + GPU Base Frequency: 765 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,555 GB/s + VRAM Capacity: 40 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 250 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml new file mode 100644 index 00000000..d3fec483 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml @@ -0,0 +1,33 @@ +name: A800-PCIe-80-GB +humanName: A800 PCIe 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2022-11-08' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1512 MHz + VRAM Bandwidth: 1,935 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 250 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml new file mode 100644 index 00000000..36b5b6ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml @@ -0,0 +1,31 @@ +name: A800-SXM4-80-GB +humanName: A800 SXM4 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2022-08-11' + GPU Base Frequency: 1155 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml new file mode 100644 index 00000000..f89b4a33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml @@ -0,0 +1,32 @@ +name: CMP-170HX-10-GB +humanName: CMP 170HX 10 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '280' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-09-01' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,555 GB/s + VRAM Capacity: 10 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 280 + Shader Processor Count: 4480 + Die Size: 826 mm² + GPU: GA100 + GPU Variant: GA100-???F-A1 + TDP: 250 W + FP32 Compute: 12.63 TFLOPS + FP64 Compute: 6.317 TFLOPS (1:2) + Slot Width: IGP + Outputs: No outputs + Power Connectors: 2x 8-pin + Tensor Cores: 280 diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml new file mode 100644 index 00000000..d5c1710b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml @@ -0,0 +1,32 @@ +name: CMP-170HX-8-GB +humanName: CMP 170HX 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '280' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-09-01' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1458 MHz + VRAM Bandwidth: 1,493 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 280 + Shader Processor Count: 4480 + Die Size: 826 mm² + GPU: GA100 + GPU Variant: GA100-105F-A1 + TDP: 250 W + FP32 Compute: 12.63 TFLOPS + FP64 Compute: 6.317 TFLOPS (1:2) + Slot Width: IGP + Outputs: No outputs + Power Connectors: 2x 8-pin + Tensor Cores: 280 diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml new file mode 100644 index 00000000..50b98ace --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml @@ -0,0 +1,36 @@ +name: CMP-70HX +humanName: CMP 70HX +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + GPU Base Frequency: 1365 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 608.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-100-A1 + TDP: unknown + FP32 Compute: 17.14 TFLOPS + FP64 Compute: 267.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 12-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml new file mode 100644 index 00000000..add44350 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml @@ -0,0 +1,36 @@ +name: CMP-90HX +humanName: CMP 90HX +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '200' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-07-28' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 760.3 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6X + VRAM Bus Width: 320 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 200 + Shader Processor Count: 6400 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-100-A1 + TDP: 320 W + FP32 Compute: 21.89 TFLOPS + FP64 Compute: 342.0 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 285 mm + Width: 112 mm + Ray Tracing Cores: 50 + Tensor Cores: 200 diff --git a/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml b/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml new file mode 100644 index 00000000..9e359e2a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml @@ -0,0 +1,31 @@ +name: DRIVE-A100-PROD +humanName: DRIVE A100 PROD +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-05-14' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,866 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2e + VRAM Bus Width: 6144 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 19.49 TFLOPS + FP64 Compute: 9.746 TFLOPS (1:2) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml b/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml new file mode 100644 index 00000000..6e814f99 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml @@ -0,0 +1,31 @@ +name: GRID-A100A +humanName: GRID A100A +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-05-14' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1005 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,866 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2e + VRAM Bus Width: 6144 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 13.89 TFLOPS + FP64 Compute: 6.947 TFLOPS (1:2) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml b/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml new file mode 100644 index 00000000..8cdf62d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml @@ -0,0 +1,31 @@ +name: GRID-A100B +humanName: GRID A100B +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '432' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2020-05-14' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1005 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 1,866 GB/s + VRAM Capacity: 48 GB + VRAM Type: HBM2e + VRAM Bus Width: 6144 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 432 + Shader Processor Count: 6912 + Die Size: 826 mm² + GPU: GA100 + TDP: 400 W + FP32 Compute: 13.89 TFLOPS + FP64 Compute: 6.947 TFLOPS (1:2) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None + Tensor Cores: 432 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml new file mode 100644 index 00000000..d41e5bdd --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml @@ -0,0 +1,33 @@ +name: GeForce-MX570-A +humanName: GeForce MX570 A +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-17' + GPU Base Frequency: 832 MHz + GPU Boost Frequency: 1155 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107SB + TDP: 25 W + FP32 Compute: 4.731 TFLOPS + FP64 Compute: 73.92 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml new file mode 100644 index 00000000..0fa91171 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml @@ -0,0 +1,33 @@ +name: GeForce-MX570 +humanName: GeForce MX570 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-17' + GPU Base Frequency: 832 MHz + GPU Boost Frequency: 1155 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107S + TDP: 15 W + FP32 Compute: 4.731 TFLOPS + FP64 Compute: 73.92 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml new file mode 100644 index 00000000..550ab1d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-2050-Max-Q +humanName: GeForce RTX 2050 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-17' + GPU Base Frequency: 832 MHz + GPU Boost Frequency: 1155 MHz + VRAM Frequency: 1475 MHz + VRAM Bandwidth: 94.40 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 30 W + FP32 Compute: 4.731 TFLOPS + FP64 Compute: 147.8 GFLOPS (1:32) + Outputs: + - 1x DVI + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a + Power Connectors: None + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 32 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml new file mode 100644 index 00000000..7314c5e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-2050-Mobile +humanName: GeForce RTX 2050 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-17' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1245 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 30 W + FP32 Compute: 5.100 TFLOPS + FP64 Compute: 159.4 GFLOPS (1:32) + Outputs: + - 1x DVI + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a + Power Connectors: None + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 32 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml new file mode 100644 index 00000000..3fa64db6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3050-4-GB +humanName: GeForce RTX 3050 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-27' + GPU Base Frequency: 1545 MHz + GPU Boost Frequency: 1740 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + GPU Variant: GA107-140-A1 + TDP: 90 W + FP32 Compute: 7.127 TFLOPS + FP64 Compute: 111.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml new file mode 100644 index 00000000..220990e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3050-6-GB +humanName: GeForce RTX 3050 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '72' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2024-02-02' + GPU Base Frequency: 1042 MHz + GPU Boost Frequency: 1470 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 168.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 2304 + Die Size: 200 mm² + GPU: GA107 + GPU Variant: GA107-325-K2-A1 + TDP: 70 W + FP32 Compute: 6.774 TFLOPS + FP64 Compute: 105.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: None + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 18 + Tensor Cores: 72 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml new file mode 100644 index 00000000..1d9d2492 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3050-8-GB-GA107 +humanName: GeForce RTX 3050 8 GB GA107 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-12-16' + GPU Base Frequency: 1552 MHz + GPU Boost Frequency: 1777 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + GPU Variant: GA107-150-A1 + TDP: 115 W + FP32 Compute: 9.098 TFLOPS + FP64 Compute: 142.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 242 mm + Width: 112 mm + Height: 40 mm + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml new file mode 100644 index 00000000..865bc634 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3050-8-GB +humanName: GeForce RTX 3050 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 1552 MHz + GPU Boost Frequency: 1777 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 276 mm² + GPU: GA106 + GPU Variant: GA106-150-KA-A1 + TDP: 130 W + FP32 Compute: 9.098 TFLOPS + FP64 Compute: 142.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml new file mode 100644 index 00000000..9a05cd75 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Max-Q-Refresh-4-GB +humanName: GeForce RTX 3050 Max-Q Refresh 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-07-06' + GPU Base Frequency: 757 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 35 W + FP32 Compute: 4.608 TFLOPS + FP64 Compute: 72.00 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml new file mode 100644 index 00000000..cb3010e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Max-Q-Refresh-6-GB +humanName: GeForce RTX 3050 Max-Q Refresh 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-07-06' + GPU Base Frequency: 622 MHz + GPU Boost Frequency: 990 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 132.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + TDP: 35 W + FP32 Compute: 5.069 TFLOPS + FP64 Compute: 79.20 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml new file mode 100644 index 00000000..5620f2e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Max-Q +humanName: GeForce RTX 3050 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-11' + GPU Base Frequency: 712 MHz + GPU Boost Frequency: 1057 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 35 W + FP32 Compute: 4.329 TFLOPS + FP64 Compute: 67.65 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml new file mode 100644 index 00000000..c0b398d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Mobile-Refresh-4-GB +humanName: GeForce RTX 3050 Mobile Refresh 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-07-06' + GPU Base Frequency: 652 MHz + GPU Boost Frequency: 1207 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + TDP: 45 W + FP32 Compute: 6.180 TFLOPS + FP64 Compute: 96.56 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml new file mode 100644 index 00000000..40c7d4d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Mobile-Refresh-6-GB +humanName: GeForce RTX 3050 Mobile Refresh 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-07-06' + GPU Base Frequency: 1237 MHz + GPU Boost Frequency: 1492 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 168.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + TDP: 75 W + FP32 Compute: 7.639 TFLOPS + FP64 Compute: 119.4 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml new file mode 100644 index 00000000..ae11a0cd --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-3050-Mobile +humanName: GeForce RTX 3050 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-11' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1343 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + GPU Variant: GN20-P0-A1 + TDP: 45 W + FP32 Compute: 5.501 TFLOPS + FP64 Compute: 85.95 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml new file mode 100644 index 00000000..3024df5e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3050-OEM +humanName: GeForce RTX 3050 OEM +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '72' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 1515 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 2304 + Die Size: 276 mm² + GPU: GA106 + GPU Variant: GA106-150-KA-A1 + TDP: 130 W + FP32 Compute: 8.087 TFLOPS + FP64 Compute: 126.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 18 + Tensor Cores: 72 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml new file mode 100644 index 00000000..7a9a4663 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Ti-Max-Q +humanName: GeForce RTX 3050 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-11' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1035 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + TDP: 75 W + FP32 Compute: 5.299 TFLOPS + FP64 Compute: 82.80 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml new file mode 100644 index 00000000..dd3ac64b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3050-Ti-Mobile +humanName: GeForce RTX 3050 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-11' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1035 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 276 mm² + GPU: GA106 + TDP: 75 W + FP32 Compute: 5.299 TFLOPS + FP64 Compute: 82.80 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml new file mode 100644 index 00000000..a23b3bc2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-12-GB-GA104 +humanName: GeForce RTX 3060 12 GB GA104 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '112' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-09-01' + GPU Base Frequency: 1320 MHz + GPU Boost Frequency: 1777 MHz + VRAM Frequency: 1875 MHz + VRAM Bandwidth: 360.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 3584 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-150-KC-A1 + TDP: 170 W + FP32 Compute: 12.74 TFLOPS + FP64 Compute: 199.0 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 28 + Tensor Cores: 112 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml new file mode 100644 index 00000000..53c14e51 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-12-GB +humanName: GeForce RTX 3060 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '112' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 1320 MHz + GPU Boost Frequency: 1777 MHz + VRAM Frequency: 1875 MHz + VRAM Bandwidth: 360.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 112 + Shader Processor Count: 3584 + Die Size: 276 mm² + GPU: GA106 + GPU Variant: GA106-300-A1 + TDP: 170 W + FP32 Compute: 12.74 TFLOPS + FP64 Compute: 199.0 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 28 + Tensor Cores: 112 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml new file mode 100644 index 00000000..76828ceb --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-3840SP +humanName: GeForce RTX 3060 3840SP +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '120' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + GPU Base Frequency: 1627 MHz + GPU Boost Frequency: 1852 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 3840 + Die Size: 276 mm² + GPU: GA106 + GPU Variant: GA106-400-A1 + TDP: 185 W + FP32 Compute: 14.22 TFLOPS + FP64 Compute: 222.2 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 30 + Tensor Cores: 120 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml new file mode 100644 index 00000000..bd986ae6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-8-GB-GA104 +humanName: GeForce RTX 3060 8 GB GA104 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '112' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Oct 2022' + GPU Base Frequency: 1320 MHz + GPU Boost Frequency: 1777 MHz + VRAM Frequency: 1875 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 3584 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104 + TDP: 195 W + FP32 Compute: 12.74 TFLOPS + FP64 Compute: 199.0 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 28 + Tensor Cores: 112 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml new file mode 100644 index 00000000..d8e8a28f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml @@ -0,0 +1,32 @@ +name: GeForce-RTX-3060-Max-Q +humanName: GeForce RTX 3060 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '120' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 817 MHz + GPU Boost Frequency: 1282 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 3840 + Die Size: 276 mm² + GPU: GA106 + TDP: 60 W + FP32 Compute: 9.846 TFLOPS + FP64 Compute: 153.8 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 120 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml new file mode 100644 index 00000000..8e85239e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml @@ -0,0 +1,32 @@ +name: GeForce-RTX-3060-Mobile +humanName: GeForce RTX 3060 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '120' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1425 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 3840 + Die Size: 276 mm² + GPU: GA106 + TDP: 80 W + FP32 Compute: 10.94 TFLOPS + FP64 Compute: 171.0 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 120 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml new file mode 100644 index 00000000..9a0bb6cb --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-Ti-GA103 +humanName: GeForce RTX 3060 Ti GA103 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '152' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-02-23' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 152 + Shader Processor Count: 4864 + Die Size: 496 mm² + GPU: GA103 + GPU Variant: GA103-200-A1 + TDP: 200 W + FP32 Compute: 16.20 TFLOPS + FP64 Compute: 253.1 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 38 + Tensor Cores: 152 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml new file mode 100644 index 00000000..a61e48b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-Ti-GDDR6X +humanName: GeForce RTX 3060 Ti GDDR6X +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '152' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-19' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 608.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 152 + Shader Processor Count: 4864 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-202-A1 + TDP: 225 W + FP32 Compute: 16.20 TFLOPS + FP64 Compute: 253.1 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 38 + Tensor Cores: 152 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml new file mode 100644 index 00000000..75859f96 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3060-Ti +humanName: GeForce RTX 3060 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '152' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-12-01' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 152 + Shader Processor Count: 4864 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-200-A1 + TDP: 200 W + FP32 Compute: 16.20 TFLOPS + FP64 Compute: 253.1 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 38 + Tensor Cores: 152 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml new file mode 100644 index 00000000..b631c592 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3070-Max-Q +humanName: GeForce RTX 3070 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1290 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-770-A1 + TDP: 80 W + FP32 Compute: 13.21 TFLOPS + FP64 Compute: 206.4 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml new file mode 100644 index 00000000..d47a7b63 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3070-Mobile +humanName: GeForce RTX 3070 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 1110 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-770-A1 + TDP: 115 W + FP32 Compute: 15.97 TFLOPS + FP64 Compute: 249.6 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml new file mode 100644 index 00000000..0031bc48 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3070-Ti-16-GB +humanName: GeForce RTX 3070 Ti 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1575 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 608.3 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-401-A1 + TDP: 290 W + FP32 Compute: 21.75 TFLOPS + FP64 Compute: 339.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml new file mode 100644 index 00000000..a069704f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3070-Ti-8-GB-GA102 +humanName: GeForce RTX 3070 Ti 8 GB GA102 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-21' + GPU Base Frequency: 1575 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 608.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-150-A1 + TDP: 290 W + FP32 Compute: 21.75 TFLOPS + FP64 Compute: 339.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml new file mode 100644 index 00000000..3cce9435 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml @@ -0,0 +1,32 @@ +name: GeForce-RTX-3070-Ti-Max-Q +humanName: GeForce RTX 3070 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 510 MHz + GPU Boost Frequency: 1035 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 80 W + FP32 Compute: 12.19 TFLOPS + FP64 Compute: 190.4 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml new file mode 100644 index 00000000..a00a91ca --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml @@ -0,0 +1,32 @@ +name: GeForce-RTX-3070-Ti-Mobile +humanName: GeForce RTX 3070 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 115 W + FP32 Compute: 16.60 TFLOPS + FP64 Compute: 259.4 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml new file mode 100644 index 00000000..c1071be5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3070-Ti +humanName: GeForce RTX 3070 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-31' + GPU Base Frequency: 1575 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 608.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-400-A1 + TDP: 290 W + FP32 Compute: 21.75 TFLOPS + FP64 Compute: 339.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml new file mode 100644 index 00000000..8a0928a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3070-TiM +humanName: GeForce RTX 3070 TiM +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Nov 2022' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 220 W + FP32 Compute: 16.60 TFLOPS + FP64 Compute: 259.4 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 270 mm + Width: 140 mm + Height: 55 mm + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml new file mode 100644 index 00000000..6586743a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml @@ -0,0 +1,38 @@ +name: GeForce-RTX-3070 +humanName: GeForce RTX 3070 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-01' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1725 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-300-A1 + TDP: 220 W + FP32 Compute: 20.31 TFLOPS + FP64 Compute: 317.4 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 242 mm + Width: 112 mm + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml new file mode 100644 index 00000000..3fbe7d4d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3080-12-GB +humanName: GeForce RTX 3080 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '280' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-11' + GPU Base Frequency: 1260 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 912.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 280 + Shader Processor Count: 8960 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-220-A1 + TDP: 350 W + FP32 Compute: 30.64 TFLOPS + FP64 Compute: 478.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 285 mm + Width: 112 mm + Height: 40 mm + Ray Tracing Cores: 70 + Tensor Cores: 280 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml new file mode 100644 index 00000000..288e1c05 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3080-Max-Q +humanName: GeForce RTX 3080 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1245 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-775-A1 + TDP: 80 W + FP32 Compute: 15.30 TFLOPS + FP64 Compute: 239.0 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml new file mode 100644 index 00000000..dd3bd5ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3080-Mobile +humanName: GeForce RTX 3080 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-12' + GPU Base Frequency: 1110 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-775-A1 + TDP: 115 W + FP32 Compute: 18.98 TFLOPS + FP64 Compute: 296.6 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml new file mode 100644 index 00000000..8fb74a98 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3080-Ti-20-GB +humanName: GeForce RTX 3080 Ti 20 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Jan 2022' + GPU Base Frequency: 1335 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 760.3 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6X + VRAM Bus Width: 320 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 320 + Shader Processor Count: 10240 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-225-A1 + TDP: 350 W + FP32 Compute: 34.10 TFLOPS + FP64 Compute: 532.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 285 mm + Width: 112 mm + Height: 40 mm + Ray Tracing Cores: 80 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml new file mode 100644 index 00000000..984d1f98 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3080-Ti-Max-Q +humanName: GeForce RTX 3080 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-25' + GPU Base Frequency: 585 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 496 mm² + GPU: GA103 + GPU Variant: GN20-E8-A1 + TDP: 80 W + FP32 Compute: 16.70 TFLOPS + FP64 Compute: 261.0 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml new file mode 100644 index 00000000..2a29a764 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-3080-Ti-Mobile +humanName: GeForce RTX 3080 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-25' + GPU Base Frequency: 810 MHz + GPU Boost Frequency: 1260 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 496 mm² + GPU: GA103 + GPU Variant: GN20-E8-A1 + TDP: 115 W + FP32 Compute: 18.71 TFLOPS + FP64 Compute: 292.3 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml new file mode 100644 index 00000000..3c78d5ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3080-Ti +humanName: GeForce RTX 3080 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-31' + GPU Base Frequency: 1365 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 912.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 320 + Shader Processor Count: 10240 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-225-A1 + TDP: 350 W + FP32 Compute: 34.10 TFLOPS + FP64 Compute: 532.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 285 mm + Width: 112 mm + Height: 40 mm + Ray Tracing Cores: 80 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml new file mode 100644 index 00000000..fe3c7d98 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3080 +humanName: GeForce RTX 3080 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '272' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-01' + GPU Base Frequency: 1440 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1188 MHz + VRAM Bandwidth: 760.3 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6X + VRAM Bus Width: 320 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 272 + Shader Processor Count: 8704 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-200-KD-A1 + TDP: 320 W + FP32 Compute: 29.77 TFLOPS + FP64 Compute: 465.1 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 285 mm + Width: 112 mm + Height: 40 mm + Ray Tracing Cores: 68 + Tensor Cores: 272 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml new file mode 100644 index 00000000..864c144b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3090-Ti +humanName: GeForce RTX 3090 Ti +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '336' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-27' + GPU Base Frequency: 1560 MHz + GPU Boost Frequency: 1860 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,008 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 336 + Shader Processor Count: 10752 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-350-A1 + TDP: 450 W + FP32 Compute: 40.00 TFLOPS + FP64 Compute: 625.0 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 16-pin + Length: 336 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 84 + Tensor Cores: 336 diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml new file mode 100644 index 00000000..ba1e892a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-3090 +humanName: GeForce RTX 3090 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '328' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-01' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 1219 MHz + VRAM Bandwidth: 936.2 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6X + VRAM Bus Width: 384 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 328 + Shader Processor Count: 10496 + Die Size: 628 mm² + GPU: GA102 + GPU Variant: GA102-300-A1 + TDP: 350 W + FP32 Compute: 35.58 TFLOPS + FP64 Compute: 556.0 GFLOPS (1:64) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 12-pin + Length: 336 mm + Width: 140 mm + Height: 61 mm + Ray Tracing Cores: 82 + Tensor Cores: 328 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml new file mode 100644 index 00000000..fc40f7fd --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml @@ -0,0 +1,31 @@ +name: Jetson-AGX-Orin-32-GB +humanName: Jetson AGX Orin 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '56' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Feb 2023' + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 204.8 GB/s + VRAM Capacity: 32 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 1792 + Die Size: unknown + GPU: GA10B + TDP: 40 W + FP32 Compute: 3.333 TFLOPS + FP64 Compute: 1.667 TFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 100 mm + Width: 87 mm + Tensor Cores: 56 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml new file mode 100644 index 00000000..7582fd9d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml @@ -0,0 +1,31 @@ +name: Jetson-AGX-Orin-64-GB +humanName: Jetson AGX Orin 64 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Mar 2023' + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 204.8 GB/s + VRAM Capacity: 64 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: unknown + GPU: GA10B + TDP: 60 W + FP32 Compute: 5.325 TFLOPS + FP64 Compute: 2.662 TFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 100 mm + Width: 87 mm + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml new file mode 100644 index 00000000..08449fd4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml @@ -0,0 +1,32 @@ +name: Jetson-Orin-NX-16-GB +humanName: Jetson Orin NX 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '32' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Feb 2023' + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 1024 + Die Size: unknown + GPU: GA10B + GPU Variant: TE980M-A1 + TDP: 25 W + FP32 Compute: 1.880 TFLOPS + FP64 Compute: 940.0 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 32 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml new file mode 100644 index 00000000..62af3920 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml @@ -0,0 +1,32 @@ +name: Jetson-Orin-NX-8-GB +humanName: Jetson Orin NX 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '32' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Mar 2023' + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 1024 + Die Size: unknown + GPU: GA10B + GPU Variant: TE980M-A1 + TDP: 20 W + FP32 Compute: 1.567 TFLOPS + FP64 Compute: 783.4 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 32 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml new file mode 100644 index 00000000..7f62988e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml @@ -0,0 +1,31 @@ +name: Jetson-Orin-Nano-4-GB +humanName: Jetson Orin Nano 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '16' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Mar 2023' + VRAM Frequency: 1067 MHz + VRAM Bandwidth: 34.14 GB/s + VRAM Capacity: 4 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 512 + Die Size: unknown + GPU: GA10B + TDP: 10 W + FP32 Compute: 640.0 GFLOPS + FP64 Compute: 320.0 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 16 diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml new file mode 100644 index 00000000..2133ac6d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml @@ -0,0 +1,31 @@ +name: Jetson-Orin-Nano-8-GB +humanName: Jetson Orin Nano 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '32' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Mar 2023' + VRAM Frequency: 1067 MHz + VRAM Bandwidth: 68.29 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 1024 + Die Size: unknown + GPU: GA10B + TDP: 15 W + FP32 Compute: 1,280 GFLOPS + FP64 Compute: 640.0 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 32 diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml new file mode 100644 index 00000000..06883e09 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml @@ -0,0 +1,33 @@ +name: PG506-207 +humanName: PG506-207 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 933.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 165 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml new file mode 100644 index 00000000..469eb608 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml @@ -0,0 +1,33 @@ +name: PG506-217 +humanName: PG506-217 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 933.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 165 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml new file mode 100644 index 00000000..92043f61 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml @@ -0,0 +1,33 @@ +name: PG506-232 +humanName: PG506-232 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 933.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 165 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml new file mode 100644 index 00000000..54084443 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml @@ -0,0 +1,33 @@ +name: PG506-242 +humanName: PG506-242 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 7 nm + HLSL Shader Model: '224' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1215 MHz + VRAM Bandwidth: 933.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 826 mm² + GPU: GA100 + TDP: 165 W + FP32 Compute: 10.32 TFLOPS + FP64 Compute: 5.161 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml new file mode 100644 index 00000000..fe3db2c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml @@ -0,0 +1,33 @@ +name: RTX-A1000-Embedded +humanName: RTX A1000 Embedded +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 630 MHz + GPU Boost Frequency: 1140 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107S + TDP: 35 W + FP32 Compute: 4.669 TFLOPS + FP64 Compute: 72.96 GFLOPS (1:64) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml new file mode 100644 index 00000000..a172f7f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml @@ -0,0 +1,33 @@ +name: RTX-A1000-Mobile-6-GB +humanName: RTX A1000 Mobile 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 652 MHz + GPU Boost Frequency: 1140 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + TDP: 60 W + FP32 Compute: 5.837 TFLOPS + FP64 Compute: 91.20 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml new file mode 100644 index 00000000..0c73c58f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml @@ -0,0 +1,33 @@ +name: RTX-A1000-Mobile +humanName: RTX A1000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 630 MHz + GPU Boost Frequency: 1140 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 60 W + FP32 Compute: 4.669 TFLOPS + FP64 Compute: 72.96 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml new file mode 100644 index 00000000..70dc17af --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml @@ -0,0 +1,35 @@ +name: RTX-A2000-12-GB +humanName: RTX A2000 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '104' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-11-23' + GPU Base Frequency: 562 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 104 + Shader Processor Count: 3328 + Die Size: 276 mm² + GPU: GA106 + TDP: 70 W + FP32 Compute: 7.987 TFLOPS + FP64 Compute: 124.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 167 mm + Width: 69 mm + Ray Tracing Cores: 26 + Tensor Cores: 104 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml new file mode 100644 index 00000000..8990bf37 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml @@ -0,0 +1,34 @@ +name: RTX-A2000-Embedded +humanName: RTX A2000 Embedded +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 607 MHz + GPU Boost Frequency: 1177 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 200 mm² + GPU: GA107 + GPU Variant: GA107-980-A1 + TDP: 35 W + FP32 Compute: 6.026 TFLOPS + FP64 Compute: 94.16 GFLOPS (1:64) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml new file mode 100644 index 00000000..f6c84378 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml @@ -0,0 +1,33 @@ +name: RTX-A2000-Max-Q +humanName: RTX A2000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 682 MHz + GPU Boost Frequency: 1207 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 276 mm² + GPU: GA106 + TDP: 95 W + FP32 Compute: 6.180 TFLOPS + FP64 Compute: 96.56 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml new file mode 100644 index 00000000..391d024c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml @@ -0,0 +1,33 @@ +name: RTX-A2000-Mobile +humanName: RTX A2000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '80' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1215 MHz + GPU Boost Frequency: 1687 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 2560 + Die Size: 276 mm² + GPU: GA106 + TDP: 95 W + FP32 Compute: 8.637 TFLOPS + FP64 Compute: 135.0 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 20 + Tensor Cores: 80 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml new file mode 100644 index 00000000..eba1a60d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml @@ -0,0 +1,36 @@ +name: RTX-A2000 +humanName: RTX A2000 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '104' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-08-10' + GPU Base Frequency: 562 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 104 + Shader Processor Count: 3328 + Die Size: 276 mm² + GPU: GA106 + GPU Variant: GA106-850-A1 + TDP: 70 W + FP32 Compute: 7.987 TFLOPS + FP64 Compute: 124.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 167 mm + Width: 69 mm + Ray Tracing Cores: 26 + Tensor Cores: 104 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml new file mode 100644 index 00000000..66402779 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml @@ -0,0 +1,32 @@ +name: RTX-A3000-Mobile-12-GB +humanName: RTX A3000 Mobile 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 855 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 4096 + Die Size: 392 mm² + GPU: GA104 + TDP: 115 W + FP32 Compute: 11.80 TFLOPS + FP64 Compute: 184.3 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml new file mode 100644 index 00000000..a6362b3d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml @@ -0,0 +1,32 @@ +name: RTX-A3000-Mobile +humanName: RTX A3000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 600 MHz + GPU Boost Frequency: 1230 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 4096 + Die Size: 392 mm² + GPU: GA104 + TDP: 70 W + FP32 Compute: 10.08 TFLOPS + FP64 Compute: 157.4 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml new file mode 100644 index 00000000..bd6ae686 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml @@ -0,0 +1,33 @@ +name: RTX-A4-Mobile +humanName: RTX A4 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1297 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: unknown + FP32 Compute: 7.250 TFLOPS + FP64 Compute: 113.3 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml new file mode 100644 index 00000000..d0288403 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml @@ -0,0 +1,32 @@ +name: RTX-A4000-Max-Q +humanName: RTX A4000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 392 mm² + GPU: GA104 + TDP: 80 W + FP32 Compute: 14.28 TFLOPS + FP64 Compute: 223.2 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml new file mode 100644 index 00000000..f0fb590f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml @@ -0,0 +1,32 @@ +name: RTX-A4000-Mobile +humanName: RTX A4000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '160' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1680 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 160 + Shader Processor Count: 5120 + Die Size: 392 mm² + GPU: GA104 + TDP: 115 W + FP32 Compute: 17.20 TFLOPS + FP64 Compute: 268.8 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 160 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml new file mode 100644 index 00000000..8c0c861c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml @@ -0,0 +1,36 @@ +name: RTX-A4000 +humanName: RTX A4000 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-875-A1 + TDP: 140 W + FP32 Compute: 19.17 TFLOPS + FP64 Compute: 299.5 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml new file mode 100644 index 00000000..ae75a621 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml @@ -0,0 +1,36 @@ +name: RTX-A4000H +humanName: RTX A4000H +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + GPU Variant: GA104-???-A1 + TDP: 140 W + FP32 Compute: 19.17 TFLOPS + FP64 Compute: 299.5 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 112 mm + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml new file mode 100644 index 00000000..1d3a200d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml @@ -0,0 +1,33 @@ +name: RTX-A4500-Embedded +humanName: RTX A4500 Embedded +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 510 MHz + GPU Boost Frequency: 1215 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 80 W + FP32 Compute: 14.31 TFLOPS + FP64 Compute: 223.6 GFLOPS (1:64) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml new file mode 100644 index 00000000..47948955 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml @@ -0,0 +1,32 @@ +name: RTX-A4500-Max-Q +humanName: RTX A4500 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 510 MHz + GPU Boost Frequency: 1215 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 80 W + FP32 Compute: 14.31 TFLOPS + FP64 Compute: 223.6 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml new file mode 100644 index 00000000..d607e90a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml @@ -0,0 +1,32 @@ +name: RTX-A4500-Mobile +humanName: RTX A4500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '184' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 184 + Shader Processor Count: 5888 + Die Size: 392 mm² + GPU: GA104 + TDP: 140 W + FP32 Compute: 17.66 TFLOPS + FP64 Compute: 276.0 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 184 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml new file mode 100644 index 00000000..feb4478e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml @@ -0,0 +1,35 @@ +name: RTX-A4500 +humanName: RTX A4500 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '224' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-11-23' + GPU Base Frequency: 1050 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 640.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6 + VRAM Bus Width: 320 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 7168 + Die Size: 628 mm² + GPU: GA102 + TDP: 200 W + FP32 Compute: 23.65 TFLOPS + FP64 Compute: 369.6 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 56 + Tensor Cores: 224 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml new file mode 100644 index 00000000..63684875 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml @@ -0,0 +1,33 @@ +name: RTX-A500-Embedded +humanName: RTX A500 Embedded +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 435 MHz + GPU Boost Frequency: 1335 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107S + TDP: 20 W + FP32 Compute: 5.468 TFLOPS + FP64 Compute: 85.44 GFLOPS (1:64) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml new file mode 100644 index 00000000..fa83625d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml @@ -0,0 +1,33 @@ +name: RTX-A500-Mobile +humanName: RTX A500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 832 MHz + GPU Boost Frequency: 1537 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107S + TDP: unknown + FP32 Compute: 6.296 TFLOPS + FP64 Compute: 98.37 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml new file mode 100644 index 00000000..badd121c --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml @@ -0,0 +1,33 @@ +name: RTX-A500 +humanName: RTX A500 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '64' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-11-10' + GPU Base Frequency: 1440 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 2048 + Die Size: 200 mm² + GPU: GA107 + TDP: 60 W + FP32 Compute: 7.250 TFLOPS + FP64 Compute: 113.3 GFLOPS (1:64) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Ray Tracing Cores: 16 + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml new file mode 100644 index 00000000..389ca7ae --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml @@ -0,0 +1,35 @@ +name: RTX-A5000-12Q +humanName: RTX A5000-12Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1170 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 256 + Shader Processor Count: 8192 + Die Size: 628 mm² + GPU: GA102 + TDP: 230 W + FP32 Compute: 27.77 TFLOPS + FP64 Compute: 433.9 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 64 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml new file mode 100644 index 00000000..82893f55 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml @@ -0,0 +1,35 @@ +name: RTX-A5000-8Q +humanName: RTX A5000-8Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1170 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 256 + Shader Processor Count: 8192 + Die Size: 628 mm² + GPU: GA102 + TDP: 230 W + FP32 Compute: 27.77 TFLOPS + FP64 Compute: 433.9 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 64 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml new file mode 100644 index 00000000..f54a0ba5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml @@ -0,0 +1,32 @@ +name: RTX-A5000-Max-Q +humanName: RTX A5000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 720 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + TDP: 80 W + FP32 Compute: 16.59 TFLOPS + FP64 Compute: 259.2 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml new file mode 100644 index 00000000..c89f7ecc --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml @@ -0,0 +1,32 @@ +name: RTX-A5000-Mobile +humanName: RTX A5000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1575 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 392 mm² + GPU: GA104 + TDP: 150 W + FP32 Compute: 19.35 TFLOPS + FP64 Compute: 302.4 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml new file mode 100644 index 00000000..30fc5bbc --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml @@ -0,0 +1,35 @@ +name: RTX-A5000 +humanName: RTX A5000 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1170 MHz + GPU Boost Frequency: 1695 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 256 + Shader Processor Count: 8192 + Die Size: 628 mm² + GPU: GA102 + TDP: 230 W + FP32 Compute: 27.77 TFLOPS + FP64 Compute: 433.9 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 64 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml new file mode 100644 index 00000000..480c2e76 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml @@ -0,0 +1,32 @@ +name: RTX-A5500-Max-Q +humanName: RTX A5500 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 585 MHz + GPU Boost Frequency: 1260 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 496 mm² + GPU: GA103 + TDP: 80 W + FP32 Compute: 18.71 TFLOPS + FP64 Compute: 292.3 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml new file mode 100644 index 00000000..b752df28 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml @@ -0,0 +1,32 @@ +name: RTX-A5500-Mobile +humanName: RTX A5500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '232' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 975 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 232 + Shader Processor Count: 7424 + Die Size: 496 mm² + GPU: GA103 + TDP: 165 W + FP32 Compute: 22.27 TFLOPS + FP64 Compute: 348.0 GFLOPS (1:64) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 58 + Tensor Cores: 232 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml new file mode 100644 index 00000000..e3e0768f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml @@ -0,0 +1,35 @@ +name: RTX-A5500 +humanName: RTX A5500 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-22' + GPU Base Frequency: 1080 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 320 + Shader Processor Count: 10240 + Die Size: 628 mm² + GPU: GA102 + TDP: 230 W + FP32 Compute: 34.10 TFLOPS + FP64 Compute: 532.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 80 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml new file mode 100644 index 00000000..5a9f005b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml @@ -0,0 +1,35 @@ +name: RTX-A6000 +humanName: RTX A6000 +isPart: true +type: Graphics Card +data: + Architecture: Ampere + Lithography: 8 nm + DirectX Support: '12.2' + HLSL Shader Model: '336' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-10-05' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1800 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 336 + Shader Processor Count: 10752 + Die Size: 628 mm² + GPU: GA102 + TDP: 300 W + FP32 Compute: 38.71 TFLOPS + FP64 Compute: 604.8 GFLOPS (1:64) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 112 mm + Ray Tracing Cores: 84 + Tensor Cores: 336 diff --git a/specs/GPUs-CONSUMER/CDNA-1.0.yaml b/specs/GPUs-CONSUMER/CDNA-1.0.yaml new file mode 100644 index 00000000..9eb514be --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-1.0.yaml @@ -0,0 +1,14 @@ +name: CDNA-1.0 +humanName: CDNA 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2020-11-16' +sections: + - header: WHOLE RANGE + members: + - Radeon-Instinct-MI100 diff --git a/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml new file mode 100644 index 00000000..6db96f6a --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI100 +humanName: Radeon Instinct MI100 +isPart: true +type: Graphics Card +data: + Architecture: CDNA 1.0 + Lithography: 7 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '2.1' + Release Date: '2020-11-16' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1502 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 1,229 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 480 + Shader Processor Count: 7680 + Die Size: 750 mm² + GPU: Arcturus + GPU Variant: Arcturus XL + TDP: 300 W + FP32 Compute: 23.07 TFLOPS + FP64 Compute: 11.54 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/CDNA-2.0.yaml b/specs/GPUs-CONSUMER/CDNA-2.0.yaml new file mode 100644 index 00000000..8ad18322 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-2.0.yaml @@ -0,0 +1,17 @@ +name: CDNA-2.0 +humanName: CDNA 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2021-11-08' +sections: + - header: WHOLE RANGE + members: + - Radeon-Instinct-MI200 + - Radeon-Instinct-MI210 + - Radeon-Instinct-MI250 + - Radeon-Instinct-MI250X diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml new file mode 100644 index 00000000..36b7d87f --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml @@ -0,0 +1,30 @@ +name: Radeon-Instinct-MI200 +humanName: Radeon Instinct MI200 +isPart: true +type: Graphics Card +data: + Architecture: CDNA 2.0 + Lithography: 6 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: 'Dec 2021' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 1,638 GB/s + VRAM Capacity: 64 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 416 + Shader Processor Count: 6656 + Die Size: 724 mm² + GPU: Aldebaran + GPU Variant: Aldebaran + TDP: 300 W + FP32 Compute: 22.63 TFLOPS + FP64 Compute: 22.63 TFLOPS (1:1) + Slot Width: OAM Module + Outputs: No outputs + Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml new file mode 100644 index 00000000..48da7211 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI210 +humanName: Radeon Instinct MI210 +isPart: true +type: Graphics Card +data: + Architecture: CDNA 2.0 + Lithography: 6 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: 'Dec 2021' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 1,638 GB/s + VRAM Capacity: 64 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 416 + Shader Processor Count: 6656 + Die Size: 724 mm² + GPU: Aldebaran + GPU Variant: Aldebaran + TDP: 300 W + FP32 Compute: 22.63 TFLOPS + FP64 Compute: 22.63 TFLOPS (1:1) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml new file mode 100644 index 00000000..ef5a32f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI250 +humanName: Radeon Instinct MI250 +isPart: true +type: Graphics Card +data: + Architecture: CDNA 2.0 + Lithography: 6 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-11-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 3,277 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 832 + Shader Processor Count: 13312 + Die Size: 724 mm² + GPU: Aldebaran + GPU Variant: Aldebaran + TDP: 500 W + FP32 Compute: 45.26 TFLOPS + FP64 Compute: 45.26 TFLOPS (1:1) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml new file mode 100644 index 00000000..9391f362 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI250X +humanName: Radeon Instinct MI250X +isPart: true +type: Graphics Card +data: + Architecture: CDNA 2.0 + Lithography: 6 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2021-11-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 3,277 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 880 + Shader Processor Count: 14080 + Die Size: 724 mm² + GPU: Aldebaran + GPU Variant: Aldebaran XT + TDP: 500 W + FP32 Compute: 47.87 TFLOPS + FP64 Compute: 47.87 TFLOPS (1:1) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/CDNA-3.0.yaml b/specs/GPUs-CONSUMER/CDNA-3.0.yaml new file mode 100644 index 00000000..024d6ecf --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-3.0.yaml @@ -0,0 +1,15 @@ +name: CDNA-3.0 +humanName: CDNA 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2023-01-04' +sections: + - header: WHOLE RANGE + members: + - Radeon-Instinct-MI300 + - Radeon-Instinct-MI300X diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml new file mode 100644 index 00000000..121da670 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI300 +humanName: Radeon Instinct MI300 +isPart: true +type: Graphics Card +data: + Architecture: CDNA 3.0 + Lithography: 5 nm + HLSL Shader Model: '880' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-01-04' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 3,277 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM3 + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 880 + Shader Processor Count: 14080 + Die Size: 1017 mm² + GPU: Aqua Vanjaram + TDP: 600 W + FP32 Compute: 47.87 TFLOPS + FP64 Compute: 47.87 TFLOPS (1:1) + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm + Tensor Cores: 880 diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml new file mode 100644 index 00000000..a622c9d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml @@ -0,0 +1,31 @@ +name: Radeon-Instinct-MI300X +humanName: Radeon Instinct MI300X +isPart: true +type: Graphics Card +data: + Architecture: CDNA 3.0 + Lithography: 5 nm + HLSL Shader Model: '1216' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-12-06' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 2100 MHz + VRAM Frequency: 2525 MHz + VRAM Bandwidth: 5,171 GB/s + VRAM Capacity: 192 GB + VRAM Type: HBM3 + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 1216 + Shader Processor Count: 19456 + Die Size: 1017 mm² + GPU: Aqua Vanjaram + TDP: 750 W + FP32 Compute: 81.72 TFLOPS + FP64 Compute: 81.72 TFLOPS (1:1) + Slot Width: OAM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 1216 diff --git a/specs/GPUs-CONSUMER/Celsius.yaml b/specs/GPUs-CONSUMER/Celsius.yaml new file mode 100644 index 00000000..e574204a --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius.yaml @@ -0,0 +1,68 @@ +name: Celsius +humanName: Celsius +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + Release Date: '1999' +sections: + - header: WHOLE RANGE + members: + - GeForce2-Go + - GeForce2-Go-200 + - GeForce2-GTS + - GeForce2-GTS-PRO + - GeForce2-MX + - GeForce2-MX-+-nForce-220 + - GeForce2-MX-+-nForce-420 + - GeForce2-MX-200 + - GeForce2-MX-200-LP + - GeForce2-MX-200-PCI + - GeForce2-MX-400 + - GeForce2-MX-400-PCI + - GeForce2-MX-DH-Pro-TV + - GeForce2-MX-DH-Pro-TV-PCI + - GeForce2-MX-PCI + - GeForce2-PRO + - GeForce2-Ti + - GeForce2-Ultra + - GeForce4-410-Go + - GeForce4-420-Go + - GeForce4-440-Go + - GeForce4-448-Go + - GeForce4-460-Go + - GeForce4-488-Go + - GeForce4-MX-+-nForce2 + - GeForce4-MX-420 + - GeForce4-MX-420-PCI + - GeForce4-MX-440 + - GeForce4-MX-440-Mac-Edition + - GeForce4-MX-440-8x + - GeForce4-MX-440-SE + - GeForce4-MX-4000 + - GeForce4-MX-4000-PCI + - GeForce4-MX-4000-Rev.-2 + - GeForce-256-DDR + - GeForce-256-SDR + - GeForce2-Go-100 + - GeForce-6200-AGP + - GeForce-PCX-4300 + - Quadro + - Quadro2-Go + - Quadro2-MXR + - Quadro2-MXR-Low-Profile + - Quadro2-Pro + - Quadro4-100-NVS + - Quadro4-100-NVS-PCI + - Quadro4-200-NVS + - Quadro4-380-XGL + - Quadro4-400-NVS-PCI + - Quadro4-500-Go-GL + - Quadro4-500-XGL + - Quadro4-550-XGL + - Quadro4-580-XGL + - Quadro-NVS-50-PCI + - Quadro-NVS-280-SD diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml new file mode 100644 index 00000000..b5d9f459 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml @@ -0,0 +1,25 @@ +name: GeForce-256-DDR +humanName: GeForce 256 DDR +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 220 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-12-23' + VRAM Frequency: 150 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 139 mm² + GPU: NV10 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml new file mode 100644 index 00000000..2ab855f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml @@ -0,0 +1,25 @@ +name: GeForce-256-SDR +humanName: GeForce 256 SDR +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 220 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-11' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 1.144 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 139 mm² + GPU: NV10 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml new file mode 100644 index 00000000..f0af6eb0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml @@ -0,0 +1,26 @@ +name: GeForce-6200-AGP +humanName: GeForce 6200 AGP +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-14' + VRAM Frequency: 66 MHz + VRAM Bandwidth: 1.056 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18C + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml new file mode 100644 index 00000000..e2d8e640 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml @@ -0,0 +1,27 @@ +name: GeForce-PCX-4300 +humanName: GeForce PCX 4300 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-02-19' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 65 mm² + GPU: NV18C + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml new file mode 100644 index 00000000..4c162b97 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml @@ -0,0 +1,26 @@ +name: GeForce2-GTS-PRO +humanName: GeForce2 GTS PRO +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2000-04-26' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: GeForce2 GTS PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml new file mode 100644 index 00000000..296353e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml @@ -0,0 +1,26 @@ +name: GeForce2-GTS +humanName: GeForce2 GTS +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2000-04-26' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: GeForce2 GTS + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml new file mode 100644 index 00000000..dede5dd2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml @@ -0,0 +1,25 @@ +name: GeForce2-Go-100 +humanName: GeForce2 Go 100 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-02-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + TDP: 2 W + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml new file mode 100644 index 00000000..a0ca48f3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml @@ -0,0 +1,25 @@ +name: GeForce2-Go-200 +humanName: GeForce2 Go 200 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-02-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + TDP: 2 W + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml new file mode 100644 index 00000000..5d7489a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml @@ -0,0 +1,25 @@ +name: GeForce2-Go +humanName: GeForce2 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-11-11' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + TDP: 2 W + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml new file mode 100644 index 00000000..f1397dec --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml @@ -0,0 +1,24 @@ +name: GeForce2-MX-+-nForce-220 +humanName: GeForce2 MX + nForce 220 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-06-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: Crush11 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml new file mode 100644 index 00000000..3c23cc47 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml @@ -0,0 +1,24 @@ +name: GeForce2-MX-+-nForce-420 +humanName: GeForce2 MX + nForce 420 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-06-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: Crush11 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml new file mode 100644 index 00000000..024b0a78 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml @@ -0,0 +1,26 @@ +name: GeForce2-MX-200-LP +humanName: GeForce2 MX 200 LP +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-03' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: MX200 B3 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml new file mode 100644 index 00000000..5d92c69d --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml @@ -0,0 +1,26 @@ +name: GeForce2-MX-200-PCI +humanName: GeForce2 MX 200 PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-03' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: MX200 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml new file mode 100644 index 00000000..cdca0dd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml @@ -0,0 +1,28 @@ +name: GeForce2-MX-200 +humanName: GeForce2 MX 200 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-03' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: MX200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml new file mode 100644 index 00000000..0c1e17bb --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml @@ -0,0 +1,26 @@ +name: GeForce2-MX-400-PCI +humanName: GeForce2 MX 400 PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-03' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: MX400 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml new file mode 100644 index 00000000..3dca67ed --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml @@ -0,0 +1,28 @@ +name: GeForce2-MX-400 +humanName: GeForce2 MX 400 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-03' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: MX400 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml new file mode 100644 index 00000000..7b1f4b8e --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml @@ -0,0 +1,25 @@ +name: GeForce2-MX-DH-Pro-TV-PCI +humanName: GeForce2 MX DH Pro TV PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-28' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml new file mode 100644 index 00000000..ead9ecff --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml @@ -0,0 +1,25 @@ +name: GeForce2-MX-DH-Pro-TV +humanName: GeForce2 MX DH Pro TV +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-28' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml new file mode 100644 index 00000000..2932a201 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml @@ -0,0 +1,25 @@ +name: GeForce2-MX-PCI +humanName: GeForce2 MX PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-28' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml new file mode 100644 index 00000000..b208ab4c --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml @@ -0,0 +1,25 @@ +name: GeForce2-MX +humanName: GeForce2 MX +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-28' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml new file mode 100644 index 00000000..5813e11c --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml @@ -0,0 +1,27 @@ +name: GeForce2-PRO +humanName: GeForce2 PRO +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2000-12-05' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: GeForce2 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml new file mode 100644 index 00000000..3a35fd20 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml @@ -0,0 +1,27 @@ +name: GeForce2-Ti +humanName: GeForce2 Ti +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-10-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: GeForce2 Ti + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml new file mode 100644 index 00000000..439d2b13 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce2-Ultra +humanName: GeForce2 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2000-08-14' + VRAM Frequency: 230 MHz + VRAM Bandwidth: 7.360 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: GeForce2 Ultra + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml new file mode 100644 index 00000000..9a51a510 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml @@ -0,0 +1,25 @@ +name: GeForce4-410-Go +humanName: GeForce4 410 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: 410 Go + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml new file mode 100644 index 00000000..f91de2a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml @@ -0,0 +1,25 @@ +name: GeForce4-420-Go +humanName: GeForce4 420 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: 420 Go A5 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml new file mode 100644 index 00000000..9a052956 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml @@ -0,0 +1,25 @@ +name: GeForce4-440-Go +humanName: GeForce4 440 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 220 MHz + VRAM Bandwidth: 7.040 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: 440 Go A5 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml new file mode 100644 index 00000000..cdd46626 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml @@ -0,0 +1,24 @@ +name: GeForce4-448-Go +humanName: GeForce4 448 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml new file mode 100644 index 00000000..4cbbc83f --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml @@ -0,0 +1,25 @@ +name: GeForce4-460-Go +humanName: GeForce4 460 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-10-14' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: 460 Go A5 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml new file mode 100644 index 00000000..bfe531da --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml @@ -0,0 +1,24 @@ +name: GeForce4-488-Go +humanName: GeForce4 488 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-03-01' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml new file mode 100644 index 00000000..76b7c246 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml @@ -0,0 +1,24 @@ +name: GeForce4-MX-+-nForce2 +humanName: GeForce4 MX + nForce2 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002-10-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: Crush17 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml new file mode 100644 index 00000000..d94d24ca --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml @@ -0,0 +1,28 @@ +name: GeForce4-MX-4000-PCI +humanName: GeForce4 MX 4000 PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-14' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18C + GPU Variant: MX4000 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml new file mode 100644 index 00000000..ee6e43b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml @@ -0,0 +1,27 @@ +name: GeForce4-MX-4000-Rev.-2 +humanName: GeForce4 MX 4000 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-14' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18C + GPU Variant: MX4000 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml new file mode 100644 index 00000000..11ee642a --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml @@ -0,0 +1,27 @@ +name: GeForce4-MX-4000 +humanName: GeForce4 MX 4000 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-14' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + GPU Variant: MX4000 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml new file mode 100644 index 00000000..a91e1188 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml @@ -0,0 +1,26 @@ +name: GeForce4-MX-420-PCI +humanName: GeForce4 MX 420 PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 1.328 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: MX420 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml new file mode 100644 index 00000000..a96c0c76 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml @@ -0,0 +1,26 @@ +name: GeForce4-MX-420 +humanName: GeForce4 MX 420 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: MX420 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml new file mode 100644 index 00000000..f5aafa0e --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml @@ -0,0 +1,26 @@ +name: GeForce4-MX-440-8x +humanName: GeForce4 MX 440-8x +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-09-25' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 2.000 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + GPU Variant: NV18 A2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml new file mode 100644 index 00000000..151321a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: GeForce4-MX-440-Mac-Edition +humanName: GeForce4 MX 440 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: MX440 A5 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml new file mode 100644 index 00000000..932f4e49 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml @@ -0,0 +1,26 @@ +name: GeForce4-MX-440-SE +humanName: GeForce4 MX 440-SE +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: MX440-SE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml new file mode 100644 index 00000000..c77f0029 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml @@ -0,0 +1,28 @@ +name: GeForce4-MX-440 +humanName: GeForce4 MX 440 +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: MX440 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml new file mode 100644 index 00000000..262fb901 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml @@ -0,0 +1,26 @@ +name: Quadro-NVS-280-SD +humanName: Quadro NVS 280 SD +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2005-05-31' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18C + TDP: 10 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml new file mode 100644 index 00000000..3735948c --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml @@ -0,0 +1,28 @@ +name: Quadro-NVS-50-PCI +humanName: Quadro NVS 50 PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2005-05-31' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + TDP: 10 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro.yaml new file mode 100644 index 00000000..d45f70cd --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro.yaml @@ -0,0 +1,26 @@ +name: Quadro +humanName: Quadro +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 220 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 139 mm² + GPU: NV10 + GPU Variant: NV10GL A3 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml new file mode 100644 index 00000000..f4fb3dfa --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml @@ -0,0 +1,25 @@ +name: Quadro2-Go +humanName: Quadro2 Go +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 181 MHz + VRAM Bandwidth: 2.896 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: Quadro2 Go B3 + TDP: unknown + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml new file mode 100644 index 00000000..16fc6aac --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml @@ -0,0 +1,26 @@ +name: Quadro2-MXR-Low-Profile +humanName: Quadro2 MXR Low Profile +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-07-25' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: NV11L B2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml new file mode 100644 index 00000000..bd9f81a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml @@ -0,0 +1,26 @@ +name: Quadro2-MXR +humanName: Quadro2 MXR +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-07-25' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 64 mm² + GPU: NV11B + GPU Variant: NV11L B2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml new file mode 100644 index 00000000..9df54ac7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml @@ -0,0 +1,28 @@ +name: Quadro2-Pro +humanName: Quadro2 Pro +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-03-22' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 88 mm² + GPU: NV15 + GPU Variant: NV15GL A4 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml new file mode 100644 index 00000000..32691048 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml @@ -0,0 +1,28 @@ +name: Quadro4-100-NVS-PCI +humanName: Quadro4 100 NVS PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-22' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + TDP: 10 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml new file mode 100644 index 00000000..6559b40f --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml @@ -0,0 +1,26 @@ +name: Quadro4-100-NVS +humanName: Quadro4 100 NVS +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-22' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + TDP: 10 W + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml new file mode 100644 index 00000000..e714c2db --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml @@ -0,0 +1,26 @@ +name: Quadro4-200-NVS +humanName: Quadro4 200 NVS +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-12-22' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + TDP: 11 W + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml new file mode 100644 index 00000000..3861eee8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml @@ -0,0 +1,27 @@ +name: Quadro4-380-XGL +humanName: Quadro4 380 XGL +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-11-12' + VRAM Frequency: 256 MHz + VRAM Bandwidth: 8.192 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml new file mode 100644 index 00000000..4a7bf2c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml @@ -0,0 +1,25 @@ +name: Quadro4-400-NVS-PCI +humanName: Quadro4 400 NVS PCI +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-07-16' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + TDP: 18 W + Slot Width: Single-slot + Outputs: 2x LFH60 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml new file mode 100644 index 00000000..c1e01325 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml @@ -0,0 +1,25 @@ +name: Quadro4-500-Go-GL +humanName: Quadro4 500 Go GL +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-04-23' + VRAM Frequency: 220 MHz + VRAM Bandwidth: 3.520 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: NV17GLM A4 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml new file mode 100644 index 00000000..60c52635 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml @@ -0,0 +1,27 @@ +name: Quadro4-500-XGL +humanName: Quadro4 500 XGL +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-19' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 128 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: NV17 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml new file mode 100644 index 00000000..1be22dc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml @@ -0,0 +1,26 @@ +name: Quadro4-550-XGL +humanName: Quadro4 550 XGL +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-19' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV17 + GPU Variant: NV17 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml new file mode 100644 index 00000000..df6351b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml @@ -0,0 +1,25 @@ +name: Quadro4-580-XGL +humanName: Quadro4 580 XGL +isPart: true +type: Graphics Card +data: + Architecture: Celsius + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-11-12' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 65 mm² + GPU: NV18 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie.yaml b/specs/GPUs-CONSUMER/Curie.yaml new file mode 100644 index 00000000..e8afa1d7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie.yaml @@ -0,0 +1,164 @@ +name: Curie +humanName: Curie +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2003-12-22' +sections: + - header: WHOLE RANGE + members: + - GeForce-6100-+-nForce-400 + - GeForce-6100-+-nForce-405 + - GeForce-6100-+-nForce-420 + - GeForce-6100-+-nForce-430 + - GeForce-6150 + - GeForce-6150-LE + - GeForce-6150-SE-+-nForce-430 + - GeForce-6200 + - GeForce-6200-LE + - GeForce-6200-LE-AGP-512-MB + - GeForce-6200-LE-PCI + - GeForce-6200-PCI + - GeForce-6200-SE-TurboCache + - GeForce-6200-TurboCache + - GeForce-6200-X2-PCI + - GeForce-6500 + - GeForce-6600 + - GeForce-6600-AGP + - GeForce-6600-GT + - GeForce-6600-GT-AGP + - GeForce-6600-GT-Dual + - GeForce-6600-LE + - GeForce-6600-LE-AGP + - GeForce-6600-VE + - GeForce-6610-XL + - GeForce-6700-XL + - GeForce-6800 + - GeForce-6800-GS + - GeForce-6800-GT + - GeForce-6800-GT-Dual + - GeForce-6800-GTO + - GeForce-6800-LE + - GeForce-6800-Ultra + - GeForce-6800-Ultra-DDL + - GeForce-6800-XE + - GeForce-6800-XT + - GeForce-7025-+-nForce-630a + - GeForce-7050-+-nForce-610i + - GeForce-7050-+-nForce-620i + - GeForce-7050-+-nForce-630a + - GeForce-7050-+-nForce-630i + - GeForce-7050-PV-+-nForce-630a + - GeForce-7050-SE-+-nForce-630a + - GeForce-7100-+-nForce-630i + - GeForce-7100-GS + - GeForce-7150-+-nForce-630i + - GeForce-7150M-+-nForce-630M + - GeForce-7200-GS + - GeForce-7300-GS + - GeForce-7300-GS-Low-Profile + - GeForce-7300-GT + - GeForce-7300-GT-Mac-Edition + - GeForce-7300-LE + - GeForce-7300-SE + - GeForce-7350-LE + - GeForce-7500-LE + - GeForce-7600-GS + - GeForce-7600-GS-AGP + - GeForce-7600-GT-AGP + - GeForce-7600-GT-Mac-Edition + - GeForce-7650-GS + - GeForce-7800-GS+-20Pipes-AGP + - GeForce-7800-GS+-24Pipes-AGP + - GeForce-7800-GS+-AGP + - GeForce-7800-GS-20Pipes-AGP + - GeForce-7800-GS-24Pipes-AGP + - GeForce-7800-GS-AGP + - GeForce-7800-GT + - GeForce-7800-GT-Dual + - GeForce-7800-GTX + - GeForce-7800-GTX-512 + - GeForce-7900-GS + - GeForce-7900-GS-AGP + - GeForce-7900-GT + - GeForce-7900-GTO + - GeForce-7900-GTX + - GeForce-7900-GX2 + - GeForce-7950-GT + - GeForce-7950-GT-AGP + - GeForce-7950-GX2 + - GeForce-6100 + - GeForce-7000M-+-nForce-610M + - GeForce-7300-GT-AGP + - GeForce-7600-GT + - GeForce-6200-LE-AGP + - GeForce-7600-LE + - GeForce-Go-6100-+-nForce-Go-430 + - GeForce-Go-6150-+-nForce-Go-430 + - GeForce-Go-6200 + - GeForce-Go-6200-TE + - GeForce-Go-6250 + - GeForce-Go-6400 + - GeForce-Go-6600 + - GeForce-Go-6600-NPB-128M + - GeForce-Go-6600-TE + - GeForce-Go-6800 + - GeForce-Go-6800-Ultra + - GeForce-Go-7200 + - GeForce-Go-7300 + - GeForce-Go-7300T + - GeForce-Go-7400 + - GeForce-Go-7450 + - GeForce-Go-7600 + - GeForce-Go-7600-GT + - GeForce-Go-7700 + - GeForce-Go-7800 + - GeForce-Go-7800-GTX + - GeForce-Go-7900-GS + - GeForce-Go-7900-GTX + - GeForce-Go-7900-SE + - GeForce-Go-7950-GTX + - GeForce-6800-GT-DDL + - GeForce-Go-7400T + - Playstation-3-GPU-28nm + - Playstation-3-GPU-40nm + - Playstation-3-GPU-65nm + - Playstation-3-GPU-90nm + - Quadro-FX-350 + - Quadro-FX-350M + - Quadro-FX-540 + - Quadro-FX-550 + - Quadro-FX-550M + - Quadro-FX-560 + - Quadro-FX-1400 + - Quadro-FX-1500 + - Quadro-FX-2500M + - Quadro-FX-3400 + - Quadro-FX-3450 + - Quadro-FX-3500 + - Quadro-FX-3500M + - Quadro-FX-4000 + - Quadro-FX-4000-SDI + - Quadro-FX-4400 + - Quadro-FX-4400G + - Quadro-FX-4500 + - Quadro-FX-4500-SDI + - Quadro-FX-4500-X2 + - Quadro-FX-5500 + - Quadro-FX-5500-SDI + - Quadro-FX-Go540 + - Quadro-FX-Go1400 + - Quadro-NVS-110M + - Quadro-FX-1500M + - Quadro-NVS-120M + - Quadro-NVS-210S + - Quadro-NVS-285 + - Quadro-NVS-300M + - Quadro-NVS-440-PCIe-x1 + - Quadro-NVS-440-PCIe-x16 + - Quadro-NVS-510M + - Quadro-Plex-1000-Model-II diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml new file mode 100644 index 00000000..0b5f70d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml @@ -0,0 +1,25 @@ +name: GeForce-6100-+-nForce-400 +humanName: GeForce 6100 + nForce 400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C61 + GPU Variant: NF-6100-400-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml new file mode 100644 index 00000000..20957db7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml @@ -0,0 +1,25 @@ +name: GeForce-6100-+-nForce-405 +humanName: GeForce 6100 + nForce 405 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C61 + GPU Variant: NF-6100-405-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml new file mode 100644 index 00000000..98414f19 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml @@ -0,0 +1,25 @@ +name: GeForce-6100-+-nForce-420 +humanName: GeForce 6100 + nForce 420 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C61 + GPU Variant: NF-6100-420-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml new file mode 100644 index 00000000..15a8f475 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml @@ -0,0 +1,25 @@ +name: GeForce-6100-+-nForce-430 +humanName: GeForce 6100 + nForce 430 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C61 + GPU Variant: NF-6100-430-N-A3 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml new file mode 100644 index 00000000..fc59e22c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml @@ -0,0 +1,24 @@ +name: GeForce-6100 +humanName: GeForce 6100 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C51 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml new file mode 100644 index 00000000..aa0c751e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml @@ -0,0 +1,24 @@ +name: GeForce-6150-LE +humanName: GeForce 6150 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C51 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml new file mode 100644 index 00000000..18e361c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml @@ -0,0 +1,24 @@ +name: GeForce-6150-SE-+-nForce-430 +humanName: GeForce 6150 SE + nForce 430 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C61 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml new file mode 100644 index 00000000..4219bd5e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml @@ -0,0 +1,25 @@ +name: GeForce-6150 +humanName: GeForce 6150 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: C51 + GPU Variant: NF-6150-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml new file mode 100644 index 00000000..ae4f27fb --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml @@ -0,0 +1,28 @@ +name: GeForce-6200-LE-AGP-512-MB +humanName: GeForce 6200 LE AGP 512 MB +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + GPU Variant: NV44 A1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml new file mode 100644 index 00000000..a14b1754 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-6200-LE-AGP +humanName: GeForce 6200 LE AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-04-04' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 110 mm² + GPU: NV44 + GPU Variant: NV44 A1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml new file mode 100644 index 00000000..b2d5cac8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml @@ -0,0 +1,28 @@ +name: GeForce-6200-LE-PCI +humanName: GeForce 6200 LE PCI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml new file mode 100644 index 00000000..164eff66 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-6200-LE +humanName: GeForce 6200 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-04-04' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 2.128 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR2 + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 110 mm² + GPU: NV44 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml new file mode 100644 index 00000000..dac18d12 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml @@ -0,0 +1,28 @@ +name: GeForce-6200-PCI +humanName: GeForce 6200 PCI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-01-16' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml new file mode 100644 index 00000000..4aa32dcf --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml @@ -0,0 +1,27 @@ +name: GeForce-6200-SE-TurboCache +humanName: GeForce 6200 SE TurboCache +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-12-15' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 2.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + GPU Variant: 6200TC + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml new file mode 100644 index 00000000..f7e95c6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml @@ -0,0 +1,27 @@ +name: GeForce-6200-TurboCache +humanName: GeForce 6200 TurboCache +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-12-15' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44B + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml new file mode 100644 index 00000000..debb372c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml @@ -0,0 +1,26 @@ +name: GeForce-6200-X2-PCI +humanName: GeForce 6200 X2 PCI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-01-16' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DMS-59 + Power Connectors: 1x 6-pin + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml new file mode 100644 index 00000000..b0aaf8f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml @@ -0,0 +1,28 @@ +name: GeForce-6200 +humanName: GeForce 6200 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-10-11' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 2 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml new file mode 100644 index 00000000..c20efaef --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml @@ -0,0 +1,26 @@ +name: GeForce-6500 +humanName: GeForce 6500 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 8.512 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml new file mode 100644 index 00000000..a16d6319 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-AGP +humanName: GeForce 6600 AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-12' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml new file mode 100644 index 00000000..bf69c3d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-GT-AGP +humanName: GeForce 6600 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-11-14' + VRAM Frequency: 475 MHz + VRAM Bandwidth: 15.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: 47 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml new file mode 100644 index 00000000..ac23cc8e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-GT-Dual +humanName: GeForce 6600 GT Dual +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-12' + VRAM Frequency: 560 MHz + VRAM Bandwidth: 17.92 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml new file mode 100644 index 00000000..c8ccb1dd --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-GT +humanName: GeForce 6600 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-12' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml new file mode 100644 index 00000000..5c250e5a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-LE-AGP +humanName: GeForce 6600 LE AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml new file mode 100644 index 00000000..d9064659 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-LE +humanName: GeForce 6600 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml new file mode 100644 index 00000000..3b74cf8f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600-VE +humanName: GeForce 6600 VE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml new file mode 100644 index 00000000..42dc3810 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml @@ -0,0 +1,27 @@ +name: GeForce-6600 +humanName: GeForce 6600 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-12' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml new file mode 100644 index 00000000..216df05a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml @@ -0,0 +1,27 @@ +name: GeForce-6610-XL +humanName: GeForce 6610 XL +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-11-14' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml new file mode 100644 index 00000000..dbf4deb9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml @@ -0,0 +1,27 @@ +name: GeForce-6700-XL +humanName: GeForce 6700 XL +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-11-14' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 17.60 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml new file mode 100644 index 00000000..f5b88130 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-GS +humanName: GeForce 6800 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-12-08' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 287 mm² + GPU: NV40 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml new file mode 100644 index 00000000..eb859341 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-GT-DDL +humanName: GeForce 6800 GT DDL +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-14' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV40 + GPU Variant: 6800 GT + TDP: 80 W + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: None + Length: 305 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml new file mode 100644 index 00000000..89da383f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-GT-Dual +humanName: GeForce 6800 GT Dual +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-06-08' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV45 + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml new file mode 100644 index 00000000..38daa545 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-6800-GT +humanName: GeForce 6800 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-14' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV40 + GPU Variant: 6800 GT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml new file mode 100644 index 00000000..2e9d0275 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml @@ -0,0 +1,26 @@ +name: GeForce-6800-GTO +humanName: GeForce 6800 GTO +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-14' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 287 mm² + GPU: NV45 + GPU Variant: 6800 GT + TDP: unknown + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml new file mode 100644 index 00000000..83e0ab05 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-LE +humanName: GeForce 6800 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-01-16' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 225 mm² + GPU: NV41 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml new file mode 100644 index 00000000..72dd5450 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-Ultra-DDL +humanName: GeForce 6800 Ultra DDL +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-14' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV40 + GPU Variant: 6800 Ultra + TDP: 100 W + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: None + Length: 305 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml new file mode 100644 index 00000000..4c9c9e3c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce-6800-Ultra +humanName: GeForce 6800 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-07-26' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV45 + GPU Variant: 6800 Ultra + TDP: 81 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 197 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml new file mode 100644 index 00000000..00402c19 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-XE +humanName: GeForce 6800 XE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-30' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 8.512 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 287 mm² + GPU: NV40 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml new file mode 100644 index 00000000..874ccf46 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800-XT +humanName: GeForce 6800 XT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-30' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 8.512 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 287 mm² + GPU: NV48 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml new file mode 100644 index 00000000..aef80171 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml @@ -0,0 +1,27 @@ +name: GeForce-6800 +humanName: GeForce 6800 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-14' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 287 mm² + GPU: NV48 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml new file mode 100644 index 00000000..46e1ce26 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml @@ -0,0 +1,25 @@ +name: GeForce-7000M-+-nForce-610M +humanName: GeForce 7000M + nForce 610M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 81 mm² + GPU: C67 + GPU Variant: MCP67MV-A2 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml new file mode 100644 index 00000000..8d14e01d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml @@ -0,0 +1,25 @@ +name: GeForce-7025-+-nForce-630a +humanName: GeForce 7025 + nForce 630a +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C68 + GPU Variant: NF-7025-630A-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml new file mode 100644 index 00000000..f5ff923c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml @@ -0,0 +1,25 @@ +name: GeForce-7050-+-nForce-610i +humanName: GeForce 7050 + nForce 610i +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-01-13' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C73B + GPU Variant: NF-7050-610I-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml new file mode 100644 index 00000000..03c0b222 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml @@ -0,0 +1,27 @@ +name: GeForce-7050-+-nForce-620i +humanName: GeForce 7050 + nForce 620i +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-10-04' + GPU Base Frequency: 500 MHz + GPU Boost Frequency: 630 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C73 + GPU Variant: NF-7050-620i-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml new file mode 100644 index 00000000..659581f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml @@ -0,0 +1,25 @@ +name: GeForce-7050-+-nForce-630a +humanName: GeForce 7050 + nForce 630a +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: C61 + GPU Variant: NF-7025-630A-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml new file mode 100644 index 00000000..fc629c06 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml @@ -0,0 +1,27 @@ +name: GeForce-7050-+-nForce-630i +humanName: GeForce 7050 + nForce 630i +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-10-04' + GPU Base Frequency: 500 MHz + GPU Boost Frequency: 630 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C73 + GPU Variant: NF-7050-630i-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml new file mode 100644 index 00000000..d9666e9e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml @@ -0,0 +1,25 @@ +name: GeForce-7050-PV-+-nForce-630a +humanName: GeForce 7050 PV + nForce 630a +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C68 + GPU Variant: NF-7025-630A-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml new file mode 100644 index 00000000..072bc457 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml @@ -0,0 +1,25 @@ +name: GeForce-7050-SE-+-nForce-630a +humanName: GeForce 7050 SE + nForce 630a +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C68 + GPU Variant: NF-7050SE-630A-A2 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml new file mode 100644 index 00000000..2b8f59fb --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml @@ -0,0 +1,25 @@ +name: GeForce-7100-+-nForce-630i +humanName: GeForce 7100 + nForce 630i +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-10-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C73 + GPU Variant: NF-7100 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml new file mode 100644 index 00000000..aed7c36e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-7100-GS +humanName: GeForce 7100 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-08-08' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44B + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml new file mode 100644 index 00000000..9a1f8d4b --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml @@ -0,0 +1,25 @@ +name: GeForce-7150-+-nForce-630i +humanName: GeForce 7150 + nForce 630i +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-16' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C73 + GPU Variant: NF-7150-610i-A1 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml new file mode 100644 index 00000000..30154d09 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml @@ -0,0 +1,25 @@ +name: GeForce-7150M-+-nForce-630M +humanName: GeForce 7150M + nForce 630M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-16' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 81 mm² + GPU: C67 + GPU Variant: MCP67MV-A2 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml new file mode 100644 index 00000000..c23f095a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-7200-GS +humanName: GeForce 7200 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-18' + VRAM Frequency: 334 MHz + VRAM Bandwidth: 5.344 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-7200GS-N-B1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml new file mode 100644 index 00000000..ba62ddd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml @@ -0,0 +1,28 @@ +name: GeForce-7300-GS-Low-Profile +humanName: GeForce 7300 GS Low Profile +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-18' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-7300GS-N-A3 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml new file mode 100644 index 00000000..79b7be77 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-7300-GS +humanName: GeForce 7300 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-18' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-7300GS-N-A3 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml new file mode 100644 index 00000000..bd862a7f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7300-GT-AGP +humanName: GeForce 7300 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-05-15' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-VZ-N-B1 + TDP: 24 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml new file mode 100644 index 00000000..9505df5f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: GeForce-7300-GT-Mac-Edition +humanName: GeForce 7300 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-26' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 125 mm² + GPU: G73 + GPU Variant: G73-GT-N-A2 + TDP: 24 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml new file mode 100644 index 00000000..50e4991d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml @@ -0,0 +1,27 @@ +name: GeForce-7300-GT +humanName: GeForce 7300 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-05-15' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 125 mm² + GPU: G73 + TDP: 24 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml new file mode 100644 index 00000000..50727f9a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml @@ -0,0 +1,28 @@ +name: GeForce-7300-LE +humanName: GeForce 7300 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 324 MHz + VRAM Bandwidth: 5.184 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-7300LE-N-A3 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml new file mode 100644 index 00000000..746d3a55 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml @@ -0,0 +1,27 @@ +name: GeForce-7300-SE +humanName: GeForce 7300 SE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml new file mode 100644 index 00000000..23175b01 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-7350-LE +humanName: GeForce 7350 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml new file mode 100644 index 00000000..16bbedc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-7500-LE +humanName: GeForce 7500 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 405 MHz + VRAM Bandwidth: 6.480 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 81 mm² + GPU: G72 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml new file mode 100644 index 00000000..769f058d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7600-GS-AGP +humanName: GeForce 7600 GS AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-07-01' + VRAM Frequency: 725 MHz + VRAM Bandwidth: 23.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-H-N-B1 + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml new file mode 100644 index 00000000..5b902bde --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-7600-GS +humanName: GeForce 7600 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-N-B1 + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml new file mode 100644 index 00000000..b43495c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7600-GT-AGP +humanName: GeForce 7600 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-01-08' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-VZ-N-B1 + TDP: 40 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml new file mode 100644 index 00000000..93cd0204 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: GeForce-7600-GT-Mac-Edition +humanName: GeForce 7600 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-02' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-GT-N-B1 + TDP: 40 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml new file mode 100644 index 00000000..8be74833 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-7600-GT +humanName: GeForce 7600 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-GT-N-B1 + TDP: 40 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml new file mode 100644 index 00000000..a7db37ac --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml @@ -0,0 +1,28 @@ +name: GeForce-7600-LE +humanName: GeForce 7600 LE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 100 mm² + GPU: G73B + GPU Variant: G73-VZ-N-B1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml new file mode 100644 index 00000000..fe88f648 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-7650-GS +humanName: GeForce 7650 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-22' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml new file mode 100644 index 00000000..716c69d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS+-20Pipes-AGP +humanName: GeForce 7800 GS+ 20Pipes AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-28' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-Y-N-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml new file mode 100644 index 00000000..a8e1cf07 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS+-24Pipes-AGP +humanName: GeForce 7800 GS+ 24Pipes AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-28' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-GT-N-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml new file mode 100644 index 00000000..b0c2c408 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS+-AGP +humanName: GeForce 7800 GS+ AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-28' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-Y-N-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml new file mode 100644 index 00000000..be41f222 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS-20Pipes-AGP +humanName: GeForce 7800 GS 20Pipes AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-02' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GT-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml new file mode 100644 index 00000000..cad148de --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS-24Pipes-AGP +humanName: GeForce 7800 GS 24Pipes AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-02' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GT-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml new file mode 100644 index 00000000..2ac8c008 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GS-AGP +humanName: GeForce 7800 GS AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-02' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GT-A2 + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml new file mode 100644 index 00000000..4ca53d22 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GT-Dual +humanName: GeForce 7800 GT Dual +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-08-11' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GT-A2 + TDP: 120 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 2x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml new file mode 100644 index 00000000..95aa5475 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml @@ -0,0 +1,30 @@ +name: GeForce-7800-GT +humanName: GeForce 7800 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-08-11' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GT-A2 + TDP: 65 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 226 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml new file mode 100644 index 00000000..f9402c68 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml @@ -0,0 +1,30 @@ +name: GeForce-7800-GTX-512 +humanName: GeForce 7800 GTX 512 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-11-14' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-U-A2 + TDP: 108 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 228 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml new file mode 100644 index 00000000..813ebe70 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml @@ -0,0 +1,28 @@ +name: GeForce-7800-GTX +humanName: GeForce 7800 GTX +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-06-22' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + GPU Variant: GF-7800-GTX-A2 + TDP: 86 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 228 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml new file mode 100644 index 00000000..5425fee1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7900-GS-AGP +humanName: GeForce 7900 GS AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-02' + VRAM Frequency: 660 MHz + VRAM Bandwidth: 42.24 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-N-A2 + TDP: 65 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml new file mode 100644 index 00000000..a9630a25 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml @@ -0,0 +1,29 @@ +name: GeForce-7900-GS +humanName: GeForce 7900 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-05-01' + VRAM Frequency: 660 MHz + VRAM Bandwidth: 42.24 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-N-A2 + TDP: 49 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml new file mode 100644 index 00000000..0dbe27b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-7900-GT +humanName: GeForce 7900 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-09' + VRAM Frequency: 660 MHz + VRAM Bandwidth: 42.24 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-GT-N-A2 + TDP: 48 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml new file mode 100644 index 00000000..d5074581 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml @@ -0,0 +1,28 @@ +name: GeForce-7900-GTO +humanName: GeForce 7900 GTO +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-01' + VRAM Frequency: 660 MHz + VRAM Bandwidth: 42.24 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-U-N-A2 + TDP: 81 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml new file mode 100644 index 00000000..2ed64fce --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml @@ -0,0 +1,28 @@ +name: GeForce-7900-GTX +humanName: GeForce 7900 GTX +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-U-N-A2 + TDP: 84 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml new file mode 100644 index 00000000..e24d105e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml @@ -0,0 +1,28 @@ +name: GeForce-7900-GX2 +humanName: GeForce 7900 GX2 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-30' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 110 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 312 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml new file mode 100644 index 00000000..a4be5549 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml @@ -0,0 +1,28 @@ +name: GeForce-7950-GT-AGP +humanName: GeForce 7950 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-04-02' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-GT2-H-N-A2 + TDP: 65 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml new file mode 100644 index 00000000..5f2b9d6b --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml @@ -0,0 +1,31 @@ +name: GeForce-7950-GT +humanName: GeForce 7950 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-06' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-GT2-H-N-A2 + TDP: 65 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 198 mm + Width: 111 mm + Height: 17 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml new file mode 100644 index 00000000..de1f210b --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml @@ -0,0 +1,30 @@ +name: GeForce-7950-GX2 +humanName: GeForce 7950 GX2 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-06-05' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: G71-D-H-N-A2 + TDP: 110 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml new file mode 100644 index 00000000..a7731869 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6100-+-nForce-Go-430 +humanName: GeForce Go 6100 + nForce Go 430 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: C51 + GPU Variant: NF-G6100-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml new file mode 100644 index 00000000..57173383 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6150-+-nForce-Go-430 +humanName: GeForce Go 6150 + nForce Go 430 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: C51 + GPU Variant: NF-G6150-N-A2 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml new file mode 100644 index 00000000..84014bfa --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml @@ -0,0 +1,26 @@ +name: GeForce-Go-6200-TE +humanName: GeForce Go 6200 TE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: Go6200TE NPB + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml new file mode 100644 index 00000000..9c96c1ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6200 +humanName: GeForce Go 6200 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44B + GPU Variant: GF-GO6200-N-A2 + TDP: 16 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml new file mode 100644 index 00000000..ae73a633 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6250 +humanName: GeForce Go 6250 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 5.600 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44B + GPU Variant: GO6250 + TDP: 10 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml new file mode 100644 index 00000000..f62540a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6400 +humanName: GeForce Go 6400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 5.600 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + GPU Variant: GF-GO6400SQ-N-A2 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml new file mode 100644 index 00000000..dcc0b052 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml @@ -0,0 +1,26 @@ +name: GeForce-Go-6600-NPB-128M +humanName: GeForce Go 6600 NPB 128M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: Go6600 NPB + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml new file mode 100644 index 00000000..b3c9f8d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml @@ -0,0 +1,26 @@ +name: GeForce-Go-6600-TE +humanName: GeForce Go 6600 TE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NV43M A2 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml new file mode 100644 index 00000000..f9196378 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml @@ -0,0 +1,26 @@ +name: GeForce-Go-6600 +humanName: GeForce Go 6600 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NV43M A2 + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml new file mode 100644 index 00000000..abb9615e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6800-Ultra +humanName: GeForce Go 6800 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-02-24' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 225 mm² + GPU: NV41 + GPU Variant: GO6800 U + TDP: 89 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml new file mode 100644 index 00000000..6941cd12 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-6800 +humanName: GeForce Go 6800 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-11-08' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 225 mm² + GPU: NV41 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml new file mode 100644 index 00000000..843eba99 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7200 +humanName: GeForce Go 7200 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 2.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: GDDR3 + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-GO7200-N-A3 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml new file mode 100644 index 00000000..996df11b --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7300 +humanName: GeForce Go 7300 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 5.600 GB/s + VRAM Capacity: 64 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72B + GPU Variant: GF-GO7300-B-N-A3 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml new file mode 100644 index 00000000..b392f414 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7300T +humanName: GeForce Go 7300T +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 5.600 GB/s + VRAM Capacity: 64 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-GO7300T-N-A3 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml new file mode 100644 index 00000000..32e1daca --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7400 +humanName: GeForce Go 7400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 3.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72B + GPU Variant: GF-GO7400-B-N-A3 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml new file mode 100644 index 00000000..849fedcf --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7400T +humanName: GeForce Go 7400T +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 7.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: GF-GO7400T-N-A3 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml new file mode 100644 index 00000000..af1a1fdc --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml @@ -0,0 +1,24 @@ +name: GeForce-Go-7450 +humanName: GeForce Go 7450 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 81 mm² + GPU: G72 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml new file mode 100644 index 00000000..08448624 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7600-GT +humanName: GeForce Go 7600 GT +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-01' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: GF-GO7600-SE-N-B1 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml new file mode 100644 index 00000000..cde24edc --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7600 +humanName: GeForce Go 7600 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 125 mm² + GPU: G73 + GPU Variant: GF-GO7600-N-A2 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml new file mode 100644 index 00000000..136f4f05 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7700 +humanName: GeForce Go 7700 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 100 mm² + GPU: G73B + GPU Variant: GF-GO7700-N-B1 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml new file mode 100644 index 00000000..da5d43d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7800-GTX +humanName: GeForce Go 7800 GTX +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + TDP: 65 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml new file mode 100644 index 00000000..6953400a --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml @@ -0,0 +1,24 @@ +name: GeForce-Go-7800 +humanName: GeForce Go 7800 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-03' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 333 mm² + GPU: G70 + TDP: 35 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml new file mode 100644 index 00000000..690fdb2c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml @@ -0,0 +1,24 @@ +name: GeForce-Go-7900-GS +humanName: GeForce Go 7900 GS +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-18' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + TDP: 20 W + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml new file mode 100644 index 00000000..7019be23 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7900-GTX +humanName: GeForce Go 7900 GTX +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-18' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml new file mode 100644 index 00000000..6d107ce1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml @@ -0,0 +1,24 @@ +name: GeForce-Go-7900-SE +humanName: GeForce Go 7900 SE +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-18' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 21.31 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 125 mm² + GPU: G73 + TDP: 20 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml new file mode 100644 index 00000000..f6ed7414 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml @@ -0,0 +1,25 @@ +name: GeForce-Go-7950-GTX +humanName: GeForce Go 7950 GTX +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-12' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml new file mode 100644 index 00000000..44affe4f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml @@ -0,0 +1,26 @@ +name: Playstation-3-GPU-28nm +humanName: Playstation 3 GPU 28nm +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 28 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 1.1' + OpenCL Support: 'N/A' + Release Date: '2013-06-03' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Die Size: 68 mm² + GPU: RSX-28nm + GPU Variant: RSX-D5305L + TDP: 21 W + Outputs: 1x HDMI 1.3 + Length: 290 mm + Width: 60 mm + Height: 230 mm diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml new file mode 100644 index 00000000..248b7d80 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml @@ -0,0 +1,26 @@ +name: Playstation-3-GPU-40nm +humanName: Playstation 3 GPU 40nm +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 40 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 1.1' + OpenCL Support: 'N/A' + Release Date: '2012-10-04' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Die Size: 114 mm² + GPU: RSX-40nm + GPU Variant: RSX-CXD5302 + TDP: 35 W + Outputs: 1x HDMI 1.3 + Length: 290 mm + Width: 290 mm + Height: 65 mm diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml new file mode 100644 index 00000000..25cac643 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml @@ -0,0 +1,26 @@ +name: Playstation-3-GPU-65nm +humanName: Playstation 3 GPU 65nm +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 65 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 1.1' + OpenCL Support: 'N/A' + Release Date: 'Aug 2008' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Die Size: 186 mm² + GPU: RSX-65nm + GPU Variant: RSX-CXD2991 + TDP: 58 W + Outputs: 1x HDMI 1.3 + Length: 325 mm + Width: 98 mm + Height: 274 mm diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml new file mode 100644 index 00000000..0b78345f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml @@ -0,0 +1,26 @@ +name: Playstation-3-GPU-90nm +humanName: Playstation 3 GPU 90nm +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 1.1' + OpenCL Support: 'N/A' + Release Date: '2006-11-11' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Die Size: 258 mm² + GPU: RSX-90nm + GPU Variant: RSX-CXD2971 + TDP: 80 W + Outputs: 1x HDMI 1.3 + Length: 325 mm + Width: 98 mm + Height: 274 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml new file mode 100644 index 00000000..1bd0438f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-1400 +humanName: Quadro FX 1400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-09' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 225 mm² + GPU: NV41 + GPU Variant: QDFX-1400P-N-B1 + TDP: 55 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml new file mode 100644 index 00000000..ab1d7da7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-1500 +humanName: Quadro FX 1500 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 196 mm² + GPU: G71 + GPU Variant: QDFX-1500-N-A2 + TDP: 65 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 173 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml new file mode 100644 index 00000000..0ec3d9e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml @@ -0,0 +1,26 @@ +name: Quadro-FX-1500M +humanName: Quadro FX 1500M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-18' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + GPU Variant: QDFX-1500M-N-A2 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml new file mode 100644 index 00000000..f4680ed4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-2500M +humanName: Quadro FX 2500M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-09-29' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml new file mode 100644 index 00000000..d73cfafe --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-3400 +humanName: Quadro FX 3400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-06-28' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 287 mm² + GPU: NV45 + GPU Variant: NV45 GL + TDP: 101 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 226 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml new file mode 100644 index 00000000..47bded74 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-3450 +humanName: Quadro FX 3450 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-07-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 225 mm² + GPU: NV41 + GPU Variant: NV41 GL + TDP: 83 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 226 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml new file mode 100644 index 00000000..6d6d25c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-350 +humanName: Quadro FX 350 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 405 MHz + VRAM Bandwidth: 6.480 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + TDP: 21 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml new file mode 100644 index 00000000..7b5be451 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-3500 +humanName: Quadro FX 3500 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-05-22' + VRAM Frequency: 660 MHz + VRAM Bandwidth: 42.24 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 20 + Die Size: 196 mm² + GPU: G71 + TDP: 80 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 173 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml new file mode 100644 index 00000000..cce74143 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-3500M +humanName: Quadro FX 3500M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-03-01' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 45 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml new file mode 100644 index 00000000..52dc282f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-350M +humanName: Quadro FX 350M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-13' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: QD-FX-350M-N-A3 + TDP: 15 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml new file mode 100644 index 00000000..d02a9c34 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-4000-SDI +humanName: Quadro FX 4000 SDI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-19' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 225 mm² + GPU: NV41 + GPU Variant: NV41 GL + TDP: 150 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x SDI + Power Connectors: 1x 6-pin + Length: 214 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml new file mode 100644 index 00000000..314e36e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-4000 +humanName: Quadro FX 4000 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV40 + GPU Variant: NV40 GL + TDP: 142 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x Molex + Length: 214 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml new file mode 100644 index 00000000..effee3e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-4400 +humanName: Quadro FX 4400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-07-28' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV45 + GPU Variant: NV45 GL + TDP: 83 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml new file mode 100644 index 00000000..d7ddccf9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-4400G +humanName: Quadro FX 4400G +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-07-28' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 287 mm² + GPU: NV45 + GPU Variant: NV45 GL + TDP: 83 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml new file mode 100644 index 00000000..df29f99f --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-4500-SDI +humanName: Quadro FX 4500 SDI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-30' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + TDP: 116 W + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml new file mode 100644 index 00000000..1d4ca42d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-4500-X2 +humanName: Quadro FX 4500 X2 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-24' + VRAM Frequency: 605 MHz + VRAM Bandwidth: 38.72 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + GPU Variant: QDFX-4500X2-N-A2 + TDP: 145 W + Slot Width: Dual-slot + Outputs: 4x DVI + Power Connectors: 2x 6-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml new file mode 100644 index 00000000..da398f04 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml @@ -0,0 +1,31 @@ +name: Quadro-FX-4500 +humanName: Quadro FX 4500 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-07-28' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + GPU Variant: QDFX-4500-N-A2 + TDP: 109 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 230 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml new file mode 100644 index 00000000..671026a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-540 +humanName: Quadro FX 540 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-09' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NV43 GL + TDP: 25 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml new file mode 100644 index 00000000..b0d3bba7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-550 +humanName: Quadro FX 550 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NV43 GL + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml new file mode 100644 index 00000000..60a3cec2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-5500-SDI +humanName: Quadro FX 5500 SDI +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 505 MHz + VRAM Bandwidth: 32.32 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 104 W + Slot Width: Triple-slot + Outputs: + - 3x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml new file mode 100644 index 00000000..3401285e --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-5500 +humanName: Quadro FX 5500 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 505 MHz + VRAM Bandwidth: 32.32 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 96 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml new file mode 100644 index 00000000..d4edb853 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml @@ -0,0 +1,23 @@ +name: Quadro-FX-550M +humanName: Quadro FX 550M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-13' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 125 mm² + GPU: G73 + TDP: 35 W + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml new file mode 100644 index 00000000..b9f54c0d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-560 +humanName: Quadro FX 560 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-04-20' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Die Size: 125 mm² + GPU: G73 + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml new file mode 100644 index 00000000..091cfdc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-Go1400 +humanName: Quadro FX Go1400 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 130 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-02-25' + VRAM Frequency: 295 MHz + VRAM Bandwidth: 18.88 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 225 mm² + GPU: NV41 + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml new file mode 100644 index 00000000..ccfdf0d3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml @@ -0,0 +1,26 @@ +name: Quadro-FX-Go540 +humanName: Quadro FX Go540 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-09' + VRAM Frequency: 225 MHz + VRAM Bandwidth: 7.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: QDFX-GO540-N-A4 + TDP: 25 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml new file mode 100644 index 00000000..8d6ad664 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml @@ -0,0 +1,26 @@ +name: Quadro-NVS-110M +humanName: Quadro NVS 110M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-06-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72 + GPU Variant: QD-NVS-110M-N-A3 + TDP: 10 W + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml new file mode 100644 index 00000000..bfb61498 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml @@ -0,0 +1,25 @@ +name: Quadro-NVS-120M +humanName: Quadro NVS 120M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-06-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: G72B + TDP: 10 W + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml new file mode 100644 index 00000000..4cc6795c --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml @@ -0,0 +1,24 @@ +name: Quadro-NVS-210S +humanName: Quadro NVS 210S +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-12-22' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: C51 + TDP: 11 W + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml new file mode 100644 index 00000000..b00482ba --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-285 +humanName: Quadro NVS 285 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-06-06' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: 110 mm² + GPU: NV44 + GPU Variant: QD-NVS285-N-A2 + TDP: 18 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml new file mode 100644 index 00000000..8346b7b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml @@ -0,0 +1,25 @@ +name: Quadro-NVS-300M +humanName: Quadro NVS 300M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-05-24' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 125 mm² + GPU: G73 + GPU Variant: QD-NVS-300M-N-A2 + TDP: 16 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml new file mode 100644 index 00000000..225ee985 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-440-PCIe-x1 +humanName: Quadro NVS 440 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-14' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NVS440 NPB + TDP: 31 W + Slot Width: Single-slot + Outputs: 2x DMS-59 + Power Connectors: None + Length: 187 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml new file mode 100644 index 00000000..7022d049 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-440-PCIe-x16 +humanName: Quadro NVS 440 PCIe x16 +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.0 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-02-14' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 154 mm² + GPU: NV43 + GPU Variant: NVS440 NPB + TDP: 31 W + Slot Width: Single-slot + Outputs: 2x DMS-59 + Power Connectors: None + Length: 187 mm diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml new file mode 100644 index 00000000..2e3c8c3d --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml @@ -0,0 +1,24 @@ +name: Quadro-NVS-510M +humanName: Quadro NVS 510M +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-21' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 196 mm² + GPU: G71 + TDP: 35 W + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml new file mode 100644 index 00000000..14066690 --- /dev/null +++ b/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml @@ -0,0 +1,24 @@ +name: Quadro-Plex-1000-Model-II +humanName: Quadro Plex 1000 Model II +isPart: true +type: Graphics Card +data: + Architecture: Curie + Lithography: 110 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2008-07-25' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Die Size: 333 mm² + GPU: G70 + TDP: 640 W + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Fahrenheit.yaml b/specs/GPUs-CONSUMER/Fahrenheit.yaml new file mode 100644 index 00000000..71cd63f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit.yaml @@ -0,0 +1,21 @@ +name: Fahrenheit +humanName: Fahrenheit +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + Release Date: '1998-03-23' +sections: + - header: WHOLE RANGE + members: + - Riva-TNT + - Riva-TNT2 + - Riva-TNT2-M64 + - Riva-TNT2-M64-Vanta + - Riva-TNT2-M64-Vanta-16 + - Riva-TNT2-PRO + - Riva-TNT2-Ultra + - Vanta-LT diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml new file mode 100644 index 00000000..775f1f0f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml @@ -0,0 +1,25 @@ +name: Riva-TNT +humanName: Riva TNT +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 350 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-03-23' + VRAM Frequency: 110 MHz + VRAM Bandwidth: 1.760 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 128 mm² + GPU: NV4 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml new file mode 100644 index 00000000..dea4445c --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2-M64-Vanta-16 +humanName: Riva TNT2 M64 Vanta-16 +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-03-22' + VRAM Frequency: 133 MHz + VRAM Bandwidth: 1.064 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Vanta-16 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml new file mode 100644 index 00000000..1c4919cc --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2-M64-Vanta +humanName: Riva TNT2 M64 Vanta +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-03-22' + VRAM Frequency: 133 MHz + VRAM Bandwidth: 1.064 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Vanta + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml new file mode 100644 index 00000000..544af0bf --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2-M64 +humanName: Riva TNT2 M64 +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-12' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 1.144 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Riva TNT2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml new file mode 100644 index 00000000..5f9ec559 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2-PRO +humanName: Riva TNT2 PRO +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-12' + VRAM Frequency: 167 MHz + VRAM Bandwidth: 2.672 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Riva TNT2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml new file mode 100644 index 00000000..c8012c9c --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2-Ultra +humanName: Riva TNT2 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-03-15' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Riva TNT2 Ultra + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml new file mode 100644 index 00000000..d63f07b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml @@ -0,0 +1,26 @@ +name: Riva-TNT2 +humanName: Riva TNT2 +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-12' + VRAM Frequency: 150 MHz + VRAM Bandwidth: 2.400 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Riva TNT2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml new file mode 100644 index 00000000..8a492370 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml @@ -0,0 +1,26 @@ +name: Vanta-LT +humanName: Vanta LT +isPart: true +type: Graphics Card +data: + Architecture: Fahrenheit + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-03-01' + VRAM Frequency: 100 MHz + VRAM Bandwidth: 800.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 63 mm² + GPU: NV5 + GPU Variant: Vanta LT + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0.yaml b/specs/GPUs-CONSUMER/Fermi-2.0.yaml new file mode 100644 index 00000000..f2327897 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0.yaml @@ -0,0 +1,84 @@ +name: Fermi-2.0 +humanName: Fermi 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2010-11-09' +sections: + - header: WHOLE RANGE + members: + - GeForce-410M + - GeForce-605-OEM + - GeForce-610 + - GeForce-610M + - GeForce-620M + - GeForce-705A + - GeForce-705M + - GeForce-710M + - GeForce-720A + - GeForce-800A + - GeForce-820M + - GeForce-510-OEM + - GeForce-800M + - GeForce-820A + - GeForce-GT-520 + - GeForce-GT-520-OEM + - GeForce-GT-520-PCIe-x1 + - GeForce-GT-520MX + - GeForce-GT-545 + - GeForce-GT-545-OEM + - GeForce-GT-550M + - GeForce-GT-555M-2-GB + - GeForce-GT-555M-3-GB + - GeForce-GT-610-OEM + - GeForce-GT-610-PCIe-x1 + - GeForce-GT-620-OEM + - GeForce-GT-625M + - GeForce-GT-635M + - GeForce-GT-640-OEM-Rebrand + - GeForce-GT-645-OEM + - GeForce-GT-705-OEM + - GeForce-GT-710M + - GeForce-GT-720A + - GeForce-GT-720M + - GeForce-GTS-450-Rev.-3 + - GeForce-GTX-460-SE-v2 + - GeForce-GTX-460-v2 + - GeForce-GT-520-PCI + - GeForce-GT-610 + - GeForce-GT-610-PCI + - GeForce-GTS-450-Rev.-2 + - GeForce-GTX-550-Ti + - GeForce-GTX-555-OEM + - GeForce-GTX-560 + - GeForce-GTX-560-OEM + - GeForce-GTX-560-SE + - GeForce-GTX-560-Ti + - GeForce-GTX-560-Ti-448 + - GeForce-GTX-560-Ti-OEM + - GeForce-GTX-560M + - GeForce-GTX-570 + - GeForce-GTX-570-Rev.-2 + - GeForce-GTX-570M + - GeForce-GTX-580 + - GeForce-GTX-580-Rev.-2 + - GeForce-GTX-580M + - GeForce-GTX-590 + - GeForce-GTX-670M + - GeForce-GTX-675M + - NVS-310 + - NVS-315 + - NVS-4200M + - NVS-5200M + - Quadro-5010M + - Quadro-7000 + - Quadro-Plex-7000 + - Tesla-C2075 + - Tesla-C2090 + - Tesla-M2075 + - Tesla-M2090 + - Tesla-X2090 diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml new file mode 100644 index 00000000..2fab9c78 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml @@ -0,0 +1,29 @@ +name: GeForce-410M +humanName: GeForce 410M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: N12M-GS + TDP: 12 W + FP32 Compute: 110.1 GFLOPS + FP64 Compute: 9.176 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml new file mode 100644 index 00000000..977ee9ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-510-OEM +humanName: GeForce 510 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-09-29' + VRAM Frequency: 898 MHz + VRAM Bandwidth: 14.37 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 25 W + FP32 Compute: 100.4 GFLOPS + FP64 Compute: 8.368 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml new file mode 100644 index 00000000..3e464aaa --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-605-OEM +humanName: GeForce 605 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-02' + VRAM Frequency: 897 MHz + VRAM Bandwidth: 14.35 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-200-A1 + TDP: 25 W + FP32 Compute: 100.4 GFLOPS + FP64 Compute: 8.368 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml new file mode 100644 index 00000000..e9aad3b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml @@ -0,0 +1,29 @@ +name: GeForce-610 +humanName: GeForce 610 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-12-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: N13M-GE + TDP: 12 W + FP32 Compute: 141.7 GFLOPS + FP64 Compute: 11.81 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml new file mode 100644 index 00000000..a949be4f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml @@ -0,0 +1,29 @@ +name: GeForce-610M +humanName: GeForce 610M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-12-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF117B + GPU Variant: N14M-GL-B-A2 + TDP: 12 W + FP32 Compute: 120.0 GFLOPS + FP64 Compute: 10.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml new file mode 100644 index 00000000..7fd1166c --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml @@ -0,0 +1,29 @@ +name: GeForce-620M +humanName: GeForce 620M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-22' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N13P-GLP + TDP: 15 W + FP32 Compute: 240.0 GFLOPS + FP64 Compute: 20.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml new file mode 100644 index 00000000..0a5ab5ac --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml @@ -0,0 +1,28 @@ +name: GeForce-705A +humanName: GeForce 705A +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-07-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 15 W + FP32 Compute: 91.20 GFLOPS + FP64 Compute: 7.600 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml new file mode 100644 index 00000000..e0f4f2af --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml @@ -0,0 +1,29 @@ +name: GeForce-705M +humanName: GeForce 705M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-09-27' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GL + TDP: 15 W + FP32 Compute: 141.7 GFLOPS + FP64 Compute: 11.81 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml new file mode 100644 index 00000000..b37dd754 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml @@ -0,0 +1,28 @@ +name: GeForce-710M +humanName: GeForce 710M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-01-09' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GL + TDP: 15 W + FP32 Compute: 297.6 GFLOPS + FP64 Compute: 24.80 GFLOPS (1:12) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml new file mode 100644 index 00000000..c1a4a6c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml @@ -0,0 +1,28 @@ +name: GeForce-720A +humanName: GeForce 720A +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-07-01' + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GE + TDP: 33 W + FP32 Compute: 297.6 GFLOPS + FP64 Compute: 24.80 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml new file mode 100644 index 00000000..7872fa54 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml @@ -0,0 +1,28 @@ +name: GeForce-800A +humanName: GeForce 800A +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-03-17' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 15 W + FP32 Compute: 91.20 GFLOPS + FP64 Compute: 7.600 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml new file mode 100644 index 00000000..0a81c984 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml @@ -0,0 +1,29 @@ +name: GeForce-800M +humanName: GeForce 800M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-03-17' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GL + TDP: 15 W + FP32 Compute: 141.7 GFLOPS + FP64 Compute: 11.81 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml new file mode 100644 index 00000000..5b0bde4f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml @@ -0,0 +1,29 @@ +name: GeForce-820A +humanName: GeForce 820A +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-03-17' + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N15V-GM + TDP: 15 W + FP32 Compute: 240.0 GFLOPS + FP64 Compute: 20.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml new file mode 100644 index 00000000..49b67762 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml @@ -0,0 +1,29 @@ +name: GeForce-820M +humanName: GeForce 820M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-11-27' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117B + GPU Variant: N15V-GM-B-A2 + TDP: 15 W + FP32 Compute: 240.0 GFLOPS + FP64 Compute: 20.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml new file mode 100644 index 00000000..5b001a6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-520-OEM +humanName: GeForce GT 520 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-08-20' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 29 W + FP32 Compute: 134.6 GFLOPS + FP64 Compute: 11.22 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml new file mode 100644 index 00000000..0f20096d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-520-PCI +humanName: GeForce GT 520 PCI +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-04-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-300-A1 + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml new file mode 100644 index 00000000..3f1a4fb9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-520-PCIe-x1 +humanName: GeForce GT 520 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-04-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 152 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml new file mode 100644 index 00000000..0940061d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-520 +humanName: GeForce GT 520 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-04-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-300-A1 + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml new file mode 100644 index 00000000..49a4a1a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-520MX +humanName: GeForce GT 520MX +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-30' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119 + GPU Variant: N12P-GVR-B-A1 + TDP: 20 W + FP32 Compute: 172.8 GFLOPS + FP64 Compute: 14.40 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml new file mode 100644 index 00000000..d48d1db9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-545-OEM +humanName: GeForce GT 545 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-14' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: GF116-110-KA-A1 + TDP: 105 W + FP32 Compute: 501.4 GFLOPS + FP64 Compute: 41.78 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml new file mode 100644 index 00000000..b6b68cd8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-545 +humanName: GeForce GT 545 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-14' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 1536 MB + VRAM Type: DDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116 + TDP: 70 W + FP32 Compute: 414.7 GFLOPS + FP64 Compute: 34.56 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml new file mode 100644 index 00000000..bb8ea061 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-550M +humanName: GeForce GT 550M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116 + TDP: 35 W + FP32 Compute: 273.6 GFLOPS + FP64 Compute: 22.80 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml new file mode 100644 index 00000000..3d0c58bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-555M-2-GB +humanName: GeForce GT 555M 2 GB +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116S + GPU Variant: N12E-GE2-A1 + TDP: 35 W + FP32 Compute: 388.8 GFLOPS + FP64 Compute: 32.40 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml new file mode 100644 index 00000000..f5b9902e --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-555M-3-GB +humanName: GeForce GT 555M 3 GB +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 43.20 GB/s + VRAM Capacity: 3 GB + VRAM Type: DDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116S + GPU Variant: N12E-GE2-A1 + TDP: 35 W + FP32 Compute: 339.8 GFLOPS + FP64 Compute: 28.32 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml new file mode 100644 index 00000000..c5d62639 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-610-OEM +humanName: GeForce GT 610 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-09-09' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 29 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml new file mode 100644 index 00000000..beaf4a0f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-610-PCI +humanName: GeForce GT 610 PCI +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-02' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-300-A1 + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml new file mode 100644 index 00000000..7e2b3592 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-610-PCIe-x1 +humanName: GeForce GT 610 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-02' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-300-A1 + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml new file mode 100644 index 00000000..869fbe51 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-610 +humanName: GeForce GT 610 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-02' + VRAM Frequency: 898 MHz + VRAM Bandwidth: 14.37 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-300-A1 + TDP: 29 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml new file mode 100644 index 00000000..fb01d210 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-620-OEM +humanName: GeForce GT 620 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-02' + VRAM Frequency: 898 MHz + VRAM Bandwidth: 14.37 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + TDP: 30 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml new file mode 100644 index 00000000..fd32181f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-625M +humanName: GeForce GT 625M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-10-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117B + GPU Variant: N13M-GS-B-A2 + TDP: 15 W + FP32 Compute: 240.0 GFLOPS + FP64 Compute: 20.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml new file mode 100644 index 00000000..fde3cf51 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-635M +humanName: GeForce GT 635M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-22' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116S + GPU Variant: N12E-GE2-A1 + TDP: 35 W + FP32 Compute: 388.8 GFLOPS + FP64 Compute: 32.40 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml new file mode 100644 index 00000000..f8ca01e3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-640-OEM-Rebrand +humanName: GeForce GT 640 OEM Rebrand +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-24' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 1536 MB + VRAM Type: DDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: GF116-150-A1 + TDP: 75 W + FP32 Compute: 414.7 GFLOPS + FP64 Compute: 34.56 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml new file mode 100644 index 00000000..3c2075e2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-645-OEM +humanName: GeForce GT 645 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-04-24' + VRAM Frequency: 957 MHz + VRAM Bandwidth: 91.87 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF114 + TDP: 102 W + FP32 Compute: 894.0 GFLOPS + FP64 Compute: 74.50 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml new file mode 100644 index 00000000..39a1a6e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-705-OEM +humanName: GeForce GT 705 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-03-27' + VRAM Frequency: 825 MHz + VRAM Bandwidth: 13.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-400-A1 + TDP: 29 W + FP32 Compute: 167.8 GFLOPS + FP64 Compute: 13.98 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml new file mode 100644 index 00000000..c6899b82 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml @@ -0,0 +1,27 @@ +name: GeForce-GT-710M +humanName: GeForce GT 710M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-01-09' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GL + TDP: 15 W + FP32 Compute: 297.6 GFLOPS + FP64 Compute: 24.80 GFLOPS (1:12) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml new file mode 100644 index 00000000..4ec01c66 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-720A +humanName: GeForce GT 720A +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-07-01' + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GE + TDP: 33 W + FP32 Compute: 297.6 GFLOPS + FP64 Compute: 24.80 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml new file mode 100644 index 00000000..a8fe5197 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-720M +humanName: GeForce GT 720M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-04-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N14M-GE + TDP: 33 W + FP32 Compute: 297.6 GFLOPS + FP64 Compute: 24.80 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml new file mode 100644 index 00000000..dbcc205f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTS-450-Rev.-2 +humanName: GeForce GTS 450 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-03-15' + VRAM Frequency: 902 MHz + VRAM Bandwidth: 57.73 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: GF116-200-KA-A1 + TDP: 106 W + FP32 Compute: 601.3 GFLOPS + FP64 Compute: 50.11 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml new file mode 100644 index 00000000..7812f639 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTS-450-Rev.-3 +humanName: GeForce GTS 450 Rev. 3 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-07-11' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: GF116-200-KA-A1 + TDP: 106 W + FP32 Compute: 451.0 GFLOPS + FP64 Compute: 37.58 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml new file mode 100644 index 00000000..3c55643d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-460-SE-v2 +humanName: GeForce GTX 460 SE v2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-11-15' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 81.60 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-400-A1 + TDP: 150 W + FP32 Compute: 748.8 GFLOPS + FP64 Compute: 62.40 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml new file mode 100644 index 00000000..c3907c74 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-460-v2 +humanName: GeForce GTX 460 v2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-09-24' + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 96.19 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-400-A1 + TDP: 160 W + FP32 Compute: 1,046 GFLOPS + FP64 Compute: 87.19 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml new file mode 100644 index 00000000..3f30e325 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-550-Ti +humanName: GeForce GTX 550 Ti +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-03-15' + VRAM Frequency: 1026 MHz + VRAM Bandwidth: 98.50 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: GF116-400-A1 + TDP: 116 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 57.60 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml new file mode 100644 index 00000000..f5189e28 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-555-OEM +humanName: GeForce GTX 555 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-14' + VRAM Frequency: 957 MHz + VRAM Bandwidth: 91.87 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-200-KB-A1 + TDP: 150 W + FP32 Compute: 847.9 GFLOPS + FP64 Compute: 70.66 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml new file mode 100644 index 00000000..b0c31e52 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-560-OEM +humanName: GeForce GTX 560 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-11-29' + VRAM Frequency: 802 MHz + VRAM Bandwidth: 128.3 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-040-A1 + TDP: 150 W + FP32 Compute: 847.9 GFLOPS + FP64 Compute: 106.0 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 99 mm + Height: 34 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml new file mode 100644 index 00000000..21d4aae1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-560-SE +humanName: GeForce GTX 560 SE +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-02-20' + VRAM Frequency: 957 MHz + VRAM Bandwidth: 91.87 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-200-KB-A1 + TDP: 150 W + FP32 Compute: 847.9 GFLOPS + FP64 Compute: 70.66 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml new file mode 100644 index 00000000..8cfbfcbb --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-560-Ti-448 +humanName: GeForce GTX 560 Ti 448 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-11-29' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 152.0 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-270-A1 + TDP: 210 W + FP32 Compute: 1,312 GFLOPS + FP64 Compute: 164.0 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml new file mode 100644 index 00000000..0ad3c3a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-560-Ti-OEM +humanName: GeForce GTX 560 Ti OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-03-30' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 121.6 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 520 mm² + GPU: GF110 + TDP: 210 W + FP32 Compute: 1,031 GFLOPS + FP64 Compute: 128.8 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort + Power Connectors: 2x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml new file mode 100644 index 00000000..484a4943 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-560-Ti +humanName: GeForce GTX 560 Ti +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-25' + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 128.3 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 384 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-400-A1 + TDP: 170 W + FP32 Compute: 1,263 GFLOPS + FP64 Compute: 105.3 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml new file mode 100644 index 00000000..10b5e2e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-560 +humanName: GeForce GTX 560 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-17' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: GF114-325-A1 + TDP: 150 W + FP32 Compute: 1,089 GFLOPS + FP64 Compute: 90.72 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml new file mode 100644 index 00000000..cce42e8e --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-560M +humanName: GeForce GTX 560M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-05-30' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 60.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF116 + GPU Variant: N12E-GS-A1 + TDP: 75 W + FP32 Compute: 595.2 GFLOPS + FP64 Compute: 49.60 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml new file mode 100644 index 00000000..e5db852a --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-570-Rev.-2 +humanName: GeForce GTX 570 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-12-07' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 152.0 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 60 + Shader Processor Count: 480 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-275-A1 + TDP: 219 W + FP32 Compute: 1,405 GFLOPS + FP64 Compute: 175.7 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml new file mode 100644 index 00000000..2e6ba5d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-570 +humanName: GeForce GTX 570 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-12-07' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 152.0 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 60 + Shader Processor Count: 480 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-275-A1 + TDP: 219 W + FP32 Compute: 1,405 GFLOPS + FP64 Compute: 175.7 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml new file mode 100644 index 00000000..43651105 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-570M +humanName: GeForce GTX 570M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-06-28' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: N12E-GT-A1 + TDP: 75 W + FP32 Compute: 772.8 GFLOPS + FP64 Compute: 64.40 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml new file mode 100644 index 00000000..930304df --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-580-Rev.-2 +humanName: GeForce GTX 580 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-06-06' + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 192.4 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-380-A1 + TDP: 244 W + FP32 Compute: 1.581 TFLOPS + FP64 Compute: 197.6 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml new file mode 100644 index 00000000..a425b97b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml @@ -0,0 +1,33 @@ +name: GeForce-GTX-580 +humanName: GeForce GTX 580 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-11-09' + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 192.4 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-375-A1 + TDP: 244 W + FP32 Compute: 1.581 TFLOPS + FP64 Compute: 197.6 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml new file mode 100644 index 00000000..65c6d83b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-580M +humanName: GeForce GTX 580M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-06-28' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 384 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: N12E-GTX2-A1 + TDP: 100 W + FP32 Compute: 952.3 GFLOPS + FP64 Compute: 79.36 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml new file mode 100644 index 00000000..813f4ecd --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-590 +humanName: GeForce GTX 590 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-03-24' + VRAM Frequency: 854 MHz + VRAM Bandwidth: 164.0 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-351-A1 + TDP: 365 W + FP32 Compute: 1,244 GFLOPS + FP64 Compute: 155.5 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 3x DVI + - 1x mini-DisplayPort + Power Connectors: 2x 8-pin + Length: 279 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml new file mode 100644 index 00000000..e42db0dc --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-670M +humanName: GeForce GTX 670M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-22' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: N13E-GS1-LP-A1 + TDP: 75 W + FP32 Compute: 803.7 GFLOPS + FP64 Compute: 66.98 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml new file mode 100644 index 00000000..9033582d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-675M +humanName: GeForce GTX 675M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-22' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 384 + Die Size: 332 mm² + GPU: GF114 + GPU Variant: N13E-GS1-A1 + TDP: 100 W + FP32 Compute: 952.3 GFLOPS + FP64 Compute: 79.36 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml new file mode 100644 index 00000000..539e2bce --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml @@ -0,0 +1,30 @@ +name: NVS-310 +humanName: NVS 310 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-06-26' + VRAM Frequency: 875 MHz + VRAM Bandwidth: 14.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-825-A1 + TDP: 20 W + FP32 Compute: 100.4 GFLOPS + FP64 Compute: 8.368 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None + Length: 156 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml new file mode 100644 index 00000000..1328f0ec --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml @@ -0,0 +1,30 @@ +name: NVS-315 +humanName: NVS 315 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2013-03-10' + VRAM Frequency: 875 MHz + VRAM Bandwidth: 14.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: GF119-825-A1 + TDP: 19 W + FP32 Compute: 100.4 GFLOPS + FP64 Compute: 8.368 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml new file mode 100644 index 00000000..8f67332d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml @@ -0,0 +1,29 @@ +name: NVS-4200M +humanName: NVS 4200M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 79 mm² + GPU: GF119S + GPU Variant: N12P-NS1-S-A1 + TDP: 25 W + FP32 Compute: 155.5 GFLOPS + FP64 Compute: 12.96 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml new file mode 100644 index 00000000..2d1046b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml @@ -0,0 +1,29 @@ +name: NVS-5200M +humanName: NVS 5200M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-06-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF117 + GPU Variant: N13M-NS1 + TDP: 25 W + FP32 Compute: 240.0 GFLOPS + FP64 Compute: 20.00 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml new file mode 100644 index 00000000..5fd2dcb8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml @@ -0,0 +1,28 @@ +name: Quadro-5010M +humanName: Quadro 5010M +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 83.20 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: N12E-Q5-A1 + TDP: 100 W + FP32 Compute: 691.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml new file mode 100644 index 00000000..d0a67ce5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml @@ -0,0 +1,32 @@ +name: Quadro-7000 +humanName: Quadro 7000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-05-02' + VRAM Frequency: 851 MHz + VRAM Bandwidth: 163.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + TDP: 204 W + FP32 Compute: 1,332 GFLOPS + FP64 Compute: 666.1 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml new file mode 100644 index 00000000..c5299464 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml @@ -0,0 +1,29 @@ +name: Quadro-Plex-7000 +humanName: Quadro Plex 7000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 144.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + TDP: 600 W + FP32 Compute: 1,176 GFLOPS + FP64 Compute: 587.8 GFLOPS (1:2) + Outputs: + - 4x DVI + - 2x S-Video + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml new file mode 100644 index 00000000..37edea3b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml @@ -0,0 +1,30 @@ +name: Tesla-C2075 +humanName: Tesla C2075 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 783 MHz + VRAM Bandwidth: 150.3 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-351-A1 + TDP: 247 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml new file mode 100644 index 00000000..bddda03a --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml @@ -0,0 +1,29 @@ +name: Tesla-C2090 +humanName: Tesla C2090 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 924 MHz + VRAM Bandwidth: 177.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + TDP: 250 W + FP32 Compute: 1,332 GFLOPS + FP64 Compute: 666.1 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml new file mode 100644 index 00000000..286555a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml @@ -0,0 +1,30 @@ +name: Tesla-M2075 +humanName: Tesla M2075 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 783 MHz + VRAM Bandwidth: 150.3 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 520 mm² + GPU: GF110 + GPU Variant: GF110-876-A1 + TDP: 225 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml new file mode 100644 index 00000000..113bf77e --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml @@ -0,0 +1,29 @@ +name: Tesla-M2090 +humanName: Tesla M2090 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 924 MHz + VRAM Bandwidth: 177.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + TDP: 250 W + FP32 Compute: 1,332 GFLOPS + FP64 Compute: 666.1 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml new file mode 100644 index 00000000..7c9d3002 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml @@ -0,0 +1,28 @@ +name: Tesla-X2090 +humanName: Tesla X2090 +isPart: true +type: Graphics Card +data: + Architecture: Fermi 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 924 MHz + VRAM Bandwidth: 177.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 520 mm² + GPU: GF110 + TDP: 225 W + FP32 Compute: 1,332 GFLOPS + FP64 Compute: 666.1 GFLOPS (1:2) + Slot Width: MXM Module + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi.yaml b/specs/GPUs-CONSUMER/Fermi.yaml new file mode 100644 index 00000000..ec6e3bd9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi.yaml @@ -0,0 +1,75 @@ +name: Fermi +humanName: Fermi +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2010-03-26' +sections: + - header: WHOLE RANGE + members: + - GeForce-615-OEM + - GeForce-GT-415M + - GeForce-GT-420-OEM + - GeForce-GT-420M + - GeForce-GT-425M + - GeForce-GT-430 + - GeForce-GT-430-OEM + - GeForce-GT-430-PCI + - GeForce-GT-435M + - GeForce-GT-440-Mac-Edition + - GeForce-GT-440-OEM + - GeForce-GT-445M + - GeForce-GT-440 + - GeForce-GT-520M + - GeForce-GT-525M + - GeForce-GT-540M + - GeForce-GT-555M + - GeForce-GT-620 + - GeForce-GT-620M + - GeForce-GT-630 + - GeForce-GT-630M + - GeForce-GT-640M-LE + - GeForce-GT-730 + - GeForce-GTS-450 + - GeForce-GTS-450-OEM + - GeForce-GTX-460 + - GeForce-GTX-460-SE + - GeForce-GTX-460-X2 + - GeForce-GTX-460M + - GeForce-GTX-465 + - GeForce-GTX-470 + - GeForce-GTX-470-X2 + - GeForce-GTX-470M + - GeForce-GTX-480 + - GeForce-GTX-480-Core-512 + - GeForce-GTX-480M + - GeForce-GTX-485M + - GeForce-GTX-490 + - Quadro-500M + - Quadro-600 + - Quadro-1000M + - Quadro-2000 + - Quadro-2000D + - Quadro-2000M + - Quadro-3000M + - Quadro-3000M-X2 + - Quadro-4000 + - Quadro-4000-Mac-Edition + - Quadro-4000M + - Quadro-5000 + - Quadro-5000-SDI + - Quadro-5000M + - Quadro-6000 + - Quadro-6000-SDI + - NVS-5400M + - Tesla-C2050 + - Tesla-C2070 + - Tesla-M2050 + - Tesla-M2070 + - Tesla-M2070-Q + - Tesla-S2050 + - Tesla-X2070 diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml new file mode 100644 index 00000000..f6e55887 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml @@ -0,0 +1,28 @@ +name: GeForce-615-OEM +humanName: GeForce 615 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-05-15' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF108 + TDP: 49 W + FP32 Compute: 126.7 GFLOPS + FP64 Compute: 10.56 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml new file mode 100644 index 00000000..00655def --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-415M +humanName: GeForce GT 415M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N11P-GV + TDP: 12 W + FP32 Compute: 96.00 GFLOPS + FP64 Compute: 8.000 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml new file mode 100644 index 00000000..2547c377 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-420-OEM +humanName: GeForce GT 420 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-200-A1 + TDP: 50 W + FP32 Compute: 134.4 GFLOPS + FP64 Compute: 11.20 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml new file mode 100644 index 00000000..798ba0d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-420M +humanName: GeForce GT 420M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N11P-GE-A1 + TDP: 23 W + FP32 Compute: 192.0 GFLOPS + FP64 Compute: 16.00 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml new file mode 100644 index 00000000..8272fd78 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-425M +humanName: GeForce GT 425M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N11P-GS-A1 + TDP: 23 W + FP32 Compute: 215.0 GFLOPS + FP64 Compute: 17.92 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml new file mode 100644 index 00000000..e6ca5aa6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-430-OEM +humanName: GeForce GT 430 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-10-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 49 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml new file mode 100644 index 00000000..46c55df4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-430-PCI +humanName: GeForce GT 430 PCI +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-10-11' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-300-A1 + TDP: 49 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml new file mode 100644 index 00000000..44a9ff6d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-430 +humanName: GeForce GT 430 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-10-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-300-A1 + TDP: 49 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml new file mode 100644 index 00000000..9a864aa3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-435M +humanName: GeForce GT 435M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N11P-GT + TDP: 35 W + FP32 Compute: 249.6 GFLOPS + FP64 Compute: 20.80 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml new file mode 100644 index 00000000..0e57fcc4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-440-Mac-Edition +humanName: GeForce GT 440 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-09' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 65 W + FP32 Compute: 311.0 GFLOPS + FP64 Compute: 25.92 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml new file mode 100644 index 00000000..15622eee --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-440-OEM +humanName: GeForce GT 440 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-10-11' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 43.20 GB/s + VRAM Capacity: 1536 MB + VRAM Type: DDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF106 + TDP: 65 W + FP32 Compute: 466.6 GFLOPS + FP64 Compute: 38.88 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml new file mode 100644 index 00000000..1b78c496 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-440 +humanName: GeForce GT 440 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 65 W + FP32 Compute: 311.0 GFLOPS + FP64 Compute: 25.92 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml new file mode 100644 index 00000000..0c150deb --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-445M +humanName: GeForce GT 445M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 3 GB + VRAM Type: DDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: N11E-GE-A1 + TDP: 35 W + FP32 Compute: 339.8 GFLOPS + FP64 Compute: 28.32 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml new file mode 100644 index 00000000..904fa26f --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-520M +humanName: GeForce GT 520M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 48 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N12P-GV2-A1 + TDP: 12 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml new file mode 100644 index 00000000..ad4a68ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-525M +humanName: GeForce GT 525M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N12P-GE-OP-A1 + TDP: 23 W + FP32 Compute: 182.4 GFLOPS + FP64 Compute: 15.20 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml new file mode 100644 index 00000000..b62bd2ff --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-540M +humanName: GeForce GT 540M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N12P-GS-A1 + TDP: 35 W + FP32 Compute: 258.0 GFLOPS + FP64 Compute: 21.50 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml new file mode 100644 index 00000000..ac52c010 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-555M +humanName: GeForce GT 555M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-06-15' + VRAM Frequency: 785 MHz + VRAM Bandwidth: 50.24 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 35 W + FP32 Compute: 289.0 GFLOPS + FP64 Compute: 24.08 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml new file mode 100644 index 00000000..4f8f2ba1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-620 +humanName: GeForce GT 620 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-05-15' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-100-KB-A1 + TDP: 49 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml new file mode 100644 index 00000000..d510db40 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-620M +humanName: GeForce GT 620M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-08-23' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N13P-GLP-A1 + TDP: 15 W + FP32 Compute: 182.4 GFLOPS + FP64 Compute: 15.20 GFLOPS (1:12) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml new file mode 100644 index 00000000..434ab7f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-630 +humanName: GeForce GT 630 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-05-15' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 65 W + FP32 Compute: 311.0 GFLOPS + FP64 Compute: 25.92 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml new file mode 100644 index 00000000..2dffebf3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GT-630M +humanName: GeForce GT 630M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-03-22' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N13P-GL2-A1 + TDP: 33 W + FP32 Compute: 182.4 GFLOPS + FP64 Compute: 15.20 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml new file mode 100644 index 00000000..7fe62344 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml @@ -0,0 +1,26 @@ +name: GeForce-GT-640M-LE +humanName: GeForce GT 640M LE +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-05-04' + VRAM Frequency: 785 MHz + VRAM Bandwidth: 50.24 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + TDP: 32 W + FP32 Compute: 289.0 GFLOPS + FP64 Compute: 24.08 GFLOPS (1:12) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml new file mode 100644 index 00000000..115d95df --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-730 +humanName: GeForce GT 730 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2014-06-18' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: GF108-400-A1 + TDP: 49 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml new file mode 100644 index 00000000..0e1133ec --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTS-450-OEM +humanName: GeForce GTS 450 OEM +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-10-11' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 144 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: GF106-250-KB-A1 + TDP: 106 W + FP32 Compute: 455.0 GFLOPS + FP64 Compute: 37.92 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml new file mode 100644 index 00000000..4e7a2130 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml @@ -0,0 +1,33 @@ +name: GeForce-GTS-450 +humanName: GeForce GTS 450 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-13' + VRAM Frequency: 902 MHz + VRAM Bandwidth: 57.73 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: GF106-250-KA-A1 + TDP: 106 W + FP32 Compute: 601.3 GFLOPS + FP64 Compute: 50.11 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + Length: 210 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml new file mode 100644 index 00000000..95085107 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-460-SE +humanName: GeForce GTX 460 SE +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-11-15' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 108.8 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: GF104-225-A1 + TDP: 150 W + FP32 Compute: 748.8 GFLOPS + FP64 Compute: 62.40 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml new file mode 100644 index 00000000..1e00e67d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-460-X2 +humanName: GeForce GTX 460 X2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-03-11' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: GF104-300-KB-A1 + TDP: 160 W + FP32 Compute: 941.5 GFLOPS + FP64 Compute: 78.46 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 3x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 8-pin + Length: 292 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml new file mode 100644 index 00000000..7f21dc82 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-460 +humanName: GeForce GTX 460 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-07-12' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 86.40 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: GF104-300-KB-A1 + TDP: 160 W + FP32 Compute: 907.2 GFLOPS + FP64 Compute: 75.60 GFLOPS (1:12) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml new file mode 100644 index 00000000..17d63786 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-460M +humanName: GeForce GTX 460M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 60.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: N11E-GS-A1 + TDP: 50 W + FP32 Compute: 518.4 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml new file mode 100644 index 00000000..c4c0b00e --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-465 +humanName: GeForce GTX 465 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-05-31' + VRAM Frequency: 802 MHz + VRAM Bandwidth: 102.7 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-030-A3 + TDP: 200 W + FP32 Compute: 855.4 GFLOPS + FP64 Compute: 106.9 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml new file mode 100644 index 00000000..4ee284b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTX-470-X2 +humanName: GeForce GTX 470 X2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: 'Never Released' + VRAM Frequency: 837 MHz + VRAM Bandwidth: 107.1 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-030-A3 + TDP: 215 W + FP32 Compute: 855.4 GFLOPS + Slot Width: Dual-slot + Outputs: 3x DVI + Power Connectors: 2x 8-pin diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml new file mode 100644 index 00000000..5aafceac --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-470 +humanName: GeForce GTX 470 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-03-26' + VRAM Frequency: 837 MHz + VRAM Bandwidth: 133.9 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-275-A3 + TDP: 215 W + FP32 Compute: 1,089 GFLOPS + FP64 Compute: 136.1 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml new file mode 100644 index 00000000..4b4b8b33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-470M +humanName: GeForce GTX 470M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 288 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: N11E-GT + TDP: 75 W + FP32 Compute: 616.3 GFLOPS + FP64 Compute: 51.36 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml new file mode 100644 index 00000000..65698131 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-480-Core-512 +humanName: GeForce GTX 480 Core 512 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: 'Never Released' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 64 + Shader Processor Count: 512 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-ES-DT1-A2 + TDP: 375 W + FP32 Compute: 1,078 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 2x 8-pin + Length: 292 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml new file mode 100644 index 00000000..2afd8f70 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-480 +humanName: GeForce GTX 480 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-03-26' + VRAM Frequency: 924 MHz + VRAM Bandwidth: 177.4 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 60 + Shader Processor Count: 480 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-375-A3 + TDP: 250 W + FP32 Compute: 1,345 GFLOPS + FP64 Compute: 168.1 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml new file mode 100644 index 00000000..e2a3953e --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-480M +humanName: GeForce GTX 480M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-05-25' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: N11E-GTX-A3 + TDP: 100 W + FP32 Compute: 598.4 GFLOPS + FP64 Compute: 74.80 GFLOPS (1:8) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml new file mode 100644 index 00000000..4aa53659 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-485M +humanName: GeForce GTX 485M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 384 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: N12E-GTX-A1 + TDP: 100 W + FP32 Compute: 883.2 GFLOPS + FP64 Compute: 73.60 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml new file mode 100644 index 00000000..5463c049 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-490 +humanName: GeForce GTX 490 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: 'Never Released' + VRAM Frequency: 854 MHz + VRAM Bandwidth: 164.0 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 60 + Shader Processor Count: 480 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-375-A3 + TDP: 365 W + FP32 Compute: 1,166 GFLOPS + FP64 Compute: 145.8 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 3x DVI + - 1x mini-DisplayPort + Power Connectors: 2x 8-pin + Length: 279 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml b/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml new file mode 100644 index 00000000..5f322751 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml @@ -0,0 +1,29 @@ +name: NVS-5400M +humanName: NVS 5400M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2012-06-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N13P-NS1 + TDP: 35 W + FP32 Compute: 253.4 GFLOPS + FP64 Compute: 21.12 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml new file mode 100644 index 00000000..ca2866db --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml @@ -0,0 +1,29 @@ +name: Quadro-1000M +humanName: Quadro 1000M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N12P-Q1 + TDP: 45 W + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 22.40 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml new file mode 100644 index 00000000..6fe61f48 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml @@ -0,0 +1,33 @@ +name: Quadro-2000 +humanName: Quadro 2000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-12-24' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 41.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: GF106-875-KA-A1 + TDP: 62 W + FP32 Compute: 480.0 GFLOPS + FP64 Compute: 40.00 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: None + Length: 178 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml new file mode 100644 index 00000000..2e561ef6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml @@ -0,0 +1,31 @@ +name: Quadro-2000D +humanName: Quadro 2000D +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-10-05' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 41.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: GF106-875-KA-A1 + TDP: 62 W + FP32 Compute: 480.0 GFLOPS + FP64 Compute: 40.00 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 178 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml new file mode 100644 index 00000000..b5d8ec6d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml @@ -0,0 +1,29 @@ +name: Quadro-2000M +humanName: Quadro 2000M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-01-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 192 + Die Size: 238 mm² + GPU: GF106 + GPU Variant: N12P-Q3 + TDP: 55 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 35.20 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml new file mode 100644 index 00000000..9df760d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml @@ -0,0 +1,28 @@ +name: Quadro-3000M-X2 +humanName: Quadro 3000M X2 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 240 + Die Size: 332 mm² + GPU: EXMF104 + TDP: 150 W + FP32 Compute: 432.0 GFLOPS + FP64 Compute: 36.00 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml new file mode 100644 index 00000000..548b6cc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml @@ -0,0 +1,29 @@ +name: Quadro-3000M +humanName: Quadro 3000M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 240 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: N12E-Q1-A1 + TDP: 75 W + FP32 Compute: 432.0 GFLOPS + FP64 Compute: 36.00 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml new file mode 100644 index 00000000..2394052b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: Quadro-4000-Mac-Edition +humanName: Quadro 4000 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-06-12' + VRAM Frequency: 702 MHz + VRAM Bandwidth: 89.86 GB/s + VRAM Capacity: 1792 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 32 + Shader Processor Count: 256 + Die Size: 529 mm² + GPU: GF100 + TDP: 142 W + FP32 Compute: 486.4 GFLOPS + FP64 Compute: 243.2 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml new file mode 100644 index 00000000..f1ef86ae --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml @@ -0,0 +1,33 @@ +name: Quadro-4000 +humanName: Quadro 4000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-11-02' + VRAM Frequency: 702 MHz + VRAM Bandwidth: 89.86 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 32 + Shader Processor Count: 256 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-825-A3 + TDP: 142 W + FP32 Compute: 486.4 GFLOPS + FP64 Compute: 243.2 GFLOPS (1:2) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml new file mode 100644 index 00000000..a9a8d06d --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml @@ -0,0 +1,29 @@ +name: Quadro-4000M +humanName: Quadro 4000M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 625 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 336 + Die Size: 332 mm² + GPU: GF104 + GPU Variant: N12E-Q3-A1 + TDP: 100 W + FP32 Compute: 638.4 GFLOPS + FP64 Compute: 53.20 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml new file mode 100644 index 00000000..c7e9c573 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml @@ -0,0 +1,32 @@ +name: Quadro-5000-SDI +humanName: Quadro 5000 SDI +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-23' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 120.0 GB/s + VRAM Capacity: 2.5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-850-A3 + TDP: 172 W + FP32 Compute: 722.3 GFLOPS + FP64 Compute: 361.2 GFLOPS (1:2) + Slot Width: Quad-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video2x SDI + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml new file mode 100644 index 00000000..025a5c91 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml @@ -0,0 +1,33 @@ +name: Quadro-5000 +humanName: Quadro 5000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-23' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 120.0 GB/s + VRAM Capacity: 2.5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 44 + Shader Processor Count: 352 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-850-A3 + TDP: 152 W + FP32 Compute: 722.3 GFLOPS + FP64 Compute: 361.2 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: 1x 6-pin + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml new file mode 100644 index 00000000..f77cef95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml @@ -0,0 +1,28 @@ +name: Quadro-5000M +humanName: Quadro 5000M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-07-27' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 320 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: N10E-GLM5-A3 + TDP: 100 W + FP32 Compute: 518.4 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml new file mode 100644 index 00000000..18d7fc36 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml @@ -0,0 +1,29 @@ +name: Quadro-500M +humanName: Quadro 500M +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + GPU Variant: N12M-Q3 + TDP: 35 W + FP32 Compute: 215.0 GFLOPS + FP64 Compute: 17.92 GFLOPS (1:12) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml new file mode 100644 index 00000000..e1fe4ae4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml @@ -0,0 +1,32 @@ +name: Quadro-600 +humanName: Quadro 600 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-12-13' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 116 mm² + GPU: GF108 + TDP: 40 W + FP32 Compute: 245.8 GFLOPS + FP64 Compute: 20.48 GFLOPS (1:12) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml new file mode 100644 index 00000000..9edfcd3b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml @@ -0,0 +1,32 @@ +name: Quadro-6000-SDI +humanName: Quadro 6000 SDI +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 747 MHz + VRAM Bandwidth: 143.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + TDP: 231 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Quad-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video2x SDI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml new file mode 100644 index 00000000..767d74fd --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml @@ -0,0 +1,33 @@ +name: Quadro-6000 +humanName: Quadro 6000 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2010-12-10' + VRAM Frequency: 747 MHz + VRAM Bandwidth: 143.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-850-A3 + TDP: 204 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml new file mode 100644 index 00000000..09beb3f3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml @@ -0,0 +1,30 @@ +name: Tesla-C2050 +humanName: Tesla C2050 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 144.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-850-A3 + TDP: 238 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml new file mode 100644 index 00000000..ec3d694a --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml @@ -0,0 +1,29 @@ +name: Tesla-C2070 +humanName: Tesla C2070 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 747 MHz + VRAM Bandwidth: 143.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + TDP: 238 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml new file mode 100644 index 00000000..71891af2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml @@ -0,0 +1,29 @@ +name: Tesla-M2050 +humanName: Tesla M2050 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 773 MHz + VRAM Bandwidth: 148.4 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + TDP: 225 W + FP32 Compute: 1,030 GFLOPS + FP64 Compute: 515.2 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml new file mode 100644 index 00000000..d150fc5c --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml @@ -0,0 +1,30 @@ +name: Tesla-M2070-Q +humanName: Tesla M2070-Q +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 783 MHz + VRAM Bandwidth: 150.3 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-876-A1 + TDP: 225 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml new file mode 100644 index 00000000..c8e1c3e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml @@ -0,0 +1,29 @@ +name: Tesla-M2070 +humanName: Tesla M2070 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 783 MHz + VRAM Bandwidth: 150.3 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + TDP: 225 W + FP32 Compute: 1,030 GFLOPS + FP64 Compute: 515.2 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml new file mode 100644 index 00000000..1ab6f0df --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml @@ -0,0 +1,27 @@ +name: Tesla-S2050 +humanName: Tesla S2050 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 773 MHz + VRAM Bandwidth: 148.4 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + TDP: 900 W + FP32 Compute: 1,028 GFLOPS + FP64 Compute: 513.9 GFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml new file mode 100644 index 00000000..7849a17b --- /dev/null +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml @@ -0,0 +1,29 @@ +name: Tesla-X2070 +humanName: Tesla X2070 +isPart: true +type: Graphics Card +data: + Architecture: Fermi + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: '2011-07-25' + VRAM Frequency: 924 MHz + VRAM Bandwidth: 177.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 529 mm² + GPU: GF100 + GPU Variant: GF100-876-A3 + TDP: 225 W + FP32 Compute: 1,166 GFLOPS + FP64 Compute: 582.8 GFLOPS (1:2) + Slot Width: MXM Module + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/G100.yaml b/specs/GPUs-CONSUMER/G100.yaml new file mode 100644 index 00000000..7ff3c644 --- /dev/null +++ b/specs/GPUs-CONSUMER/G100.yaml @@ -0,0 +1,14 @@ +name: G100 +humanName: G100 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '3.0' + Vulkan Support: 'N/A' + Release Date: '1998' +sections: + - header: WHOLE RANGE + members: + - Productiva-G100 diff --git a/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml new file mode 100644 index 00000000..bd33c187 --- /dev/null +++ b/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml @@ -0,0 +1,27 @@ +name: Productiva-G100 +humanName: Productiva G100 +isPart: true +type: Graphics Card +data: + Architecture: G100 + Lithography: 350 nm + DirectX Support: '3.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1998' + VRAM Frequency: 62 MHz + VRAM Bandwidth: 496.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: SGR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Twister + GPU Variant: MGA-G100A-E + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200.yaml b/specs/GPUs-CONSUMER/G200.yaml new file mode 100644 index 00000000..aa337947 --- /dev/null +++ b/specs/GPUs-CONSUMER/G200.yaml @@ -0,0 +1,19 @@ +name: G200 +humanName: G200 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + Release Date: '1998' +sections: + - header: WHOLE RANGE + members: + - Marvel-G200 + - Millennium-G200 + - Millennium-G200-SD + - Millennium-G200A + - Millennium-G250 + - Mystique-G200 diff --git a/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml new file mode 100644 index 00000000..1db0f53e --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml @@ -0,0 +1,28 @@ +name: Marvel-G200 +humanName: Marvel G200 +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 350 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1998' + VRAM Frequency: 112 MHz + VRAM Bandwidth: 896.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Eclipse + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml new file mode 100644 index 00000000..574aa04f --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml @@ -0,0 +1,29 @@ +name: Millennium-G200-SD +humanName: Millennium G200 SD +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 350 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1998' + VRAM Frequency: 112 MHz + VRAM Bandwidth: 896.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Eclipse + GPU Variant: MGA-G200A-C + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml new file mode 100644 index 00000000..e422d3a2 --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml @@ -0,0 +1,29 @@ +name: Millennium-G200 +humanName: Millennium G200 +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 350 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1998' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 1.144 GB/s + VRAM Capacity: 8 MB + VRAM Type: SGR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Eclipse + GPU Variant: MGA-G200A-B + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml new file mode 100644 index 00000000..a6cceb91 --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml @@ -0,0 +1,29 @@ +name: Millennium-G200A +humanName: Millennium G200A +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 250 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1999' + VRAM Frequency: 112 MHz + VRAM Bandwidth: 896.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Calao + GPU Variant: MGA-G200A-D2 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml new file mode 100644 index 00000000..66f6d3d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml @@ -0,0 +1,29 @@ +name: Millennium-G250 +humanName: Millennium G250 +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 250 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1999' + VRAM Frequency: 128 MHz + VRAM Bandwidth: 1.024 GB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Calao + GPU Variant: MGA-G200A-D2 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml new file mode 100644 index 00000000..c67092b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml @@ -0,0 +1,28 @@ +name: Mystique-G200 +humanName: Mystique G200 +isPart: true +type: Graphics Card +data: + Architecture: G200 + Lithography: 350 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1998' + VRAM Frequency: 112 MHz + VRAM Bandwidth: 896.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Eclipse + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G400.yaml b/specs/GPUs-CONSUMER/G400.yaml new file mode 100644 index 00000000..bffc758b --- /dev/null +++ b/specs/GPUs-CONSUMER/G400.yaml @@ -0,0 +1,20 @@ +name: G400 +humanName: G400 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + Release Date: '1999-05-20' +sections: + - header: WHOLE RANGE + members: + - Marvel-G400-TV + - Millennium-G400 + - Millennium-G400-MAX + - Millennium-G450 + - Millennium-G450-LP + - Millennium-G450-x2-MMS + - Millennium-G450-x4-MMS diff --git a/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml new file mode 100644 index 00000000..308cd03c --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml @@ -0,0 +1,28 @@ +name: Marvel-G400-TV +humanName: Marvel G400-TV +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1999-05-20' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Toucan + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml new file mode 100644 index 00000000..03a9e5de --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml @@ -0,0 +1,29 @@ +name: Millennium-G400-MAX +humanName: Millennium G400 MAX +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1999-05-20' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Toucan + GPU Variant: MGA-G400A-E + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml new file mode 100644 index 00000000..f1d52426 --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml @@ -0,0 +1,28 @@ +name: Millennium-G400 +humanName: Millennium G400 +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '1999-05-20' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Toucan + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml new file mode 100644 index 00000000..979bf730 --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml @@ -0,0 +1,27 @@ +name: Millennium-G450-LP +humanName: Millennium G450 LP +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: 'Apr 2000' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + GPU Variant: MGA-G450-F + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml new file mode 100644 index 00000000..6a5e9a72 --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml @@ -0,0 +1,28 @@ +name: Millennium-G450-x2-MMS +humanName: Millennium G450 x2 MMS +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '2002-06-19' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None + Length: 165 mm + Width: 97 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml new file mode 100644 index 00000000..a0acec07 --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml @@ -0,0 +1,27 @@ +name: Millennium-G450-x4-MMS +humanName: Millennium G450 x4 MMS +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: '2002-06-19' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Length: 165 mm + Width: 97 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml new file mode 100644 index 00000000..1812e1e2 --- /dev/null +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml @@ -0,0 +1,29 @@ +name: Millennium-G450 +humanName: Millennium G450 +isPart: true +type: Graphics Card +data: + Architecture: G400 + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: 'None' + OpenCL Support: 'None' + Release Date: 'Apr 2000' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + GPU Variant: MGA-G450-F + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 150 mm diff --git a/specs/GPUs-CONSUMER/G500.yaml b/specs/GPUs-CONSUMER/G500.yaml new file mode 100644 index 00000000..46c01b84 --- /dev/null +++ b/specs/GPUs-CONSUMER/G500.yaml @@ -0,0 +1,15 @@ +name: G500 +humanName: G500 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + Release Date: '2001-11-26' +sections: + - header: WHOLE RANGE + members: + - Millennium-G550 + - Millennium-G550-PCIe diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml new file mode 100644 index 00000000..f56c0011 --- /dev/null +++ b/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml @@ -0,0 +1,26 @@ +name: Millennium-G550-PCIe +humanName: Millennium G550 PCIe +isPart: true +type: Graphics Card +data: + Architecture: G500 + Lithography: 180 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-11-26' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Length: 112 mm + Width: 97 mm diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml new file mode 100644 index 00000000..fae3ec74 --- /dev/null +++ b/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml @@ -0,0 +1,28 @@ +name: Millennium-G550 +humanName: Millennium G550 +isPart: true +type: Graphics Card +data: + Architecture: G500 + Lithography: 180 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-11-26' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Condor + GPU Variant: MGA-G550-B + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0.yaml b/specs/GPUs-CONSUMER/GCN-1.0.yaml new file mode 100644 index 00000000..6d59ae75 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0.yaml @@ -0,0 +1,184 @@ +name: GCN-1.0 +humanName: GCN 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + Release Date: '2011-12-22' +sections: + - header: WHOLE RANGE + members: + - AeroBox-GPU + - FirePro-D300 + - FirePro-D500 + - FirePro-D700 + - FirePro-M3100 + - FirePro-M4000 + - FirePro-M4100 + - FirePro-M4150 + - FirePro-M4170 + - FirePro-M5100 + - FirePro-M6000 + - FirePro-R5000 + - FirePro-S4000X + - FirePro-S7000 + - FirePro-S9000 + - FirePro-S9010 + - FirePro-S9050 + - FirePro-S10000 + - FirePro-S10000-Passive + - FirePro-S10000-Passive-12GB + - FirePro-W600 + - FirePro-W2100 + - FirePro-W4000 + - FirePro-W4100 + - FirePro-W4130M + - FirePro-W4150M + - FirePro-W4170M + - FirePro-W5000 + - FirePro-W5000-DVI + - FirePro-W4190M + - FirePro-W5130M + - FirePro-W5170M + - FirePro-W7000 + - FirePro-W8000 + - FirePro-W9000 + - FirePro-W9000-X2 + - Radeon-520-Mobile-DDR3 + - Radeon-520-Mobile-GDDR5 + - Radeon-520-OEM + - Radeon-610-Mobile + - Radeon-E8860 + - Radeon-HD-7730 + - Radeon-HD-7730M + - Radeon-HD-7750 + - Radeon-HD-7750M + - Radeon-HD-7770-GHz-Edition + - Radeon-HD-7770M + - Radeon-HD-7850 + - Radeon-HD-7850M + - Radeon-HD-7870-GHz-Edition + - Radeon-HD-7870-XT + - Radeon-HD-7870M + - Radeon-HD-7950 + - Radeon-HD-7950-Boost + - Radeon-HD-7950-Mac-Edition + - Radeon-HD-7950-Monica-BIOS-1 + - Radeon-HD-7950-Monica-BIOS-2 + - Radeon-HD-7950M + - Radeon-HD-7970 + - Radeon-HD-7970-GHz-Edition + - Radeon-HD-7970-X2 + - Radeon-HD-7970M + - Radeon-HD-7970M-X2 + - Radeon-HD-7990 + - Radeon-HD-8530M + - Radeon-HD-8550M + - Radeon-HD-8570-OEM + - Radeon-HD-8570A + - Radeon-HD-8570M + - Radeon-HD-8590M + - Radeon-HD-8670-OEM + - Radeon-HD-8670A + - Radeon-HD-8670M + - Radeon-HD-8730-OEM + - Radeon-HD-8730A + - Radeon-HD-8690M + - Radeon-HD-8730M + - Radeon-HD-8740-OEM + - Radeon-HD-8750A + - Radeon-HD-8750M + - Radeon-HD-8770M + - Radeon-HD-8790M + - Radeon-HD-8830M + - Radeon-HD-8850M + - Radeon-HD-8860-OEM + - Radeon-HD-8870-OEM + - Radeon-HD-8870M + - Radeon-HD-8950-OEM + - Radeon-HD-8970-OEM + - Radeon-HD-8970M + - Radeon-HD-8990-OEM + - Radeon-HD-8760-OEM + - Radeon-R5-240-OEM + - Radeon-R5-340-OEM + - Radeon-R5-340X-OEM + - Radeon-R5-430-OEM + - Radeon-R5-435-OEM + - Radeon-R5-A230 + - Radeon-R5-A240 + - Radeon-R5-A320 + - Radeon-R5-A330 + - Radeon-R5-A335 + - Radeon-R5-M230 + - Radeon-R5-M230-Rebrand + - Radeon-R5-M240 + - Radeon-R5-M240-Rebrand + - Radeon-R5-M320 + - Radeon-R5-M330 + - Radeon-R5-M335 + - Radeon-R5-M420 + - Radeon-R5-M430 + - Radeon-R5-M435 + - Radeon-R6-M340DX + - Radeon-R6-M435DX + - Radeon-R7-240 + - Radeon-R7-250 + - Radeon-R7-250-OEM + - Radeon-R7-250E + - Radeon-R7-250X + - Radeon-R7-250XE + - Radeon-R7-265 + - Radeon-R7-265X-OEM + - Radeon-R7-340-OEM + - Radeon-R7-350-640SP + - Radeon-R7-350-Fake-Card + - Radeon-R7-350-OEM + - Radeon-R7-350X-OEM + - Radeon-R7-370 + - Radeon-R7-430-OEM + - Radeon-R7-435-OEM + - Radeon-R7-450-OEM + - Radeon-R7-A265 + - Radeon-R7-M260DX + - Radeon-R7-M260X + - Radeon-R7-M265DX + - Radeon-R7-M270DX + - Radeon-R7-M340 + - Radeon-R7-M365X + - Radeon-R7-M370 + - Radeon-R7-M380 + - Radeon-R7-M465 + - Radeon-R8-M350DX + - Radeon-R8-M435DX + - Radeon-R9-255-OEM + - Radeon-R9-270 + - Radeon-R9-270-1024SP + - Radeon-R9-270X + - Radeon-R9-280 + - Radeon-R9-280X + - Radeon-R9-280X2 + - Radeon-R9-370 + - Radeon-R9-370-1024SP + - Radeon-R9-370X + - Radeon-R9-A375 + - Radeon-R7-240-OEM + - Radeon-R7-M465X + - Radeon-R9-M275X + - Radeon-R9-M290X-Mac-Edition + - Radeon-R9-M360 + - Radeon-R9-M365X + - Radeon-R9-M370X-Mac-Edition + - Radeon-R9-M375 + - Radeon-R9-M375X + - Radeon-R9-M390-Mac-Edition + - Radeon-R9-M275 + - Radeon-Sky-500 + - Radeon-Sky-700 + - Radeon-Sky-900 + - Radeon-R9-M290X + - Xbox-One-GPU + - Xbox-One-S-GPU diff --git a/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml new file mode 100644 index 00000000..dc20a191 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml @@ -0,0 +1,31 @@ +name: AeroBox-GPU +humanName: AeroBox GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 16 nm + DirectX Support: '11.1' + Vulkan Support: '1.2' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2020-03-13' + GPU Base Frequency: 935 MHz + GPU Boost Frequency: 985 MHz + VRAM Frequency: 1066 MHz + VRAM Bandwidth: 68.22 GB/s + VRAM Capacity: 8 GB + VRAM Type: DDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: unknown + GPU: Kryptos + TDP: 100 W + FP32 Compute: 1.765 TFLOPS + FP64 Compute: 110.3 GFLOPS (1:16) + Outputs: 1x DVI + Length: 289 mm + Width: 238 mm + Height: 56 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml new file mode 100644 index 00000000..ce8387b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml @@ -0,0 +1,29 @@ +name: FirePro-D300 +humanName: FirePro D300 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-18' + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 162.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT GL + TDP: 150 W + FP32 Compute: 2.176 TFLOPS + FP64 Compute: 136.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Length: 242 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml new file mode 100644 index 00000000..38566ca1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml @@ -0,0 +1,31 @@ +name: FirePro-D500 +humanName: FirePro D500 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-18' + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 243.8 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti LE GL + TDP: 274 W + FP32 Compute: 2.227 TFLOPS + FP64 Compute: 556.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 6x mini-DisplayPort 1.2 + - 1x SDI + Length: 279 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml new file mode 100644 index 00000000..08870265 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml @@ -0,0 +1,31 @@ +name: FirePro-D700 +humanName: FirePro D700 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-18' + VRAM Frequency: 1370 MHz + VRAM Bandwidth: 263.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XT GL + TDP: 274 W + FP32 Compute: 3.482 TFLOPS + FP64 Compute: 870.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 6x mini-DisplayPort 1.2 + - 1x SDI + Length: 279 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml new file mode 100644 index 00000000..8376db9a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml @@ -0,0 +1,28 @@ +name: FirePro-M3100 +humanName: FirePro M3100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: 'Unknown' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 LP + TDP: unknown + FP32 Compute: 537.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml new file mode 100644 index 00000000..244b07af --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml @@ -0,0 +1,29 @@ +name: FirePro-M4000 +humanName: FirePro M4000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-27' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Chelsea + GPU Variant: Chelsea XT GL + TDP: 33 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml new file mode 100644 index 00000000..3177e174 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml @@ -0,0 +1,28 @@ +name: FirePro-M4100 +humanName: FirePro M4100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-16' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 PRO/LP + TDP: unknown + FP32 Compute: 514.6 GFLOPS + FP64 Compute: 32.16 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml new file mode 100644 index 00000000..d843bb25 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml @@ -0,0 +1,27 @@ +name: FirePro-M4150 +humanName: FirePro M4150 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-16' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + TDP: unknown + FP32 Compute: 549.1 GFLOPS + FP64 Compute: 34.32 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml new file mode 100644 index 00000000..74150f31 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml @@ -0,0 +1,30 @@ +name: FirePro-M4170 +humanName: FirePro M4170 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-04-23' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + TDP: unknown + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml new file mode 100644 index 00000000..9b266650 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml @@ -0,0 +1,30 @@ +name: FirePro-M5100 +humanName: FirePro M5100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-16' + GPU Base Frequency: 725 MHz + GPU Boost Frequency: 775 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XT + TDP: unknown + FP32 Compute: 992.0 GFLOPS + FP64 Compute: 62.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml new file mode 100644 index 00000000..69f45711 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml @@ -0,0 +1,29 @@ +name: FirePro-M6000 +humanName: FirePro M6000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-07-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Heathrow + GPU Variant: Heathrow XT GL + TDP: 43 W + FP32 Compute: 1,024 GFLOPS + FP64 Compute: 64.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml new file mode 100644 index 00000000..a41e3f54 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml @@ -0,0 +1,31 @@ +name: FirePro-R5000 +humanName: FirePro R5000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-02-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn LE GL + TDP: 150 W + FP32 Compute: 1,267 GFLOPS + FP64 Compute: 79.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml new file mode 100644 index 00000000..4cf4b1f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml @@ -0,0 +1,35 @@ +name: FirePro-S10000-Passive-12GB +humanName: FirePro S10000 Passive 12GB +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-03-01' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Orthrus + TDP: 375 W + FP32 Compute: 3.405 TFLOPS + FP64 Compute: 851.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml new file mode 100644 index 00000000..df98207e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml @@ -0,0 +1,35 @@ +name: FirePro-S10000-Passive +humanName: FirePro S10000 Passive +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-11-12' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO GL + TDP: 375 W + FP32 Compute: 3.405 TFLOPS + FP64 Compute: 851.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml new file mode 100644 index 00000000..367d0c81 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml @@ -0,0 +1,35 @@ +name: FirePro-S10000 +humanName: FirePro S10000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-11-12' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Zaphod + TDP: 375 W + FP32 Compute: 3.405 TFLOPS + FP64 Compute: 851.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml new file mode 100644 index 00000000..3b51f5c5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml @@ -0,0 +1,30 @@ +name: FirePro-S4000X +humanName: FirePro S4000X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-07' + GPU Base Frequency: 725 MHz + GPU Boost Frequency: 775 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XT + TDP: 45 W + FP32 Compute: 992.0 GFLOPS + FP64 Compute: 62.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml new file mode 100644 index 00000000..ffd59587 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml @@ -0,0 +1,31 @@ +name: FirePro-S7000 +humanName: FirePro S7000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-27' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT GL + TDP: 150 W + FP32 Compute: 2.432 TFLOPS + FP64 Compute: 152.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 292 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml new file mode 100644 index 00000000..7476d48b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9000 +humanName: FirePro S9000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-24' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO GL + TDP: 225 W + FP32 Compute: 3.226 TFLOPS + FP64 Compute: 806.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml new file mode 100644 index 00000000..402c8c72 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml @@ -0,0 +1,33 @@ +name: FirePro-S9010 +humanName: FirePro S9010 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-24' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 200 W + FP32 Compute: 2.867 TFLOPS + FP64 Compute: 716.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml new file mode 100644 index 00000000..58a4a71c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9050 +humanName: FirePro S9050 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-07' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO GL + TDP: 225 W + FP32 Compute: 3.226 TFLOPS + FP64 Compute: 806.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml new file mode 100644 index 00000000..999df9b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml @@ -0,0 +1,32 @@ +name: FirePro-W2100 +humanName: FirePro W2100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-12' + GPU Base Frequency: 630 MHz + GPU Boost Frequency: 680 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Oland + TDP: 26 W + FP32 Compute: 435.2 GFLOPS + FP64 Compute: 27.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 2x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml new file mode 100644 index 00000000..d9d81d1c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml @@ -0,0 +1,33 @@ +name: FirePro-W4000 +humanName: FirePro W4000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn LE GL + TDP: 75 W + FP32 Compute: 1,267 GFLOPS + FP64 Compute: 79.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: None + Length: 183 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml new file mode 100644 index 00000000..8cf9babe --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml @@ -0,0 +1,31 @@ +name: FirePro-W4100 +humanName: FirePro W4100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-13' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO GL + TDP: 50 W + FP32 Compute: 645.1 GFLOPS + FP64 Compute: 40.32 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Power Connectors: None + Length: 171 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml new file mode 100644 index 00000000..5da73b3f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W4130M +humanName: FirePro W4130M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: 'Unknown' + GPU Base Frequency: 775 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + TDP: unknown + FP32 Compute: 633.6 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml new file mode 100644 index 00000000..f8e89c34 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W4150M +humanName: FirePro W4150M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: 'Unknown' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + TDP: unknown + FP32 Compute: 652.8 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml new file mode 100644 index 00000000..a44f7667 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml @@ -0,0 +1,31 @@ +name: FirePro-W4170M +humanName: FirePro W4170M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-04-28' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 XTX + TDP: unknown + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml new file mode 100644 index 00000000..f14ace06 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml @@ -0,0 +1,30 @@ +name: FirePro-W4190M +humanName: FirePro W4190M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-11-12' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + TDP: unknown + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml new file mode 100644 index 00000000..9495405c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml @@ -0,0 +1,31 @@ +name: FirePro-W5000-DVI +humanName: FirePro W5000 DVI +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-02-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn LE GL + TDP: 75 W + FP32 Compute: 1,267 GFLOPS + FP64 Compute: 79.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 190 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml new file mode 100644 index 00000000..74b062db --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml @@ -0,0 +1,33 @@ +name: FirePro-W5000 +humanName: FirePro W5000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn LE GL + TDP: 75 W + FP32 Compute: 1,267 GFLOPS + FP64 Compute: 79.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: None + Length: 183 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml new file mode 100644 index 00000000..34c62880 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W5130M +humanName: FirePro W5130M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-10-02' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo LE + TDP: unknown + FP32 Compute: 947.2 GFLOPS + FP64 Compute: 59.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml new file mode 100644 index 00000000..8fdff620 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml @@ -0,0 +1,31 @@ +name: FirePro-W5170M +humanName: FirePro W5170M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-25' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XT + TDP: unknown + FP32 Compute: 1,184 GFLOPS + FP64 Compute: 74.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml new file mode 100644 index 00000000..6addbbfa --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml @@ -0,0 +1,32 @@ +name: FirePro-W600 +humanName: FirePro W600 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-13' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO GL + TDP: 75 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 48.00 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 6x mini-DisplayPort 1.2 + Power Connectors: None + Length: 168 mm + Width: 111 mm + Height: 20 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml new file mode 100644 index 00000000..3755e2ee --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml @@ -0,0 +1,31 @@ +name: FirePro-W7000 +humanName: FirePro W7000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-13' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT GL + TDP: 150 W + FP32 Compute: 2.432 TFLOPS + FP64 Compute: 152.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 242 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml new file mode 100644 index 00000000..4da6da9e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml @@ -0,0 +1,33 @@ +name: FirePro-W8000 +humanName: FirePro W8000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-14' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO GL + TDP: 225 W + FP32 Compute: 3.226 TFLOPS + FP64 Compute: 806.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 4x DisplayPort 1.2 + - 1x SDI + Power Connectors: 2x 6-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml new file mode 100644 index 00000000..15bf31e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml @@ -0,0 +1,35 @@ +name: FirePro-W9000-X2 +humanName: FirePro W9000 X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: 'Never Released' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Zaphod + TDP: 375 W + FP32 Compute: 3.405 TFLOPS + FP64 Compute: 851.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml new file mode 100644 index 00000000..fc187b3c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml @@ -0,0 +1,33 @@ +name: FirePro-W9000 +humanName: FirePro W9000 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-14' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XT GL + TDP: 274 W + FP32 Compute: 3.994 TFLOPS + FP64 Compute: 998.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 6x mini-DisplayPort 1.2 + - 1x SDI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml new file mode 100644 index 00000000..3dbd34e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml @@ -0,0 +1,29 @@ +name: Radeon-520-Mobile-DDR3 +humanName: Radeon 520 Mobile DDR3 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2017-04-18' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Banks + GPU Variant: Banks S3 PRO + TDP: 50 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml new file mode 100644 index 00000000..35cf8b19 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml @@ -0,0 +1,29 @@ +name: Radeon-520-Mobile-GDDR5 +humanName: Radeon 520 Mobile GDDR5 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2017-04-18' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Banks + GPU Variant: Banks S3 PRO + TDP: 50 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml new file mode 100644 index 00000000..79030564 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml @@ -0,0 +1,29 @@ +name: Radeon-520-OEM +humanName: Radeon 520 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2017-04-18' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Banks + GPU Variant: Banks S3 PRO + TDP: 50 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml new file mode 100644 index 00000000..4cb2a288 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-610-Mobile +humanName: Radeon 610 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2019-05-23' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Banks + GPU Variant: Banks S3 PRO + TDP: 50 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml new file mode 100644 index 00000000..4e27643c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml @@ -0,0 +1,31 @@ +name: Radeon-E8860 +humanName: Radeon E8860 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-25' + GPU Base Frequency: 575 MHz + GPU Boost Frequency: 625 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus MCM + TDP: 37 W + FP32 Compute: 800.0 GFLOPS + FP64 Compute: 50.00 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x 6-pin + 1x 8-pin diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml new file mode 100644 index 00000000..df1162d4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7730 +humanName: Radeon HD 7730 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-05-01' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde LE + TDP: 47 W + FP32 Compute: 614.4 GFLOPS + FP64 Compute: 38.40 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml new file mode 100644 index 00000000..c58c5b4e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-7730M +humanName: Radeon HD 7730M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + GPU Base Frequency: 575 MHz + GPU Boost Frequency: 675 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Chelsea + GPU Variant: Chelsea PRO + TDP: 25 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml new file mode 100644 index 00000000..a9b07c5f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7750 +humanName: Radeon HD 7750 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-02-15' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO + TDP: 55 W + FP32 Compute: 819.2 GFLOPS + FP64 Compute: 51.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml new file mode 100644 index 00000000..17f23bf2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7750M +humanName: Radeon HD 7750M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Chelsea + GPU Variant: Chelsea PRO + TDP: 28 W + FP32 Compute: 588.8 GFLOPS + FP64 Compute: 36.80 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml new file mode 100644 index 00000000..2e40d9c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7770-GHz-Edition +humanName: Radeon HD 7770 GHz Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-02-15' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde XT + TDP: 80 W + FP32 Compute: 1,280 GFLOPS + FP64 Compute: 80.00 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml new file mode 100644 index 00000000..0f4286ed --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-7770M +humanName: Radeon HD 7770M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Chelsea + GPU Variant: Chelsea XT + TDP: 32 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml new file mode 100644 index 00000000..a1e1f050 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7850 +humanName: Radeon HD 7850 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-03-05' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn PRO + TDP: 130 W + FP32 Compute: 1.761 TFLOPS + FP64 Compute: 110.1 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml new file mode 100644 index 00000000..896c19d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7850M +humanName: Radeon HD 7850M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Heathrow + GPU Variant: Heathrow PRO + TDP: 40 W + FP32 Compute: 864.0 GFLOPS + FP64 Compute: 54.00 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml new file mode 100644 index 00000000..189a6476 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7870-GHz-Edition +humanName: Radeon HD 7870 GHz Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-03-05' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT + TDP: 175 W + FP32 Compute: 2.560 TFLOPS + FP64 Compute: 160.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml new file mode 100644 index 00000000..0e1ac3c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-7870-XT +humanName: Radeon HD 7870 XT +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-11-19' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti LE + TDP: 185 W + FP32 Compute: 2.995 TFLOPS + FP64 Compute: 748.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml new file mode 100644 index 00000000..f4d82538 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-7870M +humanName: Radeon HD 7870M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Heathrow + GPU Variant: Heathrow XT + TDP: 45 W + FP32 Compute: 1,024 GFLOPS + FP64 Compute: 64.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml new file mode 100644 index 00000000..0ee7e1f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml @@ -0,0 +1,36 @@ +name: Radeon-HD-7950-Boost +humanName: Radeon HD 7950 Boost +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-22' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO2 + TDP: 200 W + FP32 Compute: 3.315 TFLOPS + FP64 Compute: 828.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 275 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml new file mode 100644 index 00000000..13cd811e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7950-Mac-Edition +humanName: Radeon HD 7950 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-07' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 200 W + FP32 Compute: 2.867 TFLOPS + FP64 Compute: 716.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 279 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml new file mode 100644 index 00000000..dccc7c0d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7950-Monica-BIOS-1 +humanName: Radeon HD 7950 Monica BIOS 1 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-01-31' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 185 W + FP32 Compute: 2.842 TFLOPS + FP64 Compute: 710.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml new file mode 100644 index 00000000..e6269617 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7950-Monica-BIOS-2 +humanName: Radeon HD 7950 Monica BIOS 2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-01-31' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 85 W + FP32 Compute: 1,229 GFLOPS + FP64 Compute: 307.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml new file mode 100644 index 00000000..dcccb06c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-7950 +humanName: Radeon HD 7950 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-01-31' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 200 W + FP32 Compute: 2.867 TFLOPS + FP64 Compute: 716.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 278 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml new file mode 100644 index 00000000..a3322df6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-7950M +humanName: Radeon HD 7950M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Wimbledon + GPU Variant: Wimbledon PRO + TDP: 75 W + FP32 Compute: 1.792 TFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml new file mode 100644 index 00000000..e8ee6cdb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml @@ -0,0 +1,36 @@ +name: Radeon-HD-7970-GHz-Edition +humanName: Radeon HD 7970 GHz Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-06-22' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XT2 + TDP: 300 W + FP32 Compute: 4.301 TFLOPS + FP64 Compute: 1,075 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml new file mode 100644 index 00000000..2f7fdd33 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-7970-X2 +humanName: Radeon HD 7970 X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-08-31' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: New Zealand + GPU Variant: New Zealand + TDP: 500 W + FP32 Compute: 3.789 TFLOPS + FP64 Compute: 947.2 GFLOPS (1:4) + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 3x 8-pin + Length: 308 mm + Width: 137 mm + Height: 62 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml new file mode 100644 index 00000000..550c30a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-7970 +humanName: Radeon HD 7970 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2011-12-22' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XT + TDP: 250 W + FP32 Compute: 3.789 TFLOPS + FP64 Compute: 947.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml new file mode 100644 index 00000000..136c2b46 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-7970M-X2 +humanName: Radeon HD 7970M X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Wimbledon + GPU Variant: Wimbledon XT + TDP: 200 W + FP32 Compute: 2.176 TFLOPS + FP64 Compute: 136.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml new file mode 100644 index 00000000..70d9db68 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-7970M +humanName: Radeon HD 7970M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2012-04-24' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Wimbledon + GPU Variant: Wimbledon XT + TDP: 100 W + FP32 Compute: 2.176 TFLOPS + FP64 Compute: 136.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml new file mode 100644 index 00000000..7eb073e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml @@ -0,0 +1,36 @@ +name: Radeon-HD-7990 +humanName: Radeon HD 7990 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-24' + GPU Base Frequency: 950 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 365 mm² + GPU: Malta + GPU Variant: Malta XT + TDP: 375 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 304 mm + Width: 106 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml new file mode 100644 index 00000000..3237de46 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8530M +humanName: Radeon HD 8530M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-10' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars S3 LE + TDP: unknown + FP32 Compute: 448.0 GFLOPS + FP64 Compute: 28.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml new file mode 100644 index 00000000..1be7115c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8550M +humanName: Radeon HD 8550M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-07-13' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun S3 LE + TDP: unknown + FP32 Compute: 544.0 GFLOPS + FP64 Compute: 34.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml new file mode 100644 index 00000000..a14882a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8570-OEM +humanName: Radeon HD 8570 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml new file mode 100644 index 00000000..72e99f77 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8570A +humanName: Radeon HD 8570A +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun M2 PRO + TDP: unknown + FP32 Compute: 528.0 GFLOPS + FP64 Compute: 33.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml new file mode 100644 index 00000000..073a1204 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8570M +humanName: Radeon HD 8570M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun S3 PRO + TDP: unknown + FP32 Compute: 528.0 GFLOPS + FP64 Compute: 33.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml new file mode 100644 index 00000000..9a25fdbb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8590M +humanName: Radeon HD 8590M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun S3 PRO + TDP: unknown + FP32 Compute: 528.0 GFLOPS + FP64 Compute: 33.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml new file mode 100644 index 00000000..fefb4473 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-HD-8670-OEM +humanName: Radeon HD 8670 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland XT + TDP: 75 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml new file mode 100644 index 00000000..1dfd2914 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8670A +humanName: Radeon HD 8670A +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-02-02' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 XT + TDP: 45 W + FP32 Compute: 460.8 GFLOPS + FP64 Compute: 28.80 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml new file mode 100644 index 00000000..2697c694 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8670M +humanName: Radeon HD 8670M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 775 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars S3 XT + TDP: unknown + FP32 Compute: 633.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml new file mode 100644 index 00000000..05c66e17 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8690M +humanName: Radeon HD 8690M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun S3 XT + TDP: unknown + FP32 Compute: 624.0 GFLOPS + FP64 Compute: 39.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml new file mode 100644 index 00000000..d0c9ddef --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-8730-OEM +humanName: Radeon HD 8730 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-09-05' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde LE + TDP: 47 W + FP32 Compute: 614.4 GFLOPS + FP64 Compute: 38.40 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml new file mode 100644 index 00000000..e3bb9f23 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8730A +humanName: Radeon HD 8730A +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 LP + TDP: unknown + FP32 Compute: 537.6 GFLOPS + FP64 Compute: 33.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml new file mode 100644 index 00000000..e35a3ead --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8730M +humanName: Radeon HD 8730M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars S3 PRO + TDP: unknown + FP32 Compute: 537.6 GFLOPS + FP64 Compute: 33.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml new file mode 100644 index 00000000..468746c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8740-OEM +humanName: Radeon HD 8740 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-09-05' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO + TDP: 55 W + FP32 Compute: 819.2 GFLOPS + FP64 Compute: 51.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml new file mode 100644 index 00000000..6e1a79ee --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8750A +humanName: Radeon HD 8750A +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-02-02' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 XT + TDP: 45 W + FP32 Compute: 460.8 GFLOPS + FP64 Compute: 28.80 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml new file mode 100644 index 00000000..4c9641f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8750M +humanName: Radeon HD 8750M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-02-26' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 PRO/LP + TDP: unknown + FP32 Compute: 514.6 GFLOPS + FP64 Compute: 32.16 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml new file mode 100644 index 00000000..dd698230 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8760-OEM +humanName: Radeon HD 8760 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Latte XT + TDP: 80 W + FP32 Compute: 1,280 GFLOPS + FP64 Compute: 80.00 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml new file mode 100644 index 00000000..0373a433 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8770M +humanName: Radeon HD 8770M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 775 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars S3 XT + TDP: unknown + FP32 Compute: 633.6 GFLOPS + FP64 Compute: 39.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml new file mode 100644 index 00000000..c74f73b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-8790M +humanName: Radeon HD 8790M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 XTX + TDP: unknown + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml new file mode 100644 index 00000000..d687c4b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8830M +humanName: Radeon HD 8830M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 575 MHz + GPU Boost Frequency: 625 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus LE + TDP: unknown + FP32 Compute: 800.0 GFLOPS + FP64 Compute: 50.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml new file mode 100644 index 00000000..ebc4baee --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8850M +humanName: Radeon HD 8850M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 575 MHz + GPU Boost Frequency: 625 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus PRO + TDP: unknown + FP32 Compute: 800.0 GFLOPS + FP64 Compute: 50.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml new file mode 100644 index 00000000..a6021b39 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8860-OEM +humanName: Radeon HD 8860 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Curacao + GPU Variant: Curacao PRO + TDP: 175 W + FP32 Compute: 2.368 TFLOPS + FP64 Compute: 148.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml new file mode 100644 index 00000000..0df32683 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8870-OEM +humanName: Radeon HD 8870 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT + TDP: 175 W + FP32 Compute: 2.560 TFLOPS + FP64 Compute: 160.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml new file mode 100644 index 00000000..070a2e86 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8870M +humanName: Radeon HD 8870M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-01' + GPU Base Frequency: 725 MHz + GPU Boost Frequency: 775 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XT + TDP: unknown + FP32 Compute: 992.0 GFLOPS + FP64 Compute: 62.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml new file mode 100644 index 00000000..98f02ccf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-8950-OEM +humanName: Radeon HD 8950 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO + TDP: 200 W + FP32 Compute: 3.315 TFLOPS + FP64 Compute: 828.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml new file mode 100644 index 00000000..83a07972 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8970-OEM +humanName: Radeon HD 8970 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-01-08' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XT + TDP: 250 W + FP32 Compute: 3.789 TFLOPS + FP64 Compute: 947.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 274 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml new file mode 100644 index 00000000..ac7b530d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8970M +humanName: Radeon HD 8970M +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-05-14' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Neptune + GPU Variant: Neptune XT + TDP: 100 W + FP32 Compute: 2.304 TFLOPS + FP64 Compute: 144.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml new file mode 100644 index 00000000..0540c65a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-8990-OEM +humanName: Radeon HD 8990 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-04-24' + GPU Base Frequency: 950 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 365 mm² + GPU: Malta + GPU Variant: Malta XT + TDP: 375 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 307 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml new file mode 100644 index 00000000..d0e36cb5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R5-240-OEM +humanName: Radeon R5 240 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-11-01' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml new file mode 100644 index 00000000..5105fd52 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml @@ -0,0 +1,34 @@ +name: Radeon-R5-340-OEM +humanName: Radeon R5 340 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 36.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland PRO + TDP: 65 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml new file mode 100644 index 00000000..2797538e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-R5-340X-OEM +humanName: Radeon R5 340X OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland XT + TDP: 65 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml new file mode 100644 index 00000000..e34ca140 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R5-430-OEM +humanName: Radeon R5 430 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-06-30' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 36.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland PRO + TDP: 50 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml new file mode 100644 index 00000000..7b0ad4ab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-435-OEM +humanName: Radeon R5 435 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-06-30' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 18.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Banks + GPU Variant: Banks S3 PRO + TDP: 50 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml new file mode 100644 index 00000000..c8328e4c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml @@ -0,0 +1,30 @@ +name: Radeon-R5-A230 +humanName: Radeon R5 A230 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-07' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml new file mode 100644 index 00000000..e28aba0b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml @@ -0,0 +1,32 @@ +name: Radeon-R5-A240 +humanName: Radeon R5 A240 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 499.2 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml new file mode 100644 index 00000000..6fad2383 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml @@ -0,0 +1,28 @@ +name: Radeon-R5-A320 +humanName: Radeon R5 A320 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 528.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml new file mode 100644 index 00000000..5ec76a7a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml @@ -0,0 +1,26 @@ +name: Radeon-R5-A330 +humanName: Radeon R5 A330 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-10-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Exo + TDP: unknown + FP32 Compute: 659.2 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml new file mode 100644 index 00000000..e4087790 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml @@ -0,0 +1,26 @@ +name: Radeon-R5-A335 +humanName: Radeon R5 A335 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-10-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Exo + TDP: unknown + FP32 Compute: 684.8 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml new file mode 100644 index 00000000..7cb8c99e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-M230-Rebrand +humanName: Radeon R5 M230 Rebrand +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-01' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Sun + GPU Variant: Sun S3 UL + TDP: unknown + FP32 Compute: 528.0 GFLOPS + FP64 Compute: 33.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml new file mode 100644 index 00000000..d289eac1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml @@ -0,0 +1,30 @@ +name: Radeon-R5-M230 +humanName: Radeon R5 M230 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-07' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet M2 PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml new file mode 100644 index 00000000..154e490e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-M240-Rebrand +humanName: Radeon R5 M240 Rebrand +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-10' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Mars + GPU Variant: Mars M2 PRO + TDP: unknown + FP32 Compute: 537.6 GFLOPS + FP64 Compute: 33.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml new file mode 100644 index 00000000..a7f0db7a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-M240 +humanName: Radeon R5 M240 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-09-18' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet M2 XT + TDP: unknown + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml new file mode 100644 index 00000000..35089fb6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml @@ -0,0 +1,30 @@ +name: Radeon-R5-M320 +humanName: Radeon R5 M320 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml new file mode 100644 index 00000000..e94d9596 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-M330 +humanName: Radeon R5 M330 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Exo + GPU Variant: Exo S3 PRO + TDP: 18 W + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml new file mode 100644 index 00000000..326436fd --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml @@ -0,0 +1,28 @@ +name: Radeon-R5-M335 +humanName: Radeon R5 M335 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-10-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Exo + GPU Variant: Exo S3 PRO + TDP: unknown + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml new file mode 100644 index 00000000..3c6bbcdb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml @@ -0,0 +1,30 @@ +name: Radeon-R5-M420 +humanName: Radeon R5 M420 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-05-15' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 544.0 GFLOPS + FP64 Compute: 34.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml new file mode 100644 index 00000000..3c505b4b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-M430 +humanName: Radeon R5 M430 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml new file mode 100644 index 00000000..cda0d385 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml @@ -0,0 +1,30 @@ +name: Radeon-R5-M435 +humanName: Radeon R5 M435 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-05-15' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet S3 UL + TDP: unknown + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml new file mode 100644 index 00000000..82995235 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R6-M340DX +humanName: Radeon R6 M340DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-12-12' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet XT + TDP: unknown + FP32 Compute: 791.0 GFLOPS + FP64 Compute: 49.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml new file mode 100644 index 00000000..ea37c5b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R6-M435DX +humanName: Radeon R6 M435DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-12-12' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet XT + TDP: unknown + FP32 Compute: 791.0 GFLOPS + FP64 Compute: 49.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml new file mode 100644 index 00000000..4e0347be --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-240-OEM +humanName: Radeon R7 240 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-11-01' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 499.2 GFLOPS + FP64 Compute: 31.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml new file mode 100644 index 00000000..7bd3672b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml @@ -0,0 +1,34 @@ +name: Radeon-R7-240 +humanName: Radeon R7 240 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-08' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 700 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland LE + TDP: 30 W + FP32 Compute: 448.0 GFLOPS + FP64 Compute: 28.00 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml new file mode 100644 index 00000000..aab79ecd --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R7-250-OEM +humanName: Radeon R7 250 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland XT + TDP: 65 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml new file mode 100644 index 00000000..06d20644 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-250 +humanName: Radeon R7 250 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-08' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO + TDP: 55 W + FP32 Compute: 716.8 GFLOPS + FP64 Compute: 44.80 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml new file mode 100644 index 00000000..b830975e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-250E +humanName: Radeon R7 250E +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-12-20' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO-E + TDP: 55 W + FP32 Compute: 819.2 GFLOPS + FP64 Compute: 51.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml new file mode 100644 index 00000000..a426cb83 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-250X +humanName: Radeon R7 250X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-02-13' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde XT + TDP: 80 W + FP32 Compute: 1,216 GFLOPS + FP64 Compute: 76.00 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml new file mode 100644 index 00000000..bce086c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml @@ -0,0 +1,31 @@ +name: Radeon-R7-250XE +humanName: Radeon R7 250XE +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-21' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde XT + TDP: 80 W + FP32 Compute: 1,101 GFLOPS + FP64 Compute: 68.80 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml new file mode 100644 index 00000000..f16e0cc7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml @@ -0,0 +1,34 @@ +name: Radeon-R7-265 +humanName: Radeon R7 265 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-02-13' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn PRO + TDP: 150 W + FP32 Compute: 1.894 TFLOPS + FP64 Compute: 118.4 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml new file mode 100644 index 00000000..7477a9a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml @@ -0,0 +1,34 @@ +name: Radeon-R7-265X-OEM +humanName: Radeon R7 265X OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-08-12' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Curacao + GPU Variant: Curacao PRO + TDP: 150 W + FP32 Compute: 2.368 TFLOPS + FP64 Compute: 148.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml new file mode 100644 index 00000000..20bf705f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-340-OEM +humanName: Radeon R7 340 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml new file mode 100644 index 00000000..3466df3e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-350-640SP +humanName: Radeon R7 350 640SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2019-01-07' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde XT + TDP: 55 W + FP32 Compute: 1,184 GFLOPS + FP64 Compute: 74.00 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml new file mode 100644 index 00000000..b3aad1dd --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-350-Fake-Card +humanName: Radeon R7 350 Fake Card +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 36.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + GPU Variant: Opal XT + TDP: 35 W + FP32 Compute: 806.4 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x HDMI 1.4a1x DisplayPort 1.2 + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml new file mode 100644 index 00000000..94e52e60 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R7-350-OEM +humanName: Radeon R7 350 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland XT + TDP: 65 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml new file mode 100644 index 00000000..25c00839 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R7-350X-OEM +humanName: Radeon R7 350X OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + GPU Variant: Oland XT + TDP: 65 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml new file mode 100644 index 00000000..865f2090 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml @@ -0,0 +1,34 @@ +name: Radeon-R7-370 +humanName: Radeon R7 370 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-06-18' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Trinidad + GPU Variant: Trinidad PRO + TDP: 110 W + FP32 Compute: 1.997 TFLOPS + FP64 Compute: 124.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 152 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml new file mode 100644 index 00000000..00d14d2e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-430-OEM +humanName: Radeon R7 430 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-06-30' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 37.44 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml new file mode 100644 index 00000000..5a9b0af5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-435-OEM +humanName: Radeon R7 435 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-06-30' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 77 mm² + GPU: Oland + TDP: 50 W + FP32 Compute: 588.8 GFLOPS + FP64 Compute: 36.80 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml new file mode 100644 index 00000000..e75d1009 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R7-450-OEM +humanName: Radeon R7 450 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-06-30' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRO2 + TDP: 65 W + FP32 Compute: 947.2 GFLOPS + FP64 Compute: 59.20 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml new file mode 100644 index 00000000..006407b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-A265 +humanName: Radeon R7 A265 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-09' + GPU Base Frequency: 725 MHz + GPU Boost Frequency: 825 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + GPU Variant: Opal XT + TDP: unknown + FP32 Compute: 633.6 GFLOPS + FP64 Compute: 39.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml new file mode 100644 index 00000000..1fea7189 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-M260DX +humanName: Radeon R7 M260DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-07' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 659.2 GFLOPS + FP64 Compute: 41.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml new file mode 100644 index 00000000..ffbdf1c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M260X +humanName: Radeon R7 M260X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-12-06' + GPU Base Frequency: 620 MHz + GPU Boost Frequency: 715 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + GPU Variant: Opal PRO + TDP: unknown + FP32 Compute: 549.1 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml new file mode 100644 index 00000000..81956ea2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-M265DX +humanName: Radeon R7 M265DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-07' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml new file mode 100644 index 00000000..1383b727 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-M270DX +humanName: Radeon R7 M270DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-07' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 855 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet PRO + TDP: unknown + FP32 Compute: 547.2 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml new file mode 100644 index 00000000..26fecca5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-M340 +humanName: Radeon R7 M340 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-12-06' + GPU Base Frequency: 620 MHz + GPU Boost Frequency: 715 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Opal + GPU Variant: Opal PRO + TDP: unknown + FP32 Compute: 549.1 GFLOPS + FP64 Compute: 34.32 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml new file mode 100644 index 00000000..d20f786e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml @@ -0,0 +1,27 @@ +name: Radeon-R7-M365X +humanName: Radeon R7 M365X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Litho + GPU Variant: Litho XT + TDP: unknown + FP32 Compute: 633.6 GFLOPS + FP64 Compute: 39.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml new file mode 100644 index 00000000..d71ec918 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M370 +humanName: Radeon R7 M370 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 875 MHz + GPU Boost Frequency: 960 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Litho + GPU Variant: Litho XT + TDP: unknown + FP32 Compute: 737.3 GFLOPS + FP64 Compute: 46.08 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml new file mode 100644 index 00000000..95e378ad --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M380 +humanName: Radeon R7 M380 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 915 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XT + TDP: unknown + FP32 Compute: 1,171 GFLOPS + FP64 Compute: 73.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml new file mode 100644 index 00000000..91d7cf0d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml @@ -0,0 +1,27 @@ +name: Radeon-R7-M465 +humanName: Radeon R7 M465 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-05-15' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: Litho + GPU Variant: Litho XT + TDP: unknown + FP32 Compute: 633.6 GFLOPS + FP64 Compute: 39.60 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml new file mode 100644 index 00000000..a4c52474 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M465X +humanName: Radeon R7 M465X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-05-15' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo LE + TDP: unknown + FP32 Compute: 947.2 GFLOPS + FP64 Compute: 59.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml new file mode 100644 index 00000000..ef6293ab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R8-M350DX +humanName: Radeon R8 M350DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-12-12' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet XT + TDP: unknown + FP32 Compute: 791.0 GFLOPS + FP64 Compute: 49.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml new file mode 100644 index 00000000..b9a54196 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R8-M435DX +humanName: Radeon R8 M435DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2016-12-12' + GPU Base Frequency: 955 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 56 mm² + GPU: Jet + GPU Variant: Jet XT + TDP: unknown + FP32 Compute: 791.0 GFLOPS + FP64 Compute: 49.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml new file mode 100644 index 00000000..7553ba30 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-255-OEM +humanName: Radeon R9 255 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-12-21' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 930 MHz + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Cape Verde + GPU Variant: Cape Verde PRX + TDP: 65 W + FP32 Compute: 952.3 GFLOPS + FP64 Compute: 59.52 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml new file mode 100644 index 00000000..a762d4ff --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml @@ -0,0 +1,33 @@ +name: Radeon-R9-270-1024SP +humanName: Radeon R9 270 1024SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-03-13' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn PRO + TDP: 150 W + FP32 Compute: 1.894 TFLOPS + FP64 Compute: 118.4 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml new file mode 100644 index 00000000..05308a2a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-270 +humanName: Radeon R9 270 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-11-13' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Curacao + GPU Variant: Curacao PRO + TDP: 150 W + FP32 Compute: 2.368 TFLOPS + FP64 Compute: 148.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 210 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml new file mode 100644 index 00000000..fd4cafe0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml @@ -0,0 +1,36 @@ +name: Radeon-R9-270X +humanName: Radeon R9 270X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Curacao + GPU Variant: Curacao XT + TDP: 180 W + FP32 Compute: 2.688 TFLOPS + FP64 Compute: 168.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml new file mode 100644 index 00000000..4bc334d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml @@ -0,0 +1,36 @@ +name: Radeon-R9-280 +humanName: Radeon R9 280 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-03-04' + GPU Base Frequency: 827 MHz + GPU Boost Frequency: 933 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO3 + TDP: 200 W + FP32 Compute: 3.344 TFLOPS + FP64 Compute: 836.0 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml new file mode 100644 index 00000000..53f4ba03 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml @@ -0,0 +1,36 @@ +name: Radeon-R9-280X +humanName: Radeon R9 280X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-10-08' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XTL + TDP: 250 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml new file mode 100644 index 00000000..f3aa3d36 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml @@ -0,0 +1,32 @@ +name: Radeon-R9-280X2 +humanName: Radeon R9 280X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: 'Unknown' + GPU Base Frequency: 950 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti XTL + TDP: 375 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.2 + Power Connectors: 3x 8-pin + Length: 315 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml new file mode 100644 index 00000000..549b4b20 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml @@ -0,0 +1,35 @@ +name: Radeon-R9-370-1024SP +humanName: Radeon R9 370 1024SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-06-12' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Trinidad + GPU Variant: Trinidad PRO + TDP: 150 W + FP32 Compute: 1.997 TFLOPS + FP64 Compute: 124.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml new file mode 100644 index 00000000..e91ad3f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml @@ -0,0 +1,35 @@ +name: Radeon-R9-370 +humanName: Radeon R9 370 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Trinidad + GPU Variant: Trinidad PRO + TDP: 110 W + FP32 Compute: 2.496 TFLOPS + FP64 Compute: 156.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml new file mode 100644 index 00000000..041c2995 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml @@ -0,0 +1,35 @@ +name: Radeon-R9-370X +humanName: Radeon R9 370X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-08-27' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1030 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Trinidad + GPU Variant: Trinidad XT + TDP: 180 W + FP32 Compute: 2.637 TFLOPS + FP64 Compute: 164.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml new file mode 100644 index 00000000..bb4796eb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml @@ -0,0 +1,26 @@ +name: Radeon-R9-A375 +humanName: Radeon R9 A375 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XTX + TDP: unknown + FP32 Compute: 1,299 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml new file mode 100644 index 00000000..f4748970 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M275 +humanName: Radeon R9 M275 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-28' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XTX + TDP: unknown + FP32 Compute: 1,184 GFLOPS + FP64 Compute: 74.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml new file mode 100644 index 00000000..782536cc --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M275X +humanName: Radeon R9 M275X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-28' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Venus + GPU Variant: Venus XTX + TDP: unknown + FP32 Compute: 1,184 GFLOPS + FP64 Compute: 74.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml new file mode 100644 index 00000000..2624b2b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-M290X-Mac-Edition +humanName: Radeon R9 M290X Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-11-23' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1365 MHz + VRAM Bandwidth: 174.7 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn PRO + TDP: 80 W + FP32 Compute: 1.997 TFLOPS + FP64 Compute: 124.8 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml new file mode 100644 index 00000000..7779a9ba --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-M290X +humanName: Radeon R9 M290X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2014-01-09' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Neptune + GPU Variant: Neptune XT + TDP: 100 W + FP32 Compute: 2.304 TFLOPS + FP64 Compute: 144.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml new file mode 100644 index 00000000..f17bb59e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M360 +humanName: Radeon R9 M360 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo LE + TDP: unknown + FP32 Compute: 947.2 GFLOPS + FP64 Compute: 59.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml new file mode 100644 index 00000000..9a53ac51 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M365X +humanName: Radeon R9 M365X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 925 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XT + TDP: unknown + FP32 Compute: 1,184 GFLOPS + FP64 Compute: 74.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml new file mode 100644 index 00000000..3189f5a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M370X-Mac-Edition +humanName: Radeon R9 M370X Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 775 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XT + TDP: unknown + FP32 Compute: 1,024 GFLOPS + FP64 Compute: 64.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml new file mode 100644 index 00000000..6e960ae7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M375 +humanName: Radeon R9 M375 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1015 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XT2 + TDP: unknown + FP32 Compute: 1,299 GFLOPS + FP64 Compute: 81.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml new file mode 100644 index 00000000..b026c100 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M375X +humanName: Radeon R9 M375X +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 1015 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 72.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Tropo + GPU Variant: Tropo XTX + TDP: unknown + FP32 Compute: 1,299 GFLOPS + FP64 Compute: 81.20 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml new file mode 100644 index 00000000..e6048c04 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M390-Mac-Edition +humanName: Radeon R9 M390 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2015-05-05' + VRAM Frequency: 1365 MHz + VRAM Bandwidth: 174.7 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn PRO + TDP: 80 W + FP32 Compute: 1.962 TFLOPS + FP64 Compute: 122.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml new file mode 100644 index 00000000..6ff23696 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml @@ -0,0 +1,31 @@ +name: Radeon-Sky-500 +humanName: Radeon Sky 500 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-27' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 212 mm² + GPU: Pitcairn + GPU Variant: Pitcairn XT GL + TDP: 150 W + FP32 Compute: 2.432 TFLOPS + FP64 Compute: 152.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 242 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml new file mode 100644 index 00000000..f9706440 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml @@ -0,0 +1,31 @@ +name: Radeon-Sky-700 +humanName: Radeon Sky 700 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-27' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Tahiti PRO GL + TDP: 225 W + FP32 Compute: 3.226 TFLOPS + FP64 Compute: 806.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml new file mode 100644 index 00000000..a6fa797e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml @@ -0,0 +1,35 @@ +name: Radeon-Sky-900 +humanName: Radeon Sky 900 +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1 (1.2)' + Release Date: '2013-03-27' + GPU Base Frequency: 825 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 352 mm² + GPU: Tahiti + GPU Variant: Orthrus + TDP: 300 W + FP32 Compute: 3.405 TFLOPS + FP64 Compute: 851.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml new file mode 100644 index 00000000..6cdee5e6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-One-GPU +humanName: Xbox One GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.1' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2013-11-22' + VRAM Frequency: 1066 MHz + VRAM Bandwidth: 68.22 GB/s + VRAM Capacity: 8 GB + VRAM Type: DDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 363 mm² + GPU: Durango + GPU Variant: X871363-001 + TDP: 95 W + FP32 Compute: 1,310 GFLOPS + Outputs: 1x HDMI 1.4b + Length: 333 mm + Width: 274 mm + Height: 79 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml new file mode 100644 index 00000000..52034206 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-One-S-GPU +humanName: Xbox One S GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 1.0 + Lithography: 16 nm + DirectX Support: '11.1' + Vulkan Support: '1.1' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2016-08-02' + VRAM Frequency: 1066 MHz + VRAM Bandwidth: 68.22 GB/s + VRAM Capacity: 8 GB + VRAM Type: DDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 240 mm² + GPU: Durango 2 + GPU Variant: M1004145-001 + TDP: 95 W + FP32 Compute: 1,404 GFLOPS + Outputs: 1x HDMI 2.0a + Length: 295 mm + Width: 230 mm + Height: 64 mm diff --git a/specs/GPUs-CONSUMER/GCN-1.yaml b/specs/GPUs-CONSUMER/GCN-1.yaml deleted file mode 100755 index 74d8b50a..00000000 --- a/specs/GPUs-CONSUMER/GCN-1.yaml +++ /dev/null @@ -1,11 +0,0 @@ -hidden: true -name: GCN 1 -data: - Architecture: 1st Gen GCN - Lithography: 28 nm - DirectX Support: '12.0' - HLSL Shader Model: '6.0' - Vulkan Support: '1.1' - OpenGL Support: '4.5' - OpenCL Support: '1.2' - Crossfire Support: CrossfireX \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/GCN-2.0.yaml b/specs/GPUs-CONSUMER/GCN-2.0.yaml new file mode 100644 index 00000000..27853c5c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0.yaml @@ -0,0 +1,76 @@ +name: GCN-2.0 +humanName: GCN 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + Release Date: '2013-03-22' +sections: + - header: WHOLE RANGE + members: + - FirePro-M6100 + - FirePro-S9100 + - FirePro-S9150 + - FirePro-S9170 + - FirePro-W4300 + - FirePro-W6150M + - FirePro-W6170M + - FirePro-W8100 + - FirePro-W9100 + - FirePro-W5100 + - Playstation-4-GPU + - Playstation-4-Pro-GPU + - Playstation-4-Slim-GPU + - Radeon-E8870-MXM + - Radeon-E8870-PCIe + - Radeon-HD-7790 + - Radeon-HD-8180-IGP + - Radeon-HD-8210-IGP + - Radeon-HD-8210E + - Radeon-HD-8240-Mobile-IGP + - Radeon-HD-8250-IGP + - Radeon-HD-8280-IGP + - Radeon-HD-8280-Mobile-IGP + - Radeon-HD-8280E + - Radeon-HD-8330-Mobile-IGP + - Radeon-HD-8330E + - Radeon-HD-8400-IGP + - Radeon-HD-8400-Mobile-IGP + - Radeon-HD-8400E + - Radeon-HD-8770-OEM + - Radeon-HD-8950M + - Radeon-R1E-Mobile-Graphics + - Radeon-R2-Mobile-Graphics + - Radeon-R2E-Mobile-Graphics + - Radeon-R3-Mobile-Graphics + - Radeon-R3E-Mobile-Graphics + - Radeon-R4E-Mobile-Graphics + - Radeon-R7-260 + - Radeon-R7-260X + - Radeon-R7-360 + - Radeon-R7-360-896SP + - Radeon-R7-360E + - Radeon-R7-Graphics + - Radeon-R7-Mobile-Graphics + - Radeon-R9-260-OEM + - Radeon-R9-290 + - Radeon-R9-290X + - Radeon-R9-290X2 + - Radeon-R9-295X2 + - Radeon-R9-360-OEM + - Radeon-R9-390 + - Radeon-R9-390-X2 + - Radeon-R9-390X + - Radeon-R9-M270X + - Radeon-R9-M280X + - Radeon-R9-M380 + - Radeon-R9-M380-Mac-Edition + - Radeon-R9-M385 + - Radeon-R9-M385X + - Radeon-R9-M470 + - Radeon-R9-M470X + - Radeon-RX-455-OEM + - Xbox-One-X-GPU diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml new file mode 100644 index 00000000..b98f357d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml @@ -0,0 +1,29 @@ +name: FirePro-M6100 +humanName: FirePro M6100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-05-27' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Emerald + GPU Variant: Emerald XT GL + TDP: unknown + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml new file mode 100644 index 00000000..da100014 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9100 +humanName: FirePro S9100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-10-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii GL40 + TDP: 225 W + FP32 Compute: 4.219 TFLOPS + FP64 Compute: 2.109 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml new file mode 100644 index 00000000..28b16f93 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9150 +humanName: FirePro S9150 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-08-07' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii GL44 + TDP: 235 W + FP32 Compute: 5.069 TFLOPS + FP64 Compute: 2.534 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml new file mode 100644 index 00000000..5ec94e21 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9170 +humanName: FirePro S9170 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-07-08' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii XT GL + TDP: 275 W + FP32 Compute: 5.238 TFLOPS + FP64 Compute: 2.619 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml new file mode 100644 index 00000000..30ea2c0e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml @@ -0,0 +1,31 @@ +name: FirePro-W4300 +humanName: FirePro W4300 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-12-01' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire PRO GL + TDP: 50 W + FP32 Compute: 1,428 GFLOPS + FP64 Compute: 89.28 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Power Connectors: None + Length: 171 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml new file mode 100644 index 00000000..44a81a77 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml @@ -0,0 +1,31 @@ +name: FirePro-W5100 +humanName: FirePro W5100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-03-31' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire PRO GL + TDP: 50 W + FP32 Compute: 1,428 GFLOPS + FP64 Compute: 89.28 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: None + Length: 173 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml new file mode 100644 index 00000000..d82de806 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W6150M +humanName: FirePro W6150M +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-11-12' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Emerald + GPU Variant: Emerald XT GL + TDP: unknown + FP32 Compute: 1.651 TFLOPS + FP64 Compute: 103.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml new file mode 100644 index 00000000..a2ce539b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W6170M +humanName: FirePro W6170M +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-08-25' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Emerald + GPU Variant: Emerald XT GL + TDP: unknown + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml new file mode 100644 index 00000000..da2b1e94 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml @@ -0,0 +1,33 @@ +name: FirePro-W8100 +humanName: FirePro W8100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-06-23' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii GL40 + TDP: 220 W + FP32 Compute: 4.219 TFLOPS + FP64 Compute: 2.109 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 4x DisplayPort 1.2 + - 1x SDI + Power Connectors: 2x 6-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml new file mode 100644 index 00000000..7d18c0b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml @@ -0,0 +1,33 @@ +name: FirePro-W9100 +humanName: FirePro W9100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-03-26' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii GL44 + TDP: 275 W + FP32 Compute: 5.238 TFLOPS + FP64 Compute: 2.619 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 6x mini-DisplayPort 1.2 + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml new file mode 100644 index 00000000..83c8826e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml @@ -0,0 +1,29 @@ +name: Playstation-4-GPU +humanName: Playstation 4 GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '11.1*' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2013-11-24' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1152 + Die Size: 348 mm² + GPU: Liverpool + GPU Variant: CXD90026BG + TDP: 75 W + FP32 Compute: 1.843 TFLOPS + Outputs: 1x HDMI 1.4a + Length: 305 mm + Width: 275 mm + Height: 53 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml new file mode 100644 index 00000000..ba6729da --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml @@ -0,0 +1,28 @@ +name: Playstation-4-Pro-GPU +humanName: Playstation 4 Pro GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 16 nm + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2016-11-10' + VRAM Frequency: 1700 MHz + VRAM Bandwidth: 217.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 322 mm² + GPU: Neo + GPU Variant: CXD90044GB + TDP: 150 W + FP32 Compute: 4.198 TFLOPS + Outputs: 1x HDMI 1.4a + Length: 327 mm + Width: 295 mm + Height: 55 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml new file mode 100644 index 00000000..02d3c9ae --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml @@ -0,0 +1,29 @@ +name: Playstation-4-Slim-GPU +humanName: Playstation 4 Slim GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 16 nm + DirectX Support: '11.1*' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2016-09-07' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1152 + Die Size: 209 mm² + GPU: Liverpool 16nm + GPU Variant: CXD90043GB + TDP: 75 W + FP32 Compute: 1.843 TFLOPS + Outputs: 1x HDMI 1.4a + Length: 288 mm + Width: 265 mm + Height: 39 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml new file mode 100644 index 00000000..ceff877d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml @@ -0,0 +1,29 @@ +name: Radeon-E8870-MXM +humanName: Radeon E8870 MXM +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-09-29' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Saturn + GPU Variant: Saturn ES8870 + TDP: 75 W + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml new file mode 100644 index 00000000..ca19a3c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml @@ -0,0 +1,29 @@ +name: Radeon-E8870-PCIe +humanName: Radeon E8870 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-09-29' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Saturn + GPU Variant: Saturn ES8870 + TDP: 75 W + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml new file mode 100644 index 00000000..dcf50df3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7790 +humanName: Radeon HD 7790 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-03-22' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire XT + TDP: 85 W + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 112.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml new file mode 100644 index 00000000..71d17d02 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8180-IGP +humanName: Radeon HD 8180 IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Nov 2013' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + GPU Variant: Kalindi LP + TDP: 4 W + FP32 Compute: 57.60 GFLOPS + FP64 Compute: 3.600 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml new file mode 100644 index 00000000..e77644ab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8210-IGP +humanName: Radeon HD 8210 IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-01-31' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + GPU Variant: Kalindi LP + TDP: 8 W + FP32 Compute: 76.80 GFLOPS + FP64 Compute: 4.800 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml new file mode 100644 index 00000000..a8690e83 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8210E +humanName: Radeon HD 8210E +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-04-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 9 W + FP32 Compute: 76.80 GFLOPS + FP64 Compute: 4.800 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml new file mode 100644 index 00000000..e80ace6f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8240-Mobile-IGP +humanName: Radeon HD 8240 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-11-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + GPU Variant: Kalindi LP + TDP: 15 W + FP32 Compute: 102.4 GFLOPS + FP64 Compute: 6.400 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml new file mode 100644 index 00000000..d46f2cf6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8250-IGP +humanName: Radeon HD 8250 IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-05-23' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + GPU Variant: Kalindi LP + TDP: 8 W + FP32 Compute: 102.4 GFLOPS + FP64 Compute: 6.400 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml new file mode 100644 index 00000000..3890667a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8280-IGP +humanName: Radeon HD 8280 IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-09-18' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 15 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 7.200 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml new file mode 100644 index 00000000..e6891069 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8280-Mobile-IGP +humanName: Radeon HD 8280 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-09-18' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 15 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 7.200 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml new file mode 100644 index 00000000..2c3a4f71 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8280E +humanName: Radeon HD 8280E +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-04-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 15 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 7.200 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml new file mode 100644 index 00000000..671d917f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8330-Mobile-IGP +humanName: Radeon HD 8330 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-08-13' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 15 W + FP32 Compute: 127.2 GFLOPS + FP64 Compute: 7.952 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml new file mode 100644 index 00000000..f96c1d54 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8330E +humanName: Radeon HD 8330E +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-04-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 15 W + FP32 Compute: 127.2 GFLOPS + FP64 Compute: 7.952 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml new file mode 100644 index 00000000..7d557b30 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8400-IGP +humanName: Radeon HD 8400 IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-11-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 25 W + FP32 Compute: 153.6 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml new file mode 100644 index 00000000..6a87126b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8400-Mobile-IGP +humanName: Radeon HD 8400 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-11-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 25 W + FP32 Compute: 153.6 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml new file mode 100644 index 00000000..aa740f16 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-8400E +humanName: Radeon HD 8400E +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-04-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 110 mm² + GPU: Kalindi + TDP: 25 W + FP32 Compute: 153.6 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml new file mode 100644 index 00000000..cf4a0e26 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-8770-OEM +humanName: Radeon HD 8770 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-09-02' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire XT + TDP: 85 W + FP32 Compute: 1.882 TFLOPS + FP64 Compute: 117.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml new file mode 100644 index 00000000..3e4f8629 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8950M +humanName: Radeon HD 8950M +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-05-14' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Saturn + GPU Variant: Saturn XT + TDP: 100 W + FP32 Compute: 1.651 TFLOPS + FP64 Compute: 103.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml new file mode 100644 index 00000000..a0855fc8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R1E-Mobile-Graphics +humanName: Radeon R1E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-02-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 64 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 63.62 GFLOPS + FP64 Compute: 3.976 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml new file mode 100644 index 00000000..800d1a2c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R2-Mobile-Graphics +humanName: Radeon R2 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-01-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 76.80 GFLOPS + FP64 Compute: 4.800 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml new file mode 100644 index 00000000..e5efdd1b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R2E-Mobile-Graphics +humanName: Radeon R2E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-01-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 76.80 GFLOPS + FP64 Compute: 4.800 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml new file mode 100644 index 00000000..caf9bde3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R3-Mobile-Graphics +humanName: Radeon R3 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-01-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 153.6 GFLOPS + FP64 Compute: 9.600 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml new file mode 100644 index 00000000..4d8e21ec --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R3E-Mobile-Graphics +humanName: Radeon R3E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-01-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 89.86 GFLOPS + FP64 Compute: 5.616 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml new file mode 100644 index 00000000..744576b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R4E-Mobile-Graphics +humanName: Radeon R4E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-06-06' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 107 mm² + GPU: Beema + TDP: 15 W + FP32 Compute: 204.8 GFLOPS + FP64 Compute: 12.80 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml new file mode 100644 index 00000000..fb621c66 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-260 +humanName: Radeon R7 260 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-12-17' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire PRO + TDP: 95 W + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml new file mode 100644 index 00000000..50559734 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-260X +humanName: Radeon R7 260X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-10-08' + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 104.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire XTX + TDP: 115 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml new file mode 100644 index 00000000..868f1584 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml @@ -0,0 +1,32 @@ +name: Radeon-R7-360-896SP +humanName: Radeon R7 360 896SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-18' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Tobago + GPU Variant: Tobago XT + TDP: 85 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml new file mode 100644 index 00000000..10f2c8b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml @@ -0,0 +1,34 @@ +name: Radeon-R7-360 +humanName: Radeon R7 360 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-18' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Tobago + GPU Variant: Tobago PRO + TDP: 100 W + FP32 Compute: 1.613 TFLOPS + FP64 Compute: 100.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml new file mode 100644 index 00000000..1057f24e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml @@ -0,0 +1,31 @@ +name: Radeon-R7-360E +humanName: Radeon R7 360E +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-12-30' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Tobago + GPU Variant: Tobago PRO + TDP: 75 W + FP32 Compute: 1.613 TFLOPS + FP64 Compute: 100.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml new file mode 100644 index 00000000..eb59fae2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R7-Graphics +humanName: Radeon R7 Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-01-11' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 245 mm² + GPU: Spectre + TDP: 25 W + FP32 Compute: 737.3 GFLOPS + FP64 Compute: 46.08 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml new file mode 100644 index 00000000..427c74ed --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml @@ -0,0 +1,27 @@ +name: Radeon-R7-Mobile-Graphics +humanName: Radeon R7 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-02-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 245 mm² + GPU: Spectre Lite + TDP: 25 W + FP32 Compute: 425.5 GFLOPS + FP64 Compute: 26.59 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml new file mode 100644 index 00000000..c2160d4a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-R9-260-OEM +humanName: Radeon R9 260 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-12-21' + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 104.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Bonaire + GPU Variant: Bonaire XTX + TDP: 85 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml new file mode 100644 index 00000000..878da5cf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-290 +humanName: Radeon R9 290 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-11-05' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii PRO + TDP: 275 W + FP32 Compute: 4.849 TFLOPS + FP64 Compute: 606.1 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml new file mode 100644 index 00000000..e16e1c5d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-290X +humanName: Radeon R9 290X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2013-10-24' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii XT + TDP: 290 W + FP32 Compute: 5.632 TFLOPS + FP64 Compute: 704.0 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml new file mode 100644 index 00000000..e12b63bd --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-290X2 +humanName: Radeon R9 290X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-06-24' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 345.6 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Hawaii + GPU Variant: Hawaii XT + TDP: 580 W + FP32 Compute: 5.632 TFLOPS + FP64 Compute: 704.0 GFLOPS (1:8) + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 4x 8-pin diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml new file mode 100644 index 00000000..1924c4c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-295X2 +humanName: Radeon R9 295X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-04-29' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Vesuvius + GPU Variant: Vesuvius XT + TDP: 500 W + FP32 Compute: 5.733 TFLOPS + FP64 Compute: 716.7 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 307 mm + Width: 114 mm + Height: 42 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml new file mode 100644 index 00000000..79f05273 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml @@ -0,0 +1,35 @@ +name: Radeon-R9-360-OEM +humanName: Radeon R9 360 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 104.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Tobago + GPU Variant: Tobago PRO + TDP: 75 W + FP32 Compute: 1.613 TFLOPS + FP64 Compute: 100.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: None + Length: 165 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml new file mode 100644 index 00000000..0f55f027 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-390-X2 +humanName: Radeon R9 390 X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-09-03' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 345.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 438 mm² + GPU: Grenada + GPU Variant: Grenada PRO + TDP: 580 W + FP32 Compute: 5.120 TFLOPS + FP64 Compute: 640.0 GFLOPS (1:8) + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 4x 8-pin diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml new file mode 100644 index 00000000..092bb6ee --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-390 +humanName: Radeon R9 390 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-18' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 438 mm² + GPU: Grenada + GPU Variant: Grenada PRO + TDP: 275 W + FP32 Compute: 5.120 TFLOPS + FP64 Compute: 640.0 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml new file mode 100644 index 00000000..9b0ebb9f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-390X +humanName: Radeon R9 390X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-18' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 438 mm² + GPU: Grenada + GPU Variant: Grenada XT + TDP: 275 W + FP32 Compute: 5.914 TFLOPS + FP64 Compute: 739.2 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 275 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml new file mode 100644 index 00000000..3a6ed377 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M270X +humanName: Radeon R9 M270X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-02-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Saturn + GPU Variant: Saturn PRO + TDP: unknown + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml new file mode 100644 index 00000000..c63a4da9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M280X +humanName: Radeon R9 M280X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-02-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Saturn + GPU Variant: Saturn XT + TDP: unknown + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 112.0 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml new file mode 100644 index 00000000..4b28a220 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M380-Mac-Edition +humanName: Radeon R9 M380 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1021 MHz + VRAM Frequency: 1568 MHz + VRAM Bandwidth: 100.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Strato + GPU Variant: Strato PRO + TDP: unknown + FP32 Compute: 1.568 TFLOPS + FP64 Compute: 98.02 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml new file mode 100644 index 00000000..91734659 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M380 +humanName: Radeon R9 M380 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Strato + GPU Variant: Strato PRO + TDP: unknown + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml new file mode 100644 index 00000000..680bf35c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M385 +humanName: Radeon R9 M385 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Strato + GPU Variant: Strato XT + TDP: unknown + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 112.0 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml new file mode 100644 index 00000000..0d90e638 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M385X +humanName: Radeon R9 M385X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Strato + GPU Variant: Strato XT + TDP: unknown + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml new file mode 100644 index 00000000..1410cd81 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M470 +humanName: Radeon R9 M470 +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Emerald + GPU Variant: Emerald PRO + TDP: unknown + FP32 Compute: 1.536 TFLOPS + FP64 Compute: 96.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml new file mode 100644 index 00000000..d1eba86d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M470X +humanName: Radeon R9 M470X +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 160 mm² + GPU: Emerald + GPU Variant: Emerald XT + TDP: unknown + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml new file mode 100644 index 00000000..3c524eed --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-455-OEM +humanName: Radeon RX 455 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-06-30' + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 104.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 160 mm² + GPU: Tobago + GPU Variant: Tobago PRO + TDP: 100 W + FP32 Compute: 1.613 TFLOPS + FP64 Compute: 100.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml new file mode 100644 index 00000000..4762e2ad --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml @@ -0,0 +1,28 @@ +name: Xbox-One-X-GPU +humanName: Xbox One X GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 2.0 + Lithography: 16 nm + DirectX Support: '12.0' + Vulkan Support: '1.1' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2017-11-07' + VRAM Frequency: 1700 MHz + VRAM Bandwidth: 326.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 359 mm² + GPU: Scorpio + TDP: 150 W + FP32 Compute: 6.001 TFLOPS + Outputs: 1x HDMI 2.0b + Length: 300 mm + Width: 240 mm + Height: 60 mm diff --git a/specs/GPUs-CONSUMER/GCN-2.yaml b/specs/GPUs-CONSUMER/GCN-2.yaml deleted file mode 100755 index f9366322..00000000 --- a/specs/GPUs-CONSUMER/GCN-2.yaml +++ /dev/null @@ -1,12 +0,0 @@ -hidden: true -name: GCN 2 -data: - Architecture: 2nd Gen GCN - Lithography: 28 nm - DirectX Support: '12.0' - HLSL Shader Model: '6.0' - Vulkan Support: '1.1' - OpenGL Support: '4.5' - OpenCL Support: '2.0' - FreeSync Support: true - Crossfire Support: XDMA diff --git a/specs/GPUs-CONSUMER/GCN-3.0.yaml b/specs/GPUs-CONSUMER/GCN-3.0.yaml new file mode 100644 index 00000000..c1770679 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0.yaml @@ -0,0 +1,71 @@ +name: GCN-3.0 +humanName: GCN 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + Release Date: '2014' +sections: + - header: WHOLE RANGE + members: + - FirePro-S7100X + - FirePro-S7150 + - FirePro-S7150-x2 + - FirePro-S9300-X2 + - FirePro-W7100 + - FirePro-W7170M + - Radeon-530-Mobile-DDR3 + - Radeon-530-Mobile-GDDR5 + - Radeon-530X-Mobile + - Radeon-535-Mobile + - Radeon-625-Mobile + - Radeon-625-OEM + - Radeon-620-Mobile + - Radeon-E8950 + - Radeon-Instinct-MI8 + - Radeon-Pro-Duo + - Radeon-Pro-SSG + - Radeon-R4-Mobile-Graphics + - Radeon-R5-Graphics + - Radeon-R5-A255 + - Radeon-R5-M255 + - Radeon-R5-M315 + - Radeon-R5-M445 + - Radeon-R5-M465 + - Radeon-R5-Mobile-Graphics + - Radeon-R5E-Mobile-Graphics + - Radeon-R6-M255DX + - Radeon-R6-Mobile-Graphics + - Radeon-R7-A260 + - Radeon-R7-A360 + - Radeon-R7-M260 + - Radeon-R7-M265 + - Radeon-R7-M350 + - Radeon-R7-M360 + - Radeon-R7-M440 + - Radeon-R7-M445 + - Radeon-R7-M460 + - Radeon-R8-M365DX + - Radeon-R8-M445DX + - Radeon-R8-M535DX + - Radeon-R9-285 + - Radeon-R9-285X + - Radeon-R9-380 + - Radeon-R9-380-OEM + - Radeon-R9-380X + - Radeon-R9-FURY + - Radeon-R9-FURY-X + - Radeon-R9-FURY-X2 + - Radeon-R6E-Mobile-Graphics + - Radeon-R7E-Mobile-Graphics + - Radeon-R9-M295X + - Radeon-R9-M295X-Mac-Edition + - Radeon-R9-M390X + - Radeon-R9-M395-Mac-Edition + - Radeon-R9-M395X + - Radeon-R9-M395X-Mac-Edition + - Radeon-R9-M485X + - Radeon-R9-Nano diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml new file mode 100644 index 00000000..0ff8621b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml @@ -0,0 +1,29 @@ +name: FirePro-S7100X +humanName: FirePro S7100X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-25' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 100 W + FP32 Compute: 2.970 TFLOPS + FP64 Compute: 185.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml new file mode 100644 index 00000000..15a1b25e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml @@ -0,0 +1,31 @@ +name: FirePro-S7150-x2 +humanName: FirePro S7150 x2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-02-01' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Tonga + GPU Variant: Cloudy Tau + TDP: 265 W + FP32 Compute: 3.297 TFLOPS + FP64 Compute: 206.1 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml new file mode 100644 index 00000000..de681680 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml @@ -0,0 +1,31 @@ +name: FirePro-S7150 +humanName: FirePro S7150 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-02-01' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Tonga + GPU Variant: Tonga XT GL + TDP: 150 W + FP32 Compute: 3.768 TFLOPS + FP64 Compute: 235.5 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml new file mode 100644 index 00000000..5f1e19b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml @@ -0,0 +1,31 @@ +name: FirePro-S9300-X2 +humanName: FirePro S9300 X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-03-31' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Capsaicin + GPU Variant: Capsaicin XT C1 + TDP: 300 W + FP32 Compute: 7.987 TFLOPS + FP64 Compute: 499.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml new file mode 100644 index 00000000..6a6db4a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml @@ -0,0 +1,31 @@ +name: FirePro-W7100 +humanName: FirePro W7100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-08-12' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Tonga + GPU Variant: Tonga PRO GL + TDP: 150 W + FP32 Compute: 3.297 TFLOPS + FP64 Compute: 206.1 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml new file mode 100644 index 00000000..09fb95ab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml @@ -0,0 +1,29 @@ +name: FirePro-W7170M +humanName: FirePro W7170M +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-10-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT GL + TDP: 100 W + FP32 Compute: 2.961 TFLOPS + FP64 Compute: 185.1 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml new file mode 100644 index 00000000..d9de139e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml @@ -0,0 +1,31 @@ +name: Radeon-530-Mobile-DDR3 +humanName: Radeon 530 Mobile DDR3 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 1021 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Weston + GPU Variant: Weston PRO + TDP: 50 W + FP32 Compute: 784.1 GFLOPS + FP64 Compute: 49.01 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml new file mode 100644 index 00000000..b946938f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml @@ -0,0 +1,31 @@ +name: Radeon-530-Mobile-GDDR5 +humanName: Radeon 530 Mobile GDDR5 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 891 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Weston + GPU Variant: Weston PRO + TDP: 50 W + FP32 Compute: 684.3 GFLOPS + FP64 Compute: 42.77 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml new file mode 100644 index 00000000..a6a5c6b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-530X-Mobile +humanName: Radeon 530X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 1024 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Polaris 24 + GPU Variant: Polaris 24 XT + TDP: 50 W + FP32 Compute: 786.4 GFLOPS + FP64 Compute: 49.15 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml new file mode 100644 index 00000000..f5402695 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-535-Mobile +humanName: Radeon 535 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 984 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Polaris 24 + GPU Variant: Polaris 24 XT + TDP: 50 W + FP32 Compute: 755.7 GFLOPS + FP64 Compute: 47.23 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml new file mode 100644 index 00000000..e124e519 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-620-Mobile +humanName: Radeon 620 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-05-13' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Polaris 24 + GPU Variant: Polaris 24 XL + TDP: 50 W + FP32 Compute: 706.6 GFLOPS + FP64 Compute: 44.16 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml new file mode 100644 index 00000000..bedbb846 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-625-Mobile +humanName: Radeon 625 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-05-13' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 1024 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Polaris 24 + GPU Variant: Polaris 24 XT + TDP: 50 W + FP32 Compute: 786.4 GFLOPS + FP64 Compute: 49.15 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml new file mode 100644 index 00000000..48f862e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml @@ -0,0 +1,29 @@ +name: Radeon-625-OEM +humanName: Radeon 625 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-05-13' + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Polaris 24 + GPU Variant: Polaris 24 XT + TDP: 35 W + FP32 Compute: 786.4 GFLOPS + FP64 Compute: 49.15 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml new file mode 100644 index 00000000..e27eeede --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml @@ -0,0 +1,31 @@ +name: Radeon-E8950 +humanName: Radeon E8950 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-09-29' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: E8950 + TDP: 95 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 256.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml new file mode 100644 index 00000000..45613baa --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml @@ -0,0 +1,31 @@ +name: Radeon-Instinct-MI8 +humanName: Radeon Instinct MI8 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-12-12' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Fiji + GPU Variant: Fiji XT CA + TDP: 175 W + FP32 Compute: 8.192 TFLOPS + FP64 Compute: 512.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 152 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml new file mode 100644 index 00000000..12371950 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-Duo +humanName: Radeon Pro Duo +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-04-26' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Capsaicin + GPU Variant: Capsaicin XT C9 + TDP: 350 W + FP32 Compute: 8.192 TFLOPS + FP64 Compute: 512.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x DisplayPort 1.2 + Power Connectors: 3x 8-pin + Length: 277 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml new file mode 100644 index 00000000..8ace6826 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-SSG +humanName: Radeon Pro SSG +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-07-26' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Fiji + GPU Variant: Fiji XT C0/CC + TDP: 260 W + FP32 Compute: 8.602 TFLOPS + FP64 Compute: 537.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml new file mode 100644 index 00000000..5b1054d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R4-Mobile-Graphics +humanName: Radeon R4 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-06-01' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 655 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 125 mm² + GPU: Stoney + TDP: 15 W + FP32 Compute: 251.5 GFLOPS + FP64 Compute: 15.72 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml new file mode 100644 index 00000000..586329fe --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml @@ -0,0 +1,28 @@ +name: Radeon-R5-A255 +humanName: Radeon R5 A255 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 940 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz PRO + TDP: unknown + FP32 Compute: 721.9 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml new file mode 100644 index 00000000..fa903651 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-Graphics +humanName: Radeon R5 Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-09-05' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Wani + TDP: 15 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 345.6 GFLOPS (1:2) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml new file mode 100644 index 00000000..fe2a6bdf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-M255 +humanName: Radeon R5 M255 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-10-12' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 940 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz PRO + TDP: unknown + FP32 Compute: 721.9 GFLOPS + FP64 Compute: 45.12 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml new file mode 100644 index 00000000..781b7034 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml @@ -0,0 +1,27 @@ +name: Radeon-R5-M315 +humanName: Radeon R5 M315 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso LE + TDP: unknown + FP32 Compute: 745.0 GFLOPS + FP64 Compute: 46.56 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml new file mode 100644 index 00000000..87baef2e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml @@ -0,0 +1,26 @@ +name: Radeon-R5-M445 +humanName: Radeon R5 M445 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 706.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml new file mode 100644 index 00000000..f47b022a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml @@ -0,0 +1,28 @@ +name: Radeon-R5-M465 +humanName: Radeon R5 M465 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1015 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 779.5 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml new file mode 100644 index 00000000..5808b713 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5-Mobile-Graphics +humanName: Radeon R5 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-11-07' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 720 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Wani + TDP: 15 W + FP32 Compute: 553.0 GFLOPS + FP64 Compute: 276.5 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml new file mode 100644 index 00000000..d1fc5b83 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R5E-Mobile-Graphics +humanName: Radeon R5E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-06-01' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 847 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 125 mm² + GPU: Stoney + TDP: 15 W + FP32 Compute: 325.2 GFLOPS + FP64 Compute: 20.33 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml new file mode 100644 index 00000000..0540782e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R6-M255DX +humanName: Radeon R6 M255DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-10-12' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 940 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz PRO + TDP: unknown + FP32 Compute: 721.9 GFLOPS + FP64 Compute: 45.12 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml new file mode 100644 index 00000000..f7b8593e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R6-Mobile-Graphics +humanName: Radeon R6 Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-11-07' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 720 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Wani + TDP: 15 W + FP32 Compute: 553.0 GFLOPS + FP64 Compute: 276.5 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml new file mode 100644 index 00000000..8154c678 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R6E-Mobile-Graphics +humanName: Radeon R6E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Wani + TDP: 15 W + FP32 Compute: 582.1 GFLOPS + FP64 Compute: 291.1 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml new file mode 100644 index 00000000..51ee9303 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml @@ -0,0 +1,28 @@ +name: Radeon-R7-A260 +humanName: Radeon R7 A260 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz XT + TDP: unknown + FP32 Compute: 752.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml new file mode 100644 index 00000000..7ed645f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-A360 +humanName: Radeon R7 A360 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 864.0 GFLOPS + FP64 Compute: 54.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml new file mode 100644 index 00000000..086768ce --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M260 +humanName: Radeon R7 M260 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-06-11' + GPU Base Frequency: 940 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz XT + TDP: unknown + FP32 Compute: 752.6 GFLOPS + FP64 Compute: 47.04 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml new file mode 100644 index 00000000..7583461e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M265 +humanName: Radeon R7 M265 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-05-20' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Topaz + GPU Variant: Topaz XT + TDP: unknown + FP32 Compute: 752.6 GFLOPS + FP64 Compute: 47.04 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml new file mode 100644 index 00000000..4fbf80a3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M350 +humanName: Radeon R7 M350 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1015 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 779.5 GFLOPS + FP64 Compute: 48.72 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml new file mode 100644 index 00000000..2de4ccda --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M360 +humanName: Radeon R7 M360 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 864.0 GFLOPS + FP64 Compute: 54.00 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml new file mode 100644 index 00000000..403736bc --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml @@ -0,0 +1,28 @@ +name: Radeon-R7-M440 +humanName: Radeon R7 M440 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso PRO + TDP: unknown + FP32 Compute: 570.2 GFLOPS + FP64 Compute: 35.64 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml new file mode 100644 index 00000000..dc08dfe3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml @@ -0,0 +1,30 @@ +name: Radeon-R7-M445 +humanName: Radeon R7 M445 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 920 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso PRO + TDP: unknown + FP32 Compute: 588.8 GFLOPS + FP64 Compute: 36.80 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml new file mode 100644 index 00000000..3c4ef0b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7-M460 +humanName: Radeon R7 M460 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + GPU Base Frequency: 730 MHz + GPU Boost Frequency: 1024 MHz + VRAM Frequency: 1125 MHz + VRAM Bandwidth: 36.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 786.4 GFLOPS + FP64 Compute: 49.15 GFLOPS (1:16) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml new file mode 100644 index 00000000..6173df35 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml @@ -0,0 +1,29 @@ +name: Radeon-R7E-Mobile-Graphics +humanName: Radeon R7E Mobile Graphics +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 626 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Wani + TDP: 15 W + FP32 Compute: 480.8 GFLOPS + FP64 Compute: 240.4 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml new file mode 100644 index 00000000..d550c67d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R8-M365DX +humanName: Radeon R8 M365DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-03' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso XT + TDP: unknown + FP32 Compute: 864.0 GFLOPS + FP64 Compute: 54.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml new file mode 100644 index 00000000..311d5b32 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R8-M445DX +humanName: Radeon R8 M445DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1021 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso PRO + TDP: unknown + FP32 Compute: 653.4 GFLOPS + FP64 Compute: 40.84 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml new file mode 100644 index 00000000..fa5f955e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml @@ -0,0 +1,30 @@ +name: Radeon-R8-M535DX +humanName: Radeon R8 M535DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 891 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 125 mm² + GPU: Meso + GPU Variant: Meso PRO + TDP: unknown + FP32 Compute: 570.2 GFLOPS + FP64 Compute: 35.64 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml new file mode 100644 index 00000000..e1081587 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml @@ -0,0 +1,34 @@ +name: Radeon-R9-285 +humanName: Radeon R9 285 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-09-02' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Tonga + GPU Variant: Tonga PRO + TDP: 190 W + FP32 Compute: 3.290 TFLOPS + FP64 Compute: 205.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 221 mm + Width: 109 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml new file mode 100644 index 00000000..d6c923cf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml @@ -0,0 +1,31 @@ +name: Radeon-R9-285X +humanName: Radeon R9 285X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Tonga + GPU Variant: Tonga XT + TDP: 200 W + FP32 Compute: 4.104 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml new file mode 100644 index 00000000..528f995f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-R9-380-OEM +humanName: Radeon R9 380 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Antigua + GPU Variant: Antigua PRO + TDP: 190 W + FP32 Compute: 3.290 TFLOPS + FP64 Compute: 205.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml new file mode 100644 index 00000000..2179e124 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml @@ -0,0 +1,33 @@ +name: Radeon-R9-380 +humanName: Radeon R9 380 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-18' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Antigua + GPU Variant: Antigua PRO + TDP: 190 W + FP32 Compute: 3.476 TFLOPS + FP64 Compute: 217.3 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml new file mode 100644 index 00000000..77a69775 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml @@ -0,0 +1,33 @@ +name: Radeon-R9-380X +humanName: Radeon R9 380X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-11-19' + VRAM Frequency: 1425 MHz + VRAM Bandwidth: 182.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Antigua + GPU Variant: Antigua XT + TDP: 190 W + FP32 Compute: 3.973 TFLOPS + FP64 Compute: 248.3 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 221 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml new file mode 100644 index 00000000..453c09a1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml @@ -0,0 +1,32 @@ +name: Radeon-R9-FURY-X +humanName: Radeon R9 FURY X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-06-24' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Fiji + GPU Variant: Fiji XT C8 + TDP: 275 W + FP32 Compute: 8.602 TFLOPS + FP64 Compute: 537.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 195 mm + Width: 115 mm + Height: 39 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml new file mode 100644 index 00000000..89b297bc --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml @@ -0,0 +1,28 @@ +name: Radeon-R9-FURY-X2 +humanName: Radeon R9 FURY X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Capsaicin + GPU Variant: Capsaicin XT C9 + TDP: unknown + FP32 Compute: 8.602 TFLOPS + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x DisplayPort 1.2 + Power Connectors: 2x 8-pin diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml new file mode 100644 index 00000000..a62aae6d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml @@ -0,0 +1,32 @@ +name: Radeon-R9-FURY +humanName: Radeon R9 FURY +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-07-10' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 596 mm² + GPU: Fiji + GPU Variant: Fiji PRO CB + TDP: 275 W + FP32 Compute: 7.168 TFLOPS + FP64 Compute: 448.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 195 mm + Width: 115 mm + Height: 39 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml new file mode 100644 index 00000000..bb3cfaab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-R9-M295X-Mac-Edition +humanName: Radeon R9 M295X Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-11-23' + VRAM Frequency: 1362 MHz + VRAM Bandwidth: 174.3 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 250 W + FP32 Compute: 3.482 TFLOPS + FP64 Compute: 217.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml new file mode 100644 index 00000000..e5d44f1e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M295X +humanName: Radeon R9 M295X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2014-11-23' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 250 W + FP32 Compute: 2.961 TFLOPS + FP64 Compute: 185.1 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml new file mode 100644 index 00000000..916871c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M390X +humanName: Radeon R9 M390X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 75 W + FP32 Compute: 2.961 TFLOPS + FP64 Compute: 185.1 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml new file mode 100644 index 00000000..0f7fceb1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M395-Mac-Edition +humanName: Radeon R9 M395 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 1365 MHz + VRAM Bandwidth: 174.7 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst PRO + TDP: 250 W + FP32 Compute: 2.989 TFLOPS + FP64 Compute: 373.6 GFLOPS (1:8) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml new file mode 100644 index 00000000..93200ca8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M395X-Mac-Edition +humanName: Radeon R9 M395X Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 1365 MHz + VRAM Bandwidth: 174.7 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 250 W + FP32 Compute: 3.723 TFLOPS + FP64 Compute: 232.7 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml new file mode 100644 index 00000000..aaf23470 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M395X +humanName: Radeon R9 M395X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-05-05' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 75 W + FP32 Compute: 2.961 TFLOPS + FP64 Compute: 185.1 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml new file mode 100644 index 00000000..21c661dc --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml @@ -0,0 +1,29 @@ +name: Radeon-R9-M485X +humanName: Radeon R9 M485X +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-05-15' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 366 mm² + GPU: Amethyst + GPU Variant: Amethyst XT + TDP: 250 W + FP32 Compute: 2.961 TFLOPS + FP64 Compute: 185.1 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml new file mode 100644 index 00000000..11e53104 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml @@ -0,0 +1,32 @@ +name: Radeon-R9-Nano +humanName: Radeon R9 Nano +isPart: true +type: Graphics Card +data: + Architecture: GCN 3.0 + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2015-08-27' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 596 mm² + GPU: Fiji + GPU Variant: Fiji XT CA + TDP: 175 W + FP32 Compute: 8.192 TFLOPS + FP64 Compute: 512.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 1.4a3x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 154 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-3.yaml b/specs/GPUs-CONSUMER/GCN-3.yaml deleted file mode 100755 index c09aef4b..00000000 --- a/specs/GPUs-CONSUMER/GCN-3.yaml +++ /dev/null @@ -1,12 +0,0 @@ -hidden: true -name: GCN 3 -data: - Architecture: 3rd Gen GCN - Lithography: 28 nm - DirectX Support: '12.0' - HLSL Shader Model: '6.0' - Vulkan Support: '1.1' - OpenGL Support: '4.5' - OpenCL Support: '2.0' - FreeSync Support: true - Crossfire Support: XDMA diff --git a/specs/GPUs-CONSUMER/GCN-4.0.yaml b/specs/GPUs-CONSUMER/GCN-4.0.yaml new file mode 100644 index 00000000..c3f48d99 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0.yaml @@ -0,0 +1,104 @@ +name: GCN-4.0 +humanName: GCN 4.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + Release Date: '2016-06-29' +sections: + - header: WHOLE RANGE + members: + - P30PH + - Radeon-540-Mobile + - Radeon-540X-Mobile + - Radeon-550X + - Radeon-550X-640SP + - Radeon-550X-Mobile + - Radeon-630-Mobile + - Radeon-550 + - Radeon-E9171-MCM + - Radeon-E9172-MXM + - Radeon-E9173-PCIe + - Radeon-E9174-MXM + - Radeon-E9175-PCIe + - Radeon-E9260-MXM + - Radeon-E9260-PCIe + - Radeon-E9390-PCIe + - Radeon-E9550-MXM + - Radeon-E9560-PCIe + - Radeon-Instinct-MI6 + - Radeon-Pro-450 + - Radeon-Pro-455 + - Radeon-Pro-460 + - Radeon-Pro-555 + - Radeon-Pro-555X + - Radeon-Pro-560 + - Radeon-Pro-560X + - Radeon-Pro-570 + - Radeon-Pro-570X + - Radeon-Pro-575 + - Radeon-Pro-575X + - Radeon-Pro-580 + - Radeon-Pro-580X + - Radeon-Pro-Duo-Polaris + - Radeon-Pro-V5300X + - Radeon-Pro-V7300X + - Radeon-Pro-V7350X2 + - Radeon-Pro-WX-2100 + - Radeon-Pro-WX-3100 + - Radeon-Pro-WX-3200 + - Radeon-Pro-WX-3200-Mobile + - Radeon-Pro-WX-4100 + - Radeon-Pro-WX-4130-Mobile + - Radeon-Pro-WX-4150-Mobile + - Radeon-Pro-WX-4170-Mobile + - Radeon-Pro-WX-5100 + - Radeon-Pro-WX-7100 + - Radeon-Pro-WX-7100-Mobile + - Radeon-Pro-WX-7130-Mobile + - Radeon-Pro-WX-Vega-M-GL + - Radeon-RX-460 + - Radeon-RX-460-1024SP + - Radeon-RX-460-Mobile + - Radeon-RX-470 + - Radeon-RX-470-Mobile + - Radeon-RX-470D + - Radeon-RX-480 + - Radeon-RX-480-Mobile + - Radeon-RX-540-Mobile + - Radeon-RX-540X-Mobile + - Radeon-RX-550 + - Radeon-RX-550-512SP + - Radeon-RX-550-640SP + - Radeon-RX-550-Mobile + - Radeon-RX-550X + - Radeon-RX-550X-640SP + - Radeon-RX-550X-Mobile + - Radeon-RX-560 + - Radeon-RX-560-896SP + - Radeon-RX-560-Mobile + - Radeon-RX-560-XT + - Radeon-RX-560D + - Radeon-RX-560DX + - Radeon-RX-560X + - Radeon-RX-560X-Mobile + - Radeon-RX-570-Mobile + - Radeon-RX-570-X2 + - Radeon-RX-570X + - Radeon-RX-580 + - Radeon-RX-580-2048SP + - Radeon-RX-580-Mobile + - Radeon-RX-580-OEM + - Radeon-RX-580G + - Radeon-RX-580X + - Radeon-RX-580X-Mobile + - Radeon-RX-590 + - Radeon-RX-590-GME + - Radeon-RX-640-Mobile + - Radeon-RX-640-OEM + - Radeon-RX-570 + - Radeon-RX-Vega-M-GH + - Radeon-RX-Vega-M-GL diff --git a/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml b/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml new file mode 100644 index 00000000..6797a0fe --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml @@ -0,0 +1,31 @@ +name: P30PH +humanName: P30PH +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Unknown' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1206 MHz + VRAM Frequency: 2100 MHz + VRAM Bandwidth: 268.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Polaris 20 + TDP: 180 W + FP32 Compute: 4.940 TFLOPS + FP64 Compute: 308.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b + Power Connectors: 2x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml new file mode 100644 index 00000000..bb570a83 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-540-Mobile +humanName: Radeon 540 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-26' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 41.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,071 GFLOPS + FP64 Compute: 66.94 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml new file mode 100644 index 00000000..642ae2b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-540X-Mobile +humanName: Radeon 540X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-02-11' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1095 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 MXL + TDP: 50 W + FP32 Compute: 1,121 GFLOPS + FP64 Compute: 70.08 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml new file mode 100644 index 00000000..fa49e578 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml @@ -0,0 +1,34 @@ +name: Radeon-550 +humanName: Radeon 550 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-20' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1183 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 56.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,211 GFLOPS + FP64 Compute: 75.71 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml new file mode 100644 index 00000000..323c757e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml @@ -0,0 +1,33 @@ +name: Radeon-550X-640SP +humanName: Radeon 550X 640SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1019 MHz + GPU Boost Frequency: 1071 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,371 GFLOPS + FP64 Compute: 85.68 GFLOPS (1:16) + Slot Width: IGP + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml new file mode 100644 index 00000000..2927ec47 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-550X-Mobile +humanName: Radeon 550X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 MXT + TDP: 50 W + FP32 Compute: 1,385 GFLOPS + FP64 Compute: 86.56 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml new file mode 100644 index 00000000..0c70b31b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml @@ -0,0 +1,34 @@ +name: Radeon-550X +humanName: Radeon 550X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-27' + GPU Base Frequency: 1082 MHz + GPU Boost Frequency: 1218 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,247 GFLOPS + FP64 Compute: 77.95 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml new file mode 100644 index 00000000..67663133 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-630-Mobile +humanName: Radeon 630 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-05-13' + GPU Base Frequency: 1082 MHz + GPU Boost Frequency: 1211 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 MXL + TDP: 50 W + FP32 Compute: 1,240 GFLOPS + FP64 Compute: 77.50 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml new file mode 100644 index 00000000..6320494d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9171-MCM +humanName: Radeon E9171 MCM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-03' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa MCM Pro + TDP: 40 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml new file mode 100644 index 00000000..97acaf60 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9172-MXM +humanName: Radeon E9172 MXM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-03' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: E9170 + TDP: 35 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml new file mode 100644 index 00000000..1ef6eb09 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9173-PCIe +humanName: Radeon E9173 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-03' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: E9170 + TDP: 35 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.4a2x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml new file mode 100644 index 00000000..b65ad4b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9174-MXM +humanName: Radeon E9174 MXM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-03' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: E9170 + TDP: 50 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml new file mode 100644 index 00000000..aa7a38c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9175-PCIe +humanName: Radeon E9175 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-03' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: E9170 + TDP: 50 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 5x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml new file mode 100644 index 00000000..67f443ef --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml @@ -0,0 +1,29 @@ +name: Radeon-E9260-MXM +humanName: Radeon E9260 MXM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-09-27' + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin E9260 + TDP: 50 W + FP32 Compute: 1.887 TFLOPS + FP64 Compute: 117.9 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml new file mode 100644 index 00000000..10ac3d8e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml @@ -0,0 +1,33 @@ +name: Radeon-E9260-PCIe +humanName: Radeon E9260 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-09-27' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin E9260 + TDP: 80 W + FP32 Compute: 2.150 TFLOPS + FP64 Compute: 134.4 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml new file mode 100644 index 00000000..f883ea06 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9390-PCIe +humanName: Radeon E9390 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-15' + GPU Base Frequency: 713 MHz + GPU Boost Frequency: 1089 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + TDP: 75 W + FP32 Compute: 3.903 TFLOPS + FP64 Compute: 243.9 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: None + Length: 173 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml new file mode 100644 index 00000000..e7f6fb57 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9550-MXM +humanName: Radeon E9550 MXM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-09-27' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1244 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 E9550 + TDP: 95 W + FP32 Compute: 5.732 TFLOPS + FP64 Compute: 358.3 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml new file mode 100644 index 00000000..f4a092b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml @@ -0,0 +1,31 @@ +name: Radeon-E9560-PCIe +humanName: Radeon E9560 PCIe +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-15' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1237 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + TDP: 130 W + FP32 Compute: 5.700 TFLOPS + FP64 Compute: 356.3 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml new file mode 100644 index 00000000..8c42c787 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml @@ -0,0 +1,33 @@ +name: Radeon-Instinct-MI6 +humanName: Radeon Instinct MI6 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-12-12' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1233 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XT + TDP: 150 W + FP32 Compute: 5.682 TFLOPS + FP64 Compute: 355.1 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml new file mode 100644 index 00000000..4dcc7212 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml @@ -0,0 +1,28 @@ +name: Radeon-Pro-450 +humanName: Radeon Pro 450 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-10-30' + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 81.28 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin LE + TDP: 35 W + FP32 Compute: 1,024 GFLOPS + FP64 Compute: 64.00 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml new file mode 100644 index 00000000..857ff65a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-455 +humanName: Radeon Pro 455 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-10-30' + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 81.28 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin PRO + TDP: 35 W + FP32 Compute: 1,313 GFLOPS + FP64 Compute: 82.08 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml new file mode 100644 index 00000000..df0a33bf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-460 +humanName: Radeon Pro 460 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-10-30' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 907 MHz + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 81.28 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin XT + TDP: 35 W + FP32 Compute: 1.858 TFLOPS + FP64 Compute: 116.1 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml new file mode 100644 index 00000000..eeefa132 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-555 +humanName: Radeon Pro 555 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-05' + VRAM Frequency: 1275 MHz + VRAM Bandwidth: 81.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 PRO + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + FP64 Compute: 81.60 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml new file mode 100644 index 00000000..5b692070 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-555X +humanName: Radeon Pro 555X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-07-16' + VRAM Frequency: 1470 MHz + VRAM Bandwidth: 94.08 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 PRO + TDP: 75 W + FP32 Compute: 1,393 GFLOPS + FP64 Compute: 87.07 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml new file mode 100644 index 00000000..0efedae1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-560 +humanName: Radeon Pro 560 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + VRAM Frequency: 1270 MHz + VRAM Bandwidth: 81.28 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XT + TDP: 75 W + FP32 Compute: 1.858 TFLOPS + FP64 Compute: 116.1 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml new file mode 100644 index 00000000..ce65d2a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-560X +humanName: Radeon Pro 560X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-07-16' + VRAM Frequency: 1470 MHz + VRAM Bandwidth: 94.08 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XT + TDP: 75 W + FP32 Compute: 2.056 TFLOPS + FP64 Compute: 128.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml new file mode 100644 index 00000000..52a40021 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-570 +humanName: Radeon Pro 570 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-05' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1105 MHz + VRAM Frequency: 1695 MHz + VRAM Bandwidth: 217.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere PROA + TDP: 150 W + FP32 Compute: 3.960 TFLOPS + FP64 Compute: 247.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml new file mode 100644 index 00000000..5ad80b78 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-570X +humanName: Radeon Pro 570X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-18' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1105 MHz + VRAM Frequency: 1695 MHz + VRAM Bandwidth: 217.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere PROA + TDP: 150 W + FP32 Compute: 3.960 TFLOPS + FP64 Compute: 247.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml new file mode 100644 index 00000000..31bc126a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-575 +humanName: Radeon Pro 575 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-05' + VRAM Frequency: 1695 MHz + VRAM Bandwidth: 217.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XLA + TDP: 150 W + FP32 Compute: 4.489 TFLOPS + FP64 Compute: 280.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml new file mode 100644 index 00000000..95cd7fab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-575X +humanName: Radeon Pro 575X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-18' + VRAM Frequency: 1695 MHz + VRAM Bandwidth: 217.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XLA + TDP: 150 W + FP32 Compute: 4.489 TFLOPS + FP64 Compute: 280.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml new file mode 100644 index 00000000..110728d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-580 +humanName: Radeon Pro 580 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-05' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1695 MHz + VRAM Bandwidth: 217.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XTA + TDP: 185 W + FP32 Compute: 5.530 TFLOPS + FP64 Compute: 345.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml new file mode 100644 index 00000000..a42f1019 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-580X +humanName: Radeon Pro 580X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-18' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1710 MHz + VRAM Bandwidth: 218.9 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XTA + TDP: 185 W + FP32 Compute: 5.530 TFLOPS + FP64 Compute: 345.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: 2x HDMI 2.0b diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml new file mode 100644 index 00000000..19a58c93 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-Duo-Polaris +humanName: Radeon Pro Duo Polaris +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-24' + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere Gemini GL + TDP: 250 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml new file mode 100644 index 00000000..0e2a539d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-V5300X +humanName: Radeon Pro V5300X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 1125 MHz + GPU Boost Frequency: 1201 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin XT + TDP: 50 W + FP32 Compute: 2.460 TFLOPS + FP64 Compute: 153.7 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml new file mode 100644 index 00000000..5a29b73e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-V7300X +humanName: Radeon Pro V7300X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 1188 MHz + GPU Boost Frequency: 1243 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XT + TDP: 130 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml new file mode 100644 index 00000000..6c3cfaef --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V7350X2 +humanName: Radeon Pro V7350X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 1188 MHz + GPU Boost Frequency: 1243 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere Gemini GL + TDP: 200 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml new file mode 100644 index 00000000..af40ef21 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-2100 +humanName: Radeon Pro WX 2100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-04' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO GL + TDP: 35 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.4a2x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml new file mode 100644 index 00000000..2b3a5659 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-3100 +humanName: Radeon Pro WX 3100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-12' + GPU Base Frequency: 925 MHz + GPU Boost Frequency: 1219 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa XT + TDP: 65 W + FP32 Compute: 1,248 GFLOPS + FP64 Compute: 78.02 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.4a2x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml new file mode 100644 index 00000000..a2a67efa --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-WX-3200-Mobile +humanName: Radeon Pro WX 3200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-02' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 XT GLM + TDP: 65 W + FP32 Compute: 1,385 GFLOPS + FP64 Compute: 86.56 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml new file mode 100644 index 00000000..7bc9bbcc --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-WX-3200 +humanName: Radeon Pro WX 3200 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-02' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 XT GL + TDP: 65 W + FP32 Compute: 1.658 TFLOPS + FP64 Compute: 103.6 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 167 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml new file mode 100644 index 00000000..87571aa1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-4100 +humanName: Radeon Pro WX 4100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-11-10' + GPU Base Frequency: 1125 MHz + GPU Boost Frequency: 1201 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin XT + TDP: 50 W + FP32 Compute: 2.460 TFLOPS + FP64 Compute: 153.7 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml new file mode 100644 index 00000000..acfc492e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-WX-4130-Mobile +humanName: Radeon Pro WX 4130 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-03-01' + GPU Base Frequency: 1002 MHz + GPU Boost Frequency: 1053 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: BaffinM LE GL + TDP: 50 W + FP32 Compute: 1,348 GFLOPS + FP64 Compute: 84.24 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml new file mode 100644 index 00000000..11f53c0a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-WX-4150-Mobile +humanName: Radeon Pro WX 4150 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-03-01' + GPU Base Frequency: 1002 MHz + GPU Boost Frequency: 1053 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: BaffinM PRO GL + TDP: 50 W + FP32 Compute: 1.887 TFLOPS + FP64 Compute: 117.9 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml new file mode 100644 index 00000000..56e0346a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-WX-4170-Mobile +humanName: Radeon Pro WX 4170 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-03-01' + GPU Base Frequency: 1002 MHz + GPU Boost Frequency: 1201 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: BaffinM XT GL + TDP: 50 W + FP32 Compute: 2.460 TFLOPS + FP64 Compute: 153.7 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml new file mode 100644 index 00000000..5b3d056c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-5100 +humanName: Radeon Pro WX 5100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-11-18' + GPU Base Frequency: 713 MHz + GPU Boost Frequency: 1086 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 PRO GL + TDP: 75 W + FP32 Compute: 3.892 TFLOPS + FP64 Compute: 243.3 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: None + Length: 173 mm + Width: 112 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml new file mode 100644 index 00000000..5a811878 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-WX-7100-Mobile +humanName: Radeon Pro WX 7100 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-03-01' + GPU Base Frequency: 1188 MHz + GPU Boost Frequency: 1243 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XT GL + TDP: 130 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Length: 25 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml new file mode 100644 index 00000000..7a003af7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-7100 +humanName: Radeon Pro WX 7100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-11-10' + GPU Base Frequency: 1188 MHz + GPU Boost Frequency: 1243 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 XT GL + TDP: 130 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 112 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml new file mode 100644 index 00000000..521300f3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-WX-7130-Mobile +humanName: Radeon Pro WX 7130 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-03-01' + GPU Base Frequency: 1188 MHz + GPU Boost Frequency: 1243 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XT GL + TDP: 130 W + FP32 Compute: 5.728 TFLOPS + FP64 Compute: 358.0 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Length: 25 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml new file mode 100644 index 00000000..6246c584 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-WX-Vega-M-GL +humanName: Radeon Pro WX Vega M GL +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-24' + GPU Base Frequency: 931 MHz + GPU Boost Frequency: 1011 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM2 + VRAM Bus Width: 1024 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 208 mm² + GPU: Polaris 22 + GPU Variant: VegaM MGL XL + TDP: 65 W + FP32 Compute: 2.588 TFLOPS + FP64 Compute: 161.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml new file mode 100644 index 00000000..e917a5de --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-460-1024SP +humanName: Radeon RX 460 1024SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-01-17' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin XT + TDP: 75 W + FP32 Compute: 2.458 TFLOPS + FP64 Compute: 153.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml new file mode 100644 index 00000000..0394a13b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-460-Mobile +humanName: Radeon RX 460 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-08-08' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1180 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin XT + TDP: 55 W + FP32 Compute: 2.115 TFLOPS + FP64 Compute: 132.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml new file mode 100644 index 00000000..149e288a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-460 +humanName: Radeon RX 460 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-08-08' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin PRO + TDP: 75 W + FP32 Compute: 2.150 TFLOPS + FP64 Compute: 134.4 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml new file mode 100644 index 00000000..3a5d4fbb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-470-Mobile +humanName: Radeon RX 470 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-08-04' + GPU Base Frequency: 926 MHz + GPU Boost Frequency: 1074 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere PRO + TDP: 85 W + FP32 Compute: 4.399 TFLOPS + FP64 Compute: 274.9 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml new file mode 100644 index 00000000..55d02542 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-470 +humanName: Radeon RX 470 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-08-04' + GPU Base Frequency: 926 MHz + GPU Boost Frequency: 1206 MHz + VRAM Frequency: 1650 MHz + VRAM Bandwidth: 211.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 PRO + TDP: 120 W + FP32 Compute: 4.940 TFLOPS + FP64 Compute: 308.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 240 mm + Width: 95 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml new file mode 100644 index 00000000..b77c3698 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-470D +humanName: Radeon RX 470D +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-10-21' + GPU Base Frequency: 926 MHz + GPU Boost Frequency: 1206 MHz + VRAM Frequency: 1650 MHz + VRAM Bandwidth: 211.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 PROD + TDP: 120 W + FP32 Compute: 4.322 TFLOPS + FP64 Compute: 270.1 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml new file mode 100644 index 00000000..0e3b5150 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-480-Mobile +humanName: Radeon RX 480 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-08-04' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1077 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere XT + TDP: 100 W + FP32 Compute: 4.963 TFLOPS + FP64 Compute: 310.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml new file mode 100644 index 00000000..7034b4be --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-480 +humanName: Radeon RX 480 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-06-29' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1266 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 XT + TDP: 150 W + FP32 Compute: 5.834 TFLOPS + FP64 Compute: 364.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 240 mm + Width: 95 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml new file mode 100644 index 00000000..03d60fe6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-RX-540-Mobile +humanName: Radeon RX 540 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-11-11' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,071 GFLOPS + FP64 Compute: 66.94 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml new file mode 100644 index 00000000..7c37efbe --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-540X-Mobile +humanName: Radeon RX 540X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1124 MHz + GPU Boost Frequency: 1211 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 MXL + TDP: 50 W + FP32 Compute: 1,240 GFLOPS + FP64 Compute: 77.50 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml new file mode 100644 index 00000000..f7e3abfa --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-550-512SP +humanName: Radeon RX 550 512SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-13' + GPU Base Frequency: 1019 MHz + GPU Boost Frequency: 1071 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin LE + TDP: 50 W + FP32 Compute: 1,097 GFLOPS + FP64 Compute: 68.54 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml new file mode 100644 index 00000000..6ef11d5b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-550-640SP +humanName: Radeon RX 550 640SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-13' + GPU Base Frequency: 1019 MHz + GPU Boost Frequency: 1071 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin LE + TDP: 60 W + FP32 Compute: 1,371 GFLOPS + FP64 Compute: 85.68 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml new file mode 100644 index 00000000..769ee733 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-550-Mobile +humanName: Radeon RX 550 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-07-02' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1287 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1.647 TFLOPS + FP64 Compute: 103.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml new file mode 100644 index 00000000..abba482e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-550 +humanName: Radeon RX 550 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-20' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1183 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,211 GFLOPS + FP64 Compute: 75.71 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml new file mode 100644 index 00000000..87007d06 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-550X-640SP +humanName: Radeon RX 550X 640SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1019 MHz + GPU Boost Frequency: 1071 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: Baffin LE + TDP: 60 W + FP32 Compute: 1,371 GFLOPS + FP64 Compute: 85.68 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml new file mode 100644 index 00000000..13ff590e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-550X-Mobile +humanName: Radeon RX 550X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1176 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 MXT + TDP: 50 W + FP32 Compute: 1.505 TFLOPS + FP64 Compute: 94.08 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml new file mode 100644 index 00000000..a7024e88 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-550X +humanName: Radeon RX 550X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-12-16' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 1183 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 103 mm² + GPU: Lexa + GPU Variant: Lexa PRO + TDP: 50 W + FP32 Compute: 1,211 GFLOPS + FP64 Compute: 75.71 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml new file mode 100644 index 00000000..57626509 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-560-896SP +humanName: Radeon RX 560 896SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-07-04' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1175 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XL + TDP: 45 W + FP32 Compute: 2.106 TFLOPS + FP64 Compute: 131.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml new file mode 100644 index 00000000..eb31c055 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-560-Mobile +humanName: Radeon RX 560 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-01-05' + GPU Base Frequency: 784 MHz + GPU Boost Frequency: 1032 MHz + VRAM Frequency: 1710 MHz + VRAM Bandwidth: 109.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Baffin + GPU Variant: BaffinM-XT + TDP: 55 W + FP32 Compute: 1.849 TFLOPS + FP64 Compute: 115.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml new file mode 100644 index 00000000..8db9902e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-560-XT +humanName: Radeon RX 560 XT +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-13' + GPU Base Frequency: 1074 MHz + GPU Boost Frequency: 1226 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 LE1 + TDP: 150 W + FP32 Compute: 4.394 TFLOPS + FP64 Compute: 274.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml new file mode 100644 index 00000000..d3cfc1c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-560 +humanName: Radeon RX 560 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 1175 MHz + GPU Boost Frequency: 1275 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XT + TDP: 75 W + FP32 Compute: 2.611 TFLOPS + FP64 Compute: 163.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml new file mode 100644 index 00000000..acfe7be7 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-560D +humanName: Radeon RX 560D +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-07-04' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1175 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XL + TDP: 65 W + FP32 Compute: 2.106 TFLOPS + FP64 Compute: 131.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml new file mode 100644 index 00000000..91832c81 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-560DX +humanName: Radeon RX 560DX +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1090 MHz + GPU Boost Frequency: 1175 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XL + TDP: 65 W + FP32 Compute: 2.106 TFLOPS + FP64 Compute: 131.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml new file mode 100644 index 00000000..fb07c380 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-560X-Mobile +humanName: Radeon RX 560X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1175 MHz + GPU Boost Frequency: 1202 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21M XT + TDP: 65 W + FP32 Compute: 2.462 TFLOPS + FP64 Compute: 153.9 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml new file mode 100644 index 00000000..c07f6b76 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-560X +humanName: Radeon RX 560X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1175 MHz + GPU Boost Frequency: 1275 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 123 mm² + GPU: Polaris 21 + GPU Variant: Polaris 21 XT + TDP: 75 W + FP32 Compute: 2.611 TFLOPS + FP64 Compute: 163.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b1x DisplayPort 1.4a + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml new file mode 100644 index 00000000..c86dc025 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-570-Mobile +humanName: Radeon RX 570 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-12-10' + GPU Base Frequency: 926 MHz + GPU Boost Frequency: 1206 MHz + VRAM Frequency: 1650 MHz + VRAM Bandwidth: 211.2 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Ellesmere PRO + TDP: 85 W + FP32 Compute: 4.940 TFLOPS + FP64 Compute: 308.7 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml new file mode 100644 index 00000000..7c4d1455 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-570-X2 +humanName: Radeon RX 570 X2 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Unknown' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1206 MHz + VRAM Frequency: 2100 MHz + VRAM Bandwidth: 268.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XL + TDP: 180 W + FP32 Compute: 4.940 TFLOPS + FP64 Compute: 308.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b + Power Connectors: 2x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml new file mode 100644 index 00000000..97f7b924 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-570 +humanName: Radeon RX 570 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 1168 MHz + GPU Boost Frequency: 1244 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XL + TDP: 150 W + FP32 Compute: 5.095 TFLOPS + FP64 Compute: 318.5 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml new file mode 100644 index 00000000..24ab0652 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-570X +humanName: Radeon RX 570X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1168 MHz + GPU Boost Frequency: 1244 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XL + TDP: 150 W + FP32 Compute: 5.095 TFLOPS + FP64 Compute: 318.5 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml new file mode 100644 index 00000000..72240ef9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-580-2048SP +humanName: Radeon RX 580 2048SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-10-15' + GPU Base Frequency: 1168 MHz + GPU Boost Frequency: 1284 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XL + TDP: 150 W + FP32 Compute: 5.259 TFLOPS + FP64 Compute: 328.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml new file mode 100644 index 00000000..8c5d7245 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-580-Mobile +humanName: Radeon RX 580 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1077 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20M XT + TDP: 100 W + FP32 Compute: 4.963 TFLOPS + FP64 Compute: 310.2 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml new file mode 100644 index 00000000..89e70406 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-580-OEM +humanName: Radeon RX 580 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2016-06-29' + GPU Base Frequency: 1120 MHz + GPU Boost Frequency: 1266 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Ellesmere + GPU Variant: Polaris 10 XT + TDP: 150 W + FP32 Compute: 5.834 TFLOPS + FP64 Compute: 364.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml new file mode 100644 index 00000000..bc69ddb1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-580 +humanName: Radeon RX 580 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-04-18' + GPU Base Frequency: 1257 MHz + GPU Boost Frequency: 1340 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XTX + TDP: 185 W + FP32 Compute: 6.175 TFLOPS + FP64 Compute: 385.9 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml new file mode 100644 index 00000000..4ef0b286 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-580G +humanName: Radeon RX 580G +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-10-15' + GPU Base Frequency: 1257 MHz + GPU Boost Frequency: 1330 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XTX + TDP: 185 W + FP32 Compute: 6.129 TFLOPS + FP64 Compute: 383.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml new file mode 100644 index 00000000..1315a21c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-RX-580X-Mobile +humanName: Radeon RX 580X Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20M XT + TDP: 100 W + FP32 Compute: 5.834 TFLOPS + FP64 Compute: 364.6 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml new file mode 100644 index 00000000..0ba93978 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-580X +humanName: Radeon RX 580X +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-11' + GPU Base Frequency: 1257 MHz + GPU Boost Frequency: 1340 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XTX + TDP: 185 W + FP32 Compute: 6.175 TFLOPS + FP64 Compute: 385.9 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml new file mode 100644 index 00000000..3b96853e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-590-GME +humanName: Radeon RX 590 GME +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-03-09' + GPU Base Frequency: 1257 MHz + GPU Boost Frequency: 1420 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 20 + GPU Variant: Polaris 20 XTR + TDP: 175 W + FP32 Compute: 6.543 TFLOPS + FP64 Compute: 409.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml new file mode 100644 index 00000000..cb30de9c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-590 +humanName: Radeon RX 590 +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 12 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-11-15' + GPU Base Frequency: 1469 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 232 mm² + GPU: Polaris 30 + GPU Variant: Polaris 30 XT + TDP: 175 W + FP32 Compute: 7.119 TFLOPS + FP64 Compute: 445.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml new file mode 100644 index 00000000..930f0025 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-640-Mobile +humanName: Radeon RX 640 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-05-13' + GPU Base Frequency: 1082 MHz + GPU Boost Frequency: 1218 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 XT + TDP: 50 W + FP32 Compute: 1.559 TFLOPS + FP64 Compute: 97.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml new file mode 100644 index 00000000..f06d94af --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml @@ -0,0 +1,29 @@ +name: Radeon-RX-640-OEM +humanName: Radeon RX 640 OEM +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-04-09' + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 103 mm² + GPU: Polaris 23 + GPU Variant: Polaris 23 XT + TDP: 50 W + FP32 Compute: 1.658 TFLOPS + FP64 Compute: 103.6 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.4a2x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml new file mode 100644 index 00000000..77a170e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-M-GH +humanName: Radeon RX Vega M GH +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-02-01' + GPU Base Frequency: 1063 MHz + GPU Boost Frequency: 1190 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 204.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM2 + VRAM Bus Width: 1024 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 208 mm² + GPU: Polaris 22 + GPU Variant: VegaM XT + TDP: 100 W + FP32 Compute: 3.656 TFLOPS + FP64 Compute: 228.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml new file mode 100644 index 00000000..d94917da --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-M-GL +humanName: Radeon RX Vega M GL +isPart: true +type: Graphics Card +data: + Architecture: GCN 4.0 + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-02-01' + GPU Base Frequency: 931 MHz + GPU Boost Frequency: 1011 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM2 + VRAM Bus Width: 1024 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 208 mm² + GPU: Polaris 22 + GPU Variant: VegaM XL + TDP: 65 W + FP32 Compute: 2.588 TFLOPS + FP64 Compute: 161.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-4.yaml b/specs/GPUs-CONSUMER/GCN-4.yaml deleted file mode 100755 index 02536a3b..00000000 --- a/specs/GPUs-CONSUMER/GCN-4.yaml +++ /dev/null @@ -1,12 +0,0 @@ -hidden: true -name: GCN 4 -data: - Architecture: 4th Gen GCN - Lithography: 14 nm - DirectX Support: '12.0' - HLSL Shader Model: '6.0' - Vulkan Support: '1.1' - OpenGL Support: '4.5' - OpenCL Support: '2.0' - FreeSync Support: true - Crossfire Support: XDMA diff --git a/specs/GPUs-CONSUMER/GCN-5.0.yaml b/specs/GPUs-CONSUMER/GCN-5.0.yaml new file mode 100644 index 00000000..a9704b18 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0.yaml @@ -0,0 +1,52 @@ +name: GCN-5.0 +humanName: GCN 5.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2017-06-27' +sections: + - header: WHOLE RANGE + members: + - Atari-VCS-400-GPU + - Atari-VCS-800-GPU + - Radeon-Instinct-MI25 + - Radeon-Pro-V340-8-GB + - Radeon-Pro-V340-16-GB + - Radeon-Pro-Vega-16 + - Radeon-Pro-Vega-20 + - Radeon-Pro-Vega-48 + - Radeon-Pro-Vega-56 + - Radeon-Pro-Vega-64 + - Radeon-Pro-Vega-64X + - Radeon-Pro-WX-8100 + - Radeon-Pro-WX-8200 + - Radeon-Pro-WX-9100 + - Radeon-Pro-V320 + - Radeon-RX-Vega-10-Mobile + - Radeon-RX-Vega-11 + - Radeon-RX-Vega-11-Embedded + - Radeon-RX-Vega-11-Mobile + - Radeon-RX-Vega-56 + - Radeon-RX-Vega-56-Mobile + - Radeon-RX-Vega-64 + - Radeon-RX-Vega-64-Limited-Edition + - Radeon-RX-Vega-64-Liquid-Cooling + - Radeon-RX-Vega-Nano + - Radeon-Vega-3 + - Radeon-Vega-3-Embedded + - Radeon-Vega-3-Mobile + - Radeon-Vega-6-Embedded + - Radeon-Vega-6-Mobile + - Radeon-Vega-8 + - Radeon-Vega-8-Embedded + - Radeon-Vega-8-Mobile + - Radeon-Vega-10-Mobile + - Radeon-Vega-11 + - Radeon-Vega-11-Embedded + - Radeon-Vega-Frontier-Edition + - Radeon-Vega-Frontier-Edition-Watercooled + - Zhongshan-Subor-Z+-GPU diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml new file mode 100644 index 00000000..37c2a77c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml @@ -0,0 +1,31 @@ +name: Atari-VCS-400-GPU +humanName: Atari VCS 400 GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1201 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR4 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 149 mm² + GPU: Banded Kestrel + TDP: 15 W + FP32 Compute: 461.2 GFLOPS + FP64 Compute: 28.82 GFLOPS (1:16) + Outputs: 1x HDMI 2.0 + Length: 295 mm + Width: 150 mm + Height: 48 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml new file mode 100644 index 00000000..5cdfc374 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml @@ -0,0 +1,31 @@ +name: Atari-VCS-800-GPU +humanName: Atari VCS 800 GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1201 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 8 GB + VRAM Type: DDR4 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 149 mm² + GPU: Banded Kestrel + TDP: 15 W + FP32 Compute: 461.2 GFLOPS + FP64 Compute: 28.82 GFLOPS (1:16) + Outputs: 1x HDMI 2.0 + Length: 295 mm + Width: 150 mm + Height: 48 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml new file mode 100644 index 00000000..a0d98878 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml @@ -0,0 +1,33 @@ +name: Radeon-Instinct-MI25 +humanName: Radeon Instinct MI25 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-27' + GPU Base Frequency: 1400 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 852 MHz + VRAM Bandwidth: 436.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT GL + TDP: 300 W + FP32 Compute: 12.29 TFLOPS + FP64 Compute: 768.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml new file mode 100644 index 00000000..3ad86a1b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V320 +humanName: Radeon Pro V320 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-29' + GPU Base Frequency: 852 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL GL SERVER + TDP: 230 W + FP32 Compute: 10.75 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml new file mode 100644 index 00000000..d521e1df --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V340-16-GB +humanName: Radeon Pro V340 16 GB +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-08-26' + GPU Base Frequency: 852 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL GL + TDP: 230 W + FP32 Compute: 10.75 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml new file mode 100644 index 00000000..5839bd16 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V340-8-GB +humanName: Radeon Pro V340 8 GB +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-08-26' + GPU Base Frequency: 852 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL GL + TDP: 230 W + FP32 Compute: 10.75 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml new file mode 100644 index 00000000..b469936e --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-Vega-16 +humanName: Radeon Pro Vega 16 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-11-14' + GPU Base Frequency: 815 MHz + GPU Boost Frequency: 1190 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 307.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM2 + VRAM Bus Width: 1024 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: unknown + GPU: Vega 12 + GPU Variant: Vega 12 XLA + TDP: 75 W + FP32 Compute: 2.437 TFLOPS + FP64 Compute: 152.3 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml new file mode 100644 index 00000000..43d76f1b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-Vega-20 +humanName: Radeon Pro Vega 20 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-11-14' + GPU Base Frequency: 815 MHz + GPU Boost Frequency: 1283 MHz + VRAM Frequency: 740 MHz + VRAM Bandwidth: 189.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: HBM2 + VRAM Bus Width: 1024 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: unknown + GPU: Vega 12 + GPU Variant: Vega 12 XTA + TDP: 100 W + FP32 Compute: 3.284 TFLOPS + FP64 Compute: 205.3 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml new file mode 100644 index 00000000..639f7dfb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml @@ -0,0 +1,29 @@ +name: Radeon-Pro-Vega-48 +humanName: Radeon Pro Vega 48 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-19' + VRAM Frequency: 786 MHz + VRAM Bandwidth: 402.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 PRO + TDP: unknown + FP32 Compute: 7.373 TFLOPS + FP64 Compute: 460.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml new file mode 100644 index 00000000..2fbf254d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-Vega-56 +humanName: Radeon Pro Vega 56 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-08-14' + GPU Base Frequency: 1138 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: 786 MHz + VRAM Bandwidth: 402.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL + TDP: 210 W + FP32 Compute: 8.960 TFLOPS + FP64 Compute: 560.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml new file mode 100644 index 00000000..ceda7a35 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-Vega-64 +humanName: Radeon Pro Vega 64 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-27' + GPU Base Frequency: 1250 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 786 MHz + VRAM Bandwidth: 402.4 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 250 W + FP32 Compute: 11.06 TFLOPS + FP64 Compute: 691.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml new file mode 100644 index 00000000..827b3243 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-Vega-64X +humanName: Radeon Pro Vega 64X +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-03-19' + GPU Base Frequency: 1250 MHz + GPU Boost Frequency: 1468 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 250 W + FP32 Compute: 12.03 TFLOPS + FP64 Compute: 751.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml new file mode 100644 index 00000000..39bf3a9f --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-8100 +humanName: Radeon Pro WX 8100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-12-03' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL + TDP: 230 W + FP32 Compute: 10.75 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml new file mode 100644 index 00000000..f9a62c51 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-8200 +humanName: Radeon Pro WX 8200 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-08-13' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 230 W + FP32 Compute: 10.75 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml new file mode 100644 index 00000000..581dd1c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-WX-9100 +humanName: Radeon Pro WX 9100 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-07-10' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 230 W + FP32 Compute: 12.29 TFLOPS + FP64 Compute: 768.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml new file mode 100644 index 00000000..43573180 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-10-Mobile +humanName: Radeon RX Vega 10 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-10-26' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1301 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 210 mm² + GPU: Raven-M + TDP: 10 W + FP32 Compute: 1.665 TFLOPS + FP64 Compute: 104.1 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml new file mode 100644 index 00000000..26190794 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-11-Embedded +humanName: Radeon RX Vega 11 Embedded +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-04-19' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1251 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 44 + Shader Processor Count: 704 + Die Size: 210 mm² + GPU: Raven + TDP: 25 W + FP32 Compute: 1.761 TFLOPS + FP64 Compute: 110.1 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml new file mode 100644 index 00000000..517937ab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-11-Mobile +humanName: Radeon RX Vega 11 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-22' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 44 + Shader Processor Count: 704 + Die Size: 210 mm² + GPU: Picasso-M + TDP: 15 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml new file mode 100644 index 00000000..8a554369 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-Vega-11 +humanName: Radeon RX Vega 11 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-07' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 44 + Shader Processor Count: 704 + Die Size: 210 mm² + GPU: Picasso + TDP: 15 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml new file mode 100644 index 00000000..6d413e0c --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-Vega-56-Mobile +humanName: Radeon RX Vega 56 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-06-01' + GPU Base Frequency: 1138 MHz + GPU Boost Frequency: 1301 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 409.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XLM + TDP: 120 W + FP32 Compute: 9.326 TFLOPS + FP64 Compute: 582.8 GFLOPS (1:16) + Slot Width: MXM Module + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: None + Length: 105 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml new file mode 100644 index 00000000..bbac80e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-Vega-56 +humanName: Radeon RX Vega 56 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-08-14' + GPU Base Frequency: 1156 MHz + GPU Boost Frequency: 1471 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 409.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XL + TDP: 210 W + FP32 Compute: 10.54 TFLOPS + FP64 Compute: 659.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 280 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml new file mode 100644 index 00000000..ba4e4231 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-Vega-64-Limited-Edition +humanName: Radeon RX Vega 64 Limited Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-08-07' + GPU Base Frequency: 1247 MHz + GPU Boost Frequency: 1546 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 295 W + FP32 Compute: 12.66 TFLOPS + FP64 Compute: 791.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 272 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml new file mode 100644 index 00000000..ee6c4a17 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-Vega-64-Liquid-Cooling +humanName: Radeon RX Vega 64 Liquid Cooling +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-08-07' + GPU Base Frequency: 1406 MHz + GPU Boost Frequency: 1677 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XTX + TDP: 345 W + FP32 Compute: 13.74 TFLOPS + FP64 Compute: 858.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 272 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml new file mode 100644 index 00000000..7c0b0e22 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-Vega-64 +humanName: Radeon RX Vega 64 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-08-07' + GPU Base Frequency: 1247 MHz + GPU Boost Frequency: 1546 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 295 W + FP32 Compute: 12.66 TFLOPS + FP64 Compute: 791.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 280 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml new file mode 100644 index 00000000..0a54eaa1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-Vega-Nano +humanName: Radeon RX Vega Nano +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 1247 MHz + GPU Boost Frequency: 1546 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 409.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XT + TDP: 175 W + FP32 Compute: 12.66 TFLOPS + FP64 Compute: 791.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 152 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml new file mode 100644 index 00000000..1ac5ee1a --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-10-Mobile +humanName: Radeon Vega 10 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-04-08' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 210 mm² + GPU: Picasso-M + TDP: 15 W + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 112.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml new file mode 100644 index 00000000..2b15a9b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-11-Embedded +humanName: Radeon Vega 11 Embedded +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-02-13' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1301 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 44 + Shader Processor Count: 704 + Die Size: 210 mm² + GPU: Raven + TDP: 25 W + FP32 Compute: 1.832 TFLOPS + FP64 Compute: 114.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml new file mode 100644 index 00000000..084b6e08 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-11 +humanName: Radeon Vega 11 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-09-30' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 44 + Shader Processor Count: 704 + Die Size: 210 mm² + GPU: Picasso + TDP: 15 W + FP32 Compute: 1.971 TFLOPS + FP64 Compute: 123.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml new file mode 100644 index 00000000..4f2d1798 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-3-Embedded +humanName: Radeon Vega 3 Embedded +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 210 mm² + GPU: Picasso-M + TDP: 10 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 24.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml new file mode 100644 index 00000000..099aacfd --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-3-Mobile +humanName: Radeon Vega 3 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-01-06' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1001 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 210 mm² + GPU: Picasso-M + TDP: 15 W + FP32 Compute: 384.4 GFLOPS + FP64 Compute: 24.02 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml new file mode 100644 index 00000000..2b8bdeab --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-3 +humanName: Radeon Vega 3 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-20' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 210 mm² + GPU: Picasso + TDP: 15 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 26.40 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml new file mode 100644 index 00000000..4bdd4080 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml @@ -0,0 +1,29 @@ +name: Radeon-Vega-6-Embedded +humanName: Radeon Vega 6 Embedded +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-05-10' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1280 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 210 mm² + GPU: Raven + TDP: 15 W + FP32 Compute: 983.0 GFLOPS + FP64 Compute: 61.44 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml new file mode 100644 index 00000000..de0115b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-Vega-6-Mobile +humanName: Radeon Vega 6 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-01-08' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1101 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 210 mm² + GPU: Raven-M + TDP: 15 W + FP32 Compute: 845.6 GFLOPS + FP64 Compute: 52.85 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml new file mode 100644 index 00000000..a3a3d177 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-8-Embedded +humanName: Radeon Vega 8 Embedded +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-02-13' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 210 mm² + GPU: Raven + TDP: 15 W + FP32 Compute: 1,126 GFLOPS + FP64 Compute: 70.40 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml new file mode 100644 index 00000000..547e0f8b --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-8-Mobile +humanName: Radeon Vega 8 Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-01-06' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 210 mm² + GPU: Picasso-M + TDP: 15 W + FP32 Compute: 1,229 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml new file mode 100644 index 00000000..2b663485 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml @@ -0,0 +1,30 @@ +name: Radeon-Vega-8 +humanName: Radeon Vega 8 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-07' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 210 mm² + GPU: Picasso + TDP: 15 W + FP32 Compute: 1,280 GFLOPS + FP64 Compute: 80.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml new file mode 100644 index 00000000..c6e0e421 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml @@ -0,0 +1,33 @@ +name: Radeon-Vega-Frontier-Edition-Watercooled +humanName: Radeon Vega Frontier Edition Watercooled +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-07-13' + GPU Base Frequency: 1382 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XTX LCS + TDP: 375 W + FP32 Compute: 13.11 TFLOPS + FP64 Compute: 819.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml new file mode 100644 index 00000000..580ad8cb --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml @@ -0,0 +1,33 @@ +name: Radeon-Vega-Frontier-Edition +humanName: Radeon Vega Frontier Edition +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2017-06-27' + GPU Base Frequency: 1382 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 945 MHz + VRAM Bandwidth: 483.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 495 mm² + GPU: Vega 10 + GPU Variant: Vega 10 XTX AIR + TDP: 300 W + FP32 Compute: 13.11 TFLOPS + FP64 Compute: 819.2 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml new file mode 100644 index 00000000..aaafe6cf --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml @@ -0,0 +1,27 @@ +name: Zhongshan-Subor-Z+-GPU +humanName: Zhongshan Subor Z+ GPU +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-08-03' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 397 mm² + GPU: Fenghuang + GPU Variant: Zhongshan Subor + TDP: 100 W + FP32 Compute: 3.994 TFLOPS + FP64 Compute: 249.6 GFLOPS (1:16) + Outputs: 2x HDMI 2.0 diff --git a/specs/GPUs-CONSUMER/GCN-5.1.yaml b/specs/GPUs-CONSUMER/GCN-5.1.yaml old mode 100755 new mode 100644 index e02e9175..367b545a --- a/specs/GPUs-CONSUMER/GCN-5.1.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1.yaml @@ -1,12 +1,27 @@ -hidden: true -name: GCN 5.1 +name: GCN-5.1 +humanName: GCN 5.1 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' data: - Architecture: 5th Gen GCN - Lithography: 7 nm + Lithography: 14 nm DirectX Support: '12.1' Vulkan Support: '1.3' - HLSL Shader Model: '6.7' - OpenGL Support: '4.6' - OpenCL Support: '2.1' - FreeSync Support: true -# Crossfire Support: XDMA + Release Date: '2018-11-18' +sections: + - header: WHOLE RANGE + members: + - Radeon-Graphics-320SP-Mobile + - Radeon-Graphics-384SP + - Radeon-Graphics-384SP-Mobile + - Radeon-Graphics-448SP + - Radeon-Graphics-448SP-Mobile + - Radeon-Graphics-512SP + - Radeon-Graphics-512SP-Mobile + - Radeon-Instinct-MI50 + - Radeon-Instinct-MI60 + - Radeon-Pro-V420 + - Radeon-Pro-Vega-II + - Radeon-Pro-Vega-II-Duo + - Radeon-Pro-VII + - Radeon-VII diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml new file mode 100644 index 00000000..e77259c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-Graphics-320SP-Mobile +humanName: Radeon Graphics 320SP Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-01-06' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 320 + Die Size: 156 mm² + GPU: Renoir-M + TDP: 15 W + FP32 Compute: 896.0 GFLOPS + FP64 Compute: 56.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml new file mode 100644 index 00000000..a6f9b5e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-Graphics-384SP-Mobile +humanName: Radeon Graphics 384SP Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-01-06' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 156 mm² + GPU: Renoir-M + TDP: 15 W + FP32 Compute: 1,152 GFLOPS + FP64 Compute: 72.00 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml new file mode 100644 index 00000000..968d3059 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml @@ -0,0 +1,30 @@ +name: Radeon-Graphics-384SP +humanName: Radeon Graphics 384SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-04-13' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 180 mm² + GPU: Cezanne + TDP: 45 W + FP32 Compute: 1,306 GFLOPS + FP64 Compute: 81.60 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml new file mode 100644 index 00000000..8a7798aa --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml @@ -0,0 +1,30 @@ +name: Radeon-Graphics-448SP-Mobile +humanName: Radeon Graphics 448SP Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-01-12' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 28 + Shader Processor Count: 448 + Die Size: 156 mm² + GPU: Lucienne + TDP: 25 W + FP32 Compute: 1.613 TFLOPS + FP64 Compute: 100.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml new file mode 100644 index 00000000..7cfb49c5 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml @@ -0,0 +1,29 @@ +name: Radeon-Graphics-448SP +humanName: Radeon Graphics 448SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-01-06' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 1900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 28 + Shader Processor Count: 448 + Die Size: 156 mm² + GPU: Renoir + TDP: 15 W + FP32 Compute: 1.702 TFLOPS + FP64 Compute: 106.4 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml new file mode 100644 index 00000000..96fff0f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml @@ -0,0 +1,29 @@ +name: Radeon-Graphics-512SP-Mobile +humanName: Radeon Graphics 512SP Mobile +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-03-07' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 1750 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 156 mm² + GPU: Renoir-M + TDP: 15 W + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 112.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml new file mode 100644 index 00000000..412f5ef6 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml @@ -0,0 +1,30 @@ +name: Radeon-Graphics-512SP +humanName: Radeon Graphics 512SP +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-01-12' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 180 mm² + GPU: Cezanne + TDP: 45 W + FP32 Compute: 2.048 TFLOPS + FP64 Compute: 128.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml new file mode 100644 index 00000000..46b189d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml @@ -0,0 +1,32 @@ +name: Radeon-Instinct-MI50 +humanName: Radeon Instinct MI50 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-11-18' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1746 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 1,024 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 GLXT + TDP: 300 W + FP32 Compute: 13.41 TFLOPS + FP64 Compute: 6.705 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml new file mode 100644 index 00000000..2433f328 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml @@ -0,0 +1,33 @@ +name: Radeon-Instinct-MI60 +humanName: Radeon Instinct MI60 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2018-11-18' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1800 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 1,024 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 GL + TDP: 300 W + FP32 Compute: 14.75 TFLOPS + FP64 Compute: 7.373 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml new file mode 100644 index 00000000..f7bf4066 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V420 +humanName: Radeon Pro V420 +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 819.2 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 GLXT WS + TDP: 300 W + FP32 Compute: 13.93 TFLOPS + FP64 Compute: 6.963 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml new file mode 100644 index 00000000..e518af06 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-VII +humanName: Radeon Pro VII +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-05-13' + GPU Base Frequency: 1400 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 1,024 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 GLXT WS + TDP: 250 W + FP32 Compute: 13.06 TFLOPS + FP64 Compute: 6.528 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 305 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml new file mode 100644 index 00000000..e10c24f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-Vega-II-Duo +humanName: Radeon Pro Vega II Duo +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-06-03' + GPU Base Frequency: 1400 MHz + GPU Boost Frequency: 1720 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 1,024 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 XT + TDP: 475 W + FP32 Compute: 14.09 TFLOPS + FP64 Compute: 880.6 GFLOPS (1:16) + Slot Width: Quad-slot + Outputs: 1x HDMI 2.0b4x Thunderbolt diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml new file mode 100644 index 00000000..9f2ca68d --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-Vega-II +humanName: Radeon Pro Vega II +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-06-03' + GPU Base Frequency: 1574 MHz + GPU Boost Frequency: 1720 MHz + VRAM Frequency: 806 MHz + VRAM Bandwidth: 825.3 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 XT + TDP: 475 W + FP32 Compute: 14.09 TFLOPS + FP64 Compute: 880.6 GFLOPS (1:16) + Slot Width: Quad-slot + Outputs: 1x HDMI 2.0b4x Thunderbolt diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml new file mode 100644 index 00000000..3358ef85 --- /dev/null +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml @@ -0,0 +1,34 @@ +name: Radeon-VII +humanName: Radeon VII +isPart: true +type: Graphics Card +data: + Architecture: GCN 5.1 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-02-07' + GPU Base Frequency: 1400 MHz + GPU Boost Frequency: 1750 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 1,024 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 331 mm² + GPU: Vega 20 + GPU Variant: Vega 20 XT + TDP: 295 W + FP32 Compute: 13.44 TFLOPS + FP64 Compute: 3.360 TFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 280 mm + Width: 125 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/GCN-5.yaml b/specs/GPUs-CONSUMER/GCN-5.yaml deleted file mode 100755 index 76c09b87..00000000 --- a/specs/GPUs-CONSUMER/GCN-5.yaml +++ /dev/null @@ -1,12 +0,0 @@ -hidden: true -name: GCN 5 -data: - Architecture: 5th Gen GCN - Lithography: 14 nm - DirectX Support: '12.1' - Vulkan Support: '1.1' - HLSL Shader Model: '6.0' - OpenGL Support: '4.5' - OpenCL Support: '2.0' - FreeSync Support: true - Crossfire Support: XDMA \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/Generation-1.0.yaml b/specs/GPUs-CONSUMER/Generation-1.0.yaml new file mode 100644 index 00000000..b7416370 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0.yaml @@ -0,0 +1,19 @@ +name: Generation-1.0 +humanName: Generation 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + Release Date: '1998' +sections: + - header: WHOLE RANGE + members: + - i752 + - i752-Graphics + - i810-Graphics + - i815-Graphics + - i830MG-Graphics + - i830M-Graphics diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml new file mode 100644 index 00000000..d42722b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml @@ -0,0 +1,24 @@ +name: i752-Graphics +humanName: i752 Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Portola + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml new file mode 100644 index 00000000..8b19590e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml @@ -0,0 +1,24 @@ +name: i752 +humanName: i752 +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-04-27' + VRAM Frequency: 133 MHz + VRAM Bandwidth: 1.064 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Portola + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml new file mode 100644 index 00000000..180632c3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml @@ -0,0 +1,24 @@ +name: i810-Graphics +humanName: i810 Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Whitney + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml new file mode 100644 index 00000000..48221ff9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml @@ -0,0 +1,24 @@ +name: i815-Graphics +humanName: i815 Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Solano + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml new file mode 100644 index 00000000..782fa2cd --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml @@ -0,0 +1,27 @@ +name: i830M-Graphics +humanName: i830M Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001' + GPU Base Frequency: 166 MHz + GPU Boost Frequency: 200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Almador + GPU Variant: Almador (830M) + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml new file mode 100644 index 00000000..885c3293 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml @@ -0,0 +1,27 @@ +name: i830MG-Graphics +humanName: i830MG Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 1.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2002' + GPU Base Frequency: 100 MHz + GPU Boost Frequency: 166 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Almador + GPU Variant: Almador (830MG) + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0.yaml b/specs/GPUs-CONSUMER/Generation-11.0.yaml new file mode 100644 index 00000000..b8f19e55 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0.yaml @@ -0,0 +1,20 @@ +name: Generation-11.0 +humanName: Generation 11.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2019-05-29' +sections: + - header: WHOLE RANGE + members: + - Iris-Plus-Graphics-G4-48EU-Mobile + - Iris-Plus-Graphics-G7-64EU-Mobile + - UHD-Graphics-24EU-Mobile + - UHD-Graphics-32EU-Mobile + - UHD-Graphics-G1-32EU-Mobile + - UHD-Graphics-G4-48EU-Mobile + - UHD-Graphics-G7-64EU-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml new file mode 100644 index 00000000..9816094b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-G4-48EU-Mobile +humanName: Iris Plus Graphics G4 48EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-29' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: unknown + GPU: Ice Lake GT1 + TDP: 15 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 201.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml new file mode 100644 index 00000000..06fb645c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-G7-64EU-Mobile +humanName: Iris Plus Graphics G7 64EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-05-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: unknown + GPU: Ice Lake GT2 + TDP: 15 W + FP32 Compute: 1,075 GFLOPS + FP64 Compute: 268.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml new file mode 100644 index 00000000..88c934f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-24EU-Mobile +humanName: UHD Graphics 24EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-11' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: unknown + GPU: Jasper Lake GT1 + TDP: 10 W + FP32 Compute: 307.2 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml new file mode 100644 index 00000000..174bcbd5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-32EU-Mobile +humanName: UHD Graphics 32EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-23' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 750 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: Elkhart Lake GT1 + TDP: 9 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml new file mode 100644 index 00000000..864345b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-G1-32EU-Mobile +humanName: UHD Graphics G1 32EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-29' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: Ice Lake GT1 + TDP: 15 W + FP32 Compute: 460.8 GFLOPS + FP64 Compute: 115.2 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml new file mode 100644 index 00000000..447cd0a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-G4-48EU-Mobile +humanName: UHD Graphics G4 48EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-05-28' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: unknown + GPU: Lakefield GT1 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml new file mode 100644 index 00000000..69095545 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-G7-64EU-Mobile +humanName: UHD Graphics G7 64EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 11.0 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-05-28' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: unknown + GPU: Lakefield GT2 + TDP: 15 W + FP32 Compute: 512.0 GFLOPS + FP64 Compute: 128.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1.yaml b/specs/GPUs-CONSUMER/Generation-12.1.yaml new file mode 100644 index 00000000..69e37c06 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1.yaml @@ -0,0 +1,24 @@ +name: Generation-12.1 +humanName: Generation 12.1 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2020' +sections: + - header: WHOLE RANGE + members: + - H3C-XG310 + - Iris-Xe-Graphics-G4-48EU-Mobile + - Iris-Xe-Graphics-G7-80EU-Mobile + - Iris-Xe-Graphics-G7-96EU-Mobile + - Iris-Xe-MAX-Graphics + - UHD-Graphics-16EU + - UHD-Graphics-16EU-Mobile + - UHD-Graphics-P750 + - Xe-DG1 + - Xe-DG1-SDV + - UHD-Graphics-750 diff --git a/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml b/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml new file mode 100644 index 00000000..39d4554c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml @@ -0,0 +1,30 @@ +name: H3C-XG310 +humanName: H3C XG310 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-11-11' + GPU Base Frequency: 1050 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 68.26 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 95 mm² + GPU: DG1 + TDP: 300 W + FP32 Compute: 1.690 TFLOPS + FP64 Compute: 422.4 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml new file mode 100644 index 00000000..608a1242 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Xe-Graphics-G4-48EU-Mobile +humanName: Iris Xe Graphics G4 48EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-02' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 12 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 146 mm² + GPU: Tiger Lake GT2 + TDP: 15 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 211.2 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml new file mode 100644 index 00000000..6bb650a2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Xe-Graphics-G7-80EU-Mobile +humanName: Iris Xe Graphics G7 80EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-02' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 20 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 146 mm² + GPU: Tiger Lake GT2 + TDP: 15 W + FP32 Compute: 1,408 GFLOPS + FP64 Compute: 352.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml new file mode 100644 index 00000000..23846544 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Xe-Graphics-G7-96EU-Mobile +humanName: Iris Xe Graphics G7 96EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-09-02' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 146 mm² + GPU: Tiger Lake GT2 + TDP: 15 W + FP32 Compute: 1.690 TFLOPS + FP64 Compute: 422.4 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml new file mode 100644 index 00000000..730e86f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml @@ -0,0 +1,29 @@ +name: Iris-Xe-MAX-Graphics +humanName: Iris Xe MAX Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-10-31' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 68.26 GB/s + VRAM Capacity: 4 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 95 mm² + GPU: DG1 + TDP: 25 W + FP32 Compute: 2.534 TFLOPS + FP64 Compute: 633.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml new file mode 100644 index 00000000..cf155012 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-16EU-Mobile +humanName: UHD Graphics 16EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1450 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: unknown + GPU: Tiger Lake GT1 + TDP: 15 W + FP32 Compute: 371.2 GFLOPS + FP64 Compute: 92.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml new file mode 100644 index 00000000..6546c875 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-16EU +humanName: UHD Graphics 16EU +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: unknown + GPU: Rocket Lake GT1 + TDP: 15 W + FP32 Compute: 230.4 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml new file mode 100644 index 00000000..d629f2ad --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-750 +humanName: UHD Graphics 750 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-03-30' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: Rocket Lake GT1 + TDP: 15 W + FP32 Compute: 665.6 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml new file mode 100644 index 00000000..f80f046b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-P750 +humanName: UHD Graphics P750 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 256 + Die Size: unknown + GPU: Rocket Lake GT1 + TDP: 15 W + FP32 Compute: 665.6 GFLOPS + FP64 Compute: 166.4 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml new file mode 100644 index 00000000..d12721e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml @@ -0,0 +1,31 @@ +name: Xe-DG1-SDV +humanName: Xe DG1-SDV +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 68.26 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 95 mm² + GPU: DG1 + TDP: 75 W + FP32 Compute: 2.304 TFLOPS + FP64 Compute: 576.0 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x HDMI3x DisplayPort + Power Connectors: None + Length: 178 mm diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml new file mode 100644 index 00000000..d5c85e64 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml @@ -0,0 +1,33 @@ +name: Xe-DG1 +humanName: Xe DG1 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.1 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1550 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 68.26 GB/s + VRAM Capacity: 4 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 20 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 95 mm² + GPU: DG1 + TDP: 30 W + FP32 Compute: 1.984 TFLOPS + FP64 Compute: 496.0 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 1x HDMI3x DisplayPort + Power Connectors: None + Length: 164 mm + Width: 121 mm + Height: 22 mm diff --git a/specs/GPUs-CONSUMER/Generation-12.2.yaml b/specs/GPUs-CONSUMER/Generation-12.2.yaml new file mode 100644 index 00000000..9a825959 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2.yaml @@ -0,0 +1,22 @@ +name: Generation-12.2 +humanName: Generation 12.2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2022-01-04' +sections: + - header: WHOLE RANGE + members: + - Iris-Xe-Graphics-80EU-Mobile + - Iris-Xe-Graphics-96EU-Mobile + - UHD-Graphics-64EU-Mobile + - UHD-Graphics-710 + - UHD-Graphics-710-Mobile + - UHD-Graphics-730 + - UHD-Graphics-770 + - UHD-Graphics-770-Mobile + - UHD-Graphics-48EU-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml new file mode 100644 index 00000000..46bef098 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: Iris-Xe-Graphics-80EU-Mobile +humanName: Iris Xe Graphics 80EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1450 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 20 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: unknown + GPU: Raptor Lake GT1 + TDP: 15 W + FP32 Compute: 1.856 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml new file mode 100644 index 00000000..8dd7c239 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Xe-Graphics-96EU-Mobile +humanName: Iris Xe Graphics 96EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: unknown + GPU: Alder Lake GT1 + TDP: 45 W + FP32 Compute: 2.150 TFLOPS + FP64 Compute: 537.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml new file mode 100644 index 00000000..8f2bcef8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-48EU-Mobile +humanName: UHD Graphics 48EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 12 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: unknown + GPU: Alder Lake GT1 + TDP: 45 W + FP32 Compute: 883.2 GFLOPS + FP64 Compute: 220.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml new file mode 100644 index 00000000..d8c8229f --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-64EU-Mobile +humanName: UHD Graphics 64EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: unknown + GPU: Raptor Lake GT1 + TDP: 15 W + FP32 Compute: 1,280 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml new file mode 100644 index 00000000..665d7aff --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-710-Mobile +humanName: UHD Graphics 710 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: unknown + GPU: Raptor Lake GT1 + TDP: 15 W + FP32 Compute: 307.2 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml new file mode 100644 index 00000000..cdfe19c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-710 +humanName: UHD Graphics 710 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: unknown + GPU: Alder Lake GT1 + TDP: 15 W + FP32 Compute: 332.8 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml new file mode 100644 index 00000000..992777fd --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-730 +humanName: UHD Graphics 730 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: unknown + GPU: Alder Lake GT1 + TDP: 15 W + FP32 Compute: 537.6 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml new file mode 100644 index 00000000..f1a753d2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-770-Mobile +humanName: UHD Graphics 770 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-01-04' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: Alder Lake GT1 + TDP: 45 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml new file mode 100644 index 00000000..4ade1c3a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml @@ -0,0 +1,28 @@ +name: UHD-Graphics-770 +humanName: UHD Graphics 770 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.2 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-09-27' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1550 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: Raptor Lake GT1 + TDP: 15 W + FP32 Compute: 793.6 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-12.5.yaml b/specs/GPUs-CONSUMER/Generation-12.5.yaml new file mode 100644 index 00000000..07a68700 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5.yaml @@ -0,0 +1,21 @@ +name: Generation-12.5 +humanName: Generation 12.5 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: 'N/A' + Release Date: '2021' +sections: + - header: WHOLE RANGE + members: + - Arctic-Sound-M + - Arctic-Sound-1T + - Arctic-Sound-2T + - Data-Center-GPU-Max-1100 + - Data-Center-GPU-Max-1350 + - Data-Center-GPU-Max-1550 + - Data-Center-GPU-Max-NEXT + - Data-Center-GPU-Max-Subsystem diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml new file mode 100644 index 00000000..92a86894 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml @@ -0,0 +1,29 @@ +name: Arctic-Sound-1T +humanName: Arctic Sound 1T +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 1,229 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 6144 + Die Size: 190 mm² + GPU: Arctic Sound + TDP: 350 W + FP32 Compute: 11.06 TFLOPS + FP64 Compute: 2.765 TFLOPS (1:4) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml new file mode 100644 index 00000000..20c68533 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml @@ -0,0 +1,29 @@ +name: Arctic-Sound-2T +humanName: Arctic Sound 2T +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 1,229 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 120 + Texture Mapping Unit Count: 240 + Shader Processor Count: 7680 + Die Size: 190 mm² + GPU: Arctic Sound + TDP: 500 W + FP32 Compute: 13.82 TFLOPS + FP64 Compute: 3.456 TFLOPS (1:4) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml new file mode 100644 index 00000000..742ea30c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml @@ -0,0 +1,29 @@ +name: Arctic-Sound-M +humanName: Arctic Sound-M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 1,229 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2e + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 256 + Shader Processor Count: 8192 + Die Size: 190 mm² + GPU: Arctic Sound + TDP: 500 W + FP32 Compute: 14.75 TFLOPS + FP64 Compute: 3.686 TFLOPS (1:4) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml new file mode 100644 index 00000000..e009183a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml @@ -0,0 +1,34 @@ +name: Data-Center-GPU-Max-1100 +humanName: Data Center GPU Max 1100 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + HLSL Shader Model: '448' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-10' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1550 MHz + VRAM Frequency: 600 MHz + VRAM Bandwidth: 1,229 GB/s + VRAM Capacity: 48 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 448 + Shader Processor Count: 7168 + Die Size: 1280 mm² + GPU: Ponte Vecchio + TDP: 300 W + FP32 Compute: 22.22 TFLOPS + FP64 Compute: 22.22 TFLOPS (1:1) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 12-pin + Length: 267 mm + Ray Tracing Cores: 56 + Tensor Cores: 448 diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml new file mode 100644 index 00000000..d9e88a4d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml @@ -0,0 +1,32 @@ +name: Data-Center-GPU-Max-1350 +humanName: Data Center GPU Max 1350 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + HLSL Shader Model: '896' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-10' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 1550 MHz + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 2,458 GB/s + VRAM Capacity: 96 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 896 + Shader Processor Count: 14336 + Die Size: 1280 mm² + GPU: Ponte Vecchio + TDP: 450 W + FP32 Compute: 44.44 TFLOPS + FP64 Compute: 44.44 TFLOPS (1:1) + Slot Width: OAM Module + Outputs: No outputs + Ray Tracing Cores: 112 + Tensor Cores: 896 diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml new file mode 100644 index 00000000..e87fe666 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml @@ -0,0 +1,32 @@ +name: Data-Center-GPU-Max-1550 +humanName: Data Center GPU Max 1550 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + HLSL Shader Model: '1024' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-10' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 3,277 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 1024 + Shader Processor Count: 16384 + Die Size: 1280 mm² + GPU: Ponte Vecchio + TDP: 600 W + FP32 Compute: 52.43 TFLOPS + FP64 Compute: 52.43 TFLOPS (1:1) + Slot Width: OAM Module + Outputs: No outputs + Ray Tracing Cores: 128 + Tensor Cores: 1024 diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml new file mode 100644 index 00000000..4e25b118 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml @@ -0,0 +1,34 @@ +name: Data-Center-GPU-Max-NEXT +humanName: Data Center GPU Max NEXT +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 7 nm + DirectX Support: '12.1' + HLSL Shader Model: '1280' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1565 MHz + VRAM Bandwidth: 3,205 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 1280 + Shader Processor Count: 20480 + Die Size: 1280 mm² + GPU: Rialto Bridge + TDP: 800 W + FP32 Compute: 65.54 TFLOPS + FP64 Compute: 65.54 TFLOPS (1:1) + Slot Width: OAM Module + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Ray Tracing Cores: 160 + Tensor Cores: 1280 diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml new file mode 100644 index 00000000..5d0846f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml @@ -0,0 +1,34 @@ +name: Data-Center-GPU-Max-Subsystem +humanName: Data Center GPU Max Subsystem +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.5 + Lithography: 10 nm + DirectX Support: '12.1' + HLSL Shader Model: '1024' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-10' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1565 MHz + VRAM Bandwidth: 3,205 GB/s + VRAM Capacity: 128 GB + VRAM Type: HBM2e + VRAM Bus Width: 8192 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 1024 + Shader Processor Count: 16384 + Die Size: 1280 mm² + GPU: Ponte Vecchio + TDP: 2400 W + FP32 Compute: 52.43 TFLOPS + FP64 Compute: 52.43 TFLOPS (1:1) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 267 mm + Ray Tracing Cores: 128 + Tensor Cores: 1024 diff --git a/specs/GPUs-CONSUMER/Generation-12.7.yaml b/specs/GPUs-CONSUMER/Generation-12.7.yaml new file mode 100644 index 00000000..0692d1de --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7.yaml @@ -0,0 +1,34 @@ +name: Generation-12.7 +humanName: Generation 12.7 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022' +sections: + - header: WHOLE RANGE + members: + - Arc-A310 + - Arc-A350 + - Arc-A350M + - Arc-A370M + - Arc-A380M + - Arc-A530M + - Arc-A550M + - Arc-A570M + - Arc-A580 + - Arc-A730M + - Arc-A750 + - Arc-A770 + - Arc-A770M + - Arc-A780 + - Arc-Pro-A30M + - Arc-Pro-A40 + - Arc-Pro-A50 + - Arc-Pro-A60 + - Arc-Pro-A60M + - Data-Center-GPU-Flex-140 + - Data-Center-GPU-Flex-170 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml new file mode 100644 index 00000000..bd534c97 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml @@ -0,0 +1,34 @@ +name: Arc-A310 +humanName: Arc A310 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-12' + GPU Base Frequency: 1750 MHz + GPU Boost Frequency: 1750 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 124.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 768 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 30 W + FP32 Compute: 2.688 TFLOPS + FP64 Compute: 672.0 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 2.0 + Power Connectors: None + Ray Tracing Cores: 6 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml new file mode 100644 index 00000000..9a415d4f --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml @@ -0,0 +1,33 @@ +name: Arc-A350 +humanName: Arc A350 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 124.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 25 W + FP32 Compute: 3.072 TFLOPS + FP64 Compute: 768.0 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: No outputs + Ray Tracing Cores: 6 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml new file mode 100644 index 00000000..1a71bb2a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml @@ -0,0 +1,33 @@ +name: Arc-A350M +humanName: Arc A350M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 1150 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 25 W + FP32 Compute: 3.379 TFLOPS + FP64 Compute: 844.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 6 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml new file mode 100644 index 00000000..f3e4f8e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml @@ -0,0 +1,33 @@ +name: Arc-A370M +humanName: Arc A370M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-03-30' + GPU Base Frequency: 1550 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 35 W + FP32 Compute: 4.198 TFLOPS + FP64 Compute: 1,050 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 8 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml new file mode 100644 index 00000000..0ce0da61 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml @@ -0,0 +1,33 @@ +name: Arc-A380M +humanName: Arc A380M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-01-24' + GPU Base Frequency: 1550 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 186.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 35 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Ray Tracing Cores: 8 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml new file mode 100644 index 00000000..48c347bb --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml @@ -0,0 +1,32 @@ +name: Arc-A530M +humanName: Arc A530M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '192' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-08-01' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 269 mm² + GPU: DG2-256 + GPU Variant: ACM-G12 + TDP: 65 W + FP32 Compute: 3.994 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 12 + Tensor Cores: 192 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml new file mode 100644 index 00000000..b369f69c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml @@ -0,0 +1,32 @@ +name: Arc-A550M +humanName: Arc A550M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 60 W + FP32 Compute: 8.397 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 16 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml new file mode 100644 index 00000000..1873c970 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml @@ -0,0 +1,32 @@ +name: Arc-A570M +humanName: Arc A570M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-08-01' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 269 mm² + GPU: DG2-256 + GPU Variant: ACM-G12 + TDP: 75 W + FP32 Compute: 5.325 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 16 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml new file mode 100644 index 00000000..8b45e0f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml @@ -0,0 +1,35 @@ +name: Arc-A580 +humanName: Arc A580 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-10-10' + GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 175 W + FP32 Compute: 12.29 TFLOPS + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 2x 8-pin + Ray Tracing Cores: 24 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml new file mode 100644 index 00000000..49358ff6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml @@ -0,0 +1,32 @@ +name: Arc-A730M +humanName: Arc A730M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022' + GPU Base Frequency: 1100 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 80 W + FP32 Compute: 12.60 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 24 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml new file mode 100644 index 00000000..6806d1b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml @@ -0,0 +1,35 @@ +name: Arc-A750 +humanName: Arc A750 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '448' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-12' + GPU Base Frequency: 2050 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 112 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 225 W + FP32 Compute: 17.20 TFLOPS + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 1x 6-pin + 1x 8-pin + Ray Tracing Cores: 28 + Tensor Cores: 448 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml new file mode 100644 index 00000000..d87c17f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml @@ -0,0 +1,35 @@ +name: Arc-A770 +humanName: Arc A770 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '512' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-10-12' + GPU Base Frequency: 2100 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 225 W + FP32 Compute: 19.66 TFLOPS + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 1x 6-pin + 1x 8-pin + Ray Tracing Cores: 32 + Tensor Cores: 512 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml new file mode 100644 index 00000000..3e93d940 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml @@ -0,0 +1,32 @@ +name: Arc-A770M +humanName: Arc A770M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '512' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022' + GPU Base Frequency: 1650 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 120 W + FP32 Compute: 16.79 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 32 + Tensor Cores: 512 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml new file mode 100644 index 00000000..1efd716f --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml @@ -0,0 +1,35 @@ +name: Arc-A780 +humanName: Arc A780 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '512' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 2200 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: 1093 MHz + VRAM Bandwidth: 559.6 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6X + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 200 W + FP32 Compute: 18.02 TFLOPS + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 2x 8-pin + Ray Tracing Cores: 32 + Tensor Cores: 512 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml new file mode 100644 index 00000000..57b5cb45 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml @@ -0,0 +1,33 @@ +name: Arc-Pro-A30M +humanName: Arc Pro A30M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-08-08' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 50 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1,024 GFLOPS (1:4) + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 8 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml new file mode 100644 index 00000000..741fee0d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml @@ -0,0 +1,34 @@ +name: Arc-Pro-A40 +humanName: Arc Pro A40 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-08-08' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 50 W + FP32 Compute: 3.482 TFLOPS + FP64 Compute: 870.4 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 2.0 + Power Connectors: None + Ray Tracing Cores: 8 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml new file mode 100644 index 00000000..d6cc5e2b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml @@ -0,0 +1,34 @@ +name: Arc-Pro-A50 +humanName: Arc Pro A50 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '128' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-08-08' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2350 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 75 W + FP32 Compute: 4.813 TFLOPS + FP64 Compute: 1,203 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: 4x mini-DisplayPort 2.0 + Power Connectors: None + Ray Tracing Cores: 8 + Tensor Cores: 128 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml new file mode 100644 index 00000000..fc6cfda2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml @@ -0,0 +1,32 @@ +name: Arc-Pro-A60 +humanName: Arc Pro A60 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-06-06' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 269 mm² + GPU: DG2-256 + GPU Variant: ACM-G12 + TDP: 130 W + FP32 Compute: 8.397 TFLOPS + Slot Width: Single-slot + Outputs: No outputs + Ray Tracing Cores: 16 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml new file mode 100644 index 00000000..a7109376 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml @@ -0,0 +1,32 @@ +name: Arc-Pro-A60M +humanName: Arc Pro A60M +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '256' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-06-06' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 269 mm² + GPU: DG2-256 + GPU Variant: ACM-G12 + TDP: 95 W + FP32 Compute: 5.325 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Ray Tracing Cores: 16 + Tensor Cores: 256 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml new file mode 100644 index 00000000..bed64249 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml @@ -0,0 +1,36 @@ +name: Data-Center-GPU-Flex-140 +humanName: Data Center GPU Flex 140 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-08-24' + GPU Base Frequency: 1600 MHz + GPU Boost Frequency: 1950 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 186.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 75 W + FP32 Compute: 3.994 TFLOPS + Slot Width: Single-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 1x 8-pin + Length: 170 mm + Width: 70 mm + Height: 29 mm + Ray Tracing Cores: 8 diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml new file mode 100644 index 00000000..76029b80 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml @@ -0,0 +1,33 @@ +name: Data-Center-GPU-Flex-170 +humanName: Data Center GPU Flex 170 +isPart: true +type: Graphics Card +data: + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-08-24' + GPU Base Frequency: 1950 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 256 + Shader Processor Count: 4096 + Die Size: 406 mm² + GPU: DG2-512 + GPU Variant: ACM-G10 + TDP: 150 W + FP32 Compute: 16.79 TFLOPS + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 2.0 + Power Connectors: 1x 8-pin + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/Generation-2.0.yaml b/specs/GPUs-CONSUMER/Generation-2.0.yaml new file mode 100644 index 00000000..3b567b3c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-2.0.yaml @@ -0,0 +1,16 @@ +name: Generation-2.0 +humanName: Generation 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + Release Date: '2002' +sections: + - header: WHOLE RANGE + members: + - Extreme-Graphics + - Extreme-Graphics-2 + - i852GM-Graphics diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml new file mode 100644 index 00000000..d9b60c80 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml @@ -0,0 +1,27 @@ +name: Extreme-Graphics-2 +humanName: Extreme Graphics 2 +isPart: true +type: Graphics Card +data: + Architecture: Generation 2.0 + Lithography: 130 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-12-03' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 266 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Springdale + GPU Variant: Springdale-G (865G) + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml new file mode 100644 index 00000000..155328c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml @@ -0,0 +1,25 @@ +name: Extreme-Graphics +humanName: Extreme Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 2.0 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Brookdale + GPU Variant: Brookdale-G (845G) + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml new file mode 100644 index 00000000..c00d20eb --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml @@ -0,0 +1,27 @@ +name: i852GM-Graphics +humanName: i852GM Graphics +isPart: true +type: Graphics Card +data: + Architecture: Generation 2.0 + Lithography: 130 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-12-03' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 266 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Montara + GPU Variant: Montara-GM (852GM) + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-3.0.yaml b/specs/GPUs-CONSUMER/Generation-3.0.yaml new file mode 100644 index 00000000..76f503e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-3.0.yaml @@ -0,0 +1,14 @@ +name: Generation-3.0 +humanName: Generation 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + Release Date: '2004-06-01' +sections: + - header: WHOLE RANGE + members: + - GMA-900 diff --git a/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml b/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml new file mode 100644 index 00000000..880ae398 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml @@ -0,0 +1,24 @@ +name: GMA-900 +humanName: GMA 900 +isPart: true +type: Graphics Card +data: + Architecture: Generation 3.0 + Lithography: 130 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Grantsdale + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-3.5.yaml b/specs/GPUs-CONSUMER/Generation-3.5.yaml new file mode 100644 index 00000000..6466535c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-3.5.yaml @@ -0,0 +1,14 @@ +name: Generation-3.5 +humanName: Generation 3.5 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + Release Date: '2005-06-01' +sections: + - header: WHOLE RANGE + members: + - GMA-950 diff --git a/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml b/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml new file mode 100644 index 00000000..f81af39d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml @@ -0,0 +1,26 @@ +name: GMA-950 +humanName: GMA 950 +isPart: true +type: Graphics Card +data: + Architecture: Generation 3.5 + Lithography: 90 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-06-01' + GPU Base Frequency: 250 MHz + GPU Boost Frequency: 400 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Lakeport + TDP: 7 W + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0.yaml b/specs/GPUs-CONSUMER/Generation-4.0.yaml new file mode 100644 index 00000000..01e58781 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0.yaml @@ -0,0 +1,19 @@ +name: Generation-4.0 +humanName: Generation 4.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + Release Date: '2006-06-01' +sections: + - header: WHOLE RANGE + members: + - GMA-3000 + - GMA-3100 + - GMA-3150 + - GMA-X3000 + - GMA-X3100 + - GMA-X3500 diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml new file mode 100644 index 00000000..e71d5ccf --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml @@ -0,0 +1,25 @@ +name: GMA-3000 +humanName: GMA 3000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 90 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006-06-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Broadwater + GPU Variant: Broadwater-G (Q965) + TDP: 13 W + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml new file mode 100644 index 00000000..ec743b7c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml @@ -0,0 +1,24 @@ +name: GMA-3100 +humanName: GMA 3100 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 90 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-05-09' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Bearlake + TDP: 13 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml new file mode 100644 index 00000000..7c7213e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml @@ -0,0 +1,26 @@ +name: GMA-3150 +humanName: GMA 3150 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 45 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-05-09' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Shader Processor Count: 16 + Die Size: 66 mm² + GPU: Pineview + TDP: 13 W + FP32 Compute: 12.80 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml new file mode 100644 index 00000000..1d24e840 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml @@ -0,0 +1,25 @@ +name: GMA-X3000 +humanName: GMA X3000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 90 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006-06-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Broadwater + GPU Variant: Broadwater-G (Q965) + TDP: 13 W + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml new file mode 100644 index 00000000..47b14bf4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml @@ -0,0 +1,25 @@ +name: GMA-X3100 +humanName: GMA X3100 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 90 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-05-09' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: Crestline + GPU Variant: Crestline-GM + TDP: 13 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml new file mode 100644 index 00000000..c6da43f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml @@ -0,0 +1,25 @@ +name: GMA-X3500 +humanName: GMA X3500 +isPart: true +type: Graphics Card +data: + Architecture: Generation 4.0 + Lithography: 90 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-08-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: Bearlake + GPU Variant: Bearlake (G35) + TDP: 13 W + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.0.yaml b/specs/GPUs-CONSUMER/Generation-5.0.yaml new file mode 100644 index 00000000..a27ada15 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.0.yaml @@ -0,0 +1,17 @@ +name: Generation-5.0 +humanName: Generation 5.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + Release Date: '2008-06-01' +sections: + - header: WHOLE RANGE + members: + - GMA-X4500 + - GMA-X4500M + - GMA-X4500MHD + - GMA-X4700MHD diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml new file mode 100644 index 00000000..e9c37d30 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml @@ -0,0 +1,26 @@ +name: GMA-X4500 +humanName: GMA X4500 +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008-06-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Eaglelake + TDP: 13 W + FP32 Compute: 85.28 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml new file mode 100644 index 00000000..03969cdf --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml @@ -0,0 +1,26 @@ +name: GMA-X4500M +humanName: GMA X4500M +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008-10-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Eaglelake + TDP: 13 W + FP32 Compute: 64.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml new file mode 100644 index 00000000..1ff2f808 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml @@ -0,0 +1,26 @@ +name: GMA-X4500MHD +humanName: GMA X4500MHD +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008-09-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Cantiga + TDP: 13 W + FP32 Compute: 85.28 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml new file mode 100644 index 00000000..a95c5da6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml @@ -0,0 +1,26 @@ +name: GMA-X4700MHD +humanName: GMA X4700MHD +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008-10-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Montevina + TDP: 13 W + FP32 Compute: 102.4 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.75.yaml b/specs/GPUs-CONSUMER/Generation-5.75.yaml new file mode 100644 index 00000000..3b4ed888 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.75.yaml @@ -0,0 +1,15 @@ +name: Generation-5.75 +humanName: Generation 5.75 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2010-01-10' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-12EU + - HD-Graphics-16EU-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml new file mode 100644 index 00000000..7522e94e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml @@ -0,0 +1,26 @@ +name: HD-Graphics-12EU +humanName: HD Graphics 12EU +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.75 + Lithography: 45 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2010-01-10' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: 114 mm² + GPU: Ironlake + TDP: 35 W + FP32 Compute: 102.3 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml new file mode 100644 index 00000000..d5b0f80d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-16EU-Mobile +humanName: HD Graphics 16EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 5.75 + Lithography: 45 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2010-01-10' + GPU Base Frequency: 133 MHz + GPU Boost Frequency: 500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 16 + Shader Processor Count: 96 + Die Size: 114 mm² + GPU: Ironlake + TDP: 35 W + FP32 Compute: 96.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-6.0.yaml b/specs/GPUs-CONSUMER/Generation-6.0.yaml new file mode 100644 index 00000000..91a23ead --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0.yaml @@ -0,0 +1,18 @@ +name: Generation-6.0 +humanName: Generation 6.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2011-02-01' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-6EU-Mobile + - HD-Graphics-2000 + - HD-Graphics-3000 + - HD-Graphics-3000-Mobile + - HD-Graphics-P3000 diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml new file mode 100644 index 00000000..9a792fb0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-2000 +humanName: HD Graphics 2000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 6.0 + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.1' + OpenCL Support: 'N/A' + Release Date: '2011-02-01' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 6 + Shader Processor Count: 48 + Die Size: 131 mm² + GPU: Sandy Bridge GT1 + TDP: unknown + FP32 Compute: 96.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml new file mode 100644 index 00000000..12629daf --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-3000-Mobile +humanName: HD Graphics 3000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 6.0 + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.1' + OpenCL Support: 'N/A' + Release Date: '2011-02-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: 149 mm² + GPU: Sandy Bridge GT2 + TDP: unknown + FP32 Compute: 192.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml new file mode 100644 index 00000000..26db587a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-3000 +humanName: HD Graphics 3000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 6.0 + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.1' + OpenCL Support: 'N/A' + Release Date: '2011-02-01' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: 216 mm² + GPU: Sandy Bridge GT2+ + TDP: unknown + FP32 Compute: 259.2 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml new file mode 100644 index 00000000..5b67c28c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-6EU-Mobile +humanName: HD Graphics 6EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 6.0 + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.1' + OpenCL Support: 'N/A' + Release Date: '2011-05-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 6 + Shader Processor Count: 48 + Die Size: 131 mm² + GPU: Sandy Bridge GT1 + TDP: unknown + FP32 Compute: 76.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml new file mode 100644 index 00000000..094816f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml @@ -0,0 +1,28 @@ +name: HD-Graphics-P3000 +humanName: HD Graphics P3000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 6.0 + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.1' + OpenCL Support: 'N/A' + Release Date: '2011-02-01' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: 149 mm² + GPU: Sandy Bridge GT2 + TDP: unknown + FP32 Compute: 259.2 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.0.yaml b/specs/GPUs-CONSUMER/Generation-7.0.yaml new file mode 100644 index 00000000..93dff845 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0.yaml @@ -0,0 +1,18 @@ +name: Generation-7.0 +humanName: Generation 7.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + Release Date: '2012-04-01' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-6EU + - HD-Graphics-32EU-Mobile + - HD-Graphics-4000 + - HD-Graphics-4000-Mobile + - HD-Graphics-P4000 diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml new file mode 100644 index 00000000..863cc1c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-32EU-Mobile +humanName: HD Graphics 32EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.0 + Lithography: 22 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + OpenGL Support: '4.0' + OpenCL Support: '1.2' + Release Date: '2013-09-02' + GPU Base Frequency: 311 MHz + GPU Boost Frequency: 646 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Shader Processor Count: 32 + Die Size: unknown + GPU: Bay Trail GT1 + TDP: 4 W + FP32 Compute: 41.34 GFLOPS + FP64 Compute: 10.34 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml new file mode 100644 index 00000000..9bc6a502 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4000-Mobile +humanName: HD Graphics 4000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.0 + Lithography: 22 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + OpenGL Support: '4.0' + OpenCL Support: '1.2' + Release Date: '2012-05-14' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 16 + Shader Processor Count: 128 + Die Size: 133 mm² + GPU: Ivy Bridge GT2 + TDP: 45 W + FP32 Compute: 256.0 GFLOPS + FP64 Compute: 64.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml new file mode 100644 index 00000000..d8d2f562 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4000 +humanName: HD Graphics 4000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.0 + Lithography: 22 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + OpenGL Support: '4.0' + OpenCL Support: '1.2' + Release Date: '2012-05-14' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 16 + Shader Processor Count: 128 + Die Size: 133 mm² + GPU: Ivy Bridge GT2 + TDP: unknown + FP32 Compute: 268.8 GFLOPS + FP64 Compute: 67.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml new file mode 100644 index 00000000..27500b1b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml @@ -0,0 +1,30 @@ +name: HD-Graphics-6EU +humanName: HD Graphics 6EU +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.0 + Lithography: 22 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + OpenGL Support: '4.0' + OpenCL Support: '1.2' + Release Date: '2012-04-01' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 6 + Shader Processor Count: 48 + Die Size: 94 mm² + GPU: Ivy Bridge GT1 + GPU Variant: Ivy Bridge-H-2 + TDP: unknown + FP32 Compute: 100.8 GFLOPS + FP64 Compute: 25.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml new file mode 100644 index 00000000..7f941e29 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P4000 +humanName: HD Graphics P4000 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.0 + Lithography: 22 nm + DirectX Support: '11.0' + Vulkan Support: '1.0' + OpenGL Support: '4.0' + OpenCL Support: '1.2' + Release Date: '2012-05-14' + GPU Base Frequency: 650 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 16 + Shader Processor Count: 128 + Die Size: 133 mm² + GPU: Ivy Bridge GT2 + TDP: 45 W + FP32 Compute: 320.0 GFLOPS + FP64 Compute: 80.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5.yaml b/specs/GPUs-CONSUMER/Generation-7.5.yaml new file mode 100644 index 00000000..2217710a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5.yaml @@ -0,0 +1,26 @@ +name: Generation-7.5 +humanName: Generation 7.5 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + Release Date: '2013-04-29' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-10EU-Mobile + - HD-Graphics-4200-Mobile + - HD-Graphics-4400 + - HD-Graphics-4400-Mobile + - HD-Graphics-4600 + - HD-Graphics-4600-Mobile + - HD-Graphics-5000-Mobile + - HD-Graphics-P4600 + - HD-Graphics-P4700 + - HD-Graphics-10EU + - Iris-Graphics-5100-Mobile + - Iris-Pro-Graphics-5200 + - Iris-Pro-Graphics-5200-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml new file mode 100644 index 00000000..cc5d86f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-10EU-Mobile +humanName: HD Graphics 10EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-04-29' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Haswell GT1 + TDP: 45 W + FP32 Compute: 136.0 GFLOPS + FP64 Compute: 34.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml new file mode 100644 index 00000000..cced1c81 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-10EU +humanName: HD Graphics 10EU +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-04-29' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 10 + Shader Processor Count: 80 + Die Size: unknown + GPU: Haswell GT1 + TDP: 45 W + FP32 Compute: 160.0 GFLOPS + FP64 Compute: 40.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml new file mode 100644 index 00000000..f6bb1688 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4200-Mobile +humanName: HD Graphics 4200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-09-02' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 4 W + FP32 Compute: 272.0 GFLOPS + FP64 Compute: 68.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml new file mode 100644 index 00000000..b9583d8c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4400-Mobile +humanName: HD Graphics 4400 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-09-03' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 20 W + FP32 Compute: 304.0 GFLOPS + FP64 Compute: 76.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml new file mode 100644 index 00000000..4518d485 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4400 +humanName: HD Graphics 4400 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-09-03' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 20 W + FP32 Compute: 368.0 GFLOPS + FP64 Compute: 92.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml new file mode 100644 index 00000000..e05f973d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4600-Mobile +humanName: HD Graphics 4600 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-05-27' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 20 W + FP32 Compute: 352.0 GFLOPS + FP64 Compute: 88.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml new file mode 100644 index 00000000..a75df482 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-4600 +humanName: HD Graphics 4600 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-06-03' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 45 W + FP32 Compute: 352.0 GFLOPS + FP64 Compute: 88.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml new file mode 100644 index 00000000..d8f69e9b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-5000-Mobile +humanName: HD Graphics 5000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-05-27' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 40 + Shader Processor Count: 320 + Die Size: 181 mm² + GPU: Haswell GT3 + TDP: 30 W + FP32 Compute: 640.0 GFLOPS + FP64 Compute: 160.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml new file mode 100644 index 00000000..bd96cd33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P4600 +humanName: HD Graphics P4600 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-06-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 84 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml new file mode 100644 index 00000000..e6db9e15 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P4700 +humanName: HD Graphics P4700 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-06-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1300 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 20 + Shader Processor Count: 160 + Die Size: unknown + GPU: Haswell GT2 + TDP: 86 W + FP32 Compute: 416.0 GFLOPS + FP64 Compute: 104.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml new file mode 100644 index 00000000..15faafd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Graphics-5100-Mobile +humanName: Iris Graphics 5100 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-05-27' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 40 + Shader Processor Count: 320 + Die Size: 181 mm² + GPU: Haswell GT3 + TDP: 30 W + FP32 Compute: 704.0 GFLOPS + FP64 Compute: 176.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml new file mode 100644 index 00000000..1e187912 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-5200-Mobile +humanName: Iris Pro Graphics 5200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-05-27' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 40 + Shader Processor Count: 320 + Die Size: unknown + GPU: Haswell GT3e + TDP: 30 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml new file mode 100644 index 00000000..705f6373 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-5200 +humanName: Iris Pro Graphics 5200 +isPart: true +type: Graphics Card +data: + Architecture: Generation 7.5 + Lithography: 22 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '1.2' + Release Date: '2013-06-03' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 40 + Shader Processor Count: 320 + Die Size: unknown + GPU: Haswell GT3e + TDP: 45 W + FP32 Compute: 736.0 GFLOPS + FP64 Compute: 184.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0.yaml b/specs/GPUs-CONSUMER/Generation-8.0.yaml new file mode 100644 index 00000000..cf16e169 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0.yaml @@ -0,0 +1,25 @@ +name: Generation-8.0 +humanName: Generation 8.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + Release Date: '2014-09-05' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-12EU-Mobile + - HD-Graphics-400-Mobile + - HD-Graphics-405-Mobile + - HD-Graphics-5300-Mobile + - HD-Graphics-5500-Mobile + - HD-Graphics-5600-Mobile + - HD-Graphics-6000-Mobile + - HD-Graphics-P5700 + - Iris-Graphics-6100-Mobile + - Iris-Pro-Graphics-6200 + - Iris-Pro-Graphics-6200-Mobile + - Iris-Pro-Graphics-P6300 diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml new file mode 100644 index 00000000..75089d7c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml @@ -0,0 +1,27 @@ +name: HD-Graphics-12EU-Mobile +humanName: HD Graphics 12EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '3.0' + Release Date: '2015-04-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Braswell GT1 + TDP: 6 W + FP32 Compute: 96.00 GFLOPS + FP64 Compute: 24.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml new file mode 100644 index 00000000..5c0e56f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-400-Mobile +humanName: HD Graphics 400 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '3.0' + Release Date: '2015-04-01' + GPU Base Frequency: 320 MHz + GPU Boost Frequency: 600 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Braswell GT1 + TDP: 6 W + FP32 Compute: 115.2 GFLOPS + FP64 Compute: 28.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml new file mode 100644 index 00000000..b9cdbf4e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-405-Mobile +humanName: HD Graphics 405 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.3' + OpenCL Support: '3.0' + Release Date: '2015-04-01' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 600 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 16 + Shader Processor Count: 128 + Die Size: unknown + GPU: Braswell GT1 + TDP: 6 W + FP32 Compute: 153.6 GFLOPS + FP64 Compute: 38.40 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml new file mode 100644 index 00000000..1d089f71 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-5300-Mobile +humanName: HD Graphics 5300 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Broadwell GT2 + TDP: 15 W + FP32 Compute: 307.2 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml new file mode 100644 index 00000000..1fdb0494 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-5500-Mobile +humanName: HD Graphics 5500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Broadwell GT2 + TDP: 15 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 81.60 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml new file mode 100644 index 00000000..b3c012b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-5600-Mobile +humanName: HD Graphics 5600 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Broadwell GT2 + TDP: 15 W + FP32 Compute: 403.2 GFLOPS + FP64 Compute: 100.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml new file mode 100644 index 00000000..9fea98c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-6000-Mobile +humanName: HD Graphics 6000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: 133 mm² + GPU: Broadwell GT3 + TDP: 15 W + FP32 Compute: 729.6 GFLOPS + FP64 Compute: 182.4 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml new file mode 100644 index 00000000..7b7424dc --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P5700 +humanName: HD Graphics P5700 +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 700 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Broadwell GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml new file mode 100644 index 00000000..cdd2c471 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml @@ -0,0 +1,30 @@ +name: Iris-Graphics-6100-Mobile +humanName: Iris Graphics 6100 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: 133 mm² + GPU: Broadwell GT3 + TDP: 15 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml new file mode 100644 index 00000000..5c6d53d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-6200-Mobile +humanName: Iris Pro Graphics 6200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Broadwell GT3e + TDP: 15 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 211.2 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml new file mode 100644 index 00000000..958cd943 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-6200 +humanName: Iris Pro Graphics 6200 +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Broadwell GT3e + TDP: 15 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 211.2 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml new file mode 100644 index 00000000..ea4ef161 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-P6300 +humanName: Iris Pro Graphics P6300 +isPart: true +type: Graphics Card +data: + Architecture: Generation 8.0 + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.0' + OpenGL Support: '4.4' + OpenCL Support: '3.0' + Release Date: '2014-09-05' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Broadwell GT3e + TDP: 15 W + FP32 Compute: 614.4 GFLOPS + FP64 Compute: 153.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0.yaml b/specs/GPUs-CONSUMER/Generation-9.0.yaml new file mode 100644 index 00000000..eca11725 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0.yaml @@ -0,0 +1,28 @@ +name: Generation-9.0 +humanName: Generation 9.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2015-09-01' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-500-Mobile + - HD-Graphics-505-Mobile + - HD-Graphics-510 + - HD-Graphics-510-Mobile + - HD-Graphics-515-Mobile + - HD-Graphics-520-Mobile + - HD-Graphics-530 + - HD-Graphics-530-Mobile + - HD-Graphics-P530 + - Iris-Graphics-540-Mobile + - Iris-Graphics-550-Mobile + - Iris-Pro-Graphics-580-Mobile + - Iris-Pro-Graphics-P555 + - Iris-Pro-Graphics-P580 + - Iris-Pro-Graphics-P580-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml new file mode 100644 index 00000000..0c929de3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-500-Mobile +humanName: HD Graphics 500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 650 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Apollo Lake GT1 + TDP: 6 W + FP32 Compute: 124.8 GFLOPS + FP64 Compute: 15.60 GFLOPS (1:8) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml new file mode 100644 index 00000000..176a0a8c --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-505-Mobile +humanName: HD Graphics 505 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-09-01' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 650 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 18 + Shader Processor Count: 144 + Die Size: unknown + GPU: Apollo Lake GT1.5 + TDP: 6 W + FP32 Compute: 187.2 GFLOPS + FP64 Compute: 23.40 GFLOPS (1:8) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml new file mode 100644 index 00000000..68086cd9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-510-Mobile +humanName: HD Graphics 510 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Skylake GT1 + TDP: 15 W + FP32 Compute: 172.8 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml new file mode 100644 index 00000000..f8769336 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-510 +humanName: HD Graphics 510 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Skylake GT1 + TDP: 15 W + FP32 Compute: 182.4 GFLOPS + FP64 Compute: 45.60 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml new file mode 100644 index 00000000..2b73ef1e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-515-Mobile +humanName: HD Graphics 515 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: 123 mm² + GPU: Skylake GT2 + TDP: 15 W + FP32 Compute: 307.2 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml new file mode 100644 index 00000000..3ced6086 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-520-Mobile +humanName: HD Graphics 520 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: 123 mm² + GPU: Skylake GT2 + TDP: 15 W + FP32 Compute: 345.6 GFLOPS + FP64 Compute: 86.40 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml new file mode 100644 index 00000000..a17252ce --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-530-Mobile +humanName: HD Graphics 530 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: 123 mm² + GPU: Skylake GT2 + TDP: 15 W + FP32 Compute: 364.8 GFLOPS + FP64 Compute: 91.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml new file mode 100644 index 00000000..d8d83d37 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-530 +humanName: HD Graphics 530 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: 123 mm² + GPU: Skylake GT2 + TDP: 15 W + FP32 Compute: 364.8 GFLOPS + FP64 Compute: 91.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml new file mode 100644 index 00000000..689a028d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P530 +humanName: HD Graphics P530 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 123 mm² + GPU: Skylake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml new file mode 100644 index 00000000..ea242842 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml @@ -0,0 +1,28 @@ +name: Iris-Graphics-540-Mobile +humanName: Iris Graphics 540 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Skylake GT3e + TDP: 15 W + FP32 Compute: 768.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml new file mode 100644 index 00000000..3fc5eaf6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Graphics-550-Mobile +humanName: Iris Graphics 550 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Skylake GT3e + TDP: 15 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml new file mode 100644 index 00000000..22918d1b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-580-Mobile +humanName: Iris Pro Graphics 580 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 9 + Texture Mapping Unit Count: 72 + Shader Processor Count: 576 + Die Size: unknown + GPU: Skylake GT4e + TDP: 15 W + FP32 Compute: 1,094 GFLOPS + FP64 Compute: 273.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml new file mode 100644 index 00000000..6c989ae3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-P555 +humanName: Iris Pro Graphics P555 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Skylake GT3e + TDP: 15 W + FP32 Compute: 768.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml new file mode 100644 index 00000000..61d66d47 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-P580-Mobile +humanName: Iris Pro Graphics P580 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 9 + Texture Mapping Unit Count: 72 + Shader Processor Count: 576 + Die Size: unknown + GPU: Skylake GT4e + TDP: 15 W + FP32 Compute: 1,210 GFLOPS + FP64 Compute: 302.4 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml new file mode 100644 index 00000000..9233f123 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml @@ -0,0 +1,29 @@ +name: Iris-Pro-Graphics-P580 +humanName: Iris Pro Graphics P580 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.0 + Lithography: 14 nm+ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 9 + Texture Mapping Unit Count: 72 + Shader Processor Count: 576 + Die Size: unknown + GPU: Skylake GT4e + TDP: 15 W + FP32 Compute: 1,152 GFLOPS + FP64 Compute: 288.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5.yaml b/specs/GPUs-CONSUMER/Generation-9.5.yaml new file mode 100644 index 00000000..daf88722 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5.yaml @@ -0,0 +1,35 @@ +name: Generation-9.5 +humanName: Generation 9.5 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2016-08-05' +sections: + - header: WHOLE RANGE + members: + - HD-Graphics-610 + - HD-Graphics-610-Mobile + - HD-Graphics-615-Mobile + - HD-Graphics-620-Mobile + - HD-Graphics-630 + - HD-Graphics-630-Mobile + - HD-Graphics-P630-Mobile + - Iris-Plus-Graphics-640-Mobile + - Iris-Plus-Graphics-645-Mobile + - Iris-Plus-Graphics-650-Mobile + - Iris-Plus-Graphics-655-Mobile + - UHD-Graphics-605-Mobile + - UHD-Graphics-610 + - UHD-Graphics-615-Mobile + - UHD-Graphics-617-Mobile + - UHD-Graphics-620-Mobile + - UHD-Graphics-630 + - UHD-Graphics-630-Mobile + - UHD-Graphics-P630 + - UHD-Graphics-P630-Mobile + - UHD-Graphics-600-Mobile + - UHD-Graphics-610-Mobile diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml new file mode 100644 index 00000000..d826d34e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-610-Mobile +humanName: HD Graphics 610 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Kaby Lake GT1 + TDP: 5 W + FP32 Compute: 172.8 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml new file mode 100644 index 00000000..5e97c00b --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-610 +humanName: HD Graphics 610 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Kaby Lake GT1 + TDP: 5 W + FP32 Compute: 201.6 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml new file mode 100644 index 00000000..2b44060e --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-615-Mobile +humanName: HD Graphics 615 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 850 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Kaby Lake GT2 + TDP: 5 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 81.60 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml new file mode 100644 index 00000000..9b1cdf1d --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-620-Mobile +humanName: HD Graphics 620 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Kaby Lake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml new file mode 100644 index 00000000..cc69e777 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-630-Mobile +humanName: HD Graphics 630 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Kaby Lake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml new file mode 100644 index 00000000..a4b0555a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-630 +humanName: HD Graphics 630 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-30' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Kaby Lake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml new file mode 100644 index 00000000..c12fcf92 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml @@ -0,0 +1,29 @@ +name: HD-Graphics-P630-Mobile +humanName: HD Graphics P630 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-05' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Kaby Lake GT2 + TDP: 15 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 105.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml new file mode 100644 index 00000000..19394d9a --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-640-Mobile +humanName: Iris Plus Graphics 640 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-03' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Kaby Lake GT3e + TDP: 15 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 211.2 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml new file mode 100644 index 00000000..72137078 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-645-Mobile +humanName: Iris Plus Graphics 645 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-10-07' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Coffee Lake GT3e + TDP: 15 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 201.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml new file mode 100644 index 00000000..f634c1c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-650-Mobile +humanName: Iris Plus Graphics 650 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-03' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Kaby Lake GT3e + TDP: 15 W + FP32 Compute: 883.2 GFLOPS + FP64 Compute: 220.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml new file mode 100644 index 00000000..7744de08 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml @@ -0,0 +1,29 @@ +name: Iris-Plus-Graphics-655-Mobile +humanName: Iris Plus Graphics 655 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-04-03' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 6 + Texture Mapping Unit Count: 48 + Shader Processor Count: 384 + Die Size: unknown + GPU: Coffee Lake GT3e + TDP: 15 W + FP32 Compute: 806.4 GFLOPS + FP64 Compute: 201.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml new file mode 100644 index 00000000..c8881da5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-600-Mobile +humanName: UHD Graphics 600 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-12-11' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 650 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Gemini Lake GT1 + TDP: 5 W + FP32 Compute: 124.8 GFLOPS + FP64 Compute: 31.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml new file mode 100644 index 00000000..4d56edb7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-605-Mobile +humanName: UHD Graphics 605 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-12-11' + GPU Base Frequency: 200 MHz + GPU Boost Frequency: 750 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 18 + Shader Processor Count: 144 + Die Size: unknown + GPU: Gemini Lake GT1.5 + TDP: 5 W + FP32 Compute: 216.0 GFLOPS + FP64 Compute: 54.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml new file mode 100644 index 00000000..d7a2e2bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-610-Mobile +humanName: UHD Graphics 610 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-04-03' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Coffee Lake GT1 + TDP: 15 W + FP32 Compute: 172.8 GFLOPS + FP64 Compute: 43.20 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml new file mode 100644 index 00000000..1b569eb5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-610 +humanName: UHD Graphics 610 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-30' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 12 + Shader Processor Count: 96 + Die Size: unknown + GPU: Comet Lake GT1 + TDP: 15 W + FP32 Compute: 201.6 GFLOPS + FP64 Compute: 50.40 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml new file mode 100644 index 00000000..a4a911fe --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-615-Mobile +humanName: UHD Graphics 615 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-11-07' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Amber Lake GT2 + TDP: 15 W + FP32 Compute: 345.6 GFLOPS + FP64 Compute: 86.40 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml new file mode 100644 index 00000000..76f58247 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-617-Mobile +humanName: UHD Graphics 617 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-11-07' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Amber Lake GT2 + TDP: 15 W + FP32 Compute: 403.2 GFLOPS + FP64 Compute: 100.8 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml new file mode 100644 index 00000000..34adec36 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-620-Mobile +humanName: UHD Graphics 620 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-28' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Whiskey Lake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml new file mode 100644 index 00000000..ae7bc285 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-630-Mobile +humanName: UHD Graphics 630 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-04-03' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1000 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Coffee Lake GT2 + TDP: 15 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 96.00 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml new file mode 100644 index 00000000..c7535a83 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-630 +humanName: UHD Graphics 630 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-09-01' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1050 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 23 + Shader Processor Count: 184 + Die Size: unknown + GPU: Coffee Lake GT2 + TDP: 15 W + FP32 Compute: 386.4 GFLOPS + FP64 Compute: 96.60 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml new file mode 100644 index 00000000..b3817469 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-P630-Mobile +humanName: UHD Graphics P630 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-05-13' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Comet Lake GT2 + TDP: 15 W + FP32 Compute: 480.0 GFLOPS + FP64 Compute: 120.0 GFLOPS (1:4) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml new file mode 100644 index 00000000..a6baa9e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml @@ -0,0 +1,29 @@ +name: UHD-Graphics-P630 +humanName: UHD Graphics P630 +isPart: true +type: Graphics Card +data: + Architecture: Generation 9.5 + Lithography: 14 nm+++ + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-05-24' + GPU Base Frequency: 350 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 3 + Texture Mapping Unit Count: 24 + Shader Processor Count: 192 + Die Size: unknown + GPU: Coffee Lake GT2 + TDP: 15 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 105.6 GFLOPS (1:4) + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/HD4000.yaml b/specs/GPUs-CONSUMER/HD4000.yaml deleted file mode 100755 index 0ff3aac0..00000000 --- a/specs/GPUs-CONSUMER/HD4000.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: HD4000 -humanName: HD 4000 Series -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 55 nm - DirectX Support: '10.1' - Release Date: '2008-06-16' -sections: - - header: ENTHUSIAST - members: - - HD-4890 - - HD-4870-X2 - - HD-4850-X2 - - header: HIGH END - members: - - HD-4870 - - HD-4860 - - HD-4855 - - HD-4850 - - HD-4830 - - HD-4670-X2 - - header: MID RANGE - members: - - HD-4810 - - HD-4770 - - HD-4750 - - HD-4730 - - HD-4710 - - HD-4700 - - HD-4670-AGP - - HD-4670 - - HD-4650-AGP - - HD-4650 - - header: ENTRY LEVEL - members: - - HD-4570-Rebrand - - HD-4570 - - HD-4550 - - HD-4520 - - HD-4350-AGP - - HD-4350 - - HD-4250 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4250.yaml b/specs/GPUs-CONSUMER/HD4000/HD4250.yaml deleted file mode 100755 index f9200839..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4250.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV620 - Codename: RV620 LE - Release Date: '2009-02-25' - Die Size: 67 mm - Shader Processor Count: 40 - Texture Mapping Unit Count: 4 - Render Output Unit Count: 4 - GPU Base Frequency: 594 MHz - VRAM Frequency: 792 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 6.4 GB/s - TDP: 25 W - FP32 Compute: 47.52 GFLOPS -inherits: - - TeraScale-1 -name: HD-4250 -humanName: HD 4250 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml deleted file mode 100755 index 08787a5f..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4350-AGP.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV710 - Codename: RV710 - Release Date: '2008-09-30' - Die Size: 73 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 600 MHz - VRAM Frequency: 1300 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 10.40 GB/s - TDP: 20 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-1 -name: HD-4350-AGP -humanName: HD 4350 AGP diff --git a/specs/GPUs-CONSUMER/HD4000/HD4350.yaml b/specs/GPUs-CONSUMER/HD4000/HD4350.yaml deleted file mode 100755 index 187d2110..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4350.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV710 - Codename: RV710 - Release Date: '2008-09-30' - Die Size: 73 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 600 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 6.4 GB/s - TDP: 20 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-1 -name: HD-4350 -humanName: HD 4350 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4520.yaml b/specs/GPUs-CONSUMER/HD4000/HD4520.yaml deleted file mode 100755 index ae8fd9f4..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4520.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV710 - Codename: RV710 - Release Date: '2009-12-02' - Die Size: 73 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 600 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 6.4 GB/s - TDP: 25 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-1 -name: HD-4520 -humanName: HD 4520 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4550.yaml b/specs/GPUs-CONSUMER/HD4000/HD4550.yaml deleted file mode 100755 index 40ba79f3..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4550.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV710 - Codename: RV710 - Release Date: '2009-09-30' - Die Size: 73 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 600 MHz - VRAM Frequency: 1310 MT/s - VRAM Capacity: 256 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 10.48 GB/s - TDP: 25 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-1 -name: HD-4550 -humanName: HD 4550 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml b/specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml deleted file mode 100755 index 818770bb..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4570-Rebrand.yaml +++ /dev/null @@ -1,21 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV635 - Codename: RV635 PRO - Release Date: '2009-11-22' - Die Size: 135 mm - Shader Processor Count: 120 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 796 MHz - VRAM Frequency: 792 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 12.67 GB/s - TDP: 65 W -inherits: - - TeraScale-1 -name: HD-4570-Rebrand -humanName: HD 4570 Rebrand diff --git a/specs/GPUs-CONSUMER/HD4000/HD4570.yaml b/specs/GPUs-CONSUMER/HD4000/HD4570.yaml deleted file mode 100755 index f03fab3f..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4570.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV710 - Codename: RV710 - Release Date: '2009-09-30' - Die Size: 73 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 8 GB/s - TDP: 25 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-1 -name: HD-4570 -humanName: HD 4570 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml deleted file mode 100755 index 4e6954b9..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4650-AGP.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 PRO - Release Date: '2008-11-10' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 600 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 12.80 GB/s - TDP: 48 W - FP32 Compute: 384 GFLOPS -inherits: - - TeraScale-1 -name: HD-4650-AGP -humanName: HD 4650 AGP diff --git a/specs/GPUs-CONSUMER/HD4000/HD4650.yaml b/specs/GPUs-CONSUMER/HD4000/HD4650.yaml deleted file mode 100755 index 1532c366..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4650.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 PRO - Release Date: '2008-11-10' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 600 MHz - VRAM Frequency: 1400 MT/s - VRAM Capacity: 256 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 22.40 GB/s - TDP: 48 W - FP32 Compute: 384 GFLOPS -inherits: - - TeraScale-1 -name: HD-4650 -humanName: HD 4650 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml deleted file mode 100755 index d1f72778..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4670-AGP.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 XT - Release Date: '2007-07-17' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.60 GB/s - TDP: 59 W - FP32 Compute: 480 GFLOPS -inherits: - - TeraScale-1 -name: HD-4670-AGP -humanName: HD 4670 AGP diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml deleted file mode 100755 index be1a4aea..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4670-X2.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 XT - Release Date: '2008-11-10' - Die Size: 146 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 64 - Render Output Unit Count: 16 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1400 MT/s - VRAM Capacity: 512 MiB (per GPU) - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 22.40 GB/s - TDP: 118 W - FP32 Compute: 960 GFLOPS -inherits: - - TeraScale-1 -name: HD-4670-X2 -humanName: HD 4670 X2 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4670.yaml b/specs/GPUs-CONSUMER/HD4000/HD4670.yaml deleted file mode 100755 index 05a78443..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4670.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 XT - Release Date: '2008-11-10' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.60 GB/s - TDP: 59 W - FP32 Compute: 480 GFLOPS -inherits: - - TeraScale-1 -name: HD-4670 -humanName: HD 4670 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4700.yaml b/specs/GPUs-CONSUMER/HD4000/HD4700.yaml deleted file mode 100755 index a4e83511..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4700.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 XT - Release Date: '2010-02-11' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 600 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 12.80 GB/s - TDP: 50 W - FP32 Compute: 384 GFLOPS -inherits: - - TeraScale-1 -name: HD-4700 -humanName: HD 4700 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4710.yaml b/specs/GPUs-CONSUMER/HD4000/HD4710.yaml deleted file mode 100755 index a16e7930..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4710.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV730 - Codename: RV730 XT - Release Date: '2008-09-10' - Die Size: 146 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.60 GB/s - TDP: 59 W - FP32 Compute: 480 GFLOPS -inherits: - - TeraScale-1 -name: HD-4710 -humanName: HD 4710 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4730.yaml b/specs/GPUs-CONSUMER/HD4000/HD4730.yaml deleted file mode 100755 index ecb0b42f..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4730.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 CE - Release Date: '2008-06-08' - Die Size: 256 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 750 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 57.60 GB/s - TDP: 110 W - FP32 Compute: 960 GFLOPS - FP64 Compute: 192 GFLOPS -inherits: - - TeraScale-1 -name: HD-4730 -humanName: HD 4730 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4750.yaml b/specs/GPUs-CONSUMER/HD4000/HD4750.yaml deleted file mode 100755 index e681abfa..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4750.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV740 - Codename: RV740 PRO - Release Date: '2009-09-09' - Die Size: 137 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 730 MHz - VRAM Frequency: 3200 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 51.20 GB/s - TDP: 100 W - FP32 Compute: 934.4 GFLOPS - FP64 Compute: 186.9 GFLOPS -inherits: - - TeraScale-1-40nm -name: HD-4780 -humanName: HD 4750 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4770.yaml b/specs/GPUs-CONSUMER/HD4000/HD4770.yaml deleted file mode 100755 index 915dfe13..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4770.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV740 - Codename: RV740 - Release Date: '2009-04-28' - Die Size: 137 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 730 MHz - VRAM Frequency: 3200 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 51.20 GB/s - TDP: 80 W - FP32 Compute: 960 GFLOPS - FP64 Compute: 192 GFLOPS -inherits: - - TeraScale-1-40nm -name: HD-4780 -humanName: HD 4780 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4810.yaml b/specs/GPUs-CONSUMER/HD4000/HD4810.yaml deleted file mode 100755 index de223936..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4810.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 CE - Release Date: '2009-05-28' - Die Size: 256 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 8 - GPU Base Frequency: 625 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 57.60 GB/s - TDP: 95 W - FP32 Compute: 800 GFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - TeraScale-1 -name: HD-4810 -humanName: HD 4810 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4830.yaml b/specs/GPUs-CONSUMER/HD4000/HD4830.yaml deleted file mode 100755 index 51124631..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4830.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 LE - Release Date: '2008-10-21' - Die Size: 256 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 575 MHz - VRAM Frequency: 1800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 57.60 GB/s - TDP: 95 W - FP32 Compute: 736 GFLOPS - FP64 Compute: 147.2 GFLOPS -inherits: - - TeraScale-1 -name: HD-4830 -humanName: HD 4830 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml deleted file mode 100755 index 18249218..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4850-X2.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: R700 - Codename: R700 PRO - Release Date: '2008-11-07' - Die Size: 256 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 625 MHz - VRAM Frequency: 1990 MT/s - VRAM Capacity: 512 MiB (per GPU) - VRAM Bus Width: 256 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 63.38 GB/s - TDP: 250 W - FP32 Compute: 2000 GFLOPS - FP64 Compute: 400 GFLOPS -inherits: - - TeraScale-1 -name: HD-4850-X2 -humanName: HD 4850 X2 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4850.yaml b/specs/GPUs-CONSUMER/HD4000/HD4850.yaml deleted file mode 100755 index 695698e9..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4850.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 PRO - Release Date: '2008-06-25' - Die Size: 256 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 625 MHz - VRAM Frequency: 1986 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 63.55 GB/s - TDP: 110 W - FP32 Compute: 1000 GFLOPS - FP64 Compute: 200 GFLOPS -inherits: - - TeraScale-1 -name: HD-4850 -humanName: HD 4850 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4855.yaml b/specs/GPUs-CONSUMER/HD4000/HD4855.yaml deleted file mode 100755 index 6fbd41e7..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4855.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 PRO - Release Date: '2010-01-03' - Die Size: 256 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 575 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 115.2 GB/s - TDP: 110 W - FP32 Compute: 736 GFLOPS - FP64 Compute: 147.2 GFLOPS -inherits: - - TeraScale-1 -name: HD-4855 -humanName: HD 4855 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4860.yaml b/specs/GPUs-CONSUMER/HD4000/HD4860.yaml deleted file mode 100755 index c52c5948..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4860.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV790 - Codename: RV790 GT - Release Date: '2009-09-09' - Die Size: 282 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 750 MHz - VRAM Frequency: 3000 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 96 GB/s - TDP: 130 W - FP32 Compute: 896 GFLOPS - FP64 Compute: 179.2 GFLOPS -inherits: - - TeraScale-1 -name: HD-4860 -humanName: HD 4860 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml b/specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml deleted file mode 100755 index a2879e88..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4870-X2.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: R700 - Codename: R700 XT - Release Date: '2008-08-12' - Die Size: 256 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 700 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 1 GiB (per GPU) - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 115.2 GB/s - TDP: 286 W - FP32 Compute: 2.400 TFLOPS - FP64 Compute: 400 GFLOPS -inherits: - - TeraScale-1 -name: HD-4870-X2 -humanName: HD 4870 X2 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4870.yaml b/specs/GPUs-CONSUMER/HD4000/HD4870.yaml deleted file mode 100755 index afd57fa6..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4870.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV770 - Codename: RV770 PRO - Release Date: '2008-06-25' - Die Size: 256 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 750 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 115.2 GB/s - TDP: 150 W - FP32 Compute: 1.200 TFLOPS - FP64 Compute: 240 GFLOPS -inherits: - - TeraScale-1 -name: HD-4870 -humanName: HD 4870 diff --git a/specs/GPUs-CONSUMER/HD4000/HD4890.yaml b/specs/GPUs-CONSUMER/HD4000/HD4890.yaml deleted file mode 100755 index 8bd7d02e..00000000 --- a/specs/GPUs-CONSUMER/HD4000/HD4890.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: RV790 - Codename: RV790 XT - Release Date: '2009-04-02' - Die Size: 282 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 850 MHz - VRAM Frequency: 3900 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 124.8 GB/s - TDP: 190 W - FP32 Compute: 1.360 TFLOPS - FP64 Compute: 272 GFLOPS -inherits: - - TeraScale-1 -name: HD-4890 -humanName: HD 4890 diff --git a/specs/GPUs-CONSUMER/HD5000.yaml b/specs/GPUs-CONSUMER/HD5000.yaml deleted file mode 100755 index 63024425..00000000 --- a/specs/GPUs-CONSUMER/HD5000.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: HD5000 -humanName: HD 5000 Series -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 40 nm - DirectX Support: '11.0' - Release Date: '2009-09-10' -sections: - - header: ENTHUSIAST - members: - - HD-5970-2GiB - - HD-5970-1GiB - - header: HIGH END - members: - - HD-5870-Eyefinity-6 - - HD-5870-2GiB - - HD-5870-1GiB - - HD-5850-2GiB - - HD-5850-1GiB - - HD-5830 - - header: MID RANGE - members: - - HD-5770-X2 - - HD-5770-1GiB - - HD-5770-512MiB - - HD-5750-1GiB - - HD-5750-512MiB - - HD-5730 - - HD-5690 - - HD-5670-2GiB - - HD-5670-1GiB - - HD-5670-512MiB - - header: ENTRY LEVEL - members: - - HD-5630 - - HD-5610 - - HD-5570-2GiB-DDR3 - - HD-5570 - - HD-5570-512 - - HD-5570-GDDR3 - - HD-5570-Turks - - HD-5550 - - HD-5530 - - HD-5490 - - HD-5470 - - HD-5450-2GiB-DDR3 - - HD-5450-1GiB-DDR3 - - HD-5450-1GiB-DDR2 - - HD-5450-512MiB-DDR3 - - HD-5450-512MiB-DDR2 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml deleted file mode 100755 index 9042ffc0..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR2.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2010-02-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 6.4 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5450-1GiB-DDR2 -humanName: HD 5450 1 GiB (DDR2) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml deleted file mode 100755 index 9bca529d..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5450-1GiB-DDR3.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2010-02-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 900 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 7.2 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No - -inherits: - - TeraScale-2 -name: HD-5450-1GiB-DDR3 -humanName: HD 5450 1GiB (DDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml deleted file mode 100755 index bc5fc9c1..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5450-2GiB-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2010-02-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 6.4 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5450-2GiB-DDR3 -humanName: HD 5450 2GiB (DDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml deleted file mode 100755 index 157975a1..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR2.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2010-02-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 6.4 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5450-512MiB-DDR2 -humanName: HD 5450 512MiB (DDR2) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml deleted file mode 100755 index 26b679e5..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5450-512MiB-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2010-02-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 6.4 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5450-512MiB-DDR3 -humanName: HD 5450 512MiB (DDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5470.yaml b/specs/GPUs-CONSUMER/HD5000/HD5470.yaml deleted file mode 100755 index 1759a93b..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5470.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2012-02' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 6.4 GB/s - TDP: 19 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5470 -humanName: HD 5470 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5490.yaml b/specs/GPUs-CONSUMER/HD5000/HD5490.yaml deleted file mode 100755 index 2b9f5dda..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5490.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2012-10' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 8 GB/s - TDP: 19 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5490 -humanName: HD 5490 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5530.yaml b/specs/GPUs-CONSUMER/HD5000/HD5530.yaml deleted file mode 100755 index a8f84a74..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5530.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar PRO - Release Date: '2011-04' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1200 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 9.6 GB/s - TDP: 19 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5530 -humanName: HD 5530 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5550.yaml b/specs/GPUs-CONSUMER/HD5000/HD5550.yaml deleted file mode 100755 index e77ef9ca..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5550.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO2 - Release Date: '2010-02-09' - Die Size: 104 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 16 - Render Output Unit Count: 8 - GPU Base Frequency: 550 MHz - VRAM Frequency: 3200 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 51.2 GB/s - TDP: 39 W - FP32 Compute: 352 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5550 -humanName: HD 5550 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml deleted file mode 100755 index c8292cbf..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5570-2GiB-GDDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO - Release Date: '2010-02-09' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 39 W - FP32 Compute: 520 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5570-2GiB-GDDR3 -humanName: HD 5570 2GiB (GDDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml deleted file mode 100755 index 5ca33836..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5570-512.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO - Release Date: '2010-02-09' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 57.6 GB/s - TDP: 39 W - FP32 Compute: 520 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5570-512MiB -humanName: HD 5570 512MiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml deleted file mode 100755 index 7cf443b8..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5570-GDDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO - Release Date: '2010-02-09' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 39 W - FP32 Compute: 520 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5570-GDDR3 -humanName: HD 5570 GDDR3 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml deleted file mode 100755 index 39d96c04..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5570-Turks.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks LE - Release Date: '2010-10' - Die Size: 104 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 16 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 16 GB/s - TDP: 39 W - FP32 Compute: 416 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5570-Turks -humanName: HD 5570 Turks diff --git a/specs/GPUs-CONSUMER/HD5000/HD5570.yaml b/specs/GPUs-CONSUMER/HD5000/HD5570.yaml deleted file mode 100755 index f68f2ca5..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5570.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO - Release Date: '2010-02-09' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 57.6 GB/s - TDP: 39 W - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5570 -humanName: HD 5570 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5610.yaml b/specs/GPUs-CONSUMER/HD5000/HD5610.yaml deleted file mode 100755 index 8dca7236..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5610.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood PRO - Release Date: '2011-05-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 16 GB/s - TDP: 39 W - FP32 Compute: 520 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5610 -humanName: HD 5610 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5630.yaml b/specs/GPUs-CONSUMER/HD5000/HD5630.yaml deleted file mode 100755 index c558c042..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5630.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood LE - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 320 - Texture Mapping Unit Count: 16 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 780 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 12.48 GB/s - TDP: 64 W - FP32 Compute: 416 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5630 -humanName: HD 5630 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml deleted file mode 100755 index ee35b91f..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB-GDDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-1GiB-GDDR3 -humanName: HD 5670 1GiB (GDDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml deleted file mode 100755 index 716ccfda..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-1GiB -humanName: HD 5670 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml deleted file mode 100755 index db68126b..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB-GDDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-2GiB-GDDR3 -humanName: HD 5710 2GiB (GDDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml deleted file mode 100755 index 4abcc52d..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-2GiB -humanName: HD 5670 2GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml deleted file mode 100755 index 1b4c5a2b..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB-GDDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-512MiB-GDDR3 -humanName: HD 5670 512MiB (GDDR3) diff --git a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml deleted file mode 100755 index 16eb9c50..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5670-512MiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-01-14' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5670-512MiB -humanName: HD 5670 512MiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5690.yaml b/specs/GPUs-CONSUMER/HD5000/HD5690.yaml deleted file mode 100755 index da972d4d..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5690.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2010-02' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 2000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5690 -humanName: HD 5690 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5730.yaml b/specs/GPUs-CONSUMER/HD5000/HD5730.yaml deleted file mode 100755 index f0b249bc..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5730.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Redwood - Codename: Redwood XT - Release Date: '2011-02' - Die Size: 104 mm - Shader Processor Count: 400 - Texture Mapping Unit Count: 20 - Render Output Unit Count: 8 - GPU Base Frequency: 775 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 64 W - FP32 Compute: 620 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-5730 -humanName: HD 5730 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml deleted file mode 100755 index f0dab316..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5750-1GiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper PRO - Release Date: '2009-10-13' - Die Size: 166 mm - Shader Processor Count: 720 - Texture Mapping Unit Count: 36 - Render Output Unit Count: 16 - GPU Base Frequency: 700 MHz - VRAM Frequency: 4600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 73.6 GB/s - TDP: 86 W - FP32 Compute: 1.008 TFLOPS -inherits: - - TeraScale-2 -name: HD-5750-1GiB -humanName: HD 5750 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml deleted file mode 100755 index 5aee8011..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5750-512MiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper PRO - Release Date: '2009-10-13' - Die Size: 166 mm - Shader Processor Count: 720 - Texture Mapping Unit Count: 36 - Render Output Unit Count: 16 - GPU Base Frequency: 700 MHz - VRAM Frequency: 4600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 73.6 GB/s - TDP: 86 W - FP32 Compute: 1.008 TFLOPS -inherits: - - TeraScale-2 -name: HD-5750-512MiB -humanName: HD 5750 512MiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml deleted file mode 100755 index 72dfc375..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5770-1GiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper XT - Release Date: '2009-10-13' - Die Size: 166 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 76.8 GB/s - TDP: 108 W - FP32 Compute: 1.360 TFLOPS -inherits: - - TeraScale-2 -name: HD-5770-1GiB -humanName: HD 5770 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml deleted file mode 100755 index 03fde7c1..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5770-512MiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper XT - Release Date: '2009-10-13' - Die Size: 166 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 76.8 GB/s - TDP: 108 W - FP32 Compute: 1.360 TFLOPS -inherits: - - TeraScale-2 -name: HD-5770-512MiB -humanName: HD 5770 512MiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml b/specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml deleted file mode 100755 index 1d9b7f13..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5770-X2.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper XT - Release Date: '2010-10-13' - Die Size: 166 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 1 GiB (per GPU) - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 76.8 GB/s - TDP: 180 W - FP32 Compute: 2.720 TFLOPS -inherits: - - TeraScale-2 -name: HD-5770-X2 -humanName: HD 5770 X2 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5830.yaml b/specs/GPUs-CONSUMER/HD5000/HD5830.yaml deleted file mode 100755 index 857a596d..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5830.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress LE - Release Date: '2010-02-25' - Die Size: 334 mm - Shader Processor Count: 1120 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 175 W - FP32 Compute: 1.792 TFLOPS - FP64 Compute: 358 GFLOPS -inherits: - - TeraScale-2 -name: HD-5830 -humanName: HD 5830 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml deleted file mode 100755 index 4b379c93..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5850-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress PRO - Release Date: '2009-11-30' - Die Size: 334 mm - Shader Processor Count: 1440 - Texture Mapping Unit Count: 72 - Render Output Unit Count: 32 - GPU Base Frequency: 725 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 151 W - FP32 Compute: 2.088 TFLOPS - FP64 Compute: 418 GFLOPS -inherits: - - TeraScale-2 -name: HD-5850-1GiB -humanName: HD 5850 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml deleted file mode 100755 index f13c7127..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5850-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress PRO - Release Date: '2009-11-30' - Die Size: 334 mm - Shader Processor Count: 1440 - Texture Mapping Unit Count: 72 - Render Output Unit Count: 32 - GPU Base Frequency: 725 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 151 W - FP32 Compute: 2.088 TFLOPS - FP64 Compute: 418 GFLOPS -inherits: - - TeraScale-2 -name: HD-5850-2GiB -humanName: HD 5850 2GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml deleted file mode 100755 index 0a690bef..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5870-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress XT - Release Date: '2009-11-23' - Die Size: 334 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 188 W - FP32 Compute: 2.720 TFLOPS - FP64 Compute: 544 GFLOPS -inherits: - - TeraScale-2 -name: HD-5870-1GiB -humanName: HD 5870 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml deleted file mode 100755 index 8cd17f78..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5870-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress XT - Release Date: '2009-11-23' - Die Size: 334 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 188 W - FP32 Compute: 2.720 TFLOPS - FP64 Compute: 544 GFLOPS -inherits: - - TeraScale-2 -name: HD-5870-2GiB -humanName: HD 5870 2GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml deleted file mode 100755 index 68e634fa..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5870-Eyefinity-6.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Cypress XT - Release Date: '2010-04-11' - Die Size: 334 mm - Shader Processor Count: 1600 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 228 W - FP32 Compute: 2.720 TFLOPS - FP64 Compute: 544 GFLOPS -inherits: - - TeraScale-2 -name: HD-5870-Eyefinity-6 -humanName: HD 5870 Eyefinity 6 diff --git a/specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml deleted file mode 100755 index 39113324..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5970-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Hemlock XT - Release Date: '2009-11-18' - Die Size: 334 mm - Shader Processor Count: 3200 - Texture Mapping Unit Count: 160 - Render Output Unit Count: 64 - GPU Base Frequency: 725 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB (per GPU) - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 294 W - FP32 Compute: 4.640 TFLOPS - FP64 Compute: 928 GFLOPS -inherits: - - TeraScale-2 -name: HD-5970-1GiB -humanName: HD 5970 1GiB diff --git a/specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml b/specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml deleted file mode 100755 index 92b13770..00000000 --- a/specs/GPUs-CONSUMER/HD5000/HD5970-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cypress - Codename: Hemlock XT - Release Date: '2009-11-18' - Die Size: 334 mm - Shader Processor Count: 3200 - Texture Mapping Unit Count: 160 - Render Output Unit Count: 64 - GPU Base Frequency: 725 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 2 GiB (per GPU) - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 294 W - FP32 Compute: 4.640 TFLOPS - FP64 Compute: 928 GFLOPS -inherits: - - TeraScale-2 -name: HD-5970-2GiB -humanName: HD 5970 2GiB diff --git a/specs/GPUs-CONSUMER/HD6000.yaml b/specs/GPUs-CONSUMER/HD6000.yaml deleted file mode 100755 index da55f24a..00000000 --- a/specs/GPUs-CONSUMER/HD6000.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: HD6000 -humanName: HD 6000 Series -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 40 nm - DirectX Support: '11.0' - Release Date: '2010-10' -sections: - - header: ENTHUSIAST - members: - - HD-6990 - - header: HIGH END - members: - - HD-6970 - - HD-6950-2GiB - - HD-6950-1GiB - - HD-6930-2GiB - - HD-6930-1GiB - - HD-6870-2GiB - - HD-6870-1GiB - - HD-6850 - - header: MID RANGE - members: - - HD-6790 - - HD-6770-512MiB - - header: ENTRY LEVEL - members: - - HD-6670-2GiB - - HD-6670-1GiB - - HD-6670-512MiB-DDR3 - - HD-6570 - - HD-6570-DDR3 - - HD-6450-2GiB - - HD-6450-1GiB - - HD-6450-512MiB-DDR3 - - HD-6350 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6350.yaml b/specs/GPUs-CONSUMER/HD6000/HD6350.yaml deleted file mode 100755 index ffd6166d..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6350.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar - Release Date: '2011-04-07' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 12.8 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6350 -humanName: HD 6350 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml deleted file mode 100755 index 98d2a672..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6450-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2011-04-07' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 14.4 GB/s - TDP: 27 W - FP32 Compute: 200 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6450-1GiB -humanName: HD 6450 (1GiB) diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml deleted file mode 100755 index 53c5f965..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6450-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2011-04-07' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 750 MHz - VRAM Frequency: 1800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 14.4 GB/s - TDP: 27 W - FP32 Compute: 200 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6450-2GiB -humanName: HD 6450 (2GiB) diff --git a/specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml deleted file mode 100755 index b2368843..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6450-512MiB-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2011-04-07' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 625 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 12.8 GB/s - TDP: 27 W - FP32 Compute: 200 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6450-512MiB -humanName: HD 6450 (512MiB) diff --git a/specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml deleted file mode 100755 index f1d71069..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6570-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks PRO - Release Date: '2011-04-19' - Die Size: 118 mm - Shader Processor Count: 480 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 1334 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 21.3 GB/s - TDP: 60 W - FP32 Compute: 624 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6570-DDR3 -humanName: HD 6570 DDR3 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6570.yaml b/specs/GPUs-CONSUMER/HD6000/HD6570.yaml deleted file mode 100755 index 7066ce66..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6570.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks PRO - Release Date: '2011-04-19' - Die Size: 118 mm - Shader Processor Count: 480 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 650 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 60 W - FP32 Compute: 624 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6570 -humanName: HD 6570 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml deleted file mode 100755 index 91227d08..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6670-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks XT - Release Date: '2011-04-19' - Die Size: 118 mm - Shader Processor Count: 480 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 66 W - FP32 Compute: 768 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6670-1GiB -humanName: HD 6670 1GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml deleted file mode 100755 index 2bb27d3e..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6670-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks XT - Release Date: '2011-04-19' - Die Size: 118 mm - Shader Processor Count: 480 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 64 GB/s - TDP: 66 W - FP32 Compute: 768 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6670-2GiB -humanName: HD 6670 2GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml b/specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml deleted file mode 100755 index 3c5f0d0c..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6670-512MiB-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Turks - Codename: Turks XT - Release Date: '2011-04-19' - Die Size: 118 mm - Shader Processor Count: 480 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 800 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 21.3 GB/s - TDP: 66 W - FP32 Compute: 768 GFLOPS - Crossfire Support: No -inherits: - - TeraScale-2 -name: HD-6670-512MiB-DDR3 -humanName: HD 6670 512MiB (DDR3) diff --git a/specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml deleted file mode 100755 index 540bdb8d..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6770-1GiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper XT - Release Date: '2011-04-19' - Die Size: 166 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4200 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 67.2 GB/s - TDP: 108 W - FP32 Compute: 1.360 TFLOPS -inherits: - - TeraScale-2 -name: HD-6770-1GiB -humanName: HD 6770 1GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml deleted file mode 100755 index 4e714ed3..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6770-512MiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Juniper - Codename: Juniper XT - Release Date: '2011-04-19' - Die Size: 166 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 850 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 76.8 GB/s - TDP: 108 W - FP32 Compute: 1.360 TFLOPS -inherits: - - TeraScale-2 -name: HD-6770-512MiB -humanName: HD 6770 512MiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6790.yaml b/specs/GPUs-CONSUMER/HD6000/HD6790.yaml deleted file mode 100755 index 73378571..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6790.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Barts - Codename: Barts LE - Release Date: '2011-04-04' - Die Size: 255 mm - Shader Processor Count: 800 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 840 MHz - VRAM Frequency: 4200 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 134.4 GB/s - TDP: 150 W - FP32 Compute: 1.344 TFLOPS -inherits: - - TeraScale-2 -name: HD-6790 -humanName: HD 6790 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6850.yaml b/specs/GPUs-CONSUMER/HD6000/HD6850.yaml deleted file mode 100755 index e02315de..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6850.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Barts - Codename: Barts Pro - Release Date: '2010-10-22' - Die Size: 255 mm - Shader Processor Count: 960 - Texture Mapping Unit Count: 48 - Render Output Unit Count: 32 - GPU Base Frequency: 775 MHz - VRAM Frequency: 4000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 128 GB/s - TDP: 127 W - FP32 Compute: 1.488 TFLOPS -inherits: - - TeraScale-2 -name: HD-6850 -humanName: HD 6850 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml deleted file mode 100755 index 5288d9f3..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6870-1GiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Barts - Codename: Barts XT - Release Date: '2010-10-22' - Die Size: 255 mm - Shader Processor Count: 1120 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 32 - GPU Base Frequency: 900 MHz - VRAM Frequency: 4200 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 134.4 GB/s - TDP: 151 W - FP32 Compute: 2.016 TFLOPS -inherits: - - TeraScale-2 -name: HD-6870-1GiB -humanName: HD 6870 1GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml deleted file mode 100755 index f2a76259..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6870-2GiB.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Barts - Codename: Barts XT - Release Date: '2010-10-22' - Die Size: 255 mm - Shader Processor Count: 1120 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 32 - GPU Base Frequency: 900 MHz - VRAM Frequency: 4200 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 134.4 GB/s - TDP: 151 W - FP32 Compute: 2.016 TFLOPS -inherits: - - TeraScale-2 -name: HD-6870-2GiB -humanName: HD 6870 2GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml deleted file mode 100755 index 5842ed0e..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6930-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Cayman CE - Release Date: '2011-12' - Die Size: 389 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 750 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 186 W - FP32 Compute: 1.920 TFLOPS - FP64 Compute: 480 GFLOPS -inherits: - - TeraScale-3 -name: HD-6930-1GiB -humanName: HD 6930 1GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml deleted file mode 100755 index e8b2eef2..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6930-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Cayman CE - Release Date: '2011-12' - Die Size: 389 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 750 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 186 W - FP32 Compute: 1.920 TFLOPS - FP64 Compute: 480 GFLOPS -inherits: - - TeraScale-3 -name: HD-6930-2GiB -humanName: HD 6930 2GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml deleted file mode 100755 index d05fbef4..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6950-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Cayman Pro - Release Date: '2010-12-15' - Die Size: 389 mm - Shader Processor Count: 1408 - Texture Mapping Unit Count: 88 - Render Output Unit Count: 32 - GPU Base Frequency: 800 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 160 GB/s - TDP: 200 W - FP32 Compute: 2.253 TFLOPS - FP64 Compute: 563 GFLOPS -inherits: - - TeraScale-3 -name: HD-6950-1GiB -humanName: HD 6950 1GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml b/specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml deleted file mode 100755 index 272f6abc..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6950-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Cayman Pro - Release Date: '2010-12-15' - Die Size: 389 mm - Shader Processor Count: 1408 - Texture Mapping Unit Count: 88 - Render Output Unit Count: 32 - GPU Base Frequency: 800 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 160 GB/s - TDP: 200 W - FP32 Compute: 2.253 TFLOPS - FP64 Compute: 563 GFLOPS -inherits: - - TeraScale-3 -name: HD-6950-2GiB -humanName: HD 6950 2GiB diff --git a/specs/GPUs-CONSUMER/HD6000/HD6970.yaml b/specs/GPUs-CONSUMER/HD6000/HD6970.yaml deleted file mode 100755 index e727afc4..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6970.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Cayman XT - Release Date: '2010-12-15' - Die Size: 389 mm - Shader Processor Count: 1536 - Texture Mapping Unit Count: 96 - Render Output Unit Count: 32 - GPU Base Frequency: 880 MHz - VRAM Frequency: 5500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 176 GB/s - TDP: 250 W - FP32 Compute: 2.703 TFLOPS - FP64 Compute: 673 GFLOPS -inherits: - - TeraScale-3 -name: HD-6970 -humanName: HD 6970 diff --git a/specs/GPUs-CONSUMER/HD6000/HD6990.yaml b/specs/GPUs-CONSUMER/HD6000/HD6990.yaml deleted file mode 100755 index 89a21bb1..00000000 --- a/specs/GPUs-CONSUMER/HD6000/HD6990.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cayman - Codename: Antilles XT - Release Date: '2011-03-08' - Die Size: 389 mm - Shader Processor Count: 3072 - Texture Mapping Unit Count: 192 - Render Output Unit Count: 64 - GPU Base Frequency: 830 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 2 GiB (per GPU) - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 160 GB/s - TDP: 375 W - FP32 Compute: 5.099 TFLOPS - FP64 Compute: 1.277 TFLOPS -inherits: - - TeraScale-3 -name: HD-6990 -humanName: HD 6990 diff --git a/specs/GPUs-CONSUMER/HD7000.yaml b/specs/GPUs-CONSUMER/HD7000.yaml deleted file mode 100755 index 0603449d..00000000 --- a/specs/GPUs-CONSUMER/HD7000.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: HD7000 -humanName: HD 7000 Series -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 28 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2012-01-09' -sections: - - header: ENTHUSIAST - members: - - HD-7990 - - header: HIGH END - members: - - HD-7970GHz-6GiB - - HD-7970GHz-3GiB - - HD-7970-6GiB - - HD-7970-3GiB - - HD-7950Boost - - HD-7950 - - header: MID RANGE - members: - - HD-7870XT - - HD-7870 - - HD-7850-2GiB - - HD-7850-1GiB - - header: ENTRY LEVEL - members: - - HD-7790-2GiB - - HD-7790-1GiB - - HD-7770-2GiB - - HD-7770-1GiB - - HD-7750-4GiB-DDR3 - - HD-7750-2GiB-DDR3 - - HD-7750-2GiB - - HD-7750-1GiB-DDR3 - - HD-7750-1GiB - - HD-7730-2GiB - - HD-7730 - - HD-7730-DDR3 \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml deleted file mode 100755 index 2665c9d9..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7730-DDR3.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde LE - Release Date: '2013-04' - Die Size: 123 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 900 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 47 W - FP32 Compute: 614 GFLOPS - FP64 Compute: 38.4 GFLOPS -inherits: - - GCN 1 -name: HD-7730-DDR3 -humanName: HD 7730 (DDR3) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7730.yaml b/specs/GPUs-CONSUMER/HD7000/HD7730.yaml deleted file mode 100755 index 75cc5752..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7730.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde LE - Release Date: '2013-04' - Die Size: 123 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 900 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 47 W - FP32 Compute: 614 GFLOPS - FP64 Compute: 38.4 GFLOPS -inherits: - - GCN 1 -name: HD-7730 -humanName: HD 7730 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml deleted file mode 100755 index 5b630dd7..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB-DDR3.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde Pro - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 512 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 55 W - FP32 Compute: 819 GFLOPS - FP64 Compute: 51.2 GFLOPS -inherits: - - GCN 1 -name: HD-7750-1GiB-DDR3 -humanName: HD 7750 (1GiB DDR3) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml deleted file mode 100755 index 415c428b..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7750-1GB.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde Pro - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 512 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 55 W - FP32 Compute: 819 GFLOPS - FP64 Compute: 51.2 GFLOPS -inherits: - - GCN 1 -name: HD-7750-1GiB -humanName: HD 7750 (1GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml deleted file mode 100755 index 84800cd3..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB-DDR3.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde Pro - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 512 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 55 W - FP32 Compute: 819 GFLOPS - FP64 Compute: 51.2 GFLOPS -inherits: - - GCN 1 -name: HD-7750-2GiB-DDR3 -humanName: HD 7750 (2GiB DDR3) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml deleted file mode 100755 index a35dd8ae..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7750-2GB.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde Pro - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 512 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 55 W - FP32 Compute: 819 GFLOPS - FP64 Compute: 51.2 GFLOPS -inherits: - - GCN 1 -name: HD-7750-2GiB -humanName: HD 7750 (2GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml b/specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml deleted file mode 100755 index 9d79040e..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7750-4GB-DDR3.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde Pro - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 512 - Texture Mapping Unit Count: 32 - Render Output Unit Count: 16 - GPU Base Frequency: 800 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 25.6 GB/s - TDP: 55 W - FP32 Compute: 819 GFLOPS - FP64 Compute: 51.2 GFLOPS -inherits: - - GCN 1 -name: HD-7750-4GiB-DDR3 -humanName: HD 7750 (4GiB DDR3) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml deleted file mode 100755 index efef83ca..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7770-1GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde XT - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 80 W - FP32 Compute: 1.280 TFLOPS - FP64 Compute: 80 GFLOPS -inherits: - - GCN 1 -name: HD-7770-1GiB -humanName: HD 7770 (1GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml deleted file mode 100755 index 2f3e3069..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7770-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde XT - Release Date: '2012-02-15' - Die Size: 123 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 80 W - FP32 Compute: 1.280 TFLOPS - FP64 Compute: 80 GFLOPS -inherits: - - GCN 1 -name: HD-7770-2GiB -humanName: HD 7770 (2GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml deleted file mode 100755 index 5e588141..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7790-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire XT - Release Date: '2012-03-22' - Die Size: 160 mm - Shader Processor Count: 896 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 96 GB/s - TDP: 85 W - FP32 Compute: 1.792 TFLOPS - FP64 Compute: 128 GFLOPS -inherits: - - GCN 1 -name: HD-7790-1GiB -humanName: HD 7790 (1GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml deleted file mode 100755 index 7e0bf8e5..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7790-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire XT - Release Date: '2012-03-22' - Die Size: 160 mm - Shader Processor Count: 896 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 96 GB/s - TDP: 85 W - FP32 Compute: 1.792 TFLOPS - FP64 Compute: 128 GFLOPS -inherits: - - GCN 1 -name: HD-7790-2GiB -humanName: HD 7790 (2GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml deleted file mode 100755 index 3127f75a..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7850-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn Pro - Release Date: '2012-03-19' - Die Size: 212 mm - Shader Processor Count: 1024 - Texture Mapping Unit Count: 64 - Render Output Unit Count: 32 - GPU Base Frequency: 860 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 130 W - FP32 Compute: 1.761 TFLOPS - FP64 Compute: 110 GFLOPS -inherits: - - GCN 1 -name: HD-7850-1GiB -humanName: HD 7850 (1GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml deleted file mode 100755 index 06a3f126..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7850-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn Pro - Release Date: '2012-03-19' - Die Size: 212 mm - Shader Processor Count: 1024 - Texture Mapping Unit Count: 64 - Render Output Unit Count: 32 - GPU Base Frequency: 860 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 130 W - FP32 Compute: 1.761 TFLOPS - FP64 Compute: 110 GFLOPS -inherits: - - GCN 1 -name: HD-7850-2GiB -humanName: HD 7850 (2GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7870.yaml b/specs/GPUs-CONSUMER/HD7000/HD7870.yaml deleted file mode 100755 index f5f673a8..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7870.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn XT - Release Date: '2012-03-19' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 175 W - FP32 Compute: 2.560 TFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - GCN 1 -name: HD-7870 -humanName: HD 7870 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml b/specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml deleted file mode 100755 index 748575d8..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7870XT.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti LE - Release Date: '2011-11-19' - Die Size: 352 mm - Shader Processor Count: 1536 - Texture Mapping Unit Count: 96 - Render Output Unit Count: 32 - GPU Base Frequency: 925 MHz - GPU Boost Frequency: 975 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 192 GB/s - TDP: 185 W - FP32 Compute: 2.842 TFLOPS - FP64 Compute: 710 GFLOPS -inherits: - - GCN 1 -name: HD-7870XT -humanName: HD 7870XT diff --git a/specs/GPUs-CONSUMER/HD7000/HD7950.yaml b/specs/GPUs-CONSUMER/HD7000/HD7950.yaml deleted file mode 100755 index 13ec3539..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7950.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti Pro - Release Date: '2012-01-31' - Die Size: 352 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 800 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 240 GB/s - TDP: 200 W - FP32 Compute: 2.867 TFLOPS - FP64 Compute: 717 GFLOPS -inherits: - - GCN 1 -name: HD-7950 -humanName: HD 7950 diff --git a/specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml b/specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml deleted file mode 100755 index 25d871a6..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7950Boost.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti Pro2 - Release Date: '2012-08-14' - Die Size: 352 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - GPU Boost Frequency: 925 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 240 GB/s - TDP: 225 W - FP32 Compute: 3.046 TFLOPS - FP64 Compute: 762 GFLOPS -inherits: - - GCN 1 -name: HD-7950Boost -humanName: HD 7950 Boost Edition diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml deleted file mode 100755 index c45b4137..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7970-3GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XT - Release Date: '2012-01-09' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 925 MHz - VRAM Frequency: 5500 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 264 GB/s - TDP: 250 W - FP32 Compute: 3.789 TFLOPS - FP64 Compute: 947 GFLOPS -inherits: - - GCN 1 -name: HD-7970-3GiB -humanName: HD 7970 (3GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml deleted file mode 100755 index 4e3535a4..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7970-6GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XT - Release Date: '2012-01-09' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 925 MHz - VRAM Frequency: 5500 MT/s - VRAM Capacity: 6 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 264 GB/s - TDP: 250 W - FP32 Compute: 3.789 TFLOPS - FP64 Compute: 947 GFLOPS -inherits: - - GCN 1 -name: HD-7970-6GiB -humanName: HD 7970 (6GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml deleted file mode 100755 index cbfb2252..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-3GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XT2 - Release Date: '2012-06-22' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - GPU Boost Frequency: 1050 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 250 W - FP32 Compute: 4.096 TFLOPS - FP64 Compute: 1.024 TFLOPS -inherits: - - GCN 1 -name: HD-7970GHz-3GiB -humanName: HD 7970 GHz Edition (3GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml b/specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml deleted file mode 100755 index 420eef03..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7970GHz-6GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XT2 - Release Date: '2012-06-22' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - GPU Boost Frequency: 1050 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 6 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 250 W - FP32 Compute: 4.096 TFLOPS - FP64 Compute: 1.024 TFLOPS -inherits: - - GCN 1 -name: HD-7970GHz-6GiB -humanName: HD 7970 GHz Edition (6GiB) diff --git a/specs/GPUs-CONSUMER/HD7000/HD7990.yaml b/specs/GPUs-CONSUMER/HD7000/HD7990.yaml deleted file mode 100755 index 758607bd..00000000 --- a/specs/GPUs-CONSUMER/HD7000/HD7990.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: New Zealand - Release Date: '2013-04-24' - Die Size: 352 mm - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 950 MHz - GPU Boost Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 3 GiB (per GPU) - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 375 W - FP32 Compute: 8.200 TFLOPS - FP64 Compute: 1.894 TFLOPS -inherits: - - GCN 1 -name: HD-7990 -humanName: HD 7990 \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/HD8000.yaml b/specs/GPUs-CONSUMER/HD8000.yaml deleted file mode 100755 index a43a5a11..00000000 --- a/specs/GPUs-CONSUMER/HD8000.yaml +++ /dev/null @@ -1,34 +0,0 @@ -name: HD8000 -humanName: HD 8000 Series -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 28 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2013' -sections: - - header: ENTHUSIAST - members: - - HD-8990 - - header: HIGH END - members: - - HD-8970 - - HD-8950 - - HD-8870-GCN1 - - header: MID RANGE - members: - - HD-8770-GCN2 - - HD-8760 - - header: ENTRY LEVEL - members: - - HD-8730 - - HD-8670 - - HD-8570 - - HD-8570-DDR3 - - HD-8490 - - HD-8470 - - HD-8450-DDR3 - - HD-8350-DDR3 - - HD-8350-DDR2 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml b/specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml deleted file mode 100755 index 486f22e3..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR2.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar - Release Date: '2013' - Die Size: 59 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 500 MHz - VRAM Frequency: 800 MT/s - VRAM Capacity: 256 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR2 - VRAM Bandwidth: 6.4 GB/s - TDP: 19.1 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-2 -name: HD-8350-DDR2 -humanName: HD 8350 (DDR2) diff --git a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml deleted file mode 100755 index 86af78d3..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8350-DDR3.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cedar - Codename: Cedar - Release Date: '2013' - Die Size: 67 mm - Shader Processor Count: 80 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 500 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 12.8 GB/s - TDP: 19 W - FP32 Compute: 104 GFLOPS -inherits: - - TeraScale-2 -name: HD-8350-DDR3 -humanName: HD 8350 (DDR3) diff --git a/specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml deleted file mode 100755 index 56b412e1..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8450-DDR3.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2013' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 625 MHz - VRAM Frequency: 1066 MT/s - VRAM Capacity: 512 MiB - VRAM Bus Width: 64 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 8.53 GB/s - TDP: 18 W - FP32 Compute: 200 GFLOPS -inherits: - - TeraScale-2 -name: HD-8450-DDR3 -humanName: HD 8450 (DDR3) diff --git a/specs/GPUs-CONSUMER/HD8000/HD8470.yaml b/specs/GPUs-CONSUMER/HD8000/HD8470.yaml deleted file mode 100755 index 4edbd27c..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8470.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2013' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 750 MHz - VRAM Frequency: 3200 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 25.6 GB/s - TDP: 35 W - FP32 Compute: 240 GFLOPS -inherits: - - TeraScale-2 -name: HD-8470 -humanName: HD 8470 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8490.yaml b/specs/GPUs-CONSUMER/HD8000/HD8490.yaml deleted file mode 100755 index fad5e04f..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8490.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Caicos - Codename: Caicos - Release Date: '2013' - Die Size: 67 mm - Shader Processor Count: 160 - Texture Mapping Unit Count: 8 - Render Output Unit Count: 4 - GPU Base Frequency: 875 MHz - VRAM Frequency: 3600 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 64 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 28.8 GB/s - TDP: 35 W - FP32 Compute: 280 GFLOPS -inherits: - - TeraScale-2 -name: HD-8490 -humanName: HD 8490 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml b/specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml deleted file mode 100755 index c23e6502..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8570-DDR3.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Oland - Codename: Oland - Release Date: '2013' - Die Size: 90 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 730 MHz - VRAM Frequency: 1800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: DDR3 - VRAM Bandwidth: 28.8 GB/s - TDP: 66 W - FP32 Compute: 560 GFLOPS - FP64 Compute: 35 GFLOPS -inherits: - - GCN 1 -name: HD-8570-DDR3 -humanName: HD 8570 (DDR3) diff --git a/specs/GPUs-CONSUMER/HD8000/HD8570.yaml b/specs/GPUs-CONSUMER/HD8000/HD8570.yaml deleted file mode 100755 index 20542a90..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8570.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Oland - Codename: Oland - Release Date: '2013' - Die Size: 90 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 730 MHz - VRAM Frequency: 4600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 66 W - FP32 Compute: 560 GFLOPS - FP64 Compute: 35 GFLOPS -inherits: - - GCN 1 -name: HD-8570 -humanName: HD 8570 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8670.yaml b/specs/GPUs-CONSUMER/HD8000/HD8670.yaml deleted file mode 100755 index f82b5c0c..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8670.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Oland - Codename: Oland - Release Date: '2013' - Die Size: 90 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 86 W - FP32 Compute: 768 GFLOPS - FP64 Compute: 48 GFLOPS -inherits: - - GCN 1 -name: HD-8670 -humanName: HD 8670 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8730.yaml b/specs/GPUs-CONSUMER/HD8000/HD8730.yaml deleted file mode 100755 index e0ac3fdb..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8730.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde LE - Release Date: '2013-11-05' - Die Size: 123 mm - Shader Processor Count: 384 - Texture Mapping Unit Count: 24 - Render Output Unit Count: 8 - GPU Base Frequency: 800 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 47 W - FP32 Compute: 614 GFLOPS - FP64 Compute: 44.8 GFLOPS -inherits: - - GCN 1 -name: HD-8730 -humanName: HD 8730 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8760.yaml b/specs/GPUs-CONSUMER/HD8000/HD8760.yaml deleted file mode 100755 index d28db35d..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8760.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Cape Verde - Codename: Cape Verde XT - Release Date: '2013' - Die Size: 123 mm - Shader Processor Count: 640 - Texture Mapping Unit Count: 40 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 72 GB/s - TDP: 80 W - FP32 Compute: 1.280 TFLOPS - FP64 Compute: 80 GFLOPS -inherits: - - GCN 1 -name: HD-8760 -humanName: HD 8760 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml b/specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml deleted file mode 100755 index 7c783aa0..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8770-GCN2.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire XT - Release Date: '2013' - Die Size: 160 mm - Shader Processor Count: 896 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 96 GB/s - TDP: 85 W - FP32 Compute: 1.792 TFLOPS - FP64 Compute: 128 GFLOPS -inherits: - - GCN 2 -name: HD-8770 -humanName: HD 8770 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml b/specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml deleted file mode 100755 index e0973650..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8870-GCN1.yaml +++ /dev/null @@ -1,24 +0,0 @@ - -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn XT - Release Date: '2013' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 4800 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 153.6 GB/s - TDP: 150 W - FP32 Compute: 2.560 TFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - GCN 1 -name: HD-8870 -humanName: HD 8870 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8950.yaml b/specs/GPUs-CONSUMER/HD8000/HD8950.yaml deleted file mode 100755 index 2b231c57..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8950.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti PRO - Release Date: '2013' - Die Size: 352 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - GPU Boost Frequency: 925 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 240 GB/s - TDP: 225 W - FP32 Compute: 3.046 TFLOPS - FP64 Compute: 762 GFLOPS -inherits: - - GCN 1 -name: HD-8950 -humanName: HD 8950 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8970.yaml b/specs/GPUs-CONSUMER/HD8000/HD8970.yaml deleted file mode 100755 index 1efcb93e..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8970.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XT2 - Release Date: '2013' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - GPU Boost Frequency: 1050 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 225 W - FP32 Compute: 4.096 TFLOPS - FP64 Compute: 1.024 TFLOPS -inherits: - - GCN 1 -name: HD-8970 -humanName: HD 8970 diff --git a/specs/GPUs-CONSUMER/HD8000/HD8990.yaml b/specs/GPUs-CONSUMER/HD8000/HD8990.yaml deleted file mode 100755 index 309a0890..00000000 --- a/specs/GPUs-CONSUMER/HD8000/HD8990.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Malta - Release Date: '2013' - Die Size: 352 mm - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 950 MHz - GPU Boost Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 3 GiB (per GPU) - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 375 W - FP32 Compute: 7.782 TFLOPS - FP64 Compute: 1.946 TFLOPS -inherits: - - GCN 1 -name: HD-8990 -humanName: HD 8990 diff --git a/specs/GPUs-CONSUMER/Hopper.yaml b/specs/GPUs-CONSUMER/Hopper.yaml new file mode 100644 index 00000000..879fb7db --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper.yaml @@ -0,0 +1,21 @@ +name: Hopper +humanName: Hopper +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2023-03-21' +sections: + - header: WHOLE RANGE + members: + - H100-CNX + - H100-PCIe-80-GB + - H100-PCIe-96-GB + - H100-SXM5-64-GB + - H100-SXM5-80-GB + - H100-SXM5-96-GB + - H800-PCIe-80-GB + - H800-SXM5 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml b/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml new file mode 100644 index 00000000..e75f218f --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml @@ -0,0 +1,33 @@ +name: H100-CNX +humanName: H100 CNX +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '456' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 690 MHz + GPU Boost Frequency: 1845 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 456 + Shader Processor Count: 14592 + Die Size: 814 mm² + GPU: GH100 + TDP: 350 W + FP32 Compute: 53.84 TFLOPS + FP64 Compute: 26.92 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm + Tensor Cores: 456 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml new file mode 100644 index 00000000..15115868 --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml @@ -0,0 +1,33 @@ +name: H100-PCIe-80-GB +humanName: H100 PCIe 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '456' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1095 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 456 + Shader Processor Count: 14592 + Die Size: 814 mm² + GPU: GH100 + TDP: 350 W + FP32 Compute: 51.22 TFLOPS + FP64 Compute: 25.61 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 268 mm + Width: 111 mm + Tensor Cores: 456 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml new file mode 100644 index 00000000..f5dfa599 --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml @@ -0,0 +1,33 @@ +name: H100-PCIe-96-GB +humanName: H100 PCIe 96 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '528' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1665 MHz + GPU Boost Frequency: 1837 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,681 GB/s + VRAM Capacity: 96 GB + VRAM Type: HBM3 + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 528 + Shader Processor Count: 16896 + Die Size: 814 mm² + GPU: GH100 + TDP: 700 W + FP32 Compute: 62.08 TFLOPS + FP64 Compute: 31.04 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 268 mm + Width: 111 mm + Tensor Cores: 528 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml new file mode 100644 index 00000000..fedaefd9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml @@ -0,0 +1,31 @@ +name: H100-SXM5-64-GB +humanName: H100 SXM5 64 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '528' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1665 MHz + GPU Boost Frequency: 1980 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,008 GB/s + VRAM Capacity: 64 GB + VRAM Type: HBM3 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 528 + Shader Processor Count: 16896 + Die Size: 814 mm² + GPU: GH100 + TDP: 700 W + FP32 Compute: 66.91 TFLOPS + FP64 Compute: 33.45 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: 8-pin EPS + Tensor Cores: 528 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml new file mode 100644 index 00000000..a43330c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml @@ -0,0 +1,31 @@ +name: H100-SXM5-80-GB +humanName: H100 SXM5 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '528' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1590 MHz + GPU Boost Frequency: 1980 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,681 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM3 + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 528 + Shader Processor Count: 16896 + Die Size: 814 mm² + GPU: GH100 + TDP: 700 W + FP32 Compute: 66.91 TFLOPS + FP64 Compute: 33.45 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 528 diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml new file mode 100644 index 00000000..8ac9ea0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml @@ -0,0 +1,31 @@ +name: H100-SXM5-96-GB +humanName: H100 SXM5 96 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '528' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1665 MHz + GPU Boost Frequency: 1837 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,681 GB/s + VRAM Capacity: 96 GB + VRAM Type: HBM3 + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 528 + Shader Processor Count: 16896 + Die Size: 814 mm² + GPU: GH100 + TDP: 700 W + FP32 Compute: 62.08 TFLOPS + FP64 Compute: 31.04 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: 8-pin EPS + Tensor Cores: 528 diff --git a/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml new file mode 100644 index 00000000..7df2da50 --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml @@ -0,0 +1,33 @@ +name: H800-PCIe-80-GB +humanName: H800 PCIe 80 GB +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '456' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1095 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 1593 MHz + VRAM Bandwidth: 2,039 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM2e + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 456 + Shader Processor Count: 14592 + Die Size: 814 mm² + GPU: GH100 + TDP: 350 W + FP32 Compute: 51.22 TFLOPS + FP64 Compute: 25.61 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 16-pin + Length: 268 mm + Width: 111 mm + Tensor Cores: 456 diff --git a/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml b/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml new file mode 100644 index 00000000..e77fcd7a --- /dev/null +++ b/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml @@ -0,0 +1,31 @@ +name: H800-SXM5 +humanName: H800 SXM5 +isPart: true +type: Graphics Card +data: + Architecture: Hopper + Lithography: 4 nm + HLSL Shader Model: '528' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '3.0' + Release Date: '2023-03-21' + GPU Base Frequency: 1095 MHz + GPU Boost Frequency: 1755 MHz + VRAM Frequency: 1313 MHz + VRAM Bandwidth: 1,681 GB/s + VRAM Capacity: 80 GB + VRAM Type: HBM3 + VRAM Bus Width: 5120 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 528 + Shader Processor Count: 16896 + Die Size: 814 mm² + GPU: GH100 + TDP: 700 W + FP32 Compute: 59.30 TFLOPS + FP64 Compute: 29.65 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: 8-pin EPS + Tensor Cores: 528 diff --git a/specs/GPUs-CONSUMER/IBM.yaml b/specs/GPUs-CONSUMER/IBM.yaml new file mode 100644 index 00000000..68b9c71e --- /dev/null +++ b/specs/GPUs-CONSUMER/IBM.yaml @@ -0,0 +1,17 @@ +name: IBM +humanName: IBM +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + Release Date: '1999-03-01' +sections: + - header: WHOLE RANGE + members: + - Fire-GL2 + - Fire-GL3 + - Fire-GL4 + - Fire-GL1 diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml new file mode 100644 index 00000000..a05e551b --- /dev/null +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml @@ -0,0 +1,25 @@ +name: Fire-GL1 +humanName: Fire GL1 +isPart: true +type: Graphics Card +data: + Architecture: IBM + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-03-01' + VRAM Frequency: 100 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: IBM + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml new file mode 100644 index 00000000..8d717b14 --- /dev/null +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml @@ -0,0 +1,27 @@ +name: Fire-GL2 +humanName: Fire GL2 +isPart: true +type: Graphics Card +data: + Architecture: IBM + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 120 MHz + VRAM Bandwidth: 7.680 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: GT1000 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml new file mode 100644 index 00000000..4bfb0aa7 --- /dev/null +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml @@ -0,0 +1,27 @@ +name: Fire-GL3 +humanName: Fire GL3 +isPart: true +type: Graphics Card +data: + Architecture: IBM + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 125 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: GT1000 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml new file mode 100644 index 00000000..21b05b80 --- /dev/null +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml @@ -0,0 +1,27 @@ +name: Fire-GL4 +humanName: Fire GL4 +isPart: true +type: Graphics Card +data: + Architecture: IBM + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '2001-03-14' + VRAM Frequency: 150 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: GT1000 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin.yaml b/specs/GPUs-CONSUMER/Kelvin.yaml new file mode 100644 index 00000000..fb340c0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin.yaml @@ -0,0 +1,29 @@ +name: Kelvin +humanName: Kelvin +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: '2001-02-27' +sections: + - header: WHOLE RANGE + members: + - GeForce3 + - GeForce3-Ti200 + - GeForce3-Ti500 + - GeForce4-Go-4200 + - GeForce4-Ti-4200 + - GeForce4-Ti-4200-8X + - GeForce4-Ti-4400 + - GeForce4-Ti-4600 + - GeForce4-Ti-4800 + - Quadro4-700-Go-GL + - Quadro4-700-XGL + - Quadro4-750-XGL + - Quadro4-900-XGL + - Quadro4-980-XGL + - Quadro-DCC + - Xbox-GPU diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml new file mode 100644 index 00000000..dc0b1731 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml @@ -0,0 +1,29 @@ +name: GeForce3-Ti200 +humanName: GeForce3 Ti200 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-10-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 128 mm² + GPU: NV20 + GPU Variant: NV20 Ti200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml new file mode 100644 index 00000000..36a364bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml @@ -0,0 +1,29 @@ +name: GeForce3-Ti500 +humanName: GeForce3 Ti500 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-10-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 128 mm² + GPU: NV20 + GPU Variant: NV20 Ti500 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 183 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml new file mode 100644 index 00000000..113e3591 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml @@ -0,0 +1,27 @@ +name: GeForce3 +humanName: GeForce3 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-02-27' + VRAM Frequency: 230 MHz + VRAM Bandwidth: 7.360 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 128 mm² + GPU: NV20 + GPU Variant: NV20 A5 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x DB13W3 + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml new file mode 100644 index 00000000..d3a60b72 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml @@ -0,0 +1,25 @@ +name: GeForce4-Go-4200 +humanName: GeForce4 Go 4200 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-11-14' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV28 + GPU Variant: 4200 Go + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml new file mode 100644 index 00000000..b84eb176 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml @@ -0,0 +1,28 @@ +name: GeForce4-Ti-4200-8X +humanName: GeForce4 Ti 4200-8X +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV28 + GPU Variant: Ti 4200-8X + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml new file mode 100644 index 00000000..b73ece1e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml @@ -0,0 +1,26 @@ +name: GeForce4-Ti-4200 +humanName: GeForce4 Ti 4200 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + GPU Variant: Ti 4200 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml new file mode 100644 index 00000000..6594c439 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml @@ -0,0 +1,28 @@ +name: GeForce4-Ti-4400 +humanName: GeForce4 Ti 4400 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 216 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml new file mode 100644 index 00000000..d7a97857 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml @@ -0,0 +1,29 @@ +name: GeForce4-Ti-4600 +humanName: GeForce4 Ti 4600 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-06' + VRAM Frequency: 324 MHz + VRAM Bandwidth: 10.37 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + GPU Variant: Ti 4600 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 216 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml new file mode 100644 index 00000000..67b90afc --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml @@ -0,0 +1,29 @@ +name: GeForce4-Ti-4800 +humanName: GeForce4 Ti 4800 +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-03-15' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV28 + GPU Variant: Ti 4800 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 216 mm diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml new file mode 100644 index 00000000..4f368782 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml @@ -0,0 +1,28 @@ +name: Quadro-DCC +humanName: Quadro DCC +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2001-05-14' + VRAM Frequency: 230 MHz + VRAM Bandwidth: 3.680 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 128 mm² + GPU: NV20 + GPU Variant: NV20GL A5 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml new file mode 100644 index 00000000..7e1f46a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml @@ -0,0 +1,25 @@ +name: Quadro4-700-Go-GL +humanName: Quadro4 700 Go GL +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-06-05' + VRAM Frequency: 223 MHz + VRAM Bandwidth: 7.136 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 142 mm² + GPU: NV28 + GPU Variant: Go GL 700 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml new file mode 100644 index 00000000..200df6e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml @@ -0,0 +1,28 @@ +name: Quadro4-700-XGL +humanName: Quadro4 700 XGL +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-19' + VRAM Frequency: 225 MHz + VRAM Bandwidth: 7.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + GPU Variant: NV25 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml new file mode 100644 index 00000000..3c9cda25 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml @@ -0,0 +1,28 @@ +name: Quadro4-750-XGL +humanName: Quadro4 750 XGL +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-19' + VRAM Frequency: 225 MHz + VRAM Bandwidth: 7.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + GPU Variant: NV25 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml new file mode 100644 index 00000000..4340254a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml @@ -0,0 +1,28 @@ +name: Quadro4-900-XGL +humanName: Quadro4 900 XGL +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-02-19' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV25 + GPU Variant: NV25 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml new file mode 100644 index 00000000..168ac9b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml @@ -0,0 +1,28 @@ +name: Quadro4-980-XGL +humanName: Quadro4 980 XGL +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2002-11-12' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV28 + GPU Variant: NV28GL A2 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml new file mode 100644 index 00000000..bb9a6cc1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml @@ -0,0 +1,27 @@ +name: Xbox-GPU +humanName: Xbox GPU +isPart: true +type: Graphics Card +data: + Architecture: Kelvin + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2001-11-15' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 142 mm² + GPU: NV2A + GPU Variant: XGPU + TDP: unknown + Outputs: No outputs + Length: 320 mm + Width: 100 mm + Height: 260 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0.yaml b/specs/GPUs-CONSUMER/Kepler-2.0.yaml new file mode 100644 index 00000000..1f2b8966 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0.yaml @@ -0,0 +1,34 @@ +name: Kepler-2.0 +humanName: Kepler 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + Release Date: '2013-04-01' +sections: + - header: WHOLE RANGE + members: + - GeForce-710A + - GeForce-805A + - GeForce-810A + - GeForce-825M + - GeForce-910M + - GeForce-920A + - GeForce-920M + - GeForce-GT-630-Rev.-2 + - GeForce-GT-630-Rev.-2-PCIe-x8 + - GeForce-GT-635-OEM + - GeForce-GT-640-Rev.-2 + - GeForce-GT-710 + - GeForce-GT-710-OEM + - GeForce-GT-710-PCIe-x1 + - GeForce-GT-720 + - GeForce-GT-730A + - GeForce-GT-735M + - Jetson-TK1 + - Quadro-K510M + - Quadro-K610M + - Tesla-K80 diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml new file mode 100644 index 00000000..b9a1dfca --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml @@ -0,0 +1,28 @@ +name: GeForce-710A +humanName: GeForce 710A +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-17' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + TDP: 15 W + FP32 Compute: 291.1 GFLOPS + FP64 Compute: 12.13 GFLOPS (1:24) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml new file mode 100644 index 00000000..1568fef1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml @@ -0,0 +1,30 @@ +name: GeForce-805A +humanName: GeForce 805A +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + TDP: 15 W + FP32 Compute: 291.1 GFLOPS + FP64 Compute: 12.13 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml new file mode 100644 index 00000000..95cd0ae8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml @@ -0,0 +1,30 @@ +name: GeForce-810A +humanName: GeForce 810A +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + TDP: 15 W + FP32 Compute: 291.1 GFLOPS + FP64 Compute: 12.13 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml new file mode 100644 index 00000000..b8c74fe1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml @@ -0,0 +1,30 @@ +name: GeForce-825M +humanName: GeForce 825M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-01-27' + GPU Base Frequency: 850 MHz + GPU Boost Frequency: 941 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + TDP: 33 W + FP32 Compute: 722.7 GFLOPS + FP64 Compute: 30.11 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml new file mode 100644 index 00000000..df1ff697 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml @@ -0,0 +1,31 @@ +name: GeForce-910M +humanName: GeForce 910M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 641 MHz + GPU Boost Frequency: 641 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208B + GPU Variant: N16V-GL + TDP: 33 W + FP32 Compute: 492.3 GFLOPS + FP64 Compute: 20.51 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml new file mode 100644 index 00000000..dd592262 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml @@ -0,0 +1,31 @@ +name: GeForce-920A +humanName: GeForce 920A +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 954 MHz + GPU Boost Frequency: 954 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208B + GPU Variant: N16V-GM + TDP: 33 W + FP32 Compute: 732.7 GFLOPS + FP64 Compute: 30.53 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml new file mode 100644 index 00000000..61b43aa1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml @@ -0,0 +1,31 @@ +name: GeForce-920M +humanName: GeForce 920M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 954 MHz + GPU Boost Frequency: 954 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208B + GPU Variant: N16V-GM-B1 + TDP: 33 W + FP32 Compute: 732.7 GFLOPS + FP64 Compute: 30.53 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml new file mode 100644 index 00000000..571be512 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-630-Rev.-2-PCIe-x8 +humanName: GeForce GT 630 Rev. 2 PCIe x8 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-29' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: GK208-301-A1 + TDP: 25 W + FP32 Compute: 692.7 GFLOPS + FP64 Compute: 28.86 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 115 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml new file mode 100644 index 00000000..97253d09 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-630-Rev.-2 +humanName: GeForce GT 630 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-29' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: GK208-301-A1 + TDP: 25 W + FP32 Compute: 692.7 GFLOPS + FP64 Compute: 28.86 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml new file mode 100644 index 00000000..22ce0a14 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-635-OEM +humanName: GeForce GT 635 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-10-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + TDP: 35 W + FP32 Compute: 742.7 GFLOPS + FP64 Compute: 30.94 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml new file mode 100644 index 00000000..868a5036 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-640-Rev.-2 +humanName: GeForce GT 640 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-29' + VRAM Frequency: 1252 MHz + VRAM Bandwidth: 40.06 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: GK208-400-A1 + TDP: 49 W + FP32 Compute: 803.3 GFLOPS + FP64 Compute: 33.47 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml new file mode 100644 index 00000000..be54d150 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-710-OEM +humanName: GeForce GT 710 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-04-09' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208B + TDP: unknown + FP32 Compute: 306.0 GFLOPS + FP64 Compute: 12.75 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml new file mode 100644 index 00000000..8529b751 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml @@ -0,0 +1,33 @@ +name: GeForce-GT-710-PCIe-x1 +humanName: GeForce GT 710 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-27' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208B + GPU Variant: GK208-203-B1 + TDP: 19 W + FP32 Compute: 366.3 GFLOPS + FP64 Compute: 15.26 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 146 mm + Width: 112 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml new file mode 100644 index 00000000..75e15b4c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-710 +humanName: GeForce GT 710 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-27' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + TDP: 19 W + FP32 Compute: 366.3 GFLOPS + FP64 Compute: 15.26 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml new file mode 100644 index 00000000..1fe3b778 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-720 +humanName: GeForce GT 720 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-27' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: GK208-320-A1 + TDP: 19 W + FP32 Compute: 742.7 GFLOPS + FP64 Compute: 30.94 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml new file mode 100644 index 00000000..8f337142 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-730A +humanName: GeForce GT 730A +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-01' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: GT 730M + TDP: 33 W + FP32 Compute: 582.1 GFLOPS + FP64 Compute: 24.26 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml new file mode 100644 index 00000000..094d4b0e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-735M +humanName: GeForce GT 735M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-01' + GPU Base Frequency: 575 MHz + GPU Boost Frequency: 628 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: N14M-LP + TDP: 33 W + FP32 Compute: 482.3 GFLOPS + FP64 Compute: 20.10 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml new file mode 100644 index 00000000..2818b8a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml @@ -0,0 +1,32 @@ +name: Jetson-TK1 +humanName: Jetson TK1 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: 'ES 3.1' + OpenCL Support: 'N/A' + Release Date: '2014-10-15' + GPU Base Frequency: 756 MHz + GPU Boost Frequency: 951 MHz + VRAM Frequency: 467 MHz + VRAM Bandwidth: 7.472 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3L + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 192 + Die Size: unknown + GPU: GK20A + GPU Variant: CD575M-A1 + TDP: 8 W + FP32 Compute: 365.2 GFLOPS + FP64 Compute: 11.41 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 127 mm + Width: 127 mm diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml new file mode 100644 index 00000000..c7930d38 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml @@ -0,0 +1,30 @@ +name: Quadro-K510M +humanName: Quadro K510M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 889 MHz + GPU Boost Frequency: 889 MHz + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + TDP: 30 W + FP32 Compute: 341.4 GFLOPS + FP64 Compute: 14.22 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml new file mode 100644 index 00000000..2ea54109 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K610M +humanName: Quadro K610M +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 954 MHz + GPU Boost Frequency: 954 MHz + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 87 mm² + GPU: GK208 + GPU Variant: N15M-Q2-B-A1 + TDP: 30 W + FP32 Compute: 366.3 GFLOPS + FP64 Compute: 15.26 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml new file mode 100644 index 00000000..3c4af078 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml @@ -0,0 +1,32 @@ +name: Tesla-K80 +humanName: Tesla K80 +isPart: true +type: Graphics Card +data: + Architecture: Kepler 2.0 + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-11-17' + GPU Base Frequency: 562 MHz + GPU Boost Frequency: 824 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 240.6 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 208 + Shader Processor Count: 2496 + Die Size: 561 mm² + GPU: GK210 + GPU Variant: GK210-885-A1 + TDP: 300 W + FP32 Compute: 4.113 TFLOPS + FP64 Compute: 1,371 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler.yaml b/specs/GPUs-CONSUMER/Kepler.yaml new file mode 100644 index 00000000..5f856090 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler.yaml @@ -0,0 +1,138 @@ +name: Kepler +humanName: Kepler +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + Release Date: '2012-03-22' +sections: + - header: WHOLE RANGE + members: + - GeForce-810M + - GeForce-GT-630-OEM + - GeForce-GT-640-OEM + - GeForce-GT-640M + - GeForce-GT-645M + - GeForce-GT-650M + - GeForce-GT-650M-Mac-Edition + - GeForce-GT-730M + - GeForce-GT-740 + - GeForce-GT-740-OEM + - GeForce-GT-740M + - GeForce-GT-745M + - GeForce-GT-750M-Mac-Edition + - GeForce-GT-755M + - GeForce-GT-755M-Mac-Edition + - GeForce-GT-1030-GK107 + - GeForce-GT-640M-Mac-Edition + - GeForce-GT-730-OEM + - GeForce-GT-745A + - GeForce-GT-750M + - GeForce-GTX-645-OEM + - GeForce-GTX-650 + - GeForce-GTX-650-Ti-Boost + - GeForce-GTX-650-Ti-OEM + - GeForce-GTX-660 + - GeForce-GTX-660-OEM + - GeForce-GTX-660-Ti + - GeForce-GTX-660M + - GeForce-GTX-660M-Mac-Edition + - GeForce-GTX-670 + - GeForce-GTX-670MX + - GeForce-GTX-675MX + - GeForce-GTX-675MX-Mac-Edition + - GeForce-GTX-680 + - GeForce-GTX-680-Mac-Edition + - GeForce-GTX-680M + - GeForce-GTX-680MX-Mac-Edition + - GeForce-GTX-690 + - GeForce-GTX-750-Ti-OEM + - GeForce-GTX-760 + - GeForce-GTX-760-OEM + - GeForce-GTX-760-Ti-OEM + - GeForce-GTX-760-Ti-OEM-Rebrand + - GeForce-GTX-760-X2 + - GeForce-GTX-760A + - GeForce-GTX-760M + - GeForce-GTX-765M + - GeForce-GTX-770 + - GeForce-GTX-770M + - GeForce-GTX-775M-Mac-Edition + - GeForce-GTX-780 + - GeForce-GTX-780-6-GB + - GeForce-GTX-780-Rev.-2 + - GeForce-GTX-780-Ti + - GeForce-GTX-780-Ti-6-GB + - GeForce-GTX-780M + - GeForce-GTX-780M-Mac-Edition + - GeForce-GTX-870M + - GeForce-GTX-880M + - GeForce-GT-720-OEM + - GeForce-GTX-760-OEM-Rebrand + - GeForce-GTX-TITAN + - GeForce-GTX-TITAN-BLACK + - GeForce-GTX-TITAN-Z + - GRID-K1 + - GRID-K2 + - GRID-K100 + - GRID-K120Q + - GRID-K140Q + - GRID-K160Q + - GRID-K180Q + - GRID-K200 + - GRID-K220Q + - GRID-K240Q + - GRID-K260Q + - GRID-K280Q + - GRID-K340 + - GRID-K500 + - GRID-K520 + - GRID-K520Q + - GRID-K540Q + - GRID-K560Q + - NVS-510 + - NVS-1000 + - Quadro-410 + - Quadro-4100 + - Quadro-K100M + - Quadro-K200M + - Quadro-K420 + - Quadro-K500M + - Quadro-K600 + - Quadro-K1000M + - Quadro-K1100M + - Quadro-K2000 + - Quadro-K2000D + - Quadro-K2000M + - Quadro-K2000M-Embedded + - Quadro-K2100M + - Quadro-K3000M + - Quadro-K3100M + - Quadro-K4000 + - Quadro-K4000M + - Quadro-K4100M + - Quadro-K4200 + - Quadro-K5000 + - Quadro-K5000-Mac-Edition + - Quadro-K5000-SYNC + - Quadro-K5000M + - Quadro-K5100M + - Quadro-K5200 + - Quadro-K6000 + - Quadro-K6000-SDI + - Tesla-K8 + - Tesla-K10 + - Tesla-K20c + - Tesla-K20m + - Tesla-K20s + - Tesla-K20X + - Tesla-K20Xm + - Tesla-K40c + - Tesla-K40d + - Tesla-K40m + - Tesla-K40s + - Tesla-K40st + - Tesla-K40t diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml new file mode 100644 index 00000000..a3ac6ac8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml @@ -0,0 +1,30 @@ +name: GRID-K1 +humanName: GRID K1 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-18' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-450-A2 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml new file mode 100644 index 00000000..2daae38f --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml @@ -0,0 +1,27 @@ +name: GRID-K100 +humanName: GRID K100 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml new file mode 100644 index 00000000..c2c3120b --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K120Q +humanName: GRID K120Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml new file mode 100644 index 00000000..1fd9be8c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K140Q +humanName: GRID K140Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml new file mode 100644 index 00000000..4c42331d --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K160Q +humanName: GRID K160Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml new file mode 100644 index 00000000..1547eaba --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K180Q +humanName: GRID K180Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 130 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml new file mode 100644 index 00000000..5c4dbbca --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml @@ -0,0 +1,30 @@ +name: GRID-K2 +humanName: GRID K2 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-11' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-895-A2 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml new file mode 100644 index 00000000..cc23f219 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml @@ -0,0 +1,27 @@ +name: GRID-K200 +humanName: GRID K200 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml new file mode 100644 index 00000000..b521f915 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K220Q +humanName: GRID K220Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml new file mode 100644 index 00000000..46ad61f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K240Q +humanName: GRID K240Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml new file mode 100644 index 00000000..16f52d8a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K260Q +humanName: GRID K260Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml new file mode 100644 index 00000000..78bf7b6f --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml @@ -0,0 +1,27 @@ +name: GRID-K280Q +humanName: GRID K280Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-28' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: IGP + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml new file mode 100644 index 00000000..1496a2ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml @@ -0,0 +1,29 @@ +name: GRID-K340 +humanName: GRID K340 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 225 W + FP32 Compute: 732.7 GFLOPS + FP64 Compute: 30.53 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml new file mode 100644 index 00000000..faa44c42 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml @@ -0,0 +1,28 @@ +name: GRID-K500 +humanName: GRID K500 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml new file mode 100644 index 00000000..248acd49 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml @@ -0,0 +1,29 @@ +name: GRID-K520 +humanName: GRID K520 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml new file mode 100644 index 00000000..fa252bd0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml @@ -0,0 +1,28 @@ +name: GRID-K520Q +humanName: GRID K520Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml new file mode 100644 index 00000000..ea5b1434 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml @@ -0,0 +1,28 @@ +name: GRID-K540Q +humanName: GRID K540Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml new file mode 100644 index 00000000..080017c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml @@ -0,0 +1,28 @@ +name: GRID-K560Q +humanName: GRID K560Q +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-02' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml new file mode 100644 index 00000000..7533e8e2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml @@ -0,0 +1,30 @@ +name: GeForce-810M +humanName: GeForce 810M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-21' + GPU Base Frequency: 835 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 45 W + FP32 Compute: 729.6 GFLOPS + FP64 Compute: 30.40 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml new file mode 100644 index 00000000..bd1eeff7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-1030-GK107 +humanName: GeForce GT 1030 GK107 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-09-30' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 65 W + FP32 Compute: 812.5 GFLOPS + FP64 Compute: 33.86 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: 1x 6-pin + Length: 147 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml new file mode 100644 index 00000000..e5a7a1e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-630-OEM +humanName: GeForce GT 630 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-04-24' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 50 W + FP32 Compute: 336.0 GFLOPS + FP64 Compute: 14.00 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml new file mode 100644 index 00000000..2906b1b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-640-OEM +humanName: GeForce GT 640 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-04-24' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-320-A2 + TDP: 50 W + FP32 Compute: 612.1 GFLOPS + FP64 Compute: 25.50 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml new file mode 100644 index 00000000..32c1cd3d --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-640M-Mac-Edition +humanName: GeForce GT 640M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-02-03' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 745 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 40.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13P-GS + TDP: 32 W + FP32 Compute: 572.2 GFLOPS + FP64 Compute: 23.84 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml new file mode 100644 index 00000000..026c4610 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-640M +humanName: GeForce GT 640M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-03-22' + GPU Base Frequency: 624 MHz + GPU Boost Frequency: 709 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13P-GS + TDP: 32 W + FP32 Compute: 544.5 GFLOPS + FP64 Compute: 22.69 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml new file mode 100644 index 00000000..00ed9c7c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-645M +humanName: GeForce GT 645M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-10-01' + GPU Base Frequency: 709 MHz + GPU Boost Frequency: 780 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13P-GS + TDP: 32 W + FP32 Compute: 599.0 GFLOPS + FP64 Compute: 24.96 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml new file mode 100644 index 00000000..290a1e36 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-650M-Mac-Edition +humanName: GeForce GT 650M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-07-12' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 900 MHz + VRAM Frequency: 1254 MHz + VRAM Bandwidth: 80.26 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13P-GT-W-A2 + TDP: 45 W + FP32 Compute: 691.2 GFLOPS + FP64 Compute: 28.80 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml new file mode 100644 index 00000000..2e82d301 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-650M +humanName: GeForce GT 650M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-03-22' + GPU Base Frequency: 835 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13P-GT-A2 + TDP: 45 W + FP32 Compute: 729.6 GFLOPS + FP64 Compute: 30.40 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml new file mode 100644 index 00000000..080415c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-720-OEM +humanName: GeForce GT 720 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-10-29' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 50 W + FP32 Compute: 381.3 GFLOPS + FP64 Compute: 15.89 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml new file mode 100644 index 00000000..f84ba785 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-730-OEM +humanName: GeForce GT 730 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-04-09' + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 64 W + FP32 Compute: 692.7 GFLOPS + FP64 Compute: 28.86 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: 1x 6-pin + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml new file mode 100644 index 00000000..bbb9bb1c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-730M +humanName: GeForce GT 730M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-01-20' + GPU Base Frequency: 725 MHz + GPU Boost Frequency: 725 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GT 730M + TDP: 33 W + FP32 Compute: 556.8 GFLOPS + FP64 Compute: 23.20 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml new file mode 100644 index 00000000..2a5e2693 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-740-OEM +humanName: GeForce GT 740 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-04-14' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1033 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 221 mm² + GPU: GK106S + TDP: 65 W + FP32 Compute: 793.3 GFLOPS + FP64 Compute: 33.06 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml new file mode 100644 index 00000000..bc2f770e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml @@ -0,0 +1,32 @@ +name: GeForce-GT-740 +humanName: GeForce GT 740 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-05-29' + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-425-A2 + TDP: 64 W + FP32 Compute: 762.6 GFLOPS + FP64 Compute: 31.78 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: 1x 6-pin + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml new file mode 100644 index 00000000..17102aac --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-740M +humanName: GeForce GT 740M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-01' + GPU Base Frequency: 810 MHz + GPU Boost Frequency: 895 MHz + VRAM Frequency: 901 MHz + VRAM Bandwidth: 28.83 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GT 740M + TDP: 45 W + FP32 Compute: 687.4 GFLOPS + FP64 Compute: 28.64 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml new file mode 100644 index 00000000..343f6f7f --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-745A +humanName: GeForce GT 745A +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-08-26' + GPU Base Frequency: 837 MHz + GPU Boost Frequency: 915 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-LP + TDP: 33 W + FP32 Compute: 702.7 GFLOPS + FP64 Compute: 29.28 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml new file mode 100644 index 00000000..e0515c37 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-745M +humanName: GeForce GT 745M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-01' + GPU Base Frequency: 837 MHz + GPU Boost Frequency: 915 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-LP + TDP: 45 W + FP32 Compute: 702.7 GFLOPS + FP64 Compute: 29.28 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml new file mode 100644 index 00000000..45b2ea6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-750M-Mac-Edition +humanName: GeForce GT 750M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-08' + GPU Base Frequency: 926 MHz + GPU Boost Frequency: 926 MHz + VRAM Frequency: 1254 MHz + VRAM Bandwidth: 80.26 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-GT + TDP: 50 W + FP32 Compute: 711.2 GFLOPS + FP64 Compute: 29.63 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml new file mode 100644 index 00000000..4ef9b2cb --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-750M +humanName: GeForce GT 750M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-01-09' + GPU Base Frequency: 941 MHz + GPU Boost Frequency: 967 MHz + VRAM Frequency: 1003 MHz + VRAM Bandwidth: 64.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-GT + TDP: 50 W + FP32 Compute: 742.7 GFLOPS + FP64 Compute: 30.94 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml new file mode 100644 index 00000000..82867300 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-755M-Mac-Edition +humanName: GeForce GT 755M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-08' + GPU Base Frequency: 1085 MHz + GPU Boost Frequency: 1085 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GT 755M + TDP: 50 W + FP32 Compute: 833.3 GFLOPS + FP64 Compute: 34.72 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml new file mode 100644 index 00000000..b64fcd2c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-755M +humanName: GeForce GT 755M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-25' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1020 MHz + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 86.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GT 755M + TDP: 50 W + FP32 Compute: 783.4 GFLOPS + FP64 Compute: 32.64 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml new file mode 100644 index 00000000..3d7fd463 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-645-OEM +humanName: GeForce GTX 645 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-22' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 576 + Die Size: 221 mm² + GPU: GK106S + GPU Variant: GK106-200-A1 + TDP: 65 W + FP32 Compute: 949.2 GFLOPS + FP64 Compute: 39.55 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: None + Length: 147 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml new file mode 100644 index 00000000..956db8a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-650-Ti-Boost +humanName: GeForce GTX 650 Ti Boost +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-26' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1032 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 144.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: GK106-240-A1 + TDP: 134 W + FP32 Compute: 1.585 TFLOPS + FP64 Compute: 66.05 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml new file mode 100644 index 00000000..4241528c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-650-Ti-OEM +humanName: GeForce GTX 650 Ti OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-31' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 86.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106 + TDP: 110 W + FP32 Compute: 1,425 GFLOPS + FP64 Compute: 59.39 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: 1x 6-pin + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml new file mode 100644 index 00000000..02cb5ed2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-650 +humanName: GeForce GTX 650 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-27' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 221 mm² + GPU: GK106 + TDP: 65 W + FP32 Compute: 812.5 GFLOPS + FP64 Compute: 33.86 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 147 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml new file mode 100644 index 00000000..0f158cc7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-660-OEM +humanName: GeForce GTX 660 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-22' + GPU Base Frequency: 823 MHz + GPU Boost Frequency: 888 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1152 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-200-KD-A2 + TDP: 130 W + FP32 Compute: 2.046 TFLOPS + FP64 Compute: 85.25 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml new file mode 100644 index 00000000..339f456d --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-660-Ti +humanName: GeForce GTX 660 Ti +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-16' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 144.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-300-KD-A2 + TDP: 150 W + FP32 Compute: 2.634 TFLOPS + FP64 Compute: 109.8 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml new file mode 100644 index 00000000..2a981781 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-660 +humanName: GeForce GTX 660 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-09-06' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1032 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 144.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: GK106-400-A1 + TDP: 140 W + FP32 Compute: 1.981 TFLOPS + FP64 Compute: 82.56 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml new file mode 100644 index 00000000..fa6cd2fd --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-660M-Mac-Edition +humanName: GeForce GTX 660M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-01' + GPU Base Frequency: 950 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 50 W + FP32 Compute: 729.6 GFLOPS + FP64 Compute: 30.40 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml new file mode 100644 index 00000000..b4243602 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-660M +humanName: GeForce GTX 660M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-03-22' + GPU Base Frequency: 835 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N13E-GE-A2 + TDP: 50 W + FP32 Compute: 729.6 GFLOPS + FP64 Compute: 30.40 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml new file mode 100644 index 00000000..14517bf1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-670 +humanName: GeForce GTX 670 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-05-10' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-325-A2 + TDP: 170 W + FP32 Compute: 2.634 TFLOPS + FP64 Compute: 109.8 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml new file mode 100644 index 00000000..467e3e88 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-670MX +humanName: GeForce GTX 670MX +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-10-01' + GPU Base Frequency: 601 MHz + GPU Boost Frequency: 601 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 67.20 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GR-A2 + TDP: 75 W + FP32 Compute: 1,154 GFLOPS + FP64 Compute: 48.08 GFLOPS (1:24) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml new file mode 100644 index 00000000..9656a292 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-675MX-Mac-Edition +humanName: GeForce GTX 675MX Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-01' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 719 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GSR-A2 + TDP: 100 W + FP32 Compute: 1.933 TFLOPS + FP64 Compute: 80.53 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml new file mode 100644 index 00000000..91db2e12 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-675MX +humanName: GeForce GTX 675MX +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-10-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GSR-A2 + TDP: 100 W + FP32 Compute: 1,256 GFLOPS + FP64 Compute: 52.32 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml new file mode 100644 index 00000000..2143d6ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-680-Mac-Edition +humanName: GeForce GTX 680 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-04-03' + GPU Base Frequency: 1006 MHz + GPU Boost Frequency: 1058 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-400-A2 + TDP: 195 W + FP32 Compute: 3.250 TFLOPS + FP64 Compute: 135.4 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 256 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml new file mode 100644 index 00000000..6a9baf24 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-680 +humanName: GeForce GTX 680 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-03-22' + GPU Base Frequency: 1006 MHz + GPU Boost Frequency: 1058 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-400-A2 + TDP: 195 W + FP32 Compute: 3.250 TFLOPS + FP64 Compute: 135.4 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 256 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml new file mode 100644 index 00000000..8e91f928 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-680M +humanName: GeForce GTX 680M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-04' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 758 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GTX-A2 + TDP: 100 W + FP32 Compute: 2.038 TFLOPS + FP64 Compute: 84.90 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml new file mode 100644 index 00000000..9b10389a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-680MX-Mac-Edition +humanName: GeForce GTX 680MX Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-10-23' + GPU Base Frequency: 719 MHz + GPU Boost Frequency: 719 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GTX2-A2 + TDP: 122 W + FP32 Compute: 2.209 TFLOPS + FP64 Compute: 92.03 GFLOPS (1:24) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml new file mode 100644 index 00000000..8fccb9ea --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-690 +humanName: GeForce GTX 690 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-05-03' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 1019 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-355-A2 + TDP: 300 W + FP32 Compute: 3.130 TFLOPS + FP64 Compute: 130.4 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 3x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 279 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml new file mode 100644 index 00000000..47d837db --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-750-Ti-OEM +humanName: GeForce GTX 750 Ti OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 1033 MHz + GPU Boost Frequency: 1098 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 221 mm² + GPU: GK106 + TDP: 150 W + FP32 Compute: 2.108 TFLOPS + FP64 Compute: 87.84 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml new file mode 100644 index 00000000..38a6464a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-760-OEM-Rebrand +humanName: GeForce GTX 760 OEM Rebrand +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-08-25' + GPU Base Frequency: 823 MHz + GPU Boost Frequency: 888 MHz + VRAM Frequency: 1400 MHz + VRAM Bandwidth: 179.2 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1152 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-200-KD-A2 + TDP: 130 W + FP32 Compute: 2.046 TFLOPS + FP64 Compute: 85.25 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml new file mode 100644 index 00000000..8f9a115c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml @@ -0,0 +1,33 @@ +name: GeForce-GTX-760-OEM +humanName: GeForce GTX 760 OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-11-06' + GPU Base Frequency: 993 MHz + GPU Boost Frequency: 1046 MHz + VRAM Frequency: 1650 MHz + VRAM Bandwidth: 211.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + TDP: 170 W + FP32 Compute: 2.812 TFLOPS + FP64 Compute: 117.2 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml new file mode 100644 index 00000000..4f4ad418 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-760-Ti-OEM-Rebrand +humanName: GeForce GTX 760 Ti OEM Rebrand +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-08-25' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-325-A2 + TDP: 170 W + FP32 Compute: 2.634 TFLOPS + FP64 Compute: 109.8 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml new file mode 100644 index 00000000..257abc7e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml @@ -0,0 +1,33 @@ +name: GeForce-GTX-760-Ti-OEM +humanName: GeForce GTX 760 Ti OEM +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-09-27' + GPU Base Frequency: 915 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + TDP: 170 W + FP32 Compute: 2.634 TFLOPS + FP64 Compute: 109.8 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml new file mode 100644 index 00000000..6403bfe7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-760-X2 +humanName: GeForce GTX 760 X2 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-19' + GPU Base Frequency: 1006 MHz + GPU Boost Frequency: 1072 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1152 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-225-A2 + TDP: 250 W + FP32 Compute: 2.470 TFLOPS + FP64 Compute: 102.9 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 3x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 279 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml new file mode 100644 index 00000000..e0401a95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-760 +humanName: GeForce GTX 760 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-06-25' + GPU Base Frequency: 980 MHz + GPU Boost Frequency: 1032 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1152 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-225-A2 + TDP: 170 W + FP32 Compute: 2.378 TFLOPS + FP64 Compute: 99.07 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml new file mode 100644 index 00000000..bb536923 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-760A +humanName: GeForce GTX 760A +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-17' + GPU Base Frequency: 628 MHz + GPU Boost Frequency: 719 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 64.13 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: N14E-GL-A1 + TDP: 55 W + FP32 Compute: 1,104 GFLOPS + FP64 Compute: 46.02 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml new file mode 100644 index 00000000..e1371494 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-760M +humanName: GeForce GTX 760M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-30' + GPU Base Frequency: 628 MHz + GPU Boost Frequency: 719 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 64.13 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106S + GPU Variant: N14E-GL-A1 + TDP: 55 W + FP32 Compute: 1,104 GFLOPS + FP64 Compute: 46.02 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml new file mode 100644 index 00000000..edbc8dc7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-765M +humanName: GeForce GTX 765M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-30' + GPU Base Frequency: 797 MHz + GPU Boost Frequency: 863 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 64.13 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: N14E-GE-B-A1 + TDP: 75 W + FP32 Compute: 1,326 GFLOPS + FP64 Compute: 55.23 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml new file mode 100644 index 00000000..058784aa --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-770 +humanName: GeForce GTX 770 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-30' + GPU Base Frequency: 1046 MHz + GPU Boost Frequency: 1085 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-425-A2 + TDP: 230 W + FP32 Compute: 3.333 TFLOPS + FP64 Compute: 138.9 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml new file mode 100644 index 00000000..498e3aef --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-770M +humanName: GeForce GTX 770M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-30' + GPU Base Frequency: 706 MHz + GPU Boost Frequency: 797 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 96.19 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: N14E-GS-A1 + TDP: 75 W + FP32 Compute: 1.530 TFLOPS + FP64 Compute: 63.76 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml new file mode 100644 index 00000000..5cfa8e9a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-775M-Mac-Edition +humanName: GeForce GTX 775M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-08' + GPU Base Frequency: 797 MHz + GPU Boost Frequency: 797 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N13E-GTX-A2 + TDP: 100 W + FP32 Compute: 2.142 TFLOPS + FP64 Compute: 89.26 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml new file mode 100644 index 00000000..697f3458 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-780-6-GB +humanName: GeForce GTX 780 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-09-10' + GPU Base Frequency: 863 MHz + GPU Boost Frequency: 902 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 192 + Shader Processor Count: 2304 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-301-B1 + TDP: 250 W + FP32 Compute: 4.156 TFLOPS + FP64 Compute: 173.2 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml new file mode 100644 index 00000000..92a2a8a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-780-Rev.-2 +humanName: GeForce GTX 780 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-09-10' + GPU Base Frequency: 863 MHz + GPU Boost Frequency: 902 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 192 + Shader Processor Count: 2304 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-300-B1 + TDP: 250 W + FP32 Compute: 4.156 TFLOPS + FP64 Compute: 173.2 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml new file mode 100644 index 00000000..d9875f75 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-780-Ti-6-GB +humanName: GeForce GTX 780 Ti 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 875 MHz + GPU Boost Frequency: 928 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 336.6 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 250 W + FP32 Compute: 5.345 TFLOPS + FP64 Compute: 222.7 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml new file mode 100644 index 00000000..66143481 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-780-Ti +humanName: GeForce GTX 780 Ti +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-07' + GPU Base Frequency: 875 MHz + GPU Boost Frequency: 928 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 336.6 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-425-B1 + TDP: 250 W + FP32 Compute: 5.345 TFLOPS + FP64 Compute: 222.7 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml new file mode 100644 index 00000000..329d7410 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-780 +humanName: GeForce GTX 780 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-23' + GPU Base Frequency: 863 MHz + GPU Boost Frequency: 902 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 192 + Shader Processor Count: 2304 + Die Size: 561 mm² + GPU: GK110 + GPU Variant: GK110-300-A1 + TDP: 250 W + FP32 Compute: 4.156 TFLOPS + FP64 Compute: 173.2 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml new file mode 100644 index 00000000..08e7bba1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-780M-Mac-Edition +humanName: GeForce GTX 780M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-08' + GPU Base Frequency: 784 MHz + GPU Boost Frequency: 784 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N14E-GTX-A2 + TDP: 122 W + FP32 Compute: 2.408 TFLOPS + FP64 Compute: 100.4 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml new file mode 100644 index 00000000..8be02483 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-780M +humanName: GeForce GTX 780M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-05-11' + GPU Base Frequency: 771 MHz + GPU Boost Frequency: 797 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N14E-GTX-A2 + TDP: 122 W + FP32 Compute: 2.448 TFLOPS + FP64 Compute: 102.0 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml new file mode 100644 index 00000000..15b30904 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-870M +humanName: GeForce GTX 870M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-12' + GPU Base Frequency: 941 MHz + GPU Boost Frequency: 967 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 120.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N15E-GT-A2 + TDP: 100 W + FP32 Compute: 2.599 TFLOPS + FP64 Compute: 108.3 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml new file mode 100644 index 00000000..b0b27d57 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-880M +humanName: GeForce GTX 880M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-12' + GPU Base Frequency: 954 MHz + GPU Boost Frequency: 993 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N15E-GX-A2 + TDP: 122 W + FP32 Compute: 3.050 TFLOPS + FP64 Compute: 127.1 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml new file mode 100644 index 00000000..e0c10bbc --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-TITAN-BLACK +humanName: GeForce GTX TITAN BLACK +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-02-18' + GPU Base Frequency: 889 MHz + GPU Boost Frequency: 980 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-430-B1 + TDP: 250 W + FP32 Compute: 5.645 TFLOPS + FP64 Compute: 1.882 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml new file mode 100644 index 00000000..db59ec1e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-TITAN-Z +humanName: GeForce GTX TITAN Z +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-05-28' + GPU Base Frequency: 705 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-350-B1 + TDP: 375 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm + Height: 62 mm diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml new file mode 100644 index 00000000..0f4606c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-TITAN +humanName: GeForce GTX TITAN +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-02-19' + GPU Base Frequency: 836 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 224 + Shader Processor Count: 2688 + Die Size: 561 mm² + GPU: GK110 + GPU Variant: GK110-400-A1 + TDP: 250 W + FP32 Compute: 4.709 TFLOPS + FP64 Compute: 1.570 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a1x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml b/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml new file mode 100644 index 00000000..0f652823 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml @@ -0,0 +1,28 @@ +name: NVS-1000 +humanName: NVS 1000 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + TDP: 35 W + FP32 Compute: 306.0 GFLOPS + FP64 Compute: 12.75 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Length: 160 mm diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml b/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml new file mode 100644 index 00000000..24ae9fd1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml @@ -0,0 +1,30 @@ +name: NVS-510 +humanName: NVS 510 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-10-23' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 35 W + FP32 Compute: 306.0 GFLOPS + FP64 Compute: 12.75 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Power Connectors: None + Length: 160 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml new file mode 100644 index 00000000..4c5fe395 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml @@ -0,0 +1,33 @@ +name: Quadro-410 +humanName: Quadro 410 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-07' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 14.26 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-810-A2 + TDP: 38 W + FP32 Compute: 271.1 GFLOPS + FP64 Compute: 11.30 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 176 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml new file mode 100644 index 00000000..0d2a69ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml @@ -0,0 +1,28 @@ +name: Quadro-4100 +humanName: Quadro 4100 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 57.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + TDP: 35 W + FP32 Compute: 2.142 TFLOPS + FP64 Compute: 89.26 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Length: 160 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml new file mode 100644 index 00000000..1c6d0357 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml @@ -0,0 +1,29 @@ +name: Quadro-K1000M +humanName: Quadro K1000M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-Q1-A2 + TDP: 45 W + FP32 Compute: 326.4 GFLOPS + FP64 Compute: 13.60 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml new file mode 100644 index 00000000..8a39e179 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K100M +humanName: Quadro K100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-08-22' + GPU Base Frequency: 851 MHz + GPU Boost Frequency: 851 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14M-Q1 + TDP: 35 W + FP32 Compute: 326.8 GFLOPS + FP64 Compute: 13.62 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml new file mode 100644 index 00000000..3dfc3ffd --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml @@ -0,0 +1,30 @@ +name: Quadro-K1100M +humanName: Quadro K1100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 706 MHz + GPU Boost Frequency: 706 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + TDP: 45 W + FP32 Compute: 542.2 GFLOPS + FP64 Compute: 22.59 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml new file mode 100644 index 00000000..10462286 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml @@ -0,0 +1,33 @@ +name: Quadro-K2000 +humanName: Quadro K2000 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 51 W + FP32 Compute: 732.7 GFLOPS + FP64 Compute: 30.53 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: None + Length: 202 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml new file mode 100644 index 00000000..992be5a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml @@ -0,0 +1,33 @@ +name: Quadro-K2000D +humanName: Quadro K2000D +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 51 W + FP32 Compute: 732.7 GFLOPS + FP64 Compute: 30.53 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-DisplayPort 1.2 + Power Connectors: None + Length: 202 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml new file mode 100644 index 00000000..2200d9f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml @@ -0,0 +1,29 @@ +name: Quadro-K2000M-Embedded +humanName: Quadro K2000M Embedded +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.1' + OpenCL Support: '3.0' + Release Date: '2012-03-22' + GPU Base Frequency: 835 MHz + GPU Boost Frequency: 1058 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: EXK107 + TDP: 45 W + FP32 Compute: 812.5 GFLOPS + FP64 Compute: 33.86 GFLOPS (1:24) + Slot Width: IGP + Outputs: 1x DVI diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml new file mode 100644 index 00000000..468d5c33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K2000M +humanName: Quadro K2000M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-01' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 745 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14P-Q3-A2 + TDP: 55 W + FP32 Compute: 572.2 GFLOPS + FP64 Compute: 23.84 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml new file mode 100644 index 00000000..04485743 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K200M +humanName: Quadro K200M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-08-22' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 745 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14M-Q1 + TDP: 35 W + FP32 Compute: 286.1 GFLOPS + FP64 Compute: 11.92 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml new file mode 100644 index 00000000..6933ab3e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K2100M +humanName: Quadro K2100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 667 MHz + GPU Boost Frequency: 667 MHz + VRAM Frequency: 752 MHz + VRAM Bandwidth: 48.13 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 576 + Die Size: 221 mm² + GPU: GK106S + GPU Variant: N15P-Q3-A1 + TDP: 55 W + FP32 Compute: 768.4 GFLOPS + FP64 Compute: 32.02 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml new file mode 100644 index 00000000..5ef75018 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K3000M +humanName: Quadro K3000M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-01' + GPU Base Frequency: 654 MHz + GPU Boost Frequency: 654 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 89.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 576 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N14E-Q1-A2 + TDP: 75 W + FP32 Compute: 753.4 GFLOPS + FP64 Compute: 31.39 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml new file mode 100644 index 00000000..85084532 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K3100M +humanName: Quadro K3100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 706 MHz + GPU Boost Frequency: 706 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N15E-Q1-A2 + TDP: 75 W + FP32 Compute: 1,084 GFLOPS + FP64 Compute: 45.18 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml new file mode 100644 index 00000000..278e5790 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml @@ -0,0 +1,33 @@ +name: Quadro-K4000 +humanName: Quadro K4000 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-01' + VRAM Frequency: 1404 MHz + VRAM Bandwidth: 134.8 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 64 + Shader Processor Count: 768 + Die Size: 221 mm² + GPU: GK106 + GPU Variant: GK106-875-A1 + TDP: 80 W + FP32 Compute: 1,244 GFLOPS + FP64 Compute: 51.84 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml new file mode 100644 index 00000000..9e6c1fa1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K4000M +humanName: Quadro K4000M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-01' + GPU Base Frequency: 601 MHz + GPU Boost Frequency: 601 MHz + VRAM Frequency: 700 MHz + VRAM Bandwidth: 89.60 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 960 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N14E-Q3-A2 + TDP: 100 W + FP32 Compute: 1,154 GFLOPS + FP64 Compute: 48.08 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml new file mode 100644 index 00000000..2fd09be4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K4100M +humanName: Quadro K4100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 706 MHz + GPU Boost Frequency: 706 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1152 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N15E-Q3-A2 + TDP: 100 W + FP32 Compute: 1.627 TFLOPS + FP64 Compute: 67.78 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml new file mode 100644 index 00000000..d882d275 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml @@ -0,0 +1,33 @@ +name: Quadro-K420 +humanName: Quadro K420 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 41 W + FP32 Compute: 336.4 GFLOPS + FP64 Compute: 14.02 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 160 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml new file mode 100644 index 00000000..2da18b81 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml @@ -0,0 +1,35 @@ +name: Quadro-K4200 +humanName: Quadro K4200 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 771 MHz + GPU Boost Frequency: 784 MHz + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 172.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: GK104-850-A2 + TDP: 108 W + FP32 Compute: 2.107 TFLOPS + FP64 Compute: 87.81 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml new file mode 100644 index 00000000..e90f84a9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: Quadro-K5000-Mac-Edition +humanName: Quadro K5000 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-07' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 172.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 122 W + FP32 Compute: 2.169 TFLOPS + FP64 Compute: 90.37 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml new file mode 100644 index 00000000..fe3dc203 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml @@ -0,0 +1,33 @@ +name: Quadro-K5000-SYNC +humanName: Quadro K5000 SYNC +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-01-25' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 172.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 122 W + FP32 Compute: 2.169 TFLOPS + FP64 Compute: 90.37 GFLOPS (1:24) + Slot Width: Triple-slot + Outputs: + - 2x DVI + - 2x DisplayPort 1.2 + - 1x SDI + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml new file mode 100644 index 00000000..1a95f0db --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml @@ -0,0 +1,32 @@ +name: Quadro-K5000 +humanName: Quadro K5000 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-17' + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 172.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 122 W + FP32 Compute: 2.169 TFLOPS + FP64 Compute: 90.37 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml new file mode 100644 index 00000000..eeab12a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K5000M +humanName: Quadro K5000M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-08-07' + GPU Base Frequency: 601 MHz + GPU Boost Frequency: 601 MHz + VRAM Frequency: 750 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1344 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N14E-Q5-A2 + TDP: 100 W + FP32 Compute: 1.615 TFLOPS + FP64 Compute: 67.31 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml new file mode 100644 index 00000000..0f7e71ae --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K500M +humanName: Quadro K500M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-06-01' + GPU Base Frequency: 709 MHz + GPU Boost Frequency: 709 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: N14M-Q1 + TDP: 35 W + FP32 Compute: 272.3 GFLOPS + FP64 Compute: 11.34 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml new file mode 100644 index 00000000..636558f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K5100M +humanName: Quadro K5100M +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 771 MHz + GPU Boost Frequency: 771 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + GPU Variant: N15E-Q5-A2 + TDP: 100 W + FP32 Compute: 2.369 TFLOPS + FP64 Compute: 98.69 GFLOPS (1:24) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml new file mode 100644 index 00000000..a5cf2c33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml @@ -0,0 +1,34 @@ +name: Quadro-K5200 +humanName: Quadro K5200 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 667 MHz + GPU Boost Frequency: 771 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 192 + Shader Processor Count: 2304 + Die Size: 561 mm² + GPU: GK110B + TDP: 150 W + FP32 Compute: 3.553 TFLOPS + FP64 Compute: 148.0 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 2x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml new file mode 100644 index 00000000..9585783b --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml @@ -0,0 +1,33 @@ +name: Quadro-K600 +humanName: Quadro K600 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-03-01' + VRAM Frequency: 891 MHz + VRAM Bandwidth: 28.51 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 192 + Die Size: 118 mm² + GPU: GK107 + GPU Variant: GK107-301-A2 + TDP: 41 W + FP32 Compute: 336.4 GFLOPS + FP64 Compute: 14.02 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 160 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml new file mode 100644 index 00000000..c728bb7e --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml @@ -0,0 +1,32 @@ +name: Quadro-K6000-SDI +humanName: Quadro K6000 SDI +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110 + TDP: 239 W + FP32 Compute: 5.196 TFLOPS + FP64 Compute: 1.732 TFLOPS (1:3) + Slot Width: Triple-slot + Outputs: + - 3x DVI + - 2x DisplayPort 1.2 + - 3x SDI + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml new file mode 100644 index 00000000..b7a1c0b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml @@ -0,0 +1,35 @@ +name: Quadro-K6000 +humanName: Quadro K6000 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-07-23' + GPU Base Frequency: 797 MHz + GPU Boost Frequency: 902 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + GPU Variant: GK110-890-B1 + TDP: 225 W + FP32 Compute: 5.196 TFLOPS + FP64 Compute: 1.732 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 2x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml new file mode 100644 index 00000000..cacd24e3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml @@ -0,0 +1,29 @@ +name: Tesla-K10 +humanName: Tesla K10 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-05-01' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 225 W + FP32 Compute: 2.289 TFLOPS + FP64 Compute: 95.36 GFLOPS (1:24) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 272 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml new file mode 100644 index 00000000..36a5e538 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml @@ -0,0 +1,29 @@ +name: Tesla-K20X +humanName: Tesla K20X +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-11-12' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 249.6 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 224 + Shader Processor Count: 2688 + Die Size: 561 mm² + GPU: GK110 + TDP: 235 W + FP32 Compute: 3.935 TFLOPS + FP64 Compute: 1,312 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml new file mode 100644 index 00000000..74ecedaf --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml @@ -0,0 +1,28 @@ +name: Tesla-K20Xm +humanName: Tesla K20Xm +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-11-12' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 249.6 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 224 + Shader Processor Count: 2688 + Die Size: 561 mm² + GPU: GK110 + TDP: 235 W + FP32 Compute: 3.935 TFLOPS + FP64 Compute: 1,312 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml new file mode 100644 index 00000000..fea5d122 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml @@ -0,0 +1,30 @@ +name: Tesla-K20c +humanName: Tesla K20c +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2012-11-12' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 208.0 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 208 + Shader Processor Count: 2496 + Die Size: 561 mm² + GPU: GK110 + GPU Variant: GK110-885-KA-A1 + TDP: 225 W + FP32 Compute: 3.524 TFLOPS + FP64 Compute: 1,175 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml new file mode 100644 index 00000000..f8b9384c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml @@ -0,0 +1,29 @@ +name: Tesla-K20m +humanName: Tesla K20m +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-01-05' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 208.0 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 208 + Shader Processor Count: 2496 + Die Size: 561 mm² + GPU: GK110 + TDP: 225 W + FP32 Compute: 3.524 TFLOPS + FP64 Compute: 1,175 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml new file mode 100644 index 00000000..b1f36734 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml @@ -0,0 +1,28 @@ +name: Tesla-K20s +humanName: Tesla K20s +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-02-18' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 208.0 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 208 + Shader Processor Count: 2496 + Die Size: 561 mm² + GPU: GK110 + TDP: 225 W + FP32 Compute: 2.870 TFLOPS + FP64 Compute: 956.8 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml new file mode 100644 index 00000000..99b57f1c --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml @@ -0,0 +1,32 @@ +name: Tesla-K40c +humanName: Tesla K40c +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-10-08' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK180 + GPU Variant: GK180-890-A1 + TDP: 245 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml new file mode 100644 index 00000000..597f1736 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml @@ -0,0 +1,30 @@ +name: Tesla-K40d +humanName: Tesla K40d +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-22' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 245 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml new file mode 100644 index 00000000..4826c809 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml @@ -0,0 +1,30 @@ +name: Tesla-K40m +humanName: Tesla K40m +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-22' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 245 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml new file mode 100644 index 00000000..ef62a41a --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml @@ -0,0 +1,30 @@ +name: Tesla-K40s +humanName: Tesla K40s +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-22' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 245 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml new file mode 100644 index 00000000..95168b14 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml @@ -0,0 +1,28 @@ +name: Tesla-K40st +humanName: Tesla K40st +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-22' + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 245 W + FP32 Compute: 3.312 TFLOPS + FP64 Compute: 1,104 GFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml new file mode 100644 index 00000000..b2a48912 --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml @@ -0,0 +1,30 @@ +name: Tesla-K40t +humanName: Tesla K40t +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2013-11-22' + GPU Base Frequency: 745 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 240 + Shader Processor Count: 2880 + Die Size: 561 mm² + GPU: GK110B + TDP: 245 W + FP32 Compute: 5.046 TFLOPS + FP64 Compute: 1.682 TFLOPS (1:3) + Slot Width: Dual-slot + Outputs: No outputs + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml new file mode 100644 index 00000000..65053e7d --- /dev/null +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml @@ -0,0 +1,31 @@ +name: Tesla-K8 +humanName: Tesla K8 +isPart: true +type: Graphics Card +data: + Architecture: Kepler + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-09-16' + GPU Base Frequency: 693 MHz + GPU Boost Frequency: 811 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 128 + Shader Processor Count: 1536 + Die Size: 294 mm² + GPU: GK104 + TDP: 100 W + FP32 Compute: 2.491 TFLOPS + FP64 Compute: 103.8 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Knights.yaml b/specs/GPUs-CONSUMER/Knights.yaml new file mode 100644 index 00000000..ce6056cb --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights.yaml @@ -0,0 +1,20 @@ +name: Knights +humanName: Knights +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2010-05-31' +sections: + - header: WHOLE RANGE + members: + - Aubrey-Isle + - Xeon-Phi-3120A + - Xeon-Phi-5110P + - Xeon-Phi-5120D + - Xeon-Phi-7120P + - Xeon-Phi-7120X + - Xeon-Phi-SE10X diff --git a/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml b/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml new file mode 100644 index 00000000..bc4183a3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml @@ -0,0 +1,29 @@ +name: Aubrey-Isle +humanName: Aubrey Isle +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 45 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2010-05-31' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 684 mm² + GPU: Knights Ferry + TDP: 300 W + FP32 Compute: 1,229 GFLOPS + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI1x DisplayPort + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml new file mode 100644 index 00000000..f8f0381d --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml @@ -0,0 +1,26 @@ +name: Xeon-Phi-3120A +humanName: Xeon Phi 3120A +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2012-11-12' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 240.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 912 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 300 W + FP32 Compute: 2.006 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml new file mode 100644 index 00000000..83221cfb --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml @@ -0,0 +1,26 @@ +name: Xeon-Phi-5110P +humanName: Xeon Phi 5110P +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2012-11-12' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 960 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 225 W + FP32 Compute: 2.022 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml new file mode 100644 index 00000000..31e9a3ff --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml @@ -0,0 +1,26 @@ +name: Xeon-Phi-5120D +humanName: Xeon Phi 5120D +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2013-06-17' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 960 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 245 W + FP32 Compute: 2.022 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml new file mode 100644 index 00000000..c79d8302 --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml @@ -0,0 +1,28 @@ +name: Xeon-Phi-7120P +humanName: Xeon Phi 7120P +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2013-06-17' + GPU Base Frequency: 1238 MHz + GPU Boost Frequency: 1333 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 976 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 300 W + FP32 Compute: 2.602 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml new file mode 100644 index 00000000..5e66f9d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml @@ -0,0 +1,28 @@ +name: Xeon-Phi-7120X +humanName: Xeon Phi 7120X +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2013-06-17' + GPU Base Frequency: 1238 MHz + GPU Boost Frequency: 1333 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 976 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 300 W + FP32 Compute: 2.602 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml new file mode 100644 index 00000000..b02b930a --- /dev/null +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml @@ -0,0 +1,26 @@ +name: Xeon-Phi-SE10X +humanName: Xeon Phi SE10X +isPart: true +type: Graphics Card +data: + Architecture: Knights + Lithography: 22 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: '1.2' + Release Date: '2012-11-12' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 512 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 32 + Shader Processor Count: 976 + Die Size: 720 mm² + GPU: Knights Corner + TDP: 300 W + FP32 Compute: 2.147 TFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Length: 248 mm diff --git a/specs/GPUs-CONSUMER/MP.yaml b/specs/GPUs-CONSUMER/MP.yaml new file mode 100644 index 00000000..7410de73 --- /dev/null +++ b/specs/GPUs-CONSUMER/MP.yaml @@ -0,0 +1,17 @@ +name: MP +humanName: MP +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: '2004-12-17' +sections: + - header: WHOLE RANGE + members: + - QID + - QID-LP-PCI + - QID-LP-PCIe + - QID-PRO diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml new file mode 100644 index 00000000..6ba4e40f --- /dev/null +++ b/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml @@ -0,0 +1,26 @@ +name: QID-LP-PCI +humanName: QID LP PCI +isPart: true +type: Graphics Card +data: + Architecture: MP + Lithography: 0 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-12-17' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: MP-A4 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x LFH60 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml new file mode 100644 index 00000000..fd385e7e --- /dev/null +++ b/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml @@ -0,0 +1,27 @@ +name: QID-LP-PCIe +humanName: QID LP PCIe +isPart: true +type: Graphics Card +data: + Architecture: MP + Lithography: 0 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-12-17' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: MP-A4 + GPU Variant: MP-A4L + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/MP/QID-PRO.yaml new file mode 100644 index 00000000..a8530074 --- /dev/null +++ b/specs/GPUs-CONSUMER/MP/QID-PRO.yaml @@ -0,0 +1,26 @@ +name: QID-PRO +humanName: QID PRO +isPart: true +type: Graphics Card +data: + Architecture: MP + Lithography: 0 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-12-17' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: MP-A4 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x LFH60 + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/MP/QID.yaml b/specs/GPUs-CONSUMER/MP/QID.yaml new file mode 100644 index 00000000..d15741e2 --- /dev/null +++ b/specs/GPUs-CONSUMER/MP/QID.yaml @@ -0,0 +1,26 @@ +name: QID +humanName: QID +isPart: true +type: Graphics Card +data: + Architecture: MP + Lithography: 0 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2004-12-17' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: MP-A4 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Mach.yaml b/specs/GPUs-CONSUMER/Mach.yaml new file mode 100644 index 00000000..1a11d12b --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach.yaml @@ -0,0 +1,35 @@ +name: Mach +humanName: Mach +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '1992' +sections: + - header: WHOLE RANGE + members: + - 3D-Rage + - 3D-Rage-II + - 3D-Rage-II+-DVD + - 8514-Ultra + - All-In-Wonder-3D-Rage-II+-DVD + - Graphics-Pro-Turbo + - Graphics-Ultra + - Graphics-Ultra-Pro-ISA + - Graphics-Ultra-Pro-VLB + - Graphics-Ultra-XLR-VLB + - Graphics-Vantage + - Graphics-Wonder-PCI + - Graphics-Wonder-VLB + - Graphics-Xpression + - Graphics-Xpression-ISA + - Graphics-Ultra-Pro-PCI + - Rage-LT-PRO-AGP + - Video-Xpression + - WinBoost + - WinCharger + - WinTurbo + - Video-Xpression+ diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml new file mode 100644 index 00000000..435cae41 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-II+-DVD +humanName: 3D Rage II+ DVD +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-09-01' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 86 mm² + GPU: Mach64 GT-B + GPU Variant: 3D Rage II+DVD + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml new file mode 100644 index 00000000..c22f6cfa --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-II +humanName: 3D Rage II +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-09-05' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 86 mm² + GPU: Mach64 GT-B + GPU Variant: 3D Rage II + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml new file mode 100644 index 00000000..ccf97dec --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage +humanName: 3D Rage +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-04-01' + VRAM Frequency: 66 MHz + VRAM Bandwidth: 528.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 90 mm² + GPU: Mach64 GT + GPU Variant: 3D Rage + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml new file mode 100644 index 00000000..a6b70ec7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml @@ -0,0 +1,25 @@ +name: 8514-Ultra +humanName: 8514-Ultra +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: VRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach8 + GPU Variant: 38800-1 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml new file mode 100644 index 00000000..1f94b77e --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-3D-Rage-II+-DVD +humanName: All-In-Wonder 3D Rage II+ DVD +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-09-01' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 86 mm² + GPU: Mach64 GT-B + GPU Variant: 3D Rage II+DVD + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml new file mode 100644 index 00000000..af3883b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml @@ -0,0 +1,24 @@ +name: Graphics-Pro-Turbo +humanName: Graphics Pro Turbo +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: VRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 GX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml new file mode 100644 index 00000000..4f301a73 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml @@ -0,0 +1,24 @@ +name: Graphics-Ultra-Pro-ISA +humanName: Graphics Ultra Pro ISA +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 80.00 MB/s + VRAM Capacity: 2 MB + VRAM Type: DRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32-06 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml new file mode 100644 index 00000000..68c2a066 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml @@ -0,0 +1,24 @@ +name: Graphics-Ultra-Pro-PCI +humanName: Graphics Ultra Pro PCI +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1993' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 1 MB + VRAM Type: DRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32 AX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml new file mode 100644 index 00000000..ee09189a --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml @@ -0,0 +1,24 @@ +name: Graphics-Ultra-Pro-VLB +humanName: Graphics Ultra Pro VLB +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1993' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 80.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: VRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32-03 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml new file mode 100644 index 00000000..da8d5212 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml @@ -0,0 +1,24 @@ +name: Graphics-Ultra-XLR-VLB +humanName: Graphics Ultra XLR VLB +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1993' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 80.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: VRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32 LX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml new file mode 100644 index 00000000..b75f4da5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml @@ -0,0 +1,25 @@ +name: Graphics-Ultra +humanName: Graphics Ultra +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: VRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach8 + GPU Variant: 38800-1 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml new file mode 100644 index 00000000..4d8abf6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml @@ -0,0 +1,24 @@ +name: Graphics-Vantage +humanName: Graphics Vantage +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach8 + GPU Variant: 38800-1 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml new file mode 100644 index 00000000..39a0c986 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml @@ -0,0 +1,24 @@ +name: Graphics-Wonder-PCI +humanName: Graphics Wonder PCI +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 80.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: DRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32 AX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml new file mode 100644 index 00000000..9cbb1a38 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml @@ -0,0 +1,24 @@ +name: Graphics-Wonder-VLB +humanName: Graphics Wonder VLB +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 700 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 80.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: DRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach32 + GPU Variant: Mach32-06 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml new file mode 100644 index 00000000..932a00b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml @@ -0,0 +1,24 @@ +name: Graphics-Xpression-ISA +humanName: Graphics Xpression ISA +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: DRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 GX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml new file mode 100644 index 00000000..422045a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml @@ -0,0 +1,24 @@ +name: Graphics-Xpression +humanName: Graphics Xpression +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995-11-01' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 CX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml new file mode 100644 index 00000000..0049d44e --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml @@ -0,0 +1,26 @@ +name: Rage-LT-PRO-AGP +humanName: Rage LT PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1997-11-01' + VRAM Frequency: 100 MHz + VRAM Bandwidth: 800.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 90 mm² + GPU: Mach64 LT + GPU Variant: RAGE LT PRO AGP + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml new file mode 100644 index 00000000..589012f3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml @@ -0,0 +1,24 @@ +name: Video-Xpression+ +humanName: Video Xpression+ +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-05-01' + VRAM Frequency: 62 MHz + VRAM Bandwidth: 496.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 VT4 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml new file mode 100644 index 00000000..e766b546 --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml @@ -0,0 +1,24 @@ +name: Video-Xpression +humanName: Video Xpression +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1996-05-21' + VRAM Frequency: 62 MHz + VRAM Bandwidth: 496.0 MB/s + VRAM Capacity: 1 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 VT2 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/Mach/WinBoost.yaml new file mode 100644 index 00000000..23feb01f --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/WinBoost.yaml @@ -0,0 +1,24 @@ +name: WinBoost +humanName: WinBoost +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995-11-01' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 CT + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/Mach/WinCharger.yaml new file mode 100644 index 00000000..e791401e --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/WinCharger.yaml @@ -0,0 +1,24 @@ +name: WinCharger +humanName: WinCharger +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995-11-01' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: EDO + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 CT + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml new file mode 100644 index 00000000..0035030b --- /dev/null +++ b/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml @@ -0,0 +1,24 @@ +name: WinTurbo +humanName: WinTurbo +isPart: true +type: Graphics Card +data: + Architecture: Mach + Lithography: 600 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1995' + VRAM Frequency: 40 MHz + VRAM Bandwidth: 320.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: VRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: Mach64 + GPU Variant: Mach64 GX + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0.yaml new file mode 100644 index 00000000..ec7ea366 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0.yaml @@ -0,0 +1,54 @@ +name: Maxwell-2.0 +humanName: Maxwell 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2014-09-19' +sections: + - header: WHOLE RANGE + members: + - GeForce-GTX-750-GM206 + - GeForce-GTX-950 + - GeForce-GTX-950-Low-Power + - GeForce-GTX-950-OEM + - GeForce-GTX-960 + - GeForce-GTX-960-OEM + - GeForce-GTX-965M + - GeForce-GTX-965M-4-GB + - GeForce-GTX-970 + - GeForce-GTX-970M + - GeForce-GTX-980 + - GeForce-GTX-980-Mobile + - GeForce-GTX-980-Ti + - GeForce-GTX-980M + - GeForce-GTX-TITAN-X + - GRID-M6-8Q + - GRID-M60-1Q + - GRID-M60-2Q + - GRID-M60-4A + - GRID-M60-8Q + - Jetson-Nano + - Jetson-TX1 + - Quadro-M2000 + - Quadro-M2200-Mobile + - Quadro-M3000-SE + - Quadro-M3000M + - Quadro-M4000 + - Quadro-M4000M + - Quadro-M5000 + - Quadro-M5000M + - Quadro-M5500-Mobile + - Quadro-M6000 + - Quadro-M6000-24-GB + - Switch-GPU-16nm + - Switch-GPU-20nm + - Tesla-M4 + - Tesla-M6-Mobile + - Tesla-M6-X2-Mobile + - Tesla-M40 + - Tesla-M40-24-GB + - Tesla-M60 diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml new file mode 100644 index 00000000..c379f191 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml @@ -0,0 +1,29 @@ +name: GRID-M6-8Q +humanName: GRID M6-8Q +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-995-A1 + TDP: 100 W + FP32 Compute: 2.218 TFLOPS + FP64 Compute: 69.31 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml new file mode 100644 index 00000000..e6cb7a6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml @@ -0,0 +1,31 @@ +name: GRID-M60-1Q +humanName: GRID M60-1Q +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 557 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 225 W + FP32 Compute: 4.825 TFLOPS + FP64 Compute: 150.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml new file mode 100644 index 00000000..4ccad1f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml @@ -0,0 +1,31 @@ +name: GRID-M60-2Q +humanName: GRID M60-2Q +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 557 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 225 W + FP32 Compute: 4.825 TFLOPS + FP64 Compute: 150.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml new file mode 100644 index 00000000..a0473c3a --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml @@ -0,0 +1,31 @@ +name: GRID-M60-4A +humanName: GRID M60-4A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 557 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 225 W + FP32 Compute: 4.825 TFLOPS + FP64 Compute: 150.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml new file mode 100644 index 00000000..54491e25 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml @@ -0,0 +1,31 @@ +name: GRID-M60-8Q +humanName: GRID M60-8Q +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 557 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 225 W + FP32 Compute: 4.825 TFLOPS + FP64 Compute: 150.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml new file mode 100644 index 00000000..14820e06 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-750-GM206 +humanName: GeForce GTX 750 GM206 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-17' + GPU Base Frequency: 1087 MHz + GPU Boost Frequency: 1239 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 228 mm² + GPU: GM206 + TDP: 60 W + FP32 Compute: 1,269 GFLOPS + FP64 Compute: 39.65 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 2.0 diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml new file mode 100644 index 00000000..8fb94aaa --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-950-Low-Power +humanName: GeForce GTX 950 Low Power +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-03-01' + GPU Base Frequency: 1026 MHz + GPU Boost Frequency: 1190 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 105.8 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 228 mm² + GPU: GM206 + GPU Variant: GM206-251-A1 + TDP: 75 W + FP32 Compute: 1.828 TFLOPS + FP64 Compute: 57.12 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: None + Length: 202 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml new file mode 100644 index 00000000..e3ce7167 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-950-OEM +humanName: GeForce GTX 950 OEM +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016' + GPU Base Frequency: 937 MHz + GPU Boost Frequency: 1203 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 228 mm² + GPU: GM206S + GPU Variant: 950 OEM + TDP: unknown + FP32 Compute: 2.464 TFLOPS + FP64 Compute: 76.99 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml new file mode 100644 index 00000000..d8d40b0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-950 +humanName: GeForce GTX 950 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-20' + GPU Base Frequency: 1024 MHz + GPU Boost Frequency: 1188 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 105.8 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 228 mm² + GPU: GM206 + GPU Variant: GM206-250-A1 + TDP: 90 W + FP32 Compute: 1.825 TFLOPS + FP64 Compute: 57.02 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 202 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml new file mode 100644 index 00000000..1afcdbeb --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-960-OEM +humanName: GeForce GTX 960 OEM +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-26' + GPU Base Frequency: 924 MHz + GPU Boost Frequency: 1038 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 120.3 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GTX 960 OEM + TDP: unknown + FP32 Compute: 2.657 TFLOPS + FP64 Compute: 83.04 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml new file mode 100644 index 00000000..8cb57622 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-960 +humanName: GeForce GTX 960 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-01-22' + GPU Base Frequency: 1127 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 112.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 228 mm² + GPU: GM206 + GPU Variant: GM206-300-A1 + TDP: 120 W + FP32 Compute: 2.413 TFLOPS + FP64 Compute: 75.39 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml new file mode 100644 index 00000000..6c471602 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-965M-4-GB +humanName: GeForce GTX 965M 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-01-09' + GPU Base Frequency: 935 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 398 mm² + GPU: GM204 + TDP: unknown + FP32 Compute: 2.355 TFLOPS + FP64 Compute: 73.60 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml new file mode 100644 index 00000000..47db9f3c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-965M +humanName: GeForce GTX 965M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-01-09' + GPU Base Frequency: 924 MHz + GPU Boost Frequency: 950 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-GS-KAB-A1 + TDP: unknown + FP32 Compute: 1.946 TFLOPS + FP64 Compute: 60.80 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml new file mode 100644 index 00000000..7ccad9e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-970 +humanName: GeForce GTX 970 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-09-19' + GPU Base Frequency: 1050 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 56 + Texture Mapping Unit Count: 104 + Shader Processor Count: 1664 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-200-A1 + TDP: 148 W + FP32 Compute: 3.920 TFLOPS + FP64 Compute: 122.5 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml new file mode 100644 index 00000000..e550cbcc --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-970M +humanName: GeForce GTX 970M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-10-07' + GPU Base Frequency: 924 MHz + GPU Boost Frequency: 1038 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 120.3 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-GT-A2 + TDP: unknown + FP32 Compute: 2.657 TFLOPS + FP64 Compute: 83.04 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml new file mode 100644 index 00000000..54d68754 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-980-Mobile +humanName: GeForce GTX 980 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-09-21' + GPU Base Frequency: 1064 MHz + GPU Boost Frequency: 1140 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-GXX-A1 + TDP: unknown + FP32 Compute: 4.669 TFLOPS + FP64 Compute: 145.9 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml new file mode 100644 index 00000000..61fd47ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-980-Ti +humanName: GeForce GTX 980 Ti +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-06-02' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1076 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 336.6 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 176 + Shader Processor Count: 2816 + Die Size: 601 mm² + GPU: GM200 + GPU Variant: GM200-310-A1 + TDP: 250 W + FP32 Compute: 6.060 TFLOPS + FP64 Compute: 189.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml new file mode 100644 index 00000000..a0c0d8af --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-980 +humanName: GeForce GTX 980 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-09-19' + GPU Base Frequency: 1127 MHz + GPU Boost Frequency: 1216 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-400-A1 + TDP: 165 W + FP32 Compute: 4.981 TFLOPS + FP64 Compute: 155.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml new file mode 100644 index 00000000..ce8cf4c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-980M +humanName: GeForce GTX 980M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-10-07' + GPU Base Frequency: 1038 MHz + GPU Boost Frequency: 1127 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-GX-A1 + TDP: unknown + FP32 Compute: 3.462 TFLOPS + FP64 Compute: 108.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml new file mode 100644 index 00000000..5f6ed38f --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-TITAN-X +humanName: GeForce GTX TITAN X +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-17' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1089 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 336.6 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 601 mm² + GPU: GM200 + GPU Variant: GM200-400-A1 + TDP: 250 W + FP32 Compute: 6.691 TFLOPS + FP64 Compute: 209.1 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml new file mode 100644 index 00000000..c0f0797c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml @@ -0,0 +1,32 @@ +name: Jetson-Nano +humanName: Jetson Nano +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 20 nm + DirectX Support: '12.1' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: 'Mar 2019' + GPU Base Frequency: 640 MHz + GPU Boost Frequency: 921 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 4 GB + VRAM Type: LPDDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 128 + Die Size: 118 mm² + GPU: GM20B + GPU Variant: TM660M-A2 + TDP: 10 W + FP32 Compute: 235.8 GFLOPS + FP64 Compute: 7.368 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml new file mode 100644 index 00000000..37976efa --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml @@ -0,0 +1,28 @@ +name: Jetson-TX1 +humanName: Jetson TX1 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 20 nm + DirectX Support: '12.1' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2015-01-04' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 4 GB + VRAM Type: LPDDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 118 mm² + GPU: GM20B + GPU Variant: TM670D-A1 + TDP: 6 W + FP32 Compute: 511.0 GFLOPS + FP64 Compute: 15.97 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml new file mode 100644 index 00000000..ebdaa5ca --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml @@ -0,0 +1,33 @@ +name: Quadro-M2000 +humanName: Quadro M2000 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-04-08' + GPU Base Frequency: 796 MHz + GPU Boost Frequency: 1163 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 105.8 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 228 mm² + GPU: GM206 + GPU Variant: GM206-875-A1 + TDP: 75 W + FP32 Compute: 1.786 TFLOPS + FP64 Compute: 55.82 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: None + Length: 201 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml new file mode 100644 index 00000000..4bb8bdd0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-M2200-Mobile +humanName: Quadro M2200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 695 MHz + GPU Boost Frequency: 1036 MHz + VRAM Frequency: 1377 MHz + VRAM Bandwidth: 88.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 228 mm² + GPU: GM206 + TDP: 55 W + FP32 Compute: 2.122 TFLOPS + FP64 Compute: 66.30 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml new file mode 100644 index 00000000..097c97af --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml @@ -0,0 +1,30 @@ +name: Quadro-M3000-SE +humanName: Quadro M3000 SE +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-02' + GPU Base Frequency: 823 MHz + GPU Boost Frequency: 924 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 398 mm² + GPU: GM204 + TDP: 75 W + FP32 Compute: 1.892 TFLOPS + FP64 Compute: 59.14 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml new file mode 100644 index 00000000..d5c04e53 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M3000M +humanName: Quadro M3000M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-18' + GPU Base Frequency: 823 MHz + GPU Boost Frequency: 924 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-Q1-A1 + TDP: 75 W + FP32 Compute: 1.892 TFLOPS + FP64 Compute: 59.14 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml new file mode 100644 index 00000000..0caced54 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml @@ -0,0 +1,31 @@ +name: Quadro-M4000 +humanName: Quadro M4000 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-06-29' + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 104 + Shader Processor Count: 1664 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-850-A1 + TDP: 120 W + FP32 Compute: 2.573 TFLOPS + FP64 Compute: 80.39 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml new file mode 100644 index 00000000..ecc66fa6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M4000M +humanName: Quadro M4000M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-18' + GPU Base Frequency: 975 MHz + GPU Boost Frequency: 1013 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-Q3-A1 + TDP: 100 W + FP32 Compute: 2.593 TFLOPS + FP64 Compute: 81.04 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml new file mode 100644 index 00000000..7c2b4dd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml @@ -0,0 +1,35 @@ +name: Quadro-M5000 +humanName: Quadro M5000 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-06-29' + GPU Base Frequency: 861 MHz + GPU Boost Frequency: 1038 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 211.6 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-875-A1 + TDP: 150 W + FP32 Compute: 4.252 TFLOPS + FP64 Compute: 132.9 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml new file mode 100644 index 00000000..4f40dd53 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M5000M +humanName: Quadro M5000M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-18' + GPU Base Frequency: 962 MHz + GPU Boost Frequency: 1051 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: N16E-Q5-A1 + TDP: 100 W + FP32 Compute: 3.229 TFLOPS + FP64 Compute: 100.9 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml new file mode 100644 index 00000000..650fa687 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-M5500-Mobile +humanName: Quadro M5500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-04-08' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1165 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 150 W + FP32 Compute: 4.772 TFLOPS + FP64 Compute: 149.1 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml new file mode 100644 index 00000000..5fedf8ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml @@ -0,0 +1,35 @@ +name: Quadro-M6000-24-GB +humanName: Quadro M6000 24 GB +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-03-05' + GPU Base Frequency: 988 MHz + GPU Boost Frequency: 1114 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 317.4 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 601 mm² + GPU: GM200 + GPU Variant: GM200-880-A1 + TDP: 250 W + FP32 Compute: 6.844 TFLOPS + FP64 Compute: 213.9 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml new file mode 100644 index 00000000..9440c235 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml @@ -0,0 +1,34 @@ +name: Quadro-M6000 +humanName: Quadro M6000 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-21' + GPU Base Frequency: 988 MHz + GPU Boost Frequency: 1114 MHz + VRAM Frequency: 1653 MHz + VRAM Bandwidth: 317.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 601 mm² + GPU: GM200 + TDP: 250 W + FP32 Compute: 6.844 TFLOPS + FP64 Compute: 213.9 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.2 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml new file mode 100644 index 00000000..ca50a47b --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml @@ -0,0 +1,32 @@ +name: Switch-GPU-16nm +humanName: Switch GPU 16nm +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2019-08-16' + GPU Base Frequency: 384 MHz + GPU Boost Frequency: 768 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 100 mm² + GPU: GM20B + GPU Variant: ODNX10-A1 + TDP: 15 W + FP32 Compute: 393.2 GFLOPS + FP64 Compute: 12.29 GFLOPS (1:32) + Outputs: 1x USB Type-C + Length: 239 mm + Width: 101 mm + Height: 28 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml new file mode 100644 index 00000000..5a8c24f4c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml @@ -0,0 +1,32 @@ +name: Switch-GPU-20nm +humanName: Switch GPU 20nm +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 20 nm + DirectX Support: '12.1' + Vulkan Support: '1.1' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2017-03-17' + GPU Base Frequency: 384 MHz + GPU Boost Frequency: 768 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 118 mm² + GPU: GM20B + GPU Variant: ODNX02-A2 + TDP: 15 W + FP32 Compute: 393.2 GFLOPS + FP64 Compute: 12.29 GFLOPS (1:32) + Outputs: 1x USB Type-C + Length: 239 mm + Width: 101 mm + Height: 28 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml new file mode 100644 index 00000000..262e2ad7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml @@ -0,0 +1,29 @@ +name: Tesla-M4 +humanName: Tesla M4 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-10' + GPU Base Frequency: 872 MHz + GPU Boost Frequency: 1072 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 228 mm² + GPU: GM206 + TDP: 50 W + FP32 Compute: 2.195 TFLOPS + FP64 Compute: 68.61 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml new file mode 100644 index 00000000..bb8248f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-M40-24-GB +humanName: Tesla M40 24 GB +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-10' + GPU Base Frequency: 948 MHz + GPU Boost Frequency: 1112 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 601 mm² + GPU: GM200 + GPU Variant: GM200-895-A1 + TDP: 250 W + FP32 Compute: 6.832 TFLOPS + FP64 Compute: 213.5 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml new file mode 100644 index 00000000..ea5cc928 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml @@ -0,0 +1,32 @@ +name: Tesla-M40 +humanName: Tesla M40 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-10' + GPU Base Frequency: 948 MHz + GPU Boost Frequency: 1112 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 288.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 601 mm² + GPU: GM200 + GPU Variant: GM200-895-A1 + TDP: 250 W + FP32 Compute: 6.832 TFLOPS + FP64 Compute: 213.5 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml new file mode 100644 index 00000000..5bb8b92b --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml @@ -0,0 +1,31 @@ +name: Tesla-M6-Mobile +humanName: Tesla M6 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1180 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-995-A1 + TDP: 100 W + FP32 Compute: 3.625 TFLOPS + FP64 Compute: 113.3 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml new file mode 100644 index 00000000..cec281cf --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml @@ -0,0 +1,31 @@ +name: Tesla-M6-X2-Mobile +humanName: Tesla M6 X2 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1180 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 398 mm² + GPU: GM204 + GPU Variant: GM204-995-A1 + TDP: 100 W + FP32 Compute: 3.625 TFLOPS + FP64 Compute: 113.3 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml new file mode 100644 index 00000000..86878ba1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml @@ -0,0 +1,31 @@ +name: Tesla-M60 +humanName: Tesla M60 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell 2.0 + Lithography: 28 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-30' + GPU Base Frequency: 557 MHz + GPU Boost Frequency: 1178 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 160.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 398 mm² + GPU: GM204 + TDP: 300 W + FP32 Compute: 4.825 TFLOPS + FP64 Compute: 150.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell.yaml b/specs/GPUs-CONSUMER/Maxwell.yaml new file mode 100644 index 00000000..b83b1ac5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell.yaml @@ -0,0 +1,56 @@ +name: Maxwell +humanName: Maxwell +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + Release Date: '2014-01-13' +sections: + - header: WHOLE RANGE + members: + - GeForce-830A + - GeForce-830M + - GeForce-840A + - GeForce-840M + - GeForce-845M + - GeForce-920MX + - GeForce-930A + - GeForce-930M + - GeForce-940A + - GeForce-940M + - GeForce-940MX + - GeForce-945A + - GeForce-945M + - GeForce-GTX-745-OEM + - GeForce-GTX-750 + - GeForce-GTX-750-Ti + - GeForce-GTX-850A + - GeForce-GTX-850M + - GeForce-GTX-860M + - GeForce-GTX-950A + - GeForce-GTX-950M + - GeForce-GTX-950M-Mac-Edition + - GeForce-GTX-960M + - GeForce-GTX-860M-OEM + - GeForce-MX110 + - GeForce-MX130 + - GRID-M3-3020 + - GRID-M10-8Q + - GRID-M40 + - NVS-810 + - Quadro-K620 + - Quadro-K620M + - Quadro-K1200 + - Quadro-K2200 + - Quadro-K2200M + - Quadro-M500M + - Quadro-M520-Mobile + - Quadro-M600M + - Quadro-M620-Mobile + - Quadro-M1000M + - Quadro-M1200-Mobile + - Quadro-M2000M + - Tesla-M10 diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml new file mode 100644 index 00000000..2668305b --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml @@ -0,0 +1,32 @@ +name: GRID-M10-8Q +humanName: GRID M10-8Q +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-05-18' + GPU Base Frequency: 1033 MHz + GPU Boost Frequency: 1306 MHz + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 83.20 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-570-A2 + TDP: 225 W + FP32 Compute: 1.672 TFLOPS + FP64 Compute: 52.24 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml new file mode 100644 index 00000000..b537c746 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml @@ -0,0 +1,31 @@ +name: GRID-M3-3020 +humanName: GRID M3-3020 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-05-18' + GPU Base Frequency: 1033 MHz + GPU Boost Frequency: 1306 MHz + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 83.20 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + TDP: unknown + FP32 Compute: 1.672 TFLOPS + FP64 Compute: 52.24 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml new file mode 100644 index 00000000..2acc63ac --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml @@ -0,0 +1,27 @@ +name: GRID-M40 +humanName: GRID M40 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-05-18' + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 83.20 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 148 mm² + GPU: GM107 + TDP: 50 W + FP32 Compute: 793.3 GFLOPS + FP64 Compute: 24.79 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml new file mode 100644 index 00000000..ad3f272f --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml @@ -0,0 +1,30 @@ +name: GeForce-830A +humanName: GeForce 830A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 1082 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 588.8 GFLOPS + FP64 Compute: 18.40 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml new file mode 100644 index 00000000..359f74d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml @@ -0,0 +1,30 @@ +name: GeForce-830M +humanName: GeForce 830M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-12' + GPU Base Frequency: 1082 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 588.8 GFLOPS + FP64 Compute: 18.40 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml new file mode 100644 index 00000000..287ac8fe --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml @@ -0,0 +1,30 @@ +name: GeForce-840A +humanName: GeForce 840A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-17' + GPU Base Frequency: 1029 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml new file mode 100644 index 00000000..e4c7c929 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml @@ -0,0 +1,31 @@ +name: GeForce-840M +humanName: GeForce 840M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-12' + GPU Base Frequency: 1029 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N15S-GT-S-A2 + TDP: 33 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml new file mode 100644 index 00000000..f878f76c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml @@ -0,0 +1,30 @@ +name: GeForce-845M +humanName: GeForce 845M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-26' + GPU Base Frequency: 1071 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 883.2 GFLOPS + FP64 Compute: 27.60 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml new file mode 100644 index 00000000..86d1b7b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml @@ -0,0 +1,31 @@ +name: GeForce-920MX +humanName: GeForce 920MX +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-03-25' + GPU Base Frequency: 965 MHz + GPU Boost Frequency: 993 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 256 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N16V-GMR1-S-A2 + TDP: 16 W + FP32 Compute: 508.4 GFLOPS + FP64 Compute: 15.89 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml new file mode 100644 index 00000000..3709f648 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml @@ -0,0 +1,30 @@ +name: GeForce-930A +humanName: GeForce 930A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 928 MHz + GPU Boost Frequency: 941 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 722.7 GFLOPS + FP64 Compute: 22.58 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml new file mode 100644 index 00000000..36a97df8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml @@ -0,0 +1,31 @@ +name: GeForce-930M +humanName: GeForce 930M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 549 MHz + GPU Boost Frequency: 549 MHz + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N16S-GM-S-A2 + TDP: 33 W + FP32 Compute: 421.6 GFLOPS + FP64 Compute: 13.18 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml new file mode 100644 index 00000000..c163254e --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml @@ -0,0 +1,30 @@ +name: GeForce-940A +humanName: GeForce 940A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 1029 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml new file mode 100644 index 00000000..79018572 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml @@ -0,0 +1,31 @@ +name: GeForce-940M +humanName: GeForce 940M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 1020 MHz + GPU Boost Frequency: 1098 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16S-GT1-KB-B + TDP: 75 W + FP32 Compute: 1,124 GFLOPS + FP64 Compute: 35.14 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml new file mode 100644 index 00000000..35dadd1c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml @@ -0,0 +1,31 @@ +name: GeForce-940MX +humanName: GeForce 940MX +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-06-28' + GPU Base Frequency: 795 MHz + GPU Boost Frequency: 861 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16S-GT1R + TDP: 23 W + FP32 Compute: 881.7 GFLOPS + FP64 Compute: 27.55 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml new file mode 100644 index 00000000..09901e94 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml @@ -0,0 +1,30 @@ +name: GeForce-945A +humanName: GeForce 945A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 1006 MHz + GPU Boost Frequency: 1189 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 33 W + FP32 Compute: 913.2 GFLOPS + FP64 Compute: 28.54 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml new file mode 100644 index 00000000..87a8c824 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml @@ -0,0 +1,30 @@ +name: GeForce-945M +humanName: GeForce 945M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-10-27' + GPU Base Frequency: 928 MHz + GPU Boost Frequency: 1020 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + FP64 Compute: 40.80 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml new file mode 100644 index 00000000..4a30cb74 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-745-OEM +humanName: GeForce GTX 745 OEM +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-02-18' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-220-A2 + TDP: 55 W + FP32 Compute: 793.3 GFLOPS + FP64 Compute: 24.79 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.4a1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml new file mode 100644 index 00000000..c72c73ff --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-750-Ti +humanName: GeForce GTX 750 Ti +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-02-18' + GPU Base Frequency: 1020 MHz + GPU Boost Frequency: 1085 MHz + VRAM Frequency: 1350 MHz + VRAM Bandwidth: 86.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-400-A2 + TDP: 60 W + FP32 Compute: 1,389 GFLOPS + FP64 Compute: 43.40 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml new file mode 100644 index 00000000..d7ae15ec --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-750 +humanName: GeForce GTX 750 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-02-18' + GPU Base Frequency: 1020 MHz + GPU Boost Frequency: 1085 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-300-A2 + TDP: 55 W + FP32 Compute: 1,111 GFLOPS + FP64 Compute: 34.72 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.4a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml new file mode 100644 index 00000000..b97056b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-850A +humanName: GeForce GTX 850A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-17' + GPU Base Frequency: 902 MHz + GPU Boost Frequency: 902 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N15P-GT-A1 + TDP: 45 W + FP32 Compute: 1,155 GFLOPS + FP64 Compute: 36.08 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml new file mode 100644 index 00000000..a817ae22 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-850M +humanName: GeForce GTX 850M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-03-12' + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 32.03 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N15P-GT-A1 + TDP: 45 W + FP32 Compute: 1,155 GFLOPS + FP64 Compute: 36.08 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml new file mode 100644 index 00000000..be92bb27 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-860M-OEM +humanName: GeForce GTX 860M OEM +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-02-05' + GPU Base Frequency: 1097 MHz + GPU Boost Frequency: 1176 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N15P-GX-A1 + TDP: 75 W + FP32 Compute: 1.505 TFLOPS + FP64 Compute: 47.04 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml new file mode 100644 index 00000000..4d2dbcf5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-860M +humanName: GeForce GTX 860M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-01-13' + GPU Base Frequency: 1020 MHz + GPU Boost Frequency: 1020 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N15P-GX-A1 + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + FP64 Compute: 40.80 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml new file mode 100644 index 00000000..daf3fd6a --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-950A +humanName: GeForce GTX 950A +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 993 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 32.03 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-GT + TDP: 75 W + FP32 Compute: 1,439 GFLOPS + FP64 Compute: 44.96 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml new file mode 100644 index 00000000..cf7ff59f --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-950M-Mac-Edition +humanName: GeForce GTX 950M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 993 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-GT + TDP: 75 W + FP32 Compute: 1,439 GFLOPS + FP64 Compute: 44.96 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml new file mode 100644 index 00000000..b2d921e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-950M +humanName: GeForce GTX 950M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 993 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 4 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-GT + TDP: 75 W + FP32 Compute: 1,439 GFLOPS + FP64 Compute: 44.96 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml new file mode 100644 index 00000000..c1f7f2eb --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-960M +humanName: GeForce GTX 960M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-13' + GPU Base Frequency: 1097 MHz + GPU Boost Frequency: 1176 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-GX-A1 + TDP: 75 W + FP32 Compute: 1.505 TFLOPS + FP64 Compute: 47.04 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml new file mode 100644 index 00000000..c8c1457a --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX110 +humanName: GeForce MX110 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-11-17' + GPU Base Frequency: 978 MHz + GPU Boost Frequency: 1006 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N16V-GMR1-S-A2 + TDP: 30 W + FP32 Compute: 772.6 GFLOPS + FP64 Compute: 24.14 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml new file mode 100644 index 00000000..e1cf01d3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX130 +humanName: GeForce MX130 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-11-17' + GPU Base Frequency: 1109 MHz + GPU Boost Frequency: 1189 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N16S-GTR-S-A2 + TDP: 30 W + FP32 Compute: 913.2 GFLOPS + FP64 Compute: 28.54 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml b/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml new file mode 100644 index 00000000..5786c821 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml @@ -0,0 +1,31 @@ +name: NVS-810 +humanName: NVS 810 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-11-04' + GPU Base Frequency: 902 MHz + GPU Boost Frequency: 1033 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + TDP: 68 W + FP32 Compute: 1,058 GFLOPS + FP64 Compute: 33.06 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 8x mini-DisplayPort 1.2 + Power Connectors: None + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml new file mode 100644 index 00000000..5b3091b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml @@ -0,0 +1,33 @@ +name: Quadro-K1200 +humanName: Quadro K1200 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-01-28' + GPU Base Frequency: 1058 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-860-A2 + TDP: 45 W + FP32 Compute: 1,151 GFLOPS + FP64 Compute: 35.97 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.2 + Power Connectors: None + Length: 160 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml new file mode 100644 index 00000000..8a8b390c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml @@ -0,0 +1,34 @@ +name: Quadro-K2200 +humanName: Quadro K2200 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 1046 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + TDP: 68 W + FP32 Compute: 1,439 GFLOPS + FP64 Compute: 44.96 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: None + Length: 202 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml new file mode 100644 index 00000000..7cd6874c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml @@ -0,0 +1,30 @@ +name: Quadro-K2200M +humanName: Quadro K2200M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-19' + GPU Base Frequency: 1150 MHz + GPU Boost Frequency: 1150 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + TDP: 65 W + FP32 Compute: 1,472 GFLOPS + FP64 Compute: 46.00 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml new file mode 100644 index 00000000..858d217c --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml @@ -0,0 +1,35 @@ +name: Quadro-K620 +humanName: Quadro K620 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2014-07-22' + GPU Base Frequency: 1058 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-850-A2 + TDP: 45 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.2 + Power Connectors: None + Length: 160 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml new file mode 100644 index 00000000..72392841 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml @@ -0,0 +1,31 @@ +name: Quadro-K620M +humanName: Quadro K620M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-03-01' + GPU Base Frequency: 1029 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 16.02 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N15M-Q3-S-A2 + TDP: 30 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml new file mode 100644 index 00000000..b848ac53 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M1000M +humanName: Quadro M1000M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-18' + GPU Base Frequency: 993 MHz + GPU Boost Frequency: 1072 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-Q1-A2 + TDP: 40 W + FP32 Compute: 1,098 GFLOPS + FP64 Compute: 34.30 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml new file mode 100644 index 00000000..9f8c610d --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-M1200-Mobile +humanName: Quadro M1200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 991 MHz + GPU Boost Frequency: 1148 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + TDP: 45 W + FP32 Compute: 1,469 GFLOPS + FP64 Compute: 45.92 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml new file mode 100644 index 00000000..d2afc0a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M2000M +humanName: Quadro M2000M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-12-03' + GPU Base Frequency: 1098 MHz + GPU Boost Frequency: 1137 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: N16P-Q3-A2 + TDP: 55 W + FP32 Compute: 1,455 GFLOPS + FP64 Compute: 45.48 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml new file mode 100644 index 00000000..6166e6c3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml @@ -0,0 +1,31 @@ +name: Quadro-M500M +humanName: Quadro M500M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-04-27' + GPU Base Frequency: 1029 MHz + GPU Boost Frequency: 1124 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108S + GPU Variant: N15M-Q3-S-A2 + TDP: 30 W + FP32 Compute: 863.2 GFLOPS + FP64 Compute: 26.98 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml new file mode 100644 index 00000000..54880a82 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-M520-Mobile +humanName: Quadro M520 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 965 MHz + GPU Boost Frequency: 1176 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 77 mm² + GPU: GM108 + TDP: 25 W + FP32 Compute: 903.2 GFLOPS + FP64 Compute: 28.22 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml new file mode 100644 index 00000000..0d83c4cc --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml @@ -0,0 +1,30 @@ +name: Quadro-M600M +humanName: Quadro M600M +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2015-08-18' + GPU Base Frequency: 837 MHz + GPU Boost Frequency: 876 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 384 + Die Size: 148 mm² + GPU: GM107 + TDP: 30 W + FP32 Compute: 672.8 GFLOPS + FP64 Compute: 21.02 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml new file mode 100644 index 00000000..da80ab24 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-M620-Mobile +humanName: Quadro M620 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 756 MHz + GPU Boost Frequency: 1018 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 80.19 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 148 mm² + GPU: GM107 + TDP: 30 W + FP32 Compute: 1,042 GFLOPS + FP64 Compute: 32.58 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml b/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml new file mode 100644 index 00000000..4f8fb790 --- /dev/null +++ b/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml @@ -0,0 +1,32 @@ +name: Tesla-M10 +humanName: Tesla M10 +isPart: true +type: Graphics Card +data: + Architecture: Maxwell + Lithography: 28 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-05-18' + GPU Base Frequency: 1033 MHz + GPU Boost Frequency: 1306 MHz + VRAM Frequency: 1300 MHz + VRAM Bandwidth: 83.20 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 148 mm² + GPU: GM107 + GPU Variant: GM107-570-A2 + TDP: 225 W + FP32 Compute: 1.672 TFLOPS + FP64 Compute: 52.24 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/PX.yaml b/specs/GPUs-CONSUMER/PX.yaml new file mode 100644 index 00000000..4fac8f12 --- /dev/null +++ b/specs/GPUs-CONSUMER/PX.yaml @@ -0,0 +1,14 @@ +name: PX +humanName: PX +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: 'Unknown' +sections: + - header: WHOLE RANGE + members: + - M9125-PCIe-x16 diff --git a/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml new file mode 100644 index 00000000..d65ad13d --- /dev/null +++ b/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml @@ -0,0 +1,28 @@ +name: M9125-PCIe-x16 +humanName: M9125 PCIe x16 +isPart: true +type: Graphics Card +data: + Architecture: PX + Lithography: 90 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: 'Unknown' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: PX-A1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 2x LFH60 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Parhelia.yaml b/specs/GPUs-CONSUMER/Parhelia.yaml new file mode 100644 index 00000000..13489b89 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia.yaml @@ -0,0 +1,25 @@ +name: Parhelia +humanName: Parhelia +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: '2003' +sections: + - header: WHOLE RANGE + members: + - Millenium-P650 + - Millenium-P650-LP-MDD-PCIe + - Millenium-P650-PCIe + - Millenium-P750 + - Parhelia-128-MB + - Parhelia-256-MB + - Parhelia-DL256 + - Parhelia-HR256 + - Parhelia-PCI + - Parhelia-Precision-SDT + - Parhelia-Precision-SGT + - Parhelia-APVe diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml new file mode 100644 index 00000000..5db77403 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml @@ -0,0 +1,26 @@ +name: Millenium-P650-LP-MDD-PCIe +humanName: Millenium P650 LP MDD PCIe +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-05-10' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: 130 mm² + GPU: Parhelia-LX + GPU Variant: MP-A4L + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml new file mode 100644 index 00000000..f919cb93 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml @@ -0,0 +1,26 @@ +name: Millenium-P650-PCIe +humanName: Millenium P650 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-05-10' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: 130 mm² + GPU: Parhelia-LX + GPU Variant: MP-A4L + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml new file mode 100644 index 00000000..9f3850a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml @@ -0,0 +1,26 @@ +name: Millenium-P650 +humanName: Millenium P650 +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-05-10' + VRAM Frequency: 230 MHz + VRAM Bandwidth: 7.360 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: 130 mm² + GPU: Parhelia-LX + GPU Variant: MP-A4L + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml new file mode 100644 index 00000000..e402ecfc --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml @@ -0,0 +1,25 @@ +name: Millenium-P750 +humanName: Millenium P750 +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-05-10' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: 130 mm² + GPU: Parhelia-LX + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml new file mode 100644 index 00000000..d017f3c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml @@ -0,0 +1,27 @@ +name: Parhelia-128-MB +humanName: Parhelia 128 MB +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2004-03-30' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + GPU Variant: PHF-D2 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml new file mode 100644 index 00000000..3bf54c91 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml @@ -0,0 +1,27 @@ +name: Parhelia-256-MB +humanName: Parhelia 256 MB +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2004-03-30' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + GPU Variant: PHF-D2 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml new file mode 100644 index 00000000..66a31e2c --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml @@ -0,0 +1,28 @@ +name: Parhelia-APVe +humanName: Parhelia APVe +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2006-06-14' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 8 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 168 mm + Width: 97 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml new file mode 100644 index 00000000..d4c78c20 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml @@ -0,0 +1,26 @@ +name: Parhelia-DL256 +humanName: Parhelia DL256 +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x LFH60 + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml new file mode 100644 index 00000000..05e6bd5f --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml @@ -0,0 +1,26 @@ +name: Parhelia-HR256 +humanName: Parhelia HR256 +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: 'Sep 2003' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x LFH60 + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml new file mode 100644 index 00000000..90e3974e --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml @@ -0,0 +1,26 @@ +name: Parhelia-PCI +humanName: Parhelia PCI +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml new file mode 100644 index 00000000..7a9fc4bb --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml @@ -0,0 +1,26 @@ +name: Parhelia-Precision-SDT +humanName: Parhelia Precision SDT +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml new file mode 100644 index 00000000..57da9529 --- /dev/null +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml @@ -0,0 +1,26 @@ +name: Parhelia-Precision-SGT +humanName: Parhelia Precision SGT +isPart: true +type: Graphics Card +data: + Architecture: Parhelia + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Die Size: 174 mm² + GPU: Parhelia-512 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Pascal.yaml b/specs/GPUs-CONSUMER/Pascal.yaml new file mode 100644 index 00000000..2f80eebd --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal.yaml @@ -0,0 +1,99 @@ +name: Pascal +humanName: Pascal +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + Release Date: '2016' +sections: + - header: WHOLE RANGE + members: + - GeForce-GT-1010 + - GeForce-GT-1010-DDR4 + - GeForce-GT-1030 + - GeForce-GT-1030-DDR4 + - GeForce-GTX-1050 + - GeForce-GTX-1050-3-GB + - GeForce-GTX-1050-Max-Q + - GeForce-GTX-1050-Mobile + - GeForce-GTX-1050-Ti + - GeForce-GTX-1050-Ti-Max-Q + - GeForce-GTX-1050-Ti-Mobile + - GeForce-GTX-1060-3-GB-GP104 + - GeForce-GTX-1060-5-GB + - GeForce-GTX-1060-6-GB + - GeForce-GTX-1060-6-GB-9Gbps + - GeForce-GTX-1060-6-GB-GDDR5X + - GeForce-GTX-1060-6-GB-GP104 + - GeForce-GTX-1060-6-GB-Rev.-2 + - GeForce-GTX-1060-8-GB-GDDR5X + - GeForce-GTX-1060-Max-Q + - GeForce-GTX-1060-Mobile + - GeForce-GTX-1070 + - GeForce-GTX-1070-GDDR5X + - GeForce-GTX-1070-Max-Q + - GeForce-GTX-1070-Mobile + - GeForce-GTX-1070-Ti + - GeForce-GTX-1080 + - GeForce-GTX-1080-11Gbps + - GeForce-GTX-1080-Max-Q + - GeForce-GTX-1080-Mobile + - GeForce-GTX-1080-Ti + - GeForce-GTX-1080-Ti-10-GB + - GeForce-GTX-1080-Ti-12-GB + - GeForce-MX150 + - GeForce-MX230 + - GeForce-MX250 + - GeForce-MX350 + - GeForce-GTX-1060-3-GB + - GeForce-MX150-GP107 + - GeForce-MX330 + - Jetson-TX2 + - P102-100 + - P102-101 + - P104-100 + - P104-101 + - P106-090 + - P106-100 + - P106M + - Quadro-GP100 + - Quadro-P400 + - Quadro-P500-Mobile + - Quadro-P520-Max-Q + - Quadro-P520-Mobile + - Quadro-P600 + - Quadro-P600-Mobile + - Quadro-P620 + - Quadro-P620-Mobile + - Quadro-P1000 + - Quadro-P2000 + - Quadro-P2000-Mobile + - Quadro-P3000-Mobile + - Quadro-P3200-Max-Q + - Quadro-P3200-Mobile + - Quadro-P4000 + - Quadro-P4000-Max-Q + - Quadro-P4000-Mobile + - Quadro-P4200-Max-Q + - Quadro-P4200-Mobile + - Quadro-P5000 + - Quadro-P5000-Mobile + - Quadro-P5000-X2-Mobile + - Quadro-P5200-Max-Q + - Quadro-P5200-Mobile + - Quadro-P6000 + - Quadro-P1000-Mobile + - Quadro-P2200 + - Tesla-P4 + - Tesla-P6-Mobile + - Tesla-P10 + - Tesla-P40 + - Tesla-P100-DGXS + - Tesla-P100-PCIe-12-GB + - Tesla-P100-PCIe-16-GB + - Tesla-P100-SXM2 + - TITAN-Xp + - TITAN-X-Pascal diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml new file mode 100644 index 00000000..3f5c00e3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml @@ -0,0 +1,34 @@ +name: GeForce-GT-1010-DDR4 +humanName: GeForce GT 1010 DDR4 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-13' + GPU Base Frequency: 1152 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 16.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: GP108-200-A1 + TDP: 20 W + FP32 Compute: 706.6 GFLOPS + FP64 Compute: 29.44 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x mini-HDMI 2.0 + Power Connectors: None + Length: 147 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml new file mode 100644 index 00000000..92448552 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml @@ -0,0 +1,34 @@ +name: GeForce-GT-1010 +humanName: GeForce GT 1010 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-01-13' + GPU Base Frequency: 1228 MHz + GPU Boost Frequency: 1468 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: GP108-200-A1 + TDP: 30 W + FP32 Compute: 751.6 GFLOPS + FP64 Compute: 31.32 GFLOPS (1:24) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x mini-HDMI 2.0 + Power Connectors: None + Length: 147 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml new file mode 100644 index 00000000..88de9ab1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml @@ -0,0 +1,36 @@ +name: GeForce-GT-1030-DDR4 +humanName: GeForce GT 1030 DDR4 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-12' + GPU Base Frequency: 1152 MHz + GPU Boost Frequency: 1379 MHz + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 16.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR4 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: GP108-310-A1 + TDP: 20 W + FP32 Compute: 1,059 GFLOPS + FP64 Compute: 33.10 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + Power Connectors: None + Length: 145 mm + Width: 69 mm + Height: 15 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml new file mode 100644 index 00000000..089335e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml @@ -0,0 +1,36 @@ +name: GeForce-GT-1030 +humanName: GeForce GT 1030 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-05-17' + GPU Base Frequency: 1228 MHz + GPU Boost Frequency: 1468 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: GP108-300-A1 + TDP: 30 W + FP32 Compute: 1,127 GFLOPS + FP64 Compute: 35.23 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + Power Connectors: None + Length: 145 mm + Width: 69 mm + Height: 18 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml new file mode 100644 index 00000000..31ad0dc8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-1050-3-GB +humanName: GeForce GTX 1050 3 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-05-21' + GPU Base Frequency: 1392 MHz + GPU Boost Frequency: 1518 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 84.10 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 96 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: GP107-301-K1-A1 + TDP: 75 W + FP32 Compute: 2.332 TFLOPS + FP64 Compute: 72.86 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml new file mode 100644 index 00000000..4116fb16 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1050-Max-Q +humanName: GeForce GTX 1050 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-01-03' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1139 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: N17P-G0-A1 + TDP: 75 W + FP32 Compute: 1,458 GFLOPS + FP64 Compute: 45.56 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml new file mode 100644 index 00000000..955a7978 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1050-Mobile +humanName: GeForce GTX 1050 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-03' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1493 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: N17P-G0-A1 + TDP: 75 W + FP32 Compute: 1.911 TFLOPS + FP64 Compute: 59.72 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml new file mode 100644 index 00000000..eefbc739 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1050-Ti-Max-Q +humanName: GeForce GTX 1050 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-01-03' + GPU Base Frequency: 1152 MHz + GPU Boost Frequency: 1291 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: N17P-G1-A1 + TDP: 75 W + FP32 Compute: 1.983 TFLOPS + FP64 Compute: 61.97 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml new file mode 100644 index 00000000..19c5113c --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-1050-Ti-Mobile +humanName: GeForce GTX 1050 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-01' + GPU Base Frequency: 1493 MHz + GPU Boost Frequency: 1620 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 200 mm² + GPU: GP106 + TDP: 75 W + FP32 Compute: 2.488 TFLOPS + FP64 Compute: 77.76 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml new file mode 100644 index 00000000..79155141 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-1050-Ti +humanName: GeForce GTX 1050 Ti +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-25' + GPU Base Frequency: 1291 MHz + GPU Boost Frequency: 1392 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: GP107-400-A1 + TDP: 75 W + FP32 Compute: 2.138 TFLOPS + FP64 Compute: 66.82 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml new file mode 100644 index 00000000..6601f7a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-1050 +humanName: GeForce GTX 1050 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-25' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: GP107-300-A1 + TDP: 75 W + FP32 Compute: 1.862 TFLOPS + FP64 Compute: 58.20 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml new file mode 100644 index 00000000..6f0ca0d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-3-GB-GP104 +humanName: GeForce GTX 1060 3 GB GP104 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-12-25' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1708 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1152 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-140-KA-A1 + TDP: 120 W + FP32 Compute: 3.935 TFLOPS + FP64 Compute: 123.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml new file mode 100644 index 00000000..58f7ad3a --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-3-GB +humanName: GeForce GTX 1060 3 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-18' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1708 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1152 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-300-A1 + TDP: 120 W + FP32 Compute: 3.935 TFLOPS + FP64 Compute: 123.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml new file mode 100644 index 00000000..1b490026 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-5-GB +humanName: GeForce GTX 1060 5 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-12-26' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 160.2 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 160 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-350-K3-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml new file mode 100644 index 00000000..beb22ad5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-6-GB-9Gbps +humanName: GeForce GTX 1060 6 GB 9Gbps +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-04-20' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 2257 MHz + VRAM Bandwidth: 216.7 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-410-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml new file mode 100644 index 00000000..b929d45f --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-6-GB-GDDR5X +humanName: GeForce GTX 1060 6 GB GDDR5X +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-10-18' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5X + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-150-KA-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml new file mode 100644 index 00000000..5d844c68 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-6-GB-GP104 +humanName: GeForce GTX 1060 6 GB GP104 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-08' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1708 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-150-KA-A1 + TDP: 120 W + FP32 Compute: 4.372 TFLOPS + FP64 Compute: 136.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml new file mode 100644 index 00000000..0b1e83c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-6-GB-Rev.-2 +humanName: GeForce GTX 1060 6 GB Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-01-05' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-400-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml new file mode 100644 index 00000000..673bfda0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-1060-6-GB +humanName: GeForce GTX 1060 6 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-07-19' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-400-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml new file mode 100644 index 00000000..9ea6a760 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1060-8-GB-GDDR5X +humanName: GeForce GTX 1060 8 GB GDDR5X +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-150-KA-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml new file mode 100644 index 00000000..1c27cc8e --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1060-Max-Q +humanName: GeForce GTX 1060 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-06-27' + GPU Base Frequency: 1063 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: N17E-G1-A1 + TDP: 80 W + FP32 Compute: 3.789 TFLOPS + FP64 Compute: 118.4 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml new file mode 100644 index 00000000..ee9f08c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1060-Mobile +humanName: GeForce GTX 1060 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-15' + GPU Base Frequency: 1405 MHz + GPU Boost Frequency: 1671 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: N17E-G1-A1 + TDP: 80 W + FP32 Compute: 4.278 TFLOPS + FP64 Compute: 133.7 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml new file mode 100644 index 00000000..ff9ac309 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1070-GDDR5X +humanName: GeForce GTX 1070 GDDR5X +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-12-04' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1683 MHz + VRAM Frequency: 1001 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-200-A1 + TDP: 150 W + FP32 Compute: 6.463 TFLOPS + FP64 Compute: 202.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml new file mode 100644 index 00000000..fe16d08e --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1070-Max-Q +humanName: GeForce GTX 1070 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-06-27' + GPU Base Frequency: 1215 MHz + GPU Boost Frequency: 1379 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 314 mm² + GPU: GP104B + GPU Variant: N17E-G2-A1 + TDP: 115 W + FP32 Compute: 5.648 TFLOPS + FP64 Compute: 176.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml new file mode 100644 index 00000000..aab33719 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1070-Mobile +humanName: GeForce GTX 1070 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-15' + GPU Base Frequency: 1443 MHz + GPU Boost Frequency: 1645 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 314 mm² + GPU: GP104B + GPU Variant: N17E-G2-A1 + TDP: 120 W + FP32 Compute: 6.738 TFLOPS + FP64 Compute: 210.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml new file mode 100644 index 00000000..70b8d21f --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1070-Ti +humanName: GeForce GTX 1070 Ti +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-11-02' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1683 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 152 + Shader Processor Count: 2432 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-300-A1 + TDP: 180 W + FP32 Compute: 8.186 TFLOPS + FP64 Compute: 255.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml new file mode 100644 index 00000000..ed49b260 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1070 +humanName: GeForce GTX 1070 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-06-10' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1683 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-200-A1 + TDP: 150 W + FP32 Compute: 6.463 TFLOPS + FP64 Compute: 202.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml new file mode 100644 index 00000000..df7c0c87 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1080-11Gbps +humanName: GeForce GTX 1080 11Gbps +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-04-20' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1733 MHz + VRAM Frequency: 1376 MHz + VRAM Bandwidth: 352.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-410-A1 + TDP: 180 W + FP32 Compute: 8.873 TFLOPS + FP64 Compute: 277.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml new file mode 100644 index 00000000..668ed4e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1080-Max-Q +humanName: GeForce GTX 1080 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-06-27' + GPU Base Frequency: 1277 MHz + GPU Boost Frequency: 1366 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 320.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104B + GPU Variant: N17E-G3-A1 + TDP: 150 W + FP32 Compute: 6.994 TFLOPS + FP64 Compute: 218.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml new file mode 100644 index 00000000..d63c4f73 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-1080-Mobile +humanName: GeForce GTX 1080 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-15' + GPU Base Frequency: 1557 MHz + GPU Boost Frequency: 1734 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 320.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104B + GPU Variant: N17E-G3-A1 + TDP: 150 W + FP32 Compute: 8.878 TFLOPS + FP64 Compute: 277.4 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml new file mode 100644 index 00000000..2aa8966f --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1080-Ti-10-GB +humanName: GeForce GTX 1080 Ti 10 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1557 MHz + GPU Boost Frequency: 1670 MHz + VRAM Frequency: 1376 MHz + VRAM Bandwidth: 528.4 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR5X + VRAM Bus Width: 384 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 200 + Shader Processor Count: 3200 + Die Size: 471 mm² + GPU: GP102 + TDP: 250 W + FP32 Compute: 10.69 TFLOPS + FP64 Compute: 334.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml new file mode 100644 index 00000000..a11ae044 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml @@ -0,0 +1,35 @@ +name: GeForce-GTX-1080-Ti-12-GB +humanName: GeForce GTX 1080 Ti 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1557 MHz + GPU Boost Frequency: 1670 MHz + VRAM Frequency: 1376 MHz + VRAM Bandwidth: 440.3 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5X + VRAM Bus Width: 320 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 200 + Shader Processor Count: 3200 + Die Size: 471 mm² + GPU: GP102 + TDP: 250 W + FP32 Compute: 10.69 TFLOPS + FP64 Compute: 334.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml new file mode 100644 index 00000000..6e147daf --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml @@ -0,0 +1,36 @@ +name: GeForce-GTX-1080-Ti +humanName: GeForce GTX 1080 Ti +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-03-10' + GPU Base Frequency: 1481 MHz + GPU Boost Frequency: 1582 MHz + VRAM Frequency: 1376 MHz + VRAM Bandwidth: 484.4 GB/s + VRAM Capacity: 11 GB + VRAM Type: GDDR5X + VRAM Bus Width: 352 bit + Render Output Unit Count: 88 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-350-K1-A1 + TDP: 250 W + FP32 Compute: 11.34 TFLOPS + FP64 Compute: 354.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml new file mode 100644 index 00000000..a86fe5c5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1080 +humanName: GeForce GTX 1080 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-05-27' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1733 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 320.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-400-A1 + TDP: 180 W + FP32 Compute: 8.873 TFLOPS + FP64 Compute: 277.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml new file mode 100644 index 00000000..63759979 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX150-GP107 +humanName: GeForce MX150 GP107 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-02-23' + GPU Base Frequency: 1469 MHz + GPU Boost Frequency: 1532 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: N17S-LG-A1 + TDP: 25 W + FP32 Compute: 1,177 GFLOPS + FP64 Compute: 36.77 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml new file mode 100644 index 00000000..53cb348f --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX150 +humanName: GeForce MX150 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-05-17' + GPU Base Frequency: 1469 MHz + GPU Boost Frequency: 1532 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: GP108-650-A1 + TDP: 25 W + FP32 Compute: 1,177 GFLOPS + FP64 Compute: 36.77 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml new file mode 100644 index 00000000..2d1c66bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX230 +humanName: GeForce MX230 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-02-21' + GPU Base Frequency: 1519 MHz + GPU Boost Frequency: 1531 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: N17S-G0-A1 + TDP: 10 W + FP32 Compute: 783.9 GFLOPS + FP64 Compute: 24.50 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml new file mode 100644 index 00000000..0f474a95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX250 +humanName: GeForce MX250 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-02-21' + GPU Base Frequency: 1519 MHz + GPU Boost Frequency: 1582 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + GPU Variant: N17S-G2-A1 + TDP: 25 W + FP32 Compute: 1,215 GFLOPS + FP64 Compute: 37.97 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml new file mode 100644 index 00000000..05e4239d --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX330 +humanName: GeForce MX330 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-02-10' + GPU Base Frequency: 1531 MHz + GPU Boost Frequency: 1594 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 56.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108B + GPU Variant: GP108-655-A1 + TDP: 10 W + FP32 Compute: 1,224 GFLOPS + FP64 Compute: 38.26 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml new file mode 100644 index 00000000..2d5735a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml @@ -0,0 +1,30 @@ +name: GeForce-MX350 +humanName: GeForce MX350 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-02-10' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1468 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 56.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 132 mm² + GPU: GP107S + GPU Variant: GP107-670-A1 + TDP: 20 W + FP32 Compute: 1.879 TFLOPS + FP64 Compute: 58.72 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml b/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml new file mode 100644 index 00000000..1cc54cbd --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml @@ -0,0 +1,30 @@ +name: Jetson-TX2 +humanName: Jetson TX2 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2016' + VRAM Frequency: 1866 MHz + VRAM Bandwidth: 59.71 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR4 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: unknown + GPU: GP10B + GPU Variant: Tegra X2 + TDP: 15 W + FP32 Compute: 665.6 GFLOPS + FP64 Compute: 20.80 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 87 mm + Width: 50 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P102-100.yaml b/specs/GPUs-CONSUMER/Pascal/P102-100.yaml new file mode 100644 index 00000000..b30702d7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P102-100.yaml @@ -0,0 +1,32 @@ +name: P102-100 +humanName: P102-100 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-12' + GPU Base Frequency: 1582 MHz + GPU Boost Frequency: 1683 MHz + VRAM Frequency: 1376 MHz + VRAM Bandwidth: 440.3 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5X + VRAM Bus Width: 320 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 200 + Shader Processor Count: 3200 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-100-A1 + TDP: 250 W + FP32 Compute: 10.77 TFLOPS + FP64 Compute: 336.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P102-101.yaml b/specs/GPUs-CONSUMER/Pascal/P102-101.yaml new file mode 100644 index 00000000..3eb3ebfb --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P102-101.yaml @@ -0,0 +1,32 @@ +name: P102-101 +humanName: P102-101 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018' + GPU Base Frequency: 1557 MHz + GPU Boost Frequency: 1670 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 320.3 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 200 + Shader Processor Count: 3200 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-101-A1 + TDP: 250 W + FP32 Compute: 10.69 TFLOPS + FP64 Compute: 334.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P104-100.yaml b/specs/GPUs-CONSUMER/Pascal/P104-100.yaml new file mode 100644 index 00000000..90c110fe --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P104-100.yaml @@ -0,0 +1,32 @@ +name: P104-100 +humanName: P104-100 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-12-12' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1733 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 320.3 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-100-A1 + TDP: unknown + FP32 Compute: 6.655 TFLOPS + FP64 Compute: 208.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P104-101.yaml b/specs/GPUs-CONSUMER/Pascal/P104-101.yaml new file mode 100644 index 00000000..9d7c28ba --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P104-101.yaml @@ -0,0 +1,32 @@ +name: P104-101 +humanName: P104-101 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-01-05' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1683 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 256.3 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-101-A1 + TDP: unknown + FP32 Compute: 8.617 TFLOPS + FP64 Compute: 269.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P106-090.yaml b/specs/GPUs-CONSUMER/Pascal/P106-090.yaml new file mode 100644 index 00000000..4010b2be --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P106-090.yaml @@ -0,0 +1,32 @@ +name: P106-090 +humanName: P106-090 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-07-31' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1531 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-090-A1 + TDP: 75 W + FP32 Compute: 2.352 TFLOPS + FP64 Compute: 73.49 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P106-100.yaml b/specs/GPUs-CONSUMER/Pascal/P106-100.yaml new file mode 100644 index 00000000..b9284d95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P106-100.yaml @@ -0,0 +1,32 @@ +name: P106-100 +humanName: P106-100 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-06-19' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1709 MHz + VRAM Frequency: 2002 MHz + VRAM Bandwidth: 192.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-100-A1 + TDP: 120 W + FP32 Compute: 4.375 TFLOPS + FP64 Compute: 136.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/Pascal/P106M.yaml b/specs/GPUs-CONSUMER/Pascal/P106M.yaml new file mode 100644 index 00000000..9667debc --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/P106M.yaml @@ -0,0 +1,29 @@ +name: P106M +humanName: P106M +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-23' + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 96.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1152 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-505-KC-A1 + TDP: 75 W + FP32 Compute: 2.974 TFLOPS + FP64 Compute: 92.95 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml new file mode 100644 index 00000000..798d8b74 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml @@ -0,0 +1,35 @@ +name: Quadro-GP100 +humanName: Quadro GP100 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-01' + GPU Base Frequency: 1304 MHz + GPU Boost Frequency: 1443 MHz + VRAM Frequency: 715 MHz + VRAM Bandwidth: 732.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 610 mm² + GPU: GP100 + GPU Variant: GP100-897-A1 + TDP: 235 W + FP32 Compute: 10.34 TFLOPS + FP64 Compute: 5.172 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml new file mode 100644 index 00000000..8944b451 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P1000-Mobile +humanName: Quadro P1000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-07' + GPU Base Frequency: 1493 MHz + GPU Boost Frequency: 1519 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 96.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 132 mm² + GPU: GP107 + TDP: 40 W + FP32 Compute: 1.555 TFLOPS + FP64 Compute: 48.61 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml new file mode 100644 index 00000000..d9d89f63 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml @@ -0,0 +1,32 @@ +name: Quadro-P1000 +humanName: Quadro P1000 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-07' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1392 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 96.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 132 mm² + GPU: GP107 + TDP: 47 W + FP32 Compute: 1,425 GFLOPS + FP64 Compute: 44.54 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 150 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml new file mode 100644 index 00000000..f11f52f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P2000-Mobile +humanName: Quadro P2000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-06' + GPU Base Frequency: 1557 MHz + GPU Boost Frequency: 1607 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 96.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 132 mm² + GPU: GP107 + TDP: 50 W + FP32 Compute: 2.468 TFLOPS + FP64 Compute: 77.14 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml new file mode 100644 index 00000000..9a375ed2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml @@ -0,0 +1,33 @@ +name: Quadro-P2000 +humanName: Quadro P2000 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-06' + GPU Base Frequency: 1076 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 140.2 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5 + VRAM Bus Width: 160 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: GP106 + GPU Variant: GP106-875-A1 + TDP: 75 W + FP32 Compute: 3.031 TFLOPS + FP64 Compute: 94.72 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: None + Length: 196 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml new file mode 100644 index 00000000..3ca34335 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml @@ -0,0 +1,32 @@ +name: Quadro-P2200 +humanName: Quadro P2200 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-06-10' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1493 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 200.2 GB/s + VRAM Capacity: 5 GB + VRAM Type: GDDR5X + VRAM Bus Width: 160 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 200 mm² + GPU: GP106 + TDP: 75 W + FP32 Compute: 3.822 TFLOPS + FP64 Compute: 119.4 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: None + Length: 201 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml new file mode 100644 index 00000000..3fc4ad23 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml @@ -0,0 +1,31 @@ +name: Quadro-P3000-Mobile +humanName: Quadro P3000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 1088 MHz + GPU Boost Frequency: 1215 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 168.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: N17E-Q1-A1 + TDP: 75 W + FP32 Compute: 3.110 TFLOPS + FP64 Compute: 97.20 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml new file mode 100644 index 00000000..f4af8afa --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-P3200-Max-Q +humanName: Quadro P3200 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1139 MHz + GPU Boost Frequency: 1404 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 168.3 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 314 mm² + GPU: GP104 + TDP: 75 W + FP32 Compute: 5.032 TFLOPS + FP64 Compute: 157.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml new file mode 100644 index 00000000..f70f5efb --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P3200-Mobile +humanName: Quadro P3200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1328 MHz + GPU Boost Frequency: 1543 MHz + VRAM Frequency: 1752 MHz + VRAM Bandwidth: 168.2 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 314 mm² + GPU: GP104 + TDP: 75 W + FP32 Compute: 5.530 TFLOPS + FP64 Compute: 172.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml new file mode 100644 index 00000000..e8b91fbe --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml @@ -0,0 +1,33 @@ +name: Quadro-P400 +humanName: Quadro P400 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-07' + GPU Base Frequency: 1228 MHz + GPU Boost Frequency: 1252 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 32.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 132 mm² + GPU: GP107 + GPU Variant: GP107-825-KA-A1 + TDP: 30 W + FP32 Compute: 641.0 GFLOPS + FP64 Compute: 20.03 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 3x mini-DisplayPort 1.4a + Power Connectors: None + Length: 150 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml new file mode 100644 index 00000000..f7d14059 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml @@ -0,0 +1,31 @@ +name: Quadro-P4000-Max-Q +humanName: Quadro P4000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 1114 MHz + GPU Boost Frequency: 1228 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: N17E-Q3-A1 + TDP: 100 W + FP32 Compute: 4.401 TFLOPS + FP64 Compute: 137.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml new file mode 100644 index 00000000..cebda7ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml @@ -0,0 +1,31 @@ +name: Quadro-P4000-Mobile +humanName: Quadro P4000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 1202 MHz + GPU Boost Frequency: 1228 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: N17E-Q3-A1 + TDP: 100 W + FP32 Compute: 4.401 TFLOPS + FP64 Compute: 137.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml new file mode 100644 index 00000000..1049de1f --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml @@ -0,0 +1,33 @@ +name: Quadro-P4000 +humanName: Quadro P4000 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-06' + GPU Base Frequency: 1202 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 1901 MHz + VRAM Bandwidth: 243.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-850-A1 + TDP: 105 W + FP32 Compute: 5.304 TFLOPS + FP64 Compute: 165.8 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml new file mode 100644 index 00000000..db8ddfe6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-P4200-Max-Q +humanName: Quadro P4200 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1215 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 314 mm² + GPU: GP104 + TDP: 100 W + FP32 Compute: 6.820 TFLOPS + FP64 Compute: 213.1 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml new file mode 100644 index 00000000..804ff621 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P4200-Mobile +humanName: Quadro P4200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1418 MHz + GPU Boost Frequency: 1594 MHz + VRAM Frequency: 1753 MHz + VRAM Bandwidth: 224.4 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 314 mm² + GPU: GP104 + TDP: 100 W + FP32 Compute: 7.345 TFLOPS + FP64 Compute: 229.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml new file mode 100644 index 00000000..7ca11b9d --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml @@ -0,0 +1,29 @@ +name: Quadro-P500-Mobile +humanName: Quadro P500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-01-05' + GPU Base Frequency: 1455 MHz + GPU Boost Frequency: 1519 MHz + VRAM Frequency: 1253 MHz + VRAM Bandwidth: 40.10 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 74 mm² + GPU: GP108 + TDP: 18 W + FP32 Compute: 777.7 GFLOPS + FP64 Compute: 24.30 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml new file mode 100644 index 00000000..19991d1a --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml @@ -0,0 +1,31 @@ +name: Quadro-P5000-Mobile +humanName: Quadro P5000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 1164 MHz + GPU Boost Frequency: 1506 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: N17E-Q5-A1 + TDP: 100 W + FP32 Compute: 6.169 TFLOPS + FP64 Compute: 192.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml new file mode 100644 index 00000000..335c8502 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml @@ -0,0 +1,31 @@ +name: Quadro-P5000-X2-Mobile +humanName: Quadro P5000 X2 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-01-11' + GPU Base Frequency: 1164 MHz + GPU Boost Frequency: 1506 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: N17E-Q5-A1 + TDP: 200 W + FP32 Compute: 6.169 TFLOPS + FP64 Compute: 192.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml new file mode 100644 index 00000000..1c6d2488 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml @@ -0,0 +1,35 @@ +name: Quadro-P5000 +humanName: Quadro P5000 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-01' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1733 MHz + VRAM Frequency: 1127 MHz + VRAM Bandwidth: 288.5 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5X + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-875-A1 + TDP: 180 W + FP32 Compute: 8.873 TFLOPS + FP64 Compute: 277.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml new file mode 100644 index 00000000..85ab6374 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml @@ -0,0 +1,29 @@ +name: Quadro-P520-Max-Q +humanName: Quadro P520 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-23' + GPU Base Frequency: 1303 MHz + GPU Boost Frequency: 1493 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 44.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + TDP: 18 W + FP32 Compute: 1,147 GFLOPS + FP64 Compute: 35.83 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml new file mode 100644 index 00000000..ca0f98fc --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml @@ -0,0 +1,29 @@ +name: Quadro-P520-Mobile +humanName: Quadro P520 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-23' + GPU Base Frequency: 1303 MHz + GPU Boost Frequency: 1493 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 48.06 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 74 mm² + GPU: GP108 + TDP: 18 W + FP32 Compute: 1,147 GFLOPS + FP64 Compute: 35.83 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml new file mode 100644 index 00000000..91df2d89 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-P5200-Max-Q +humanName: Quadro P5200 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1316 MHz + GPU Boost Frequency: 1569 MHz + VRAM Frequency: 1804 MHz + VRAM Bandwidth: 230.9 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + TDP: 100 W + FP32 Compute: 8.033 TFLOPS + FP64 Compute: 251.0 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml new file mode 100644 index 00000000..b49315bc --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P5200-Mobile +humanName: Quadro P5200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-21' + GPU Base Frequency: 1582 MHz + GPU Boost Frequency: 1759 MHz + VRAM Frequency: 1804 MHz + VRAM Bandwidth: 230.9 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + TDP: 100 W + FP32 Compute: 9.006 TFLOPS + FP64 Compute: 281.4 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml new file mode 100644 index 00000000..879b7434 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml @@ -0,0 +1,29 @@ +name: Quadro-P600-Mobile +humanName: Quadro P600 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-07' + GPU Base Frequency: 1430 MHz + GPU Boost Frequency: 1620 MHz + VRAM Frequency: 1252 MHz + VRAM Bandwidth: 80.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 132 mm² + GPU: GP107 + TDP: 40 W + FP32 Compute: 1,244 GFLOPS + FP64 Compute: 38.88 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml new file mode 100644 index 00000000..cda1aa35 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml @@ -0,0 +1,32 @@ +name: Quadro-P600 +humanName: Quadro P600 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-02-07' + GPU Base Frequency: 1329 MHz + GPU Boost Frequency: 1557 MHz + VRAM Frequency: 1002 MHz + VRAM Bandwidth: 64.13 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 132 mm² + GPU: GP107 + TDP: 40 W + FP32 Compute: 1,196 GFLOPS + FP64 Compute: 37.37 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 150 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml new file mode 100644 index 00000000..d49d9754 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml @@ -0,0 +1,35 @@ +name: Quadro-P6000 +humanName: Quadro P6000 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-10-01' + GPU Base Frequency: 1506 MHz + GPU Boost Frequency: 1645 MHz + VRAM Frequency: 1127 MHz + VRAM Bandwidth: 432.8 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR5X + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-875-A1 + TDP: 250 W + FP32 Compute: 12.63 TFLOPS + FP64 Compute: 394.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml new file mode 100644 index 00000000..2e76c4d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-P620-Mobile +humanName: Quadro P620 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-01' + GPU Base Frequency: 1177 MHz + GPU Boost Frequency: 1443 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 96.13 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 132 mm² + GPU: GP107 + TDP: 40 W + FP32 Compute: 1,478 GFLOPS + FP64 Compute: 46.18 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml new file mode 100644 index 00000000..80746c04 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml @@ -0,0 +1,32 @@ +name: Quadro-P620 +humanName: Quadro P620 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-02-01' + GPU Base Frequency: 1266 MHz + GPU Boost Frequency: 1354 MHz + VRAM Frequency: 1252 MHz + VRAM Bandwidth: 80.13 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 132 mm² + GPU: GP107 + TDP: 40 W + FP32 Compute: 1,386 GFLOPS + FP64 Compute: 43.33 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None + Length: 145 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml new file mode 100644 index 00000000..88627e05 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml @@ -0,0 +1,37 @@ +name: TITAN-X-Pascal +humanName: TITAN X Pascal +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-08-02' + GPU Base Frequency: 1417 MHz + GPU Boost Frequency: 1531 MHz + VRAM Frequency: 1251 MHz + VRAM Bandwidth: 480.4 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5X + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-400-A1 + TDP: 250 W + FP32 Compute: 10.97 TFLOPS + FP64 Compute: 342.9 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml new file mode 100644 index 00000000..cca93878 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml @@ -0,0 +1,36 @@ +name: TITAN-Xp +humanName: TITAN Xp +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-04-06' + GPU Base Frequency: 1405 MHz + GPU Boost Frequency: 1582 MHz + VRAM Frequency: 1426 MHz + VRAM Bandwidth: 547.6 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR5X + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 471 mm² + GPU: GP102 + GPU Variant: GP102-450-A1 + TDP: 250 W + FP32 Compute: 12.15 TFLOPS + FP64 Compute: 379.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml new file mode 100644 index 00000000..ed5df576 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml @@ -0,0 +1,32 @@ +name: Tesla-P10 +humanName: Tesla P10 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-09-13' + GPU Base Frequency: 1025 MHz + GPU Boost Frequency: 1493 MHz + VRAM Frequency: 1808 MHz + VRAM Bandwidth: 694.3 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR5X + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 471 mm² + GPU: GP102 + TDP: 250 W + FP32 Compute: 11.47 TFLOPS + FP64 Compute: 358.3 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 97 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml new file mode 100644 index 00000000..e17c7c56 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml @@ -0,0 +1,29 @@ +name: Tesla-P100-DGXS +humanName: Tesla P100 DGXS +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-04-05' + GPU Base Frequency: 1328 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 715 MHz + VRAM Bandwidth: 732.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 610 mm² + GPU: GP100 + TDP: 300 W + FP32 Compute: 10.61 TFLOPS + FP64 Compute: 5.304 TFLOPS (1:2) + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml new file mode 100644 index 00000000..152c1048 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-P100-PCIe-12-GB +humanName: Tesla P100 PCIe 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-06-20' + GPU Base Frequency: 1190 MHz + GPU Boost Frequency: 1329 MHz + VRAM Frequency: 715 MHz + VRAM Bandwidth: 549.1 GB/s + VRAM Capacity: 12 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 610 mm² + GPU: GP100 + GPU Variant: GP100-892-A1 + TDP: 250 W + FP32 Compute: 9.526 TFLOPS + FP64 Compute: 4.763 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml new file mode 100644 index 00000000..74c66c32 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-P100-PCIe-16-GB +humanName: Tesla P100 PCIe 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-06-20' + GPU Base Frequency: 1190 MHz + GPU Boost Frequency: 1329 MHz + VRAM Frequency: 715 MHz + VRAM Bandwidth: 732.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 610 mm² + GPU: GP100 + GPU Variant: GP100-893-A1 + TDP: 250 W + FP32 Compute: 9.526 TFLOPS + FP64 Compute: 4.763 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml new file mode 100644 index 00000000..ef965580 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml @@ -0,0 +1,31 @@ +name: Tesla-P100-SXM2 +humanName: Tesla P100 SXM2 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-04-05' + GPU Base Frequency: 1328 MHz + GPU Boost Frequency: 1480 MHz + VRAM Frequency: 715 MHz + VRAM Bandwidth: 732.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 224 + Shader Processor Count: 3584 + Die Size: 610 mm² + GPU: GP100 + GPU Variant: GP100-890-A1 + TDP: 300 W + FP32 Compute: 10.61 TFLOPS + FP64 Compute: 5.304 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml new file mode 100644 index 00000000..88d4f6d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml @@ -0,0 +1,32 @@ +name: Tesla-P4 +humanName: Tesla P4 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-09-13' + GPU Base Frequency: 886 MHz + GPU Boost Frequency: 1114 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-895-A1 + TDP: 75 W + FP32 Compute: 5.704 TFLOPS + FP64 Compute: 178.2 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml new file mode 100644 index 00000000..259bd347 --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml @@ -0,0 +1,32 @@ +name: Tesla-P40 +humanName: Tesla P40 +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2016-09-13' + GPU Base Frequency: 1303 MHz + GPU Boost Frequency: 1531 MHz + VRAM Frequency: 1808 MHz + VRAM Bandwidth: 347.1 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR5 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 471 mm² + GPU: GP102 + TDP: 250 W + FP32 Compute: 11.76 TFLOPS + FP64 Compute: 367.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml new file mode 100644 index 00000000..4a5617ff --- /dev/null +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml @@ -0,0 +1,31 @@ +name: Tesla-P6-Mobile +humanName: Tesla P6 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Pascal + Lithography: 16 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-03-24' + GPU Base Frequency: 1012 MHz + GPU Boost Frequency: 1506 MHz + VRAM Frequency: 1502 MHz + VRAM Bandwidth: 192.3 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 314 mm² + GPU: GP104 + GPU Variant: GP104-995-A1 + TDP: 90 W + FP32 Compute: 6.169 TFLOPS + FP64 Compute: 192.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml new file mode 100644 index 00000000..ba0dedfa --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml @@ -0,0 +1,15 @@ +name: PowerVR-SGX535 +humanName: PowerVR SGX535 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2008-03-02' +sections: + - header: WHOLE RANGE + members: + - GMA-500 + - GMA-600 diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml new file mode 100644 index 00000000..28f6a403 --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml @@ -0,0 +1,26 @@ +name: GMA-500 +humanName: GMA 500 +isPart: true +type: Graphics Card +data: + Architecture: PowerVR SGX535 + Lithography: 130 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2008-03-02' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Shader Processor Count: 32 + Die Size: unknown + GPU: Poulsbo + TDP: unknown + FP32 Compute: 12.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml new file mode 100644 index 00000000..9e35d7ad --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml @@ -0,0 +1,26 @@ +name: GMA-600 +humanName: GMA 600 +isPart: true +type: Graphics Card +data: + Architecture: PowerVR SGX535 + Lithography: 45 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2010-05-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Shader Processor Count: 32 + Die Size: 62 mm² + GPU: Lincroft + TDP: unknown + FP32 Compute: 25.60 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml new file mode 100644 index 00000000..95d487bc --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml @@ -0,0 +1,15 @@ +name: PowerVR-SGX545 +humanName: PowerVR SGX545 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2008-10-01' +sections: + - header: WHOLE RANGE + members: + - GMA + - GMA-3650 diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml new file mode 100644 index 00000000..7974a7ec --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml @@ -0,0 +1,26 @@ +name: GMA-3650 +humanName: GMA 3650 +isPart: true +type: Graphics Card +data: + Architecture: PowerVR SGX545 + Lithography: 65 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2008-10-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 4 + Shader Processor Count: 32 + Die Size: unknown + GPU: Cedarview + TDP: 13 W + FP32 Compute: 40.96 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml new file mode 100644 index 00000000..da513892 --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml @@ -0,0 +1,24 @@ +name: GMA +humanName: GMA +isPart: true +type: Graphics Card +data: + Architecture: PowerVR SGX545 + Lithography: 32 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2010-05-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: unknown + GPU: Cloverview + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml b/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml new file mode 100644 index 00000000..bead8957 --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml @@ -0,0 +1,14 @@ +name: PowerVR-Series5XT +humanName: PowerVR Series5XT +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2011-12-11' +sections: + - header: WHOLE RANGE + members: + - Playstation-Vita-GPU diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml new file mode 100644 index 00000000..9d317893 --- /dev/null +++ b/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml @@ -0,0 +1,27 @@ +name: Playstation-Vita-GPU +humanName: Playstation Vita GPU +isPart: true +type: Graphics Card +data: + Architecture: PowerVR Series5XT + Lithography: 32 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2011-12-11' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: CDRAM + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 6 mm² + GPU: SGX543 MP4+ + GPU Variant: CXD5315GG + TDP: 4 W + Outputs: No outputs + Length: 182 mm + Width: 19 mm + Height: 84 mm diff --git a/specs/GPUs-CONSUMER/R-200.yaml b/specs/GPUs-CONSUMER/R-200.yaml deleted file mode 100755 index 5f599264..00000000 --- a/specs/GPUs-CONSUMER/R-200.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: R-200 -humanName: R* 200 -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 28 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2013-10-08' -sections: - - header: ENTHUSIAST - members: - - R9-295X2 - - header: HIGH END - members: - - R9-290X-8GiB - - R9-290X-4GiB - - R9-290 - - header: MID RANGE - members: - - R9-285 - - R9-280X - - R9-280 - - R9-270X-4GiB - - R9-270X-2GiB - - R9-270 - - header: ENTRY LEVEL - members: - - R7-260X-2GiB - - R7-260X-1GiB - - R7-260 diff --git a/specs/GPUs-CONSUMER/R-200/R7-260.yaml b/specs/GPUs-CONSUMER/R-200/R7-260.yaml deleted file mode 100755 index 1384bd72..00000000 --- a/specs/GPUs-CONSUMER/R-200/R7-260.yaml +++ /dev/null @@ -1,22 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Release Date: '2013-12-17' - Die Size: 160 mm - Shader Processor Count: 768 - Texture Mapping Unit Count: 48 - Render Output Unit Count: 16 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 95.5 GB/s - TDP: 95 W - FP32 Compute: 1.536 TFLOPS - FP64 Compute: 96 GFLOPS -inherits: - - GCN 2 -name: R7-260 -humanName: R7 260 diff --git a/specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml b/specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml deleted file mode 100755 index d81a4063..00000000 --- a/specs/GPUs-CONSUMER/R-200/R7-260X-1GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire XTX - Release Date: '2013-08-08' - Die Size: 160 mm - Shader Processor Count: 896 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 1100 MHz - VRAM Frequency: 6500 MT/s - VRAM Capacity: 1 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 104 GB/s - TDP: 115 W - FP32 Compute: 1.971 TFLOPS - FP64 Compute: 123 GFLOPS -inherits: - - GCN 2 -name: R7-260X-1GiB -humanName: R7 260X (1GiB) diff --git a/specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml b/specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml deleted file mode 100755 index 31ab25fc..00000000 --- a/specs/GPUs-CONSUMER/R-200/R7-260X-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire XTX - Release Date: '2013-08-08' - Die Size: 160 mm - Shader Processor Count: 896 - Texture Mapping Unit Count: 56 - Render Output Unit Count: 16 - GPU Base Frequency: 1100 MHz - VRAM Frequency: 6500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 104 GB/s - TDP: 115 W - FP32 Compute: 1.971 TFLOPS - FP64 Compute: 123 GFLOPS -inherits: - - GCN 2 -name: R7-260X-2GiB -humanName: R7 260X (2GiB) diff --git a/specs/GPUs-CONSUMER/R-200/R9-270.yaml b/specs/GPUs-CONSUMER/R-200/R9-270.yaml deleted file mode 100755 index ba814ce8..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-270.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn Pro - Release Date: '2013-11-13' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 900 MHz - GPU Boost Frequency: 925 MHz - VRAM Frequency: 5600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 179.2 GB/s - TDP: 150 W - FP32 Compute: 2.304 TFLOPS - FP64 Compute: 144 GFLOPS -inherits: - - GCN 1 -name: R9-270 -humanName: R9 270 diff --git a/specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml deleted file mode 100755 index 09f3e239..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-270X-2GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn XT - Release Date: '2013-08-08' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - GPU Boost Frequency: 1050 MHz - VRAM Frequency: 5600 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 167 GB/s - TDP: 180 W - FP32 Compute: 2.560 TFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - GCN 1 -name: R9-270X-2GiB -humanName: R9 270X (2GiB) diff --git a/specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml deleted file mode 100755 index 4c25d405..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-270X-4GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Pitcairn - Codename: Pitcairn XT - Release Date: '2013-08-08' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - GPU Boost Frequency: 1050 MHz - VRAM Frequency: 5600 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 167 GB/s - TDP: 180 W - FP32 Compute: 2.560 TFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - GCN 1 -name: R9-270X-4GiB -humanName: R9 270X (4GiB) diff --git a/specs/GPUs-CONSUMER/R-200/R9-280.yaml b/specs/GPUs-CONSUMER/R-200/R9-280.yaml deleted file mode 100755 index 6e606413..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-280.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti Pro - Release Date: '2014-03-04' - Die Size: 352 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 827 MHz - GPU Boost Frequency: 933 MHz - VRAM Frequency: 5000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 240 GB/s - TDP: 250 W - FP32 Compute: 2.964 TFLOPS - FP64 Compute: 741 GFLOPS -inherits: - - GCN 1 -name: R9-280 -humanName: R9 280 diff --git a/specs/GPUs-CONSUMER/R-200/R9-280X.yaml b/specs/GPUs-CONSUMER/R-200/R9-280X.yaml deleted file mode 100755 index 12acb951..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-280X.yaml +++ /dev/null @@ -1,24 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tahiti - Codename: Tahiti XTL - Release Date: '2013-08-08' - Die Size: 352 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 850 MHz - GPU Boost Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 3 GiB - VRAM Bus Width: 384 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 288 GB/s - TDP: 250 W - FP32 Compute: 3.482 TFLOPS - FP64 Compute: 870 GFLOPS -inherits: - - GCN 1 -name: R9-280X -humanName: R9 280X diff --git a/specs/GPUs-CONSUMER/R-200/R9-285.yaml b/specs/GPUs-CONSUMER/R-200/R9-285.yaml deleted file mode 100755 index 16898d5f..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-285.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: R9-285 -humanName: R9 285 -isPart: true -type: Graphics Card -inherits: - - GCN 3 -data: - Release Date: '2014-09-02' - GPU: Tonga - Codename: Tonga Pro - Die Size: 359 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 918 MHz - VRAM Frequency: 5500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Bandwidth: 176 GB/s - TDP: 190 W - FP32 Compute: 3.290 TFLOPS - FP64 Compute: 207 GFLOPS diff --git a/specs/GPUs-CONSUMER/R-200/R9-290-base.yaml b/specs/GPUs-CONSUMER/R-200/R9-290-base.yaml deleted file mode 100755 index a8aac8a4..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-290-base.yaml +++ /dev/null @@ -1,10 +0,0 @@ -hidden: true -name: R9 290 Base -inherits: - - GCN 2 -data: - Die Size: 428 mm - VRAM Frequency: 5000 MT/s - VRAM Bus Width: 512 Bits - VRAM Bandwidth: 320 GB/s - VRAM Type: GDDR5 diff --git a/specs/GPUs-CONSUMER/R-200/R9-290.yaml b/specs/GPUs-CONSUMER/R-200/R9-290.yaml deleted file mode 100755 index bfe31fec..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-290.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: R9-290 -humanName: R9 290 -isPart: true -type: Graphics Card -inherits: - - R9 290 Base -data: - Release Date: '2013-11-05' - Shader Processor Count: 2560 - Texture Mapping Unit Count: 160 - Render Output Unit Count: 64 - GPU Base Frequency: 947 MHz - VRAM Capacity: 4 GiB - TDP: 250 W - GPU: Hawaii - Codename: Hawaii Pro - FP32 Compute: 4.849 TFLOPS - FP64 Compute: 606 GFLOPS diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml deleted file mode 100755 index deff0b12..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-290X-4GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: R9-290X-4GiB -humanName: R9 290X (4GiB) -isPart: true -type: Graphics Card -inherits: - - R9 290X Base -data: - VRAM Capacity: 4 GiB diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml deleted file mode 100755 index 41ac3d8c..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-290X-8GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: R9-290X-8GiB -humanName: R9 290X (8GiB) -isPart: true -type: Graphics Card -inherits: - - R9 290X Base -data: - VRAM Capacity: 8 GiB diff --git a/specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml b/specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml deleted file mode 100755 index 9b8f10d5..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-290X-Base.yaml +++ /dev/null @@ -1,15 +0,0 @@ -hidden: true -name: R9 290X Base -inherits: - - R9 290 Base -data: - Release Date: '2013-10-24' - Shader Processor Count: 2816 - Texture Mapping Unit Count: 176 - Render Output Unit Count: 64 - GPU Base Frequency: 1000 MHz - TDP: 250 W - GPU: Hawaii - Codename: Hawaii XT - FP32 Compute: 5.632 TFLOPS - FP64 Compute: 704 GFLOPS diff --git a/specs/GPUs-CONSUMER/R-200/R9-295X2.yaml b/specs/GPUs-CONSUMER/R-200/R9-295X2.yaml deleted file mode 100755 index 9d07ed38..00000000 --- a/specs/GPUs-CONSUMER/R-200/R9-295X2.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: R9-295X2 -humanName: R9 295X2 -isPart: true -type: Graphics Card -inherits: - - R9 290 Base -data: - Release Date: '2014-04-08' - Shader Processor Count: 5632 - Texture Mapping Unit Count: 352 - Render Output Unit Count: 128 - GPU Base Frequency: '1018 MHz' - GPU: Hawaii - Codename: Vesuvius - VRAM Capacity: 4 GiB (per GPU) - TDP: 500 W - FP32 Compute: 11.467 TFLOPS - FP64 Compute: 1.433 TFLOPS diff --git a/specs/GPUs-CONSUMER/R-300.yaml b/specs/GPUs-CONSUMER/R-300.yaml deleted file mode 100755 index b006ff8d..00000000 --- a/specs/GPUs-CONSUMER/R-300.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: R-300 -humanName: R* 300 -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 28 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2015-06-16' -sections: - - header: ENTHUSIAST - members: - - Radeon-Pro-Duo - - R9-Fury-X - - R9-Nano - - R9-Fury - - header: HIGH END - members: - - R9-390X - - R9-390 - - header: MID RANGE - members: - - R9-380X - - R9-380-4GiB - - R9-380-2GiB - - R9-370X-4GiB - - R9-370X-2GiB - - R7-370-4GiB - - R7-370-2GiB - - header: ENTRY LEVEL - members: - - R7-360 diff --git a/specs/GPUs-CONSUMER/R-300/R7-360.yaml b/specs/GPUs-CONSUMER/R-300/R7-360.yaml deleted file mode 100755 index df424906..00000000 --- a/specs/GPUs-CONSUMER/R-300/R7-360.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Bonaire - Codename: Bonaire Pro - Release Date: '2015-06-18' - Die Size: 160 mm - Shader Processor Count: 768 - Texture Mapping Unit Count: 48 - Render Output Unit Count: 16 - GPU Base Frequency: 1050 MHz - VRAM Frequency: 6500 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 128 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 104 GB/s - TDP: 100 W - FP32 Compute: 1.536 TFLOPS - FP64 Compute: 96 GFLOPS -inherits: - - GCN 2 -name: R7-360 -humanName: R7 360 diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml deleted file mode 100755 index 1b32b982..00000000 --- a/specs/GPUs-CONSUMER/R-300/R7-370-2GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -isPart: true -type: Graphics Card -data: - VRAM Capacity: 2 GiB -inherits: - - R7 370 Base -name: R7-370-2GiB -humanName: R7 370 (2GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml deleted file mode 100755 index 10932ae4..00000000 --- a/specs/GPUs-CONSUMER/R-300/R7-370-4GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -isPart: true -type: Graphics Card -data: - VRAM Capacity: 4 GiB -inherits: - - R7 370 Base -name: R7-370-4GiB -humanName: R7 370 (4GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml b/specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml deleted file mode 100755 index 03f30f4c..00000000 --- a/specs/GPUs-CONSUMER/R-300/R7-370-Base.yaml +++ /dev/null @@ -1,20 +0,0 @@ -hidden: true -data: - GPU: Pitcairn - Codename: Pitcairn Pro - Release Date: '2015-06-18' - Die Size: 212 mm - Shader Processor Count: 1024 - Texture Mapping Unit Count: 64 - Render Output Unit Count: 32 - GPU Base Frequency: 975 MHz - VRAM Frequency: 5600 MT/s - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 179.2 GB/s - TDP: 110 W - FP32 Compute: 1.997 TFLOPS - FP64 Compute: 125 GFLOPS -inherits: - - GCN 1 -name: R7 370 Base diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml deleted file mode 100755 index 1871e2e1..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-370X-2GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -isPart: true -type: Graphics Card -data: - VRAM Capacity: 2 GiB -inherits: - - R9 370X Base -name: R9-370X-2GiB -humanName: R9 370X (2GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml deleted file mode 100755 index c936002b..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-370X-4GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -isPart: true -type: Graphics Card -data: - VRAM Capacity: 4 GiB -inherits: - - R9 370X Base -name: R9-370X-4GiB -humanName: R9 370X (4GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml b/specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml deleted file mode 100755 index 05940d4f..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-370X-Base.yaml +++ /dev/null @@ -1,20 +0,0 @@ -hidden: true -data: - GPU: Pitcairn - Codename: Pitcairn XT - Release Date: '2015-08-27' - Die Size: 212 mm - Shader Processor Count: 1280 - Texture Mapping Unit Count: 80 - Render Output Unit Count: 32 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 5600 MT/s - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 179.2 GB/s - TDP: 185 W - FP32 Compute: 2.560 TFLOPS - FP64 Compute: 160 GFLOPS -inherits: - - GCN 1 -name: R9 370X Base diff --git a/specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml deleted file mode 100755 index 07aa21cf..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-380-2GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tonga - Codename: Tonga Pro - Release Date: '2015-06-18' - Die Size: 359 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 970 MHz - VRAM Frequency: 5700 MT/s - VRAM Capacity: 2 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 182.4 GB/s - TDP: 190 W - FP32 Compute: 3.477 TFLOPS - FP64 Compute: 217 GFLOPS -inherits: - - GCN 3 -name: R9-380-2GiB -humanName: R9 380 (2GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml b/specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml deleted file mode 100755 index 1fcd5bd7..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-380-4GiB.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tonga - Codename: Tonga Pro - Release Date: '2015-06-18' - Die Size: 359 mm - Shader Processor Count: 1792 - Texture Mapping Unit Count: 112 - Render Output Unit Count: 32 - GPU Base Frequency: 970 MHz - VRAM Frequency: 5700 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 182.4 GB/s - TDP: 190 W - FP32 Compute: 3.477 TFLOPS - FP64 Compute: 217 GFLOPS -inherits: - - GCN 3 -name: R9-380-4GiB -humanName: R9 380 (4GiB) diff --git a/specs/GPUs-CONSUMER/R-300/R9-380X.yaml b/specs/GPUs-CONSUMER/R-300/R9-380X.yaml deleted file mode 100755 index f36a52fd..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-380X.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Tonga - Codename: Tonga XT - Release Date: '2015-11-19' - Die Size: 359 mm - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 970 MHz - VRAM Frequency: 5700 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 256 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 182.4 GB/s - TDP: 190 W - FP32 Compute: 3.973 TFLOPS - FP64 Compute: 248 GFLOPS -inherits: - - GCN 3 -name: R9-380X -humanName: R9 380X diff --git a/specs/GPUs-CONSUMER/R-300/R9-390.yaml b/specs/GPUs-CONSUMER/R-300/R9-390.yaml deleted file mode 100755 index b084f0f8..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-390.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Hawaii - Codename: Hawaii Pro - Release Date: '2015-06-18' - Die Size: 438 mm - Shader Processor Count: 2560 - Texture Mapping Unit Count: 160 - Render Output Unit Count: 64 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 8 GiB - VRAM Bus Width: 512 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 384 GB/s - TDP: 275 W - FP32 Compute: 5.120 TFLOPS - FP64 Compute: 640 GFLOPS -inherits: - - GCN 2 -name: R9-390 -humanName: R9 390 diff --git a/specs/GPUs-CONSUMER/R-300/R9-390X.yaml b/specs/GPUs-CONSUMER/R-300/R9-390X.yaml deleted file mode 100755 index 11c13433..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-390X.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Hawaii - Codename: Hawaii XT - Release Date: '2015-06-18' - Die Size: 438 mm - Shader Processor Count: 2816 - Texture Mapping Unit Count: 176 - Render Output Unit Count: 64 - GPU Base Frequency: 1050 MHz - VRAM Frequency: 6000 MT/s - VRAM Capacity: 8 GiB - VRAM Bus Width: 512 Bits - VRAM Type: GDDR5 - VRAM Bandwidth: 384 GB/s - TDP: 275 W - FP32 Compute: 5.914 TFLOPS - FP64 Compute: 739 GFLOPS -inherits: - - GCN 2 -name: R9-390X -humanName: R9 390X diff --git a/specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml b/specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml deleted file mode 100755 index 3188f86d..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-Fury-X.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Fiji - Codename: Fiji XT - Release Date: '2015-06-24' - Die Size: 596 mm - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 1050 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 4096 Bits - VRAM Type: HBM - VRAM Bandwidth: 512 GB/s - TDP: 275 W - FP32 Compute: 8.602 TFLOPS - FP64 Compute: 538 GFLOPS -inherits: - - GCN 3 -name: R9-Fury-X -humanName: R9 Fury X diff --git a/specs/GPUs-CONSUMER/R-300/R9-Fury.yaml b/specs/GPUs-CONSUMER/R-300/R9-Fury.yaml deleted file mode 100755 index 3ae462cc..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-Fury.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Fiji - Codename: Fiji Pro - Release Date: '2015-07-14' - Die Size: 596 mm - Shader Processor Count: 3584 - Texture Mapping Unit Count: 224 - Render Output Unit Count: 64 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 4096 Bits - VRAM Type: HBM - VRAM Bandwidth: 512 GB/s - TDP: 275 W - FP32 Compute: 7.168 TFLOPS - FP64 Compute: 448 GFLOPS -inherits: - - GCN 3 -name: R9-Fury -humanName: R9 Fury diff --git a/specs/GPUs-CONSUMER/R-300/R9-Nano.yaml b/specs/GPUs-CONSUMER/R-300/R9-Nano.yaml deleted file mode 100755 index 489cfa47..00000000 --- a/specs/GPUs-CONSUMER/R-300/R9-Nano.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Fiji - Codename: Fiji XT - Release Date: '2015-08-27' - Die Size: 596 mm - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 4 GiB - VRAM Bus Width: 4096 Bits - VRAM Type: HBM - VRAM Bandwidth: 512 GB/s - TDP: 175 W - FP32 Compute: 8.192 TFLOPS - FP64 Compute: 512 GFLOPS -inherits: - - GCN 3 -name: R9-Nano -humanName: R9 Nano diff --git a/specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml deleted file mode 100755 index 23df9faa..00000000 --- a/specs/GPUs-CONSUMER/R-300/Radeon-Pro-Duo.yaml +++ /dev/null @@ -1,23 +0,0 @@ -isPart: true -type: Graphics Card -data: - GPU: Fiji - Codename: Fiji XT - Release Date: '2016-04-26' - Die Size: 596 mm - Shader Processor Count: 8192 - Texture Mapping Unit Count: 512 - Render Output Unit Count: 128 - GPU Base Frequency: 1000 MHz - VRAM Frequency: 1000 MT/s - VRAM Capacity: 4 GiB (per GPU) - VRAM Bus Width: 4096 Bits - VRAM Type: HBM - VRAM Bandwidth: 512 GB/s - TDP: 350 W - FP32 Compute: 16.384 TFLOPS - FP64 Compute: 1.024 TFLOPS -inherits: - - GCN 3 -name: Radeon-Pro-Duo -humanName: Radeon Pro Duo diff --git a/specs/GPUs-CONSUMER/R300.yaml b/specs/GPUs-CONSUMER/R300.yaml new file mode 100644 index 00000000..1f0e2046 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300.yaml @@ -0,0 +1,90 @@ +name: R300 +humanName: R300 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + Release Date: '2002-07-01' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-2006-AGP-Edition + - All-In-Wonder-9500 + - All-In-Wonder-9600 + - All-In-Wonder-9600-PRO + - All-In-Wonder-9600-XT + - All-In-Wonder-9700-PRO + - All-In-Wonder-9800-PRO + - All-In-Wonder-9800-SE + - All-In-Wonder-X600-PRO + - FireGL-9500-Z1-128 + - FireGL-9600-T2-64S + - FireGL-9600-T2-128 + - FireGL-9700-X1-128 + - FireGL-9700-X1-256 + - FireGL-9700-X1-256p + - FireGL-9800-X2-256 + - FireGL-9800-X2-256T + - FireGL-V3100 + - FireGL-V3200 + - FireMV-2200 + - FireMV-2400-PCI + - FireMV-2400-PCIe-x1 + - Mobility-FireGL-T2 + - Mobility-FireGL-T2e + - Mobility-FireGL-V3100 + - Mobility-FireGL-V3200 + - Mobility-Radeon-9550 + - Mobility-Radeon-9600 + - Mobility-Radeon-9600-PRO + - Mobility-Radeon-9600-PRO-Turbo + - Mobility-Radeon-9700 + - Mobility-Radeon-9700-SE + - Mobility-Radeon-9500 + - Mobility-Radeon-X300 + - Mobility-Radeon-X300-IGP + - Mobility-Radeon-X600 + - Mobility-Radeon-X600-SE + - Radeon-9500 + - Radeon-9500-PRO + - Radeon-9550 + - Radeon-9550-SE + - Radeon-9550-XT + - Radeon-9600 + - Radeon-9600-PRO + - Radeon-9600-SE + - Radeon-9600-TX + - Radeon-9600-XT + - Radeon-9700 + - Radeon-9700-PRO + - Radeon-9700-PRO-X4 + - Radeon-9800 + - Radeon-9800-PRO + - Radeon-9800-PRO-MAXX + - Radeon-9800-SE + - Radeon-9800-XT-Mac-Edition + - Radeon-9800-XXL + - Radeon-9800-PRO-Mac-Edition + - Radeon-9800-XT + - Radeon-X300 + - Radeon-X300-LE + - Radeon-X300-SE + - Radeon-X300-SE-HyperMemory + - Radeon-X550 + - Radeon-X550-HyperMemory + - Radeon-X600 + - Radeon-X600-PRO + - Radeon-X600-XT + - Radeon-X600-SE + - Radeon-X1050 + - Radeon-X1050-AGP + - Radeon-Xpress-200-IGP + - Radeon-Xpress-200M-IGP + - Radeon-Xpress-1100-Mobile-IGP + - Radeon-Xpress-1150-IGP + - Radeon-Xpress-1150-Mobile-IGP + - Radeon-Xpress--200M-IGP + - Radeon-Xpress-1100-IGP diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml new file mode 100644 index 00000000..c55c83a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-2006-AGP-Edition +humanName: All-In-Wonder 2006 AGP Edition +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-04-29' + VRAM Frequency: 196 MHz + VRAM Bandwidth: 6.272 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 LE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml new file mode 100644 index 00000000..a2a14d37 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-9500 +humanName: All-In-Wonder 9500 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-07-01' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml new file mode 100644 index 00000000..2d50aeb9 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-9600-PRO +humanName: All-In-Wonder 9600 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-04-01' + VRAM Frequency: 324 MHz + VRAM Bandwidth: 10.37 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml new file mode 100644 index 00000000..454e1d18 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-9600-XT +humanName: All-In-Wonder 9600 XT +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-02-06' + VRAM Frequency: 324 MHz + VRAM Bandwidth: 10.37 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV360 + GPU Variant: RV360 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml new file mode 100644 index 00000000..a54d68d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-9600 +humanName: All-In-Wonder 9600 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-12-03' + VRAM Frequency: 196 MHz + VRAM Bandwidth: 6.272 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml new file mode 100644 index 00000000..5cb7cee8 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-9700-PRO +humanName: All-In-Wonder 9700 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-01-22' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 9700 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml new file mode 100644 index 00000000..cef78411 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-9800-PRO +humanName: All-In-Wonder 9800 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-06-16' + VRAM Frequency: 338 MHz + VRAM Bandwidth: 21.63 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R350 + GPU Variant: R350 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml new file mode 100644 index 00000000..8993fbb2 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-9800-SE +humanName: All-In-Wonder 9800 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-09-10' + VRAM Frequency: 297 MHz + VRAM Bandwidth: 9.504 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 215 mm² + GPU: R350 + GPU Variant: R350 SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml new file mode 100644 index 00000000..8eb6ff61 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-X600-PRO +humanName: All-In-Wonder X600 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-07-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 AIW + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml new file mode 100644 index 00000000..3a258b35 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml @@ -0,0 +1,26 @@ +name: FireGL-9500-Z1-128 +humanName: FireGL 9500 Z1-128 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-10-01' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml new file mode 100644 index 00000000..f7d7c9da --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml @@ -0,0 +1,28 @@ +name: FireGL-9600-T2-128 +humanName: FireGL 9600 T2-128 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 297 MHz + VRAM Bandwidth: 9.504 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml new file mode 100644 index 00000000..03ff00a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml @@ -0,0 +1,26 @@ +name: FireGL-9600-T2-64S +humanName: FireGL 9600 T2-64S +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 203 MHz + VRAM Bandwidth: 6.496 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x LFH60 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml new file mode 100644 index 00000000..7a4dac6e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml @@ -0,0 +1,26 @@ +name: FireGL-9700-X1-128 +humanName: FireGL 9700 X1-128 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-07-23' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml new file mode 100644 index 00000000..11ff9e1b --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml @@ -0,0 +1,26 @@ +name: FireGL-9700-X1-256 +humanName: FireGL 9700 X1-256 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-07-23' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 GL + TDP: 37 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml new file mode 100644 index 00000000..410d98c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml @@ -0,0 +1,28 @@ +name: FireGL-9700-X1-256p +humanName: FireGL 9700 X1-256p +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-07-23' + VRAM Frequency: 276 MHz + VRAM Bandwidth: 17.66 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 GL + TDP: 37 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml new file mode 100644 index 00000000..5bb22d8b --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml @@ -0,0 +1,28 @@ +name: FireGL-9800-X2-256 +humanName: FireGL 9800 X2-256 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml new file mode 100644 index 00000000..b76bb008 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml @@ -0,0 +1,26 @@ +name: FireGL-9800-X2-256T +humanName: FireGL 9800 X2-256T +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 344 MHz + VRAM Bandwidth: 22.02 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml new file mode 100644 index 00000000..237480cd --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml @@ -0,0 +1,28 @@ +name: FireGL-V3100 +humanName: FireGL V3100 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 196 MHz + VRAM Bandwidth: 3.136 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml new file mode 100644 index 00000000..48786569 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml @@ -0,0 +1,26 @@ +name: FireGL-V3200 +humanName: FireGL V3200 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: RV380 + GPU Variant: RV380 GL + TDP: 46 W + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml new file mode 100644 index 00000000..e54fba61 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml @@ -0,0 +1,27 @@ +name: FireMV-2200 +humanName: FireMV 2200 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006' + VRAM Frequency: 196 MHz + VRAM Bandwidth: 3.136 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml new file mode 100644 index 00000000..e55c2a60 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml @@ -0,0 +1,27 @@ +name: FireMV-2400-PCI +humanName: FireMV 2400 PCI +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: RV380 + TDP: 20 W + Slot Width: Single-slot + Outputs: 1x VHDCI + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml new file mode 100644 index 00000000..292d2984 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml @@ -0,0 +1,27 @@ +name: FireMV-2400-PCIe-x1 +humanName: FireMV 2400 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008' + VRAM Frequency: 203 MHz + VRAM Bandwidth: 6.496 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: RV380 + TDP: 20 W + Slot Width: Single-slot + Outputs: 1x VHDCI + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml new file mode 100644 index 00000000..478d5cd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-T2 +humanName: Mobility FireGL T2 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-11-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + GPU Variant: M10 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml new file mode 100644 index 00000000..4396a6e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-T2e +humanName: Mobility FireGL T2e +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-08-01' + VRAM Frequency: 225 MHz + VRAM Bandwidth: 7.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M11 + GPU Variant: M11 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml new file mode 100644 index 00000000..b9b257c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-V3100 +humanName: Mobility FireGL V3100 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0b' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: M22 + GPU Variant: M22 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml new file mode 100644 index 00000000..a72e9b10 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-V3200 +humanName: Mobility FireGL V3200 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0b' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M24 + GPU Variant: M24 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml new file mode 100644 index 00000000..8a3cbf19 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-9500 +humanName: Mobility Radeon 9500 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 190 MHz + VRAM Bandwidth: 3.040 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml new file mode 100644 index 00000000..750d13d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-9550 +humanName: Mobility Radeon 9550 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 243 MHz + VRAM Bandwidth: 3.888 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M12 + GPU Variant: M12 9550 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml new file mode 100644 index 00000000..cbd3a746 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-9600-PRO-Turbo +humanName: Mobility Radeon 9600 PRO Turbo +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-02-13' + VRAM Frequency: 243 MHz + VRAM Bandwidth: 7.776 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml new file mode 100644 index 00000000..582b7965 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-9600-PRO +humanName: Mobility Radeon 9600 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml new file mode 100644 index 00000000..67e9e971 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-9600 +humanName: Mobility Radeon 9600 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml new file mode 100644 index 00000000..e483a61e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-9700-SE +humanName: Mobility Radeon 9700 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M10 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml new file mode 100644 index 00000000..095ea873 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-9700 +humanName: Mobility Radeon 9700 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M11 + GPU Variant: M11 P + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml new file mode 100644 index 00000000..7c13c701 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-X300-IGP +humanName: Mobility Radeon X300 IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 74 mm² + GPU: RS480 + GPU Variant: RS480M X300 IGP + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml new file mode 100644 index 00000000..9d9e81c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X300 +humanName: Mobility Radeon X300 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0b' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-11-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: M22 + GPU Variant: M22 X300 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml new file mode 100644 index 00000000..4015f94d --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X600-SE +humanName: Mobility Radeon X600 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0b' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M24 + GPU Variant: M24C + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml new file mode 100644 index 00000000..5f5fadbd --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X600 +humanName: Mobility Radeon X600 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0b' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-06-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: M24 + GPU Variant: M24 X600 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml new file mode 100644 index 00000000..0e905e5a --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-9500-PRO +humanName: Radeon 9500 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-10-01' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 9500 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml new file mode 100644 index 00000000..78350f86 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml @@ -0,0 +1,28 @@ +name: Radeon-9500 +humanName: Radeon 9500 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 17.28 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 + TDP: 12 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml new file mode 100644 index 00000000..267f2bb9 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml @@ -0,0 +1,27 @@ +name: Radeon-9550-SE +humanName: Radeon 9550 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml new file mode 100644 index 00000000..64ae740e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-9550-XT +humanName: Radeon 9550 XT +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-05-04' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 XT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml new file mode 100644 index 00000000..6415966e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml @@ -0,0 +1,28 @@ +name: Radeon-9550 +humanName: Radeon 9550 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 LX + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml new file mode 100644 index 00000000..db8edaba --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-9600-PRO +humanName: Radeon 9600 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 PRO + TDP: 18 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml new file mode 100644 index 00000000..44a7132e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-9600-SE +humanName: Radeon 9600 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml new file mode 100644 index 00000000..c4302042 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml @@ -0,0 +1,26 @@ +name: Radeon-9600-TX +humanName: Radeon 9600 TX +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-07' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 9600 TX + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml new file mode 100644 index 00000000..bc31d8bc --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-9600-XT +humanName: Radeon 9600 XT +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV360 + GPU Variant: RV360 + TDP: 22 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml new file mode 100644 index 00000000..07e9e66d --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml @@ -0,0 +1,28 @@ +name: Radeon-9600 +humanName: Radeon 9600 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 189 MHz + VRAM Bandwidth: 6.048 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV350 + GPU Variant: RV350 LE + TDP: 12 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml new file mode 100644 index 00000000..b8fd4775 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml @@ -0,0 +1,25 @@ +name: Radeon-9700-PRO-X4 +humanName: Radeon 9700 PRO X4 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-08-19' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + TDP: unknown + Slot Width: Dual-slot + Outputs: 4x DVI + Power Connectors: 2x Molex diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml new file mode 100644 index 00000000..6d884dab --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-9700-PRO +humanName: Radeon 9700 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-08-19' + VRAM Frequency: 310 MHz + VRAM Bandwidth: 19.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 9700 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml new file mode 100644 index 00000000..3d894a12 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml @@ -0,0 +1,28 @@ +name: Radeon-9700 +humanName: Radeon 9700 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2002-08-19' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 17.28 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R300 + GPU Variant: R300 9700 + TDP: 37 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml new file mode 100644 index 00000000..10e6e90e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml @@ -0,0 +1,28 @@ +name: Radeon-9800-PRO-MAXX +humanName: Radeon 9800 PRO MAXX +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: 'Unknown' + VRAM Frequency: 340 MHz + VRAM Bandwidth: 21.76 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R350 + GPU Variant: R350 + TDP: 94 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml new file mode 100644 index 00000000..b61f8e2b --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-9800-PRO-Mac-Edition +humanName: Radeon 9800 PRO Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-03-04' + VRAM Frequency: 338 MHz + VRAM Bandwidth: 21.63 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 + TDP: 60 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml new file mode 100644 index 00000000..3b82b44e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml @@ -0,0 +1,31 @@ +name: Radeon-9800-PRO +humanName: Radeon 9800 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 340 MHz + VRAM Bandwidth: 21.76 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 + TDP: 47 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 215 mm + Width: 108 mm + Height: 16 mm diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml new file mode 100644 index 00000000..e4c4ee6d --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-9800-SE +humanName: Radeon 9800 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 290 MHz + VRAM Bandwidth: 9.280 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 215 mm² + GPU: R350 + GPU Variant: R350 SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml new file mode 100644 index 00000000..c0bdf051 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-9800-XT-Mac-Edition +humanName: Radeon 9800 XT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-03-14' + VRAM Frequency: 365 MHz + VRAM Bandwidth: 23.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 + TDP: 60 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml new file mode 100644 index 00000000..e667127c --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-9800-XT +humanName: Radeon 9800 XT +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 365 MHz + VRAM Bandwidth: 23.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 + TDP: 60 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml new file mode 100644 index 00000000..ccc7ebef --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml @@ -0,0 +1,26 @@ +name: Radeon-9800-XXL +humanName: Radeon 9800 XXL +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-10-01' + VRAM Frequency: 338 MHz + VRAM Bandwidth: 21.63 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 218 mm² + GPU: R360 + GPU Variant: R360 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml new file mode 100644 index 00000000..bc36f5ab --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml @@ -0,0 +1,28 @@ +name: Radeon-9800 +humanName: Radeon 9800 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 150 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 290 MHz + VRAM Bandwidth: 18.56 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 215 mm² + GPU: R350 + GPU Variant: R350 + TDP: 37 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml new file mode 100644 index 00000000..16fd6a7e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1050-AGP +humanName: Radeon X1050 AGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-11-25' + VRAM Frequency: 203 MHz + VRAM Bandwidth: 6.496 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 76 mm² + GPU: RV360 + GPU Variant: RV360 + TDP: 24 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml new file mode 100644 index 00000000..55a52b60 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1050 +humanName: Radeon X1050 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006-12-07' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 X1050 + TDP: 24 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml new file mode 100644 index 00000000..0aa6476e --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml @@ -0,0 +1,27 @@ +name: Radeon-X300-LE +humanName: Radeon X300 LE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml new file mode 100644 index 00000000..f1fd96ca --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml @@ -0,0 +1,26 @@ +name: Radeon-X300-SE-HyperMemory +humanName: Radeon X300 SE HyperMemory +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006-10-25' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml new file mode 100644 index 00000000..34a277f1 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X300-SE +humanName: Radeon X300 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 SE + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml new file mode 100644 index 00000000..c674138c --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml @@ -0,0 +1,27 @@ +name: Radeon-X300 +humanName: Radeon X300 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 X300 + TDP: 36 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml new file mode 100644 index 00000000..1e55d2fa --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml @@ -0,0 +1,27 @@ +name: Radeon-X550-HyperMemory +humanName: Radeon X550 HyperMemory +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-07-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml new file mode 100644 index 00000000..32385b0a --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml @@ -0,0 +1,28 @@ +name: Radeon-X550 +humanName: Radeon X550 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-07-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml new file mode 100644 index 00000000..70cc5114 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X600-PRO +humanName: Radeon X600 PRO +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: RV380 + GPU Variant: RV380 PRO + TDP: 36 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml new file mode 100644 index 00000000..d4726ff7 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X600-SE +humanName: Radeon X600 SE +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + GPU Variant: RV370 X600 SE + TDP: 36 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml new file mode 100644 index 00000000..80473c1f --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X600-XT +humanName: Radeon X600 XT +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 370 MHz + VRAM Bandwidth: 11.84 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 92 mm² + GPU: RV380 + GPU Variant: RV380 XT + TDP: 25 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml new file mode 100644 index 00000000..096d7586 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml @@ -0,0 +1,27 @@ +name: Radeon-X600 +humanName: Radeon X600 +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 74 mm² + GPU: RV370 + TDP: 36 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml new file mode 100644 index 00000000..9a67b5aa --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress--200M-IGP +humanName: Radeon Xpress 200M IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS400 + GPU Variant: RS400M 200M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml new file mode 100644 index 00000000..ed5b5051 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-Xpress-1100-IGP +humanName: Radeon Xpress 1100 IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-10-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RC410 + GPU Variant: RC410 1100 IGP + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml new file mode 100644 index 00000000..9c9986ad --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-1100-Mobile-IGP +humanName: Radeon Xpress 1100 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS482 + GPU Variant: RS482M 1100 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml new file mode 100644 index 00000000..b1868143 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-Xpress-1150-IGP +humanName: Radeon Xpress 1150 IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-10-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS482 + GPU Variant: RS482 1150 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml new file mode 100644 index 00000000..d1d268ef --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-1150-Mobile-IGP +humanName: Radeon Xpress 1150 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2006-05-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS485 + GPU Variant: RS485M 1150 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml new file mode 100644 index 00000000..a119c135 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-Xpress-200-IGP +humanName: Radeon Xpress 200 IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-11-08' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RC410 + GPU Variant: RC410 200 IGP + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml new file mode 100644 index 00000000..9b6ad6b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-200M-IGP +humanName: Radeon Xpress 200M IGP +isPart: true +type: Graphics Card +data: + Architecture: R300 + Lithography: 110 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 74 mm² + GPU: RS480 + GPU Variant: RS480M 200M IGP + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400.yaml b/specs/GPUs-CONSUMER/R400.yaml new file mode 100644 index 00000000..bf99f04a --- /dev/null +++ b/specs/GPUs-CONSUMER/R400.yaml @@ -0,0 +1,70 @@ +name: R400 +humanName: R400 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + Release Date: '2004-03-01' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-X800-GT + - All-In-Wonder-X800-SE + - All-In-Wonder-X800-VE + - All-In-Wonder-X800-XL + - All-In-Wonder-X800-XT + - FireGL-V5000 + - FireGL-V5100 + - FireGL-V7100 + - FireGL-X3-256 + - Mobility-FireGL-V5000 + - Mobility-Radeon-9800 + - Mobility-Radeon-X700 + - Mobility-Radeon-X700-XL + - Mobility-Radeon-X800 + - Mobility-Radeon-X800-XT + - Radeon-2100-IGP + - Radeon-X550-XT + - Radeon-X550-XTX + - Radeon-X700 + - Radeon-X700-AGP + - Radeon-X700-LE + - Radeon-X700-PRO + - Radeon-X700-PRO-AGP + - Radeon-X700-SE + - Radeon-X700-XT + - Radeon-X740-XL + - Radeon-X800 + - Radeon-X800-CrossFire-Edition + - Radeon-X800-GT + - Radeon-X800-GT-AGP + - Radeon-X800-GTO + - Radeon-X800-GTO-AGP + - Radeon-X800-PRO + - Radeon-X800-PRO-AGP + - Radeon-X800-SE + - Radeon-X800-SE-AGP + - Radeon-X800-VE-AGP + - Radeon-X800-XL + - Radeon-X800-XL-AGP + - Radeon-X800-XT + - Radeon-X800-XT-AGP + - Radeon-X800-XT-Mac-Edition + - Radeon-X800-XT-Platinum + - Radeon-X800-XT-Platinum-AGP + - Radeon-X850-CrossFire-Edition + - Radeon-X850-PRO + - Radeon-X850-PRO-AGP + - Radeon-X850-XT + - Radeon-X850-XT-AGP + - Radeon-X850-XT-Platinum + - Radeon-X850-XT-Platinum-AGP + - Radeon-Xpress-1200-IGP + - Radeon-Xpress-1200-Mobile-IGP + - Radeon-Xpress-1250-IGP + - Radeon-Xpress-1250-Mobile-IGP + - Radeon-Xpress-1270-Mobile-IGP + - Radeon-X800-GTO2 diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml new file mode 100644 index 00000000..aa2b664d --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-X800-GT +humanName: All-In-Wonder X800 GT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-09-21' + VRAM Frequency: 492 MHz + VRAM Bandwidth: 15.74 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 AIW + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml new file mode 100644 index 00000000..00fe7775 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-X800-SE +humanName: All-In-Wonder X800 SE +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-04-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 LE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml new file mode 100644 index 00000000..deaa6324 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-X800-VE +humanName: All-In-Wonder X800 VE +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-04-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 LE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml new file mode 100644 index 00000000..8f38d09a --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-X800-XL +humanName: All-In-Wonder X800 XL +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-01-21' + VRAM Frequency: 490 MHz + VRAM Bandwidth: 31.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 AIW + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml new file mode 100644 index 00000000..7a22b7fe --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-X800-XT +humanName: All-In-Wonder X800 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-09-21' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 XT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml new file mode 100644 index 00000000..0c41b92d --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml @@ -0,0 +1,30 @@ +name: FireGL-V5000 +humanName: FireGL V5000 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 430 MHz + VRAM Bandwidth: 13.76 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 183 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml new file mode 100644 index 00000000..9c807d3a --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml @@ -0,0 +1,30 @@ +name: FireGL-V5100 +humanName: FireGL V5100 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-05-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 GL-SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 211 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml new file mode 100644 index 00000000..2346f0b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml @@ -0,0 +1,30 @@ +name: FireGL-V7100 +humanName: FireGL V7100 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 475 MHz + VRAM Bandwidth: 30.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 GL + TDP: 91 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 211 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml new file mode 100644 index 00000000..673d5dcc --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml @@ -0,0 +1,28 @@ +name: FireGL-X3-256 +humanName: FireGL X3-256 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-08-03' + VRAM Frequency: 454 MHz + VRAM Bandwidth: 29.06 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 GL + TDP: 57 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml new file mode 100644 index 00000000..ab15df0d --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-V5000 +humanName: Mobility FireGL V5000 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-02-03' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 13.60 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: M26 + GPU Variant: M26 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml new file mode 100644 index 00000000..32650f42 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-9800 +humanName: Mobility Radeon 9800 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-07-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 281 mm² + GPU: M18 + GPU Variant: M18 9800 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml new file mode 100644 index 00000000..ff232799 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X700-XL +humanName: Mobility Radeon X700 XL +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-03-01' + VRAM Frequency: 330 MHz + VRAM Bandwidth: 10.56 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: M26 + GPU Variant: M26-CSP128 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml new file mode 100644 index 00000000..6f8e4853 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X700 +humanName: Mobility Radeon X700 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-03-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: M26 + GPU Variant: M26 X700 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml new file mode 100644 index 00000000..064e6bef --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X800-XT +humanName: Mobility Radeon X800 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-06-01' + VRAM Frequency: 550 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 289 mm² + GPU: M28 + GPU Variant: M28 X800 XT + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml new file mode 100644 index 00000000..c0243c36 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X800 +humanName: Mobility Radeon X800 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-11-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 289 mm² + GPU: M28 + GPU Variant: M28 X800 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml new file mode 100644 index 00000000..db8357fd --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-2100-IGP +humanName: Radeon 2100 IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 55 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2008-03-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS740 + GPU Variant: RS740 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml new file mode 100644 index 00000000..b1e3b70c --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml @@ -0,0 +1,27 @@ +name: Radeon-X550-XT +humanName: Radeon X550 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-01-24' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 156 mm² + GPU: RV410 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml new file mode 100644 index 00000000..d79807eb --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml @@ -0,0 +1,27 @@ +name: Radeon-X550-XTX +humanName: Radeon X550 XTX +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-01-24' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml new file mode 100644 index 00000000..79e2abb3 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-X700-AGP +humanName: Radeon X700 AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + TDP: 44 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml new file mode 100644 index 00000000..d3b1e62c --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X700-LE +humanName: Radeon X700 LE +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-12-21' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml new file mode 100644 index 00000000..2df47fef --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-X700-PRO-AGP +humanName: Radeon X700 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 472 MHz + VRAM Bandwidth: 15.10 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + TDP: 33 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml new file mode 100644 index 00000000..6dbf1c72 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml @@ -0,0 +1,31 @@ +name: Radeon-X700-PRO +humanName: Radeon X700 PRO +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 430 MHz + VRAM Bandwidth: 13.76 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 PRO + TDP: 33 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 190 mm + Width: 109 mm + Height: 16 mm diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml new file mode 100644 index 00000000..92fe1102 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X700-SE +humanName: Radeon X700 SE +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-04-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml new file mode 100644 index 00000000..cd9e07a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X700-XT +humanName: Radeon X700 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 525 MHz + VRAM Bandwidth: 16.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 XT + TDP: 38 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml new file mode 100644 index 00000000..5396475f --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml @@ -0,0 +1,28 @@ +name: Radeon-X700 +humanName: Radeon X700 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + GPU Variant: RV410 LE + TDP: 44 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml new file mode 100644 index 00000000..2f445b0b --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml @@ -0,0 +1,27 @@ +name: Radeon-X740-XL +humanName: Radeon X740 XL +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2005-03-07' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 156 mm² + GPU: RV410 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml new file mode 100644 index 00000000..c82a7939 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-X800-CrossFire-Edition +humanName: Radeon X800 CrossFire Edition +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 XL + TDP: unknown + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml new file mode 100644 index 00000000..b1f18953 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-GT-AGP +humanName: Radeon X800 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-11-01' + VRAM Frequency: 493 MHz + VRAM Bandwidth: 31.55 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R481 + GPU Variant: R481 SE + TDP: 40 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml new file mode 100644 index 00000000..64087642 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-GT +humanName: Radeon X800 GT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-11-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 SE + TDP: 40 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml new file mode 100644 index 00000000..bcf2a880 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-GTO-AGP +humanName: Radeon X800 GTO AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 490 MHz + VRAM Bandwidth: 31.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R481 + GPU Variant: R481 PRO + TDP: 49 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml new file mode 100644 index 00000000..47dac4c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-GTO +humanName: Radeon X800 GTO +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-11-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 GTO + TDP: 49 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml new file mode 100644 index 00000000..ebe74164 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-GTO2 +humanName: Radeon X800 GTO2 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-09-15' + VRAM Frequency: 490 MHz + VRAM Bandwidth: 31.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 XL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml new file mode 100644 index 00000000..d85ce5c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-PRO-AGP +humanName: Radeon X800 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-05-01' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 PRO + TDP: 48 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml new file mode 100644 index 00000000..6622c89f --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-PRO +humanName: Radeon X800 PRO +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-05-01' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 PRO + TDP: 48 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml new file mode 100644 index 00000000..b8a0f2c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-SE-AGP +humanName: Radeon X800 SE AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml new file mode 100644 index 00000000..91a009a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-SE +humanName: Radeon X800 SE +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-10-04' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 SE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml new file mode 100644 index 00000000..25959a76 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-VE-AGP +humanName: Radeon X800 VE AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 398 MHz + VRAM Bandwidth: 25.47 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 XT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml new file mode 100644 index 00000000..ce2a723e --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XL-AGP +humanName: Radeon X800 XL AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-05-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 XL + TDP: 49 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml new file mode 100644 index 00000000..0b15a327 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XL +humanName: Radeon X800 XL +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 490 MHz + VRAM Bandwidth: 31.36 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 XL + TDP: 49 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml new file mode 100644 index 00000000..77e6b3d2 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XT-AGP +humanName: Radeon X800 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-03-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 XT + TDP: 54 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml new file mode 100644 index 00000000..3ae039e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-X800-XT-Mac-Edition +humanName: Radeon X800 XT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 XT + TDP: 54 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml new file mode 100644 index 00000000..b72b87e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XT-Platinum-AGP +humanName: Radeon X800 XT Platinum AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-05-01' + VRAM Frequency: 560 MHz + VRAM Bandwidth: 35.84 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 281 mm² + GPU: R420 + GPU Variant: R420 XTP + TDP: 63 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml new file mode 100644 index 00000000..c0946f85 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XT-Platinum +humanName: Radeon X800 XT Platinum +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-03-01' + VRAM Frequency: 560 MHz + VRAM Bandwidth: 35.84 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 XT + TDP: 63 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml new file mode 100644 index 00000000..f2830a36 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800-XT +humanName: Radeon X800 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 289 mm² + GPU: R423 + GPU Variant: R423 XT + TDP: 54 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml new file mode 100644 index 00000000..bc2bd760 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml @@ -0,0 +1,28 @@ +name: Radeon-X800 +humanName: Radeon X800 +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 110 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 240 mm² + GPU: R430 + GPU Variant: R430 + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml new file mode 100644 index 00000000..785b46fc --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-X850-CrossFire-Edition +humanName: Radeon X850 CrossFire Edition +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-10' + VRAM Frequency: 540 MHz + VRAM Bandwidth: 34.56 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 XT + TDP: 69 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x DMS-59 + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml new file mode 100644 index 00000000..65c39ecb --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X850-PRO-AGP +humanName: Radeon X850 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-09-04' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R481 + GPU Variant: R481 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml new file mode 100644 index 00000000..a6954060 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X850-PRO +humanName: Radeon X850 PRO +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 520 MHz + VRAM Bandwidth: 33.28 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml new file mode 100644 index 00000000..2dcd2962 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X850-XT-AGP +humanName: Radeon X850 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-02-28' + VRAM Frequency: 540 MHz + VRAM Bandwidth: 34.56 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R481 + GPU Variant: R481 XT + TDP: 69 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml new file mode 100644 index 00000000..adf745b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml @@ -0,0 +1,31 @@ +name: Radeon-X850-XT-Platinum-AGP +humanName: Radeon X850 XT Platinum AGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-02-28' + VRAM Frequency: 590 MHz + VRAM Bandwidth: 37.76 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R481 + GPU Variant: R481 XTP + TDP: 67 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 186 mm + Width: 111 mm + Height: 41 mm diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml new file mode 100644 index 00000000..7456d17b --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml @@ -0,0 +1,31 @@ +name: Radeon-X850-XT-Platinum +humanName: Radeon X850 XT Platinum +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-21' + VRAM Frequency: 590 MHz + VRAM Bandwidth: 37.76 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 XT X850 + TDP: 67 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 186 mm + Width: 111 mm + Height: 41 mm diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml new file mode 100644 index 00000000..d31e5b1a --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X850-XT +humanName: Radeon X850 XT +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 130 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2004-12-01' + VRAM Frequency: 540 MHz + VRAM Bandwidth: 34.56 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 297 mm² + GPU: R480 + GPU Variant: R480 XT X850 + TDP: 69 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml new file mode 100644 index 00000000..2cc735cd --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-Xpress-1200-IGP +humanName: Radeon Xpress 1200 IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 80 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-02-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS690 + GPU Variant: RS690C + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml new file mode 100644 index 00000000..d4a49f48 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-1200-Mobile-IGP +humanName: Radeon Xpress 1200 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 80 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-02-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS690 + GPU Variant: RS690M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml new file mode 100644 index 00000000..315855bc --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml @@ -0,0 +1,25 @@ +name: Radeon-Xpress-1250-IGP +humanName: Radeon Xpress 1250 IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 80 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-02-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS690 + GPU Variant: RS690 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml new file mode 100644 index 00000000..238960d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-1250-Mobile-IGP +humanName: Radeon Xpress 1250 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 80 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-02-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS690 + GPU Variant: RS690M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml new file mode 100644 index 00000000..d75fb92f --- /dev/null +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-1270-Mobile-IGP +humanName: Radeon Xpress 1270 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: R400 + Lithography: 80 nm + DirectX Support: '9.2' + Vulkan Support: 'N/A' + OpenGL Support: '2.0' + OpenCL Support: 'N/A' + Release Date: '2007-02-28' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 73 mm² + GPU: RS690 + GPU Variant: RS690M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/RDNA-1.0.yaml new file mode 100644 index 00000000..328bfef9 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0.yaml @@ -0,0 +1,41 @@ +name: RDNA-1.0 +humanName: RDNA 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2019-07-07' +sections: + - header: WHOLE RANGE + members: + - Radeon-Pro-5300 + - Radeon-Pro-5300M + - Radeon-Pro-5500-XT + - Radeon-Pro-5500M + - Radeon-Pro-5600M + - Radeon-Pro-5700 + - Radeon-Pro-5700-XT + - Radeon-Pro-V520 + - Radeon-Pro-V540 + - Radeon-Pro-W5300M + - Radeon-Pro-W5500 + - Radeon-Pro-W5500M + - Radeon-Pro-W5500X + - Radeon-Pro-W5700 + - Radeon-Pro-W5700X + - Radeon-RX-5300-OEM + - Radeon-RX-5300-XT-OEM + - Radeon-RX-5300M + - Radeon-RX-5500-OEM + - Radeon-RX-5500-XT + - Radeon-RX-5500M + - Radeon-RX-5600-OEM + - Radeon-RX-5600-XT + - Radeon-RX-5600M + - Radeon-RX-5700 + - Radeon-RX-5700-XT + - Radeon-RX-5700-XT-50th-Anniversary + - Radeon-RX-5700M diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml new file mode 100644 index 00000000..b246c86d --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-5300 +humanName: Radeon Pro 5300 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-08-04' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XE + TDP: 85 W + FP32 Compute: 4.224 TFLOPS + FP64 Compute: 264.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml new file mode 100644 index 00000000..80e1fa8c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-5300M +humanName: Radeon Pro 5300M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-13' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PROA + TDP: 85 W + FP32 Compute: 3.200 TFLOPS + FP64 Compute: 200.0 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml new file mode 100644 index 00000000..00a2017b --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-5500-XT +humanName: Radeon Pro 5500 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-08-04' + GPU Base Frequency: 1187 MHz + GPU Boost Frequency: 1757 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XL + TDP: 125 W + FP32 Compute: 5.398 TFLOPS + FP64 Compute: 337.3 GFLOPS (1:16) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml new file mode 100644 index 00000000..8c25c177 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-5500M +humanName: Radeon Pro 5500M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-13' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1450 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 ULA + TDP: 85 W + FP32 Compute: 4.454 TFLOPS + FP64 Compute: 278.4 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml new file mode 100644 index 00000000..2efc227b --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-5600M +humanName: Radeon Pro 5600M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2020-06-15' + GPU Base Frequency: 822 MHz + GPU Boost Frequency: 1144 MHz + VRAM Frequency: 770 MHz + VRAM Bandwidth: 394.2 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: unknown + GPU: Navi 12 + GPU Variant: Navi 12 ULA + TDP: 50 W + FP32 Compute: 5.857 TFLOPS + FP64 Compute: 366.1 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml new file mode 100644 index 00000000..a11f6d7c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-5700-XT +humanName: Radeon Pro 5700 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-08-04' + GPU Base Frequency: 1243 MHz + GPU Boost Frequency: 1499 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XTA + TDP: 130 W + FP32 Compute: 7.675 TFLOPS + FP64 Compute: 479.7 GFLOPS (1:16) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml new file mode 100644 index 00000000..dbd62742 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml @@ -0,0 +1,31 @@ +name: Radeon-Pro-5700 +humanName: Radeon Pro 5700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-08-04' + GPU Base Frequency: 1243 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XLA + TDP: 130 W + FP32 Compute: 6.221 TFLOPS + FP64 Compute: 388.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml new file mode 100644 index 00000000..52ea5e79 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V520 +humanName: Radeon Pro V520 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2020-12-01' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: unknown + GPU: Navi 12 + GPU Variant: Navi 12 GLXL + TDP: 225 W + FP32 Compute: 7.373 TFLOPS + FP64 Compute: 460.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml new file mode 100644 index 00000000..5535ef77 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-V540 +humanName: Radeon Pro V540 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: HBM2 + VRAM Bus Width: 2048 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: unknown + GPU: Navi 12 + GPU Variant: Navi 12 GLXL + TDP: 225 W + FP32 Compute: 7.373 TFLOPS + FP64 Compute: 460.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x mini-DisplayPort 1.4a + Power Connectors: 8-pin EPS + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml new file mode 100644 index 00000000..311f5705 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-W5300M +humanName: Radeon Pro W5300M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-13' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1250 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XLM + TDP: 85 W + FP32 Compute: 3.200 TFLOPS + FP64 Compute: 200.0 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml new file mode 100644 index 00000000..4e607dc8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml @@ -0,0 +1,33 @@ +name: Radeon-Pro-W5500 +humanName: Radeon Pro W5500 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-02-10' + GPU Base Frequency: 1744 MHz + GPU Boost Frequency: 1855 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XL + TDP: 125 W + FP32 Compute: 5.224 TFLOPS + FP64 Compute: 326.5 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml new file mode 100644 index 00000000..d1dbd30b --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-W5500M +humanName: Radeon Pro W5500M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-02-10' + GPU Base Frequency: 1448 MHz + GPU Boost Frequency: 1645 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XTM + TDP: 85 W + FP32 Compute: 4.632 TFLOPS + FP64 Compute: 289.5 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml new file mode 100644 index 00000000..a2885ff9 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-W5500X +humanName: Radeon Pro W5500X +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-12-11' + GPU Base Frequency: 1187 MHz + GPU Boost Frequency: 1757 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 PRO XL + TDP: 125 W + FP32 Compute: 5.398 TFLOPS + FP64 Compute: 337.3 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 2x HDMI 2.0b diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml new file mode 100644 index 00000000..96bf7984 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-W5700 +humanName: Radeon Pro W5700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-19' + GPU Base Frequency: 1400 MHz + GPU Boost Frequency: 1880 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + TDP: 205 W + FP32 Compute: 8.663 TFLOPS + FP64 Compute: 541.4 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 5x mini-DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml new file mode 100644 index 00000000..d7e842e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-W5700X +humanName: Radeon Pro W5700X +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-12-11' + GPU Base Frequency: 1243 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 251 mm² + GPU: Navi 10 + TDP: 205 W + FP32 Compute: 10.44 TFLOPS + FP64 Compute: 652.8 GFLOPS (1:16) + Slot Width: Quad-slot + Outputs: 1x HDMI 2.0b4x Thunderbolt + Length: 305 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml new file mode 100644 index 00000000..e3d2bfbc --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-5300-OEM +humanName: Radeon RX 5300 OEM +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-05-28' + GPU Base Frequency: 1327 MHz + GPU Boost Frequency: 1645 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 168.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XE + TDP: 100 W + FP32 Compute: 4.632 TFLOPS + FP64 Compute: 289.5 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 180 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml new file mode 100644 index 00000000..9e831919 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-5300-XT-OEM +humanName: Radeon RX 5300 XT OEM +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-07' + GPU Base Frequency: 1670 MHz + GPU Boost Frequency: 1845 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 112.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XL + TDP: 100 W + FP32 Compute: 5.196 TFLOPS + FP64 Compute: 324.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 180 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml new file mode 100644 index 00000000..b677661a --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-5300M +humanName: Radeon RX 5300M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-11-13' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1445 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 168.0 GB/s + VRAM Capacity: 3 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XLM + TDP: 85 W + FP32 Compute: 4.069 TFLOPS + FP64 Compute: 254.3 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml new file mode 100644 index 00000000..8345c830 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-5500-OEM +humanName: Radeon RX 5500 OEM +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-07' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1845 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XT + TDP: 110 W + FP32 Compute: 5.196 TFLOPS + FP64 Compute: 324.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 180 mm + Width: 110 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml new file mode 100644 index 00000000..f7b65c6e --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-5500-XT +humanName: Radeon RX 5500 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-12-12' + GPU Base Frequency: 1607 MHz + GPU Boost Frequency: 1845 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XTX + TDP: 130 W + FP32 Compute: 5.196 TFLOPS + FP64 Compute: 324.7 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 180 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml new file mode 100644 index 00000000..ca6323c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-5500M +humanName: Radeon RX 5500M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-10-07' + GPU Base Frequency: 1375 MHz + GPU Boost Frequency: 1645 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 158 mm² + GPU: Navi 14 + GPU Variant: Navi 14 XTM + TDP: 85 W + FP32 Compute: 4.632 TFLOPS + FP64 Compute: 289.5 GFLOPS (1:16) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml new file mode 100644 index 00000000..5ba5be13 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-5600-OEM +humanName: Radeon RX 5600 OEM +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-01-21' + GPU Base Frequency: 1130 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XE + TDP: 125 W + FP32 Compute: 6.390 TFLOPS + FP64 Compute: 399.4 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml new file mode 100644 index 00000000..5a535236 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-5600-XT +humanName: Radeon RX 5600 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-01-21' + GPU Base Frequency: 1130 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XLE + TDP: 150 W + FP32 Compute: 7.188 TFLOPS + FP64 Compute: 449.3 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml new file mode 100644 index 00000000..ae9ffd0c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-5600M +humanName: Radeon RX 5600M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-07-07' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1265 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XME + TDP: 150 W + FP32 Compute: 5.829 TFLOPS + FP64 Compute: 364.3 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml new file mode 100644 index 00000000..abb60442 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-5700-XT-50th-Anniversary +humanName: Radeon RX 5700 XT 50th Anniversary +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-07' + GPU Base Frequency: 1680 MHz + GPU Boost Frequency: 1980 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XTX + TDP: 225 W + FP32 Compute: 10.14 TFLOPS + FP64 Compute: 633.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 272 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml new file mode 100644 index 00000000..ec6cca6d --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-5700-XT +humanName: Radeon RX 5700 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-07' + GPU Base Frequency: 1605 MHz + GPU Boost Frequency: 1905 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XT + TDP: 225 W + FP32 Compute: 9.754 TFLOPS + FP64 Compute: 609.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 272 mm + Width: 111 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml new file mode 100644 index 00000000..3d4a723e --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-5700 +humanName: Radeon RX 5700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2019-07-07' + GPU Base Frequency: 1465 MHz + GPU Boost Frequency: 1725 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XL + TDP: 180 W + FP32 Compute: 7.949 TFLOPS + FP64 Compute: 496.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 268 mm + Width: 111 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml new file mode 100644 index 00000000..9855ef48 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml @@ -0,0 +1,30 @@ +name: Radeon-RX-5700M +humanName: Radeon RX 5700M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 1.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-03-01' + GPU Base Frequency: 1465 MHz + GPU Boost Frequency: 1720 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 251 mm² + GPU: Navi 10 + GPU Variant: Navi 10 XM + TDP: 180 W + FP32 Compute: 7.926 TFLOPS + FP64 Compute: 495.4 GFLOPS (1:16) + Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin diff --git a/specs/GPUs-CONSUMER/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/RDNA-2.0.yaml new file mode 100644 index 00000000..75b741e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0.yaml @@ -0,0 +1,64 @@ +name: RDNA-2.0 +humanName: RDNA 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2020-10-28' +sections: + - header: WHOLE RANGE + members: + - Playstation-5-GPU + - Radeon-610M + - Radeon-660M + - Radeon-680M + - Radeon-Graphics-128SP + - Radeon-PRO-V620 + - Radeon-PRO-W6300 + - Radeon-Pro-W6300M + - Radeon-PRO-W6400 + - Radeon-Pro-W6500M + - Radeon-PRO-W6600 + - Radeon-Pro-W6600M + - Radeon-Pro-W6600X + - Radeon-PRO-W6800 + - Radeon-Pro-W6800X + - Radeon-Pro-W6800X-Duo + - Radeon-Pro-W6900X + - Radeon-RX-6300 + - Radeon-RX-6300M + - Radeon-RX-6400 + - Radeon-RX-6450M + - Radeon-RX-6500-XT + - Radeon-RX-6500M + - Radeon-RX-6550M + - Radeon-RX-6550S + - Radeon-RX-6600 + - Radeon-RX-6600-XT + - Radeon-RX-6600M + - Radeon-RX-6600S + - Radeon-RX-6650-XT + - Radeon-RX-6650M + - Radeon-RX-6650M-XT + - Radeon-RX-6700 + - Radeon-RX-6700-XT + - Radeon-RX-6700M + - Radeon-RX-6750-GRE-10-GB + - Radeon-RX-6750-GRE-12-GB + - Radeon-RX-6750-XT + - Radeon-RX-6800 + - Radeon-RX-6800-XT + - Radeon-RX-6800M + - Radeon-RX-6800S + - Radeon-RX-6850M-XT + - Radeon-RX-6900-XT + - Radeon-RX-6900-XTX + - Radeon-RX-6950-XT + - Radeon-RX-6700S + - Steam-Deck-GPU + - Steam-Deck-OLED-GPU + - Xbox-Series-S-GPU + - Xbox-Series-X-GPU diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml new file mode 100644 index 00000000..19258312 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml @@ -0,0 +1,31 @@ +name: Playstation-5-GPU +humanName: Playstation 5 GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2020-11-12' + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 308 mm² + GPU: Oberon + GPU Variant: CXD90044GB + TDP: 180 W + FP32 Compute: 10.29 TFLOPS + FP64 Compute: 643.1 GFLOPS (1:16) + Outputs: + - 1x HDMI 2.1 + - 1x USB Type-C + Length: 390 mm + Width: 260 mm + Height: 104 mm diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml new file mode 100644 index 00000000..0f7f5db9 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml @@ -0,0 +1,31 @@ +name: Radeon-610M +humanName: Radeon 610M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2022-09-20' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 100 mm² + GPU: Mendocino + TDP: 15 W + FP32 Compute: 486.4 GFLOPS + FP64 Compute: 30.40 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 2 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml new file mode 100644 index 00000000..55a933ee --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml @@ -0,0 +1,31 @@ +name: Radeon-660M +humanName: Radeon 660M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2022-01-04' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1900 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 208 mm² + GPU: Rembrandt + TDP: 40 W + FP32 Compute: 1,459 GFLOPS + FP64 Compute: 91.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 6 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml new file mode 100644 index 00000000..87beb1a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml @@ -0,0 +1,31 @@ +name: Radeon-680M +humanName: Radeon 680M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2022-01-04' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 208 mm² + GPU: Rembrandt + TDP: 50 W + FP32 Compute: 3.379 TFLOPS + FP64 Compute: 211.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml new file mode 100644 index 00000000..1bfb49b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml @@ -0,0 +1,31 @@ +name: Radeon-Graphics-128SP +humanName: Radeon Graphics 128SP +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2022-09-27' + GPU Base Frequency: 400 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 264 mm² + GPU: Raphael + TDP: 15 W + FP32 Compute: 563.2 GFLOPS + FP64 Compute: 35.20 GFLOPS (1:16) + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None + Ray Tracing Cores: 2 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml new file mode 100644 index 00000000..a5f8789c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml @@ -0,0 +1,35 @@ +name: Radeon-PRO-V620 +humanName: Radeon PRO V620 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-11-04' + GPU Base Frequency: 1825 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 XT + TDP: 300 W + FP32 Compute: 20.28 TFLOPS + FP64 Compute: 1,267 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 120 mm + Height: 50 mm + Ray Tracing Cores: 72 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml new file mode 100644 index 00000000..ec2785c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml @@ -0,0 +1,32 @@ +name: Radeon-PRO-W6300 +humanName: Radeon PRO W6300 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-19' + GPU Base Frequency: 1512 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 32 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 + TDP: 25 W + FP32 Compute: 3.133 TFLOPS + FP64 Compute: 195.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml new file mode 100644 index 00000000..aa725636 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml @@ -0,0 +1,32 @@ +name: Radeon-PRO-W6400 +humanName: Radeon PRO W6400 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-19' + GPU Base Frequency: 2039 MHz + GPU Boost Frequency: 2321 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XL-W + TDP: 50 W + FP32 Compute: 3.565 TFLOPS + FP64 Compute: 222.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 2x DisplayPort 1.4a + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml new file mode 100644 index 00000000..4d7ade55 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml @@ -0,0 +1,33 @@ +name: Radeon-PRO-W6600 +humanName: Radeon PRO W6600 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-06-08' + GPU Base Frequency: 2331 MHz + GPU Boost Frequency: 2580 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + GPU Variant: Navi 23 WKS-XL + TDP: 100 W + FP32 Compute: 9.247 TFLOPS + FP64 Compute: 577.9 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 241 mm + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml new file mode 100644 index 00000000..96176415 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml @@ -0,0 +1,35 @@ +name: Radeon-PRO-W6800 +humanName: Radeon PRO W6800 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-06-08' + GPU Base Frequency: 2075 MHz + GPU Boost Frequency: 2320 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 GL-XL + TDP: 250 W + FP32 Compute: 17.82 TFLOPS + FP64 Compute: 1,114 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 120 mm + Height: 50 mm + Ray Tracing Cores: 60 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml new file mode 100644 index 00000000..cf3f565f --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-W6300M +humanName: Radeon Pro W6300M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-19' + GPU Base Frequency: 1512 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 32 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 + TDP: 25 W + FP32 Compute: 3.133 TFLOPS + FP64 Compute: 195.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml new file mode 100644 index 00000000..bd38ecc3 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-W6500M +humanName: Radeon Pro W6500M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 1512 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 + TDP: 25 W + FP32 Compute: 4.178 TFLOPS + FP64 Compute: 261.1 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml new file mode 100644 index 00000000..2bb78457 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml @@ -0,0 +1,32 @@ +name: Radeon-Pro-W6600M +humanName: Radeon Pro W6600M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-06-08' + GPU Base Frequency: 1224 MHz + GPU Boost Frequency: 2034 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + GPU Variant: Navi 23 WKS-XM + TDP: 90 W + FP32 Compute: 7.290 TFLOPS + FP64 Compute: 455.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml new file mode 100644 index 00000000..53f1ef46 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml @@ -0,0 +1,30 @@ +name: Radeon-Pro-W6600X +humanName: Radeon Pro W6600X +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-08-03' + GPU Base Frequency: 2068 MHz + GPU Boost Frequency: 2479 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 120 W + FP32 Compute: 10.15 TFLOPS + FP64 Compute: 634.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: No outputs + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml new file mode 100644 index 00000000..6336350c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml @@ -0,0 +1,35 @@ +name: Radeon-Pro-W6800X-Duo +humanName: Radeon Pro W6800X Duo +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-08-03' + GPU Base Frequency: 1800 MHz + GPU Boost Frequency: 1967 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 Pro-XLA + TDP: 400 W + FP32 Compute: 15.11 TFLOPS + FP64 Compute: 944.2 GFLOPS (1:16) + Slot Width: Quad-slot + Outputs: + - 1x HDMI 2.1 + - 4x Thunderbolt + Length: 267 mm + Width: 120 mm + Ray Tracing Cores: 60 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml new file mode 100644 index 00000000..5fad377d --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml @@ -0,0 +1,36 @@ +name: Radeon-Pro-W6800X +humanName: Radeon Pro W6800X +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-08-03' + GPU Base Frequency: 1800 MHz + GPU Boost Frequency: 2087 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 Pro-XLA + TDP: 200 W + FP32 Compute: 16.03 TFLOPS + FP64 Compute: 1,002 GFLOPS (1:16) + Slot Width: Quad-slot + Outputs: + - 1x HDMI 2.1 + - 4x Thunderbolt + Power Connectors: Apple MPX + Length: 267 mm + Width: 120 mm + Ray Tracing Cores: 60 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml new file mode 100644 index 00000000..4b6f0d7b --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml @@ -0,0 +1,34 @@ +name: Radeon-Pro-W6900X +humanName: Radeon Pro W6900X +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-08-03' + GPU Base Frequency: 1825 MHz + GPU Boost Frequency: 2171 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 Pro-XTA + TDP: 300 W + FP32 Compute: 22.23 TFLOPS + FP64 Compute: 1,389 GFLOPS (1:16) + Outputs: + - 1x HDMI 2.1 + - 4x Thunderbolt + Length: 267 mm + Width: 120 mm + Ray Tracing Cores: 80 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml new file mode 100644 index 00000000..01c0d4d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6300 +humanName: Radeon RX 6300 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 32 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XL + TDP: 32 W + FP32 Compute: 3.133 TFLOPS + FP64 Compute: 195.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: 2x HDMI 2.1 + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml new file mode 100644 index 00000000..d52c32a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6300M +humanName: Radeon RX 6300M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 2040 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 32 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XML + TDP: 35 W + FP32 Compute: 3.133 TFLOPS + FP64 Compute: 195.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml new file mode 100644 index 00000000..cf8a41a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-6400 +humanName: Radeon RX 6400 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-19' + GPU Base Frequency: 1923 MHz + GPU Boost Frequency: 2321 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XL + TDP: 53 W + FP32 Compute: 3.565 TFLOPS + FP64 Compute: 222.8 GFLOPS (1:16) + Slot Width: Single-slot + Outputs: + - 1x HDMI 2.1 + - 1x DisplayPort 1.4a + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml new file mode 100644 index 00000000..b130c7b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6450M +humanName: Radeon RX 6450M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2460 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XML + TDP: 50 W + FP32 Compute: 3.779 TFLOPS + FP64 Compute: 236.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml new file mode 100644 index 00000000..aab01aa6 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-6500-XT +humanName: Radeon RX 6500 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-19' + GPU Base Frequency: 2310 MHz + GPU Boost Frequency: 2815 MHz + VRAM Frequency: 2248 MHz + VRAM Bandwidth: 143.9 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XT + TDP: 107 W + FP32 Compute: 5.765 TFLOPS + FP64 Compute: 360.3 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 1x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml new file mode 100644 index 00000000..ad99e7dc --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6500M +humanName: Radeon RX 6500M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-01-04' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 144.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 XM + TDP: 50 W + FP32 Compute: 4.915 TFLOPS + FP64 Compute: 307.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml new file mode 100644 index 00000000..f9b32865 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6550M +humanName: Radeon RX 6550M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2840 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 144.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 + TDP: 80 W + FP32 Compute: 5.816 TFLOPS + FP64 Compute: 363.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml new file mode 100644 index 00000000..516b0aaf --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6550S +humanName: Radeon RX 6550S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 107 mm² + GPU: Navi 24 + GPU Variant: Navi 24 + TDP: 50 W + FP32 Compute: 4.915 TFLOPS + FP64 Compute: 307.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml new file mode 100644 index 00000000..e940127f --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6600-XT +humanName: Radeon RX 6600 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-07-30' + GPU Base Frequency: 1968 MHz + GPU Boost Frequency: 2589 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 237 mm² + GPU: Navi 23 + GPU Variant: Navi 23 XT + TDP: 160 W + FP32 Compute: 10.60 TFLOPS + FP64 Compute: 662.8 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 190 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml new file mode 100644 index 00000000..686459de --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6600 +humanName: Radeon RX 6600 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-10-13' + GPU Base Frequency: 1626 MHz + GPU Boost Frequency: 2491 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + GPU Variant: Navi 23 XL + TDP: 132 W + FP32 Compute: 8.928 TFLOPS + FP64 Compute: 558.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 190 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml new file mode 100644 index 00000000..4079a43e --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6600M +humanName: Radeon RX 6600M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-05-31' + GPU Base Frequency: 2068 MHz + GPU Boost Frequency: 2416 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 100 W + FP32 Compute: 8.659 TFLOPS + FP64 Compute: 541.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml new file mode 100644 index 00000000..52493a70 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6600S +humanName: Radeon RX 6600S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 80 W + FP32 Compute: 7.168 TFLOPS + FP64 Compute: 448.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml new file mode 100644 index 00000000..27015735 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml @@ -0,0 +1,34 @@ +name: Radeon-RX-6650-XT +humanName: Radeon RX 6650 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-05-10' + GPU Base Frequency: 2055 MHz + GPU Boost Frequency: 2635 MHz + VRAM Frequency: 2190 MHz + VRAM Bandwidth: 280.3 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 237 mm² + GPU: Navi 23 + GPU Variant: Navi 23 KXT + TDP: 176 W + FP32 Compute: 10.79 TFLOPS + FP64 Compute: 674.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml new file mode 100644 index 00000000..a7322cf4 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6650M-XT +humanName: Radeon RX 6650M XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 2068 MHz + GPU Boost Frequency: 2416 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 120 W + FP32 Compute: 9.896 TFLOPS + FP64 Compute: 618.5 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml new file mode 100644 index 00000000..5084511a --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6650M +humanName: Radeon RX 6650M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 2068 MHz + GPU Boost Frequency: 2416 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 120 W + FP32 Compute: 8.659 TFLOPS + FP64 Compute: 541.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml new file mode 100644 index 00000000..a2dd511d --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6700-XT +humanName: Radeon RX 6700 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-03-03' + GPU Base Frequency: 2321 MHz + GPU Boost Frequency: 2581 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XT + TDP: 230 W + FP32 Compute: 13.21 TFLOPS + FP64 Compute: 825.9 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 40 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml new file mode 100644 index 00000000..588ba911 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6700 +humanName: Radeon RX 6700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-06-09' + GPU Base Frequency: 1941 MHz + GPU Boost Frequency: 2450 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XTL + TDP: 175 W + FP32 Compute: 11.29 TFLOPS + FP64 Compute: 705.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 36 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml new file mode 100644 index 00000000..e14a19e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6700M +humanName: Radeon RX 6700M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-05-31' + GPU Base Frequency: 1489 MHz + GPU Boost Frequency: 2400 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XM + TDP: 135 W + FP32 Compute: 11.06 TFLOPS + FP64 Compute: 691.2 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml new file mode 100644 index 00000000..0de6081c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6700S +humanName: Radeon RX 6700S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 80 W + FP32 Compute: 7.168 TFLOPS + FP64 Compute: 448.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml new file mode 100644 index 00000000..ed91abad --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6750-GRE-10-GB +humanName: Radeon RX 6750 GRE 10 GB +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-10-17' + GPU Base Frequency: 1941 MHz + GPU Boost Frequency: 2450 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XTL + TDP: 170 W + FP32 Compute: 11.29 TFLOPS + FP64 Compute: 705.6 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 36 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml new file mode 100644 index 00000000..dd5412dd --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6750-GRE-12-GB +humanName: Radeon RX 6750 GRE 12 GB +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-10-17' + GPU Base Frequency: 2321 MHz + GPU Boost Frequency: 2581 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 KXT + TDP: 250 W + FP32 Compute: 13.21 TFLOPS + FP64 Compute: 825.9 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 40 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml new file mode 100644 index 00000000..e59be77a --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6750-XT +humanName: Radeon RX 6750 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-03-03' + GPU Base Frequency: 2150 MHz + GPU Boost Frequency: 2600 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 KXT + TDP: 250 W + FP32 Compute: 13.31 TFLOPS + FP64 Compute: 832.0 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 40 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml new file mode 100644 index 00000000..1e4ad390 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6800-XT +humanName: Radeon RX 6800 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-10-28' + GPU Base Frequency: 1825 MHz + GPU Boost Frequency: 2250 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 XT + TDP: 300 W + FP32 Compute: 20.74 TFLOPS + FP64 Compute: 1,296 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 120 mm + Height: 50 mm + Ray Tracing Cores: 72 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml new file mode 100644 index 00000000..0e6ffe83 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6800 +humanName: Radeon RX 6800 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-10-28' + GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2105 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 XL + TDP: 250 W + FP32 Compute: 16.17 TFLOPS + FP64 Compute: 1,010 GFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 120 mm + Height: 40 mm + Ray Tracing Cores: 60 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml new file mode 100644 index 00000000..df1ec462 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6800M +humanName: Radeon RX 6800M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2021-05-31' + GPU Base Frequency: 2116 MHz + GPU Boost Frequency: 2390 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XTM + TDP: 145 W + FP32 Compute: 12.24 TFLOPS + FP64 Compute: 764.8 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml new file mode 100644 index 00000000..2db93f69 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml @@ -0,0 +1,31 @@ +name: Radeon-RX-6800S +humanName: Radeon RX 6800S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 1800 MHz + GPU Boost Frequency: 2100 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 237 mm² + GPU: Navi 23 + TDP: 100 W + FP32 Compute: 8.602 TFLOPS + FP64 Compute: 537.6 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml new file mode 100644 index 00000000..3f344441 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml @@ -0,0 +1,32 @@ +name: Radeon-RX-6850M-XT +humanName: Radeon RX 6850M XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-01-04' + GPU Base Frequency: 2321 MHz + GPU Boost Frequency: 2581 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 335 mm² + GPU: Navi 22 + GPU Variant: Navi 22 XTM + TDP: 165 W + FP32 Compute: 13.21 TFLOPS + FP64 Compute: 825.9 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml new file mode 100644 index 00000000..528782bf --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6900-XT +humanName: Radeon RX 6900 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2020-10-28' + GPU Base Frequency: 1825 MHz + GPU Boost Frequency: 2250 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 512.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 XTX + TDP: 300 W + FP32 Compute: 23.04 TFLOPS + FP64 Compute: 1,440 GFLOPS (1:16) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 120 mm + Height: 50 mm + Ray Tracing Cores: 80 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml new file mode 100644 index 00000000..578be7f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6900-XTX +humanName: Radeon RX 6900 XTX +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: 'Never Released' + GPU Base Frequency: 2075 MHz + GPU Boost Frequency: 2435 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 XTXH + TDP: 330 W + FP32 Compute: 24.93 TFLOPS + FP64 Compute: 1.558 TFLOPS (1:16) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 135 mm + Height: 50 mm + Ray Tracing Cores: 80 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml new file mode 100644 index 00000000..a2b34842 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml @@ -0,0 +1,37 @@ +name: Radeon-RX-6950-XT +humanName: Radeon RX 6950 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2022-05-10' + GPU Base Frequency: 1860 MHz + GPU Boost Frequency: 2310 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 520 mm² + GPU: Navi 21 + GPU Variant: Navi 21 KXTX + TDP: 335 W + FP32 Compute: 23.65 TFLOPS + FP64 Compute: 1,478 GFLOPS (1:16) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1 + - 2x DisplayPort 1.4a + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 120 mm + Height: 50 mm + Ray Tracing Cores: 80 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml new file mode 100644 index 00000000..74a7f7a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml @@ -0,0 +1,33 @@ +name: Steam-Deck-GPU +humanName: Steam Deck GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2022-02-25' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 163 mm² + GPU: Van Gogh + GPU Variant: 100-000000405 + TDP: 15 W + FP32 Compute: 1.638 TFLOPS + FP64 Compute: 102.4 GFLOPS (1:16) + Outputs: 1x USB Type-C + Length: 298 mm + Width: 117 mm + Height: 49 mm + Ray Tracing Cores: 8 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml new file mode 100644 index 00000000..d7e153b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml @@ -0,0 +1,32 @@ +name: Steam-Deck-OLED-GPU +humanName: Steam Deck OLED GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 6 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '2.0' + Release Date: '2023-11-09' + GPU Base Frequency: 1000 MHz + GPU Boost Frequency: 1600 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 88.00 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 131 mm² + GPU: Sephiroth + TDP: 15 W + FP32 Compute: 1.638 TFLOPS + FP64 Compute: 102.4 GFLOPS (1:16) + Outputs: 1x USB Type-C + Length: 298 mm + Width: 117 mm + Height: 49 mm + Ray Tracing Cores: 8 diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml new file mode 100644 index 00000000..ca455a5c --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-Series-S-GPU +humanName: Xbox Series S GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2020-11-10' + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 224.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 197 mm² + GPU: Lockhart + TDP: 100 W + FP32 Compute: 4.006 TFLOPS + FP64 Compute: 250.4 GFLOPS (1:16) + Outputs: 1x HDMI 2.1 + Length: 274 mm + Width: 151 mm + Height: 64 mm diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml new file mode 100644 index 00000000..1fdbdf73 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-Series-X-GPU +humanName: Xbox Series X GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 2.0 + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2020-11-10' + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 560.0 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6 + VRAM Bus Width: 320 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 208 + Shader Processor Count: 3328 + Die Size: 360 mm² + GPU: Scarlett + TDP: 200 W + FP32 Compute: 12.15 TFLOPS + FP64 Compute: 759.2 GFLOPS (1:16) + Outputs: 1x HDMI 2.1 + Length: 301 mm + Width: 151 mm + Height: 151 mm diff --git a/specs/GPUs-CONSUMER/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/RDNA-3.0.yaml new file mode 100644 index 00000000..012c70e2 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0.yaml @@ -0,0 +1,40 @@ +name: RDNA-3.0 +humanName: RDNA 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022-11-03' +sections: + - header: WHOLE RANGE + members: + - Radeon-740M + - Radeon-760M + - Radeon-780M + - Radeon-PRO-W7500 + - Radeon-PRO-W7600 + - Radeon-PRO-W7700 + - Radeon-PRO-W7800 + - Radeon-PRO-W7900 + - Radeon-RX-7500-XT + - Radeon-RX-7600 + - Radeon-RX-7600-XT + - Radeon-RX-7600M + - Radeon-RX-7600M-XT + - Radeon-RX-7600S + - Radeon-RX-7700 + - Radeon-RX-7700-XT + - Radeon-RX-7700S + - Radeon-RX-7800-XT + - Radeon-RX-7900-GRE + - Radeon-RX-7900-XT + - Radeon-RX-7900-XTX + - Radeon-RX-7900M + - Radeon-RX-7950-XT + - Radeon-RX-7950-XTX + - Radeon-RX-7990-XTX + - ROG-Ally-Extreme-GPU + - ROG-Ally-GPU diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml new file mode 100644 index 00000000..bde60e67 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml @@ -0,0 +1,33 @@ +name: ROG-Ally-Extreme-GPU +humanName: ROG Ally Extreme GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 4 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-06-13' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2700 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 178 mm² + GPU: Phoenix + TDP: 30 W + FP32 Compute: 8.294 TFLOPS + FP64 Compute: 518.4 GFLOPS (1:16) + Outputs: 1x USB Type-C + Power Connectors: None + Length: 280 mm + Width: 111 mm + Height: 21 mm + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml new file mode 100644 index 00000000..f2b08400 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml @@ -0,0 +1,33 @@ +name: ROG-Ally-GPU +humanName: ROG Ally GPU +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 4 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2500 MHz + VRAM Frequency: 1600 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 178 mm² + GPU: Phoenix + TDP: 30 W + FP32 Compute: 2.560 TFLOPS + FP64 Compute: 160.0 GFLOPS (1:16) + Outputs: No outputs + Power Connectors: None + Length: 280 mm + Width: 111 mm + Height: 21 mm + Ray Tracing Cores: 4 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml new file mode 100644 index 00000000..9bf56dcb --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml @@ -0,0 +1,31 @@ +name: Radeon-740M +humanName: Radeon 740M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 4 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-01-04' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 2500 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 178 mm² + GPU: Phoenix + TDP: 15 W + FP32 Compute: 2.560 TFLOPS + FP64 Compute: 160.0 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 4 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml new file mode 100644 index 00000000..67942b96 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml @@ -0,0 +1,31 @@ +name: Radeon-760M +humanName: Radeon 760M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 4 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-01-04' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 2599 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 178 mm² + GPU: Phoenix + TDP: 15 W + FP32 Compute: 5.323 TFLOPS + FP64 Compute: 332.7 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 8 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml new file mode 100644 index 00000000..3956d3b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml @@ -0,0 +1,31 @@ +name: Radeon-780M +humanName: Radeon 780M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 4 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.1' + Release Date: '2023-01-04' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 2700 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 768 + Die Size: 178 mm² + GPU: Phoenix + TDP: 15 W + FP32 Compute: 8.294 TFLOPS + FP64 Compute: 518.4 GFLOPS (1:16) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 12 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml new file mode 100644 index 00000000..7ca91a40 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml @@ -0,0 +1,35 @@ +name: Radeon-PRO-W7500 +humanName: Radeon PRO W7500 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-08-03' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1700 MHz + VRAM Frequency: 1344 MHz + VRAM Bandwidth: 172.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 + Codename: Hotpink Bonefish + TDP: 70 W + FP32 Compute: 12.19 TFLOPS + FP64 Compute: 380.8 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 2.1 + Power Connectors: None + Length: 216 mm + Width: 115 mm + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml new file mode 100644 index 00000000..813f2386 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml @@ -0,0 +1,35 @@ +name: Radeon-PRO-W7600 +humanName: Radeon PRO W7600 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-08-03' + GPU Base Frequency: 1720 MHz + GPU Boost Frequency: 2440 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 XL + Codename: Hotpink Bonefish + TDP: 130 W + FP32 Compute: 19.99 TFLOPS + FP64 Compute: 624.6 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x DisplayPort 2.1 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 115 mm + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml new file mode 100644 index 00000000..581601c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml @@ -0,0 +1,35 @@ +name: Radeon-PRO-W7700 +humanName: Radeon PRO W7700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-11-13' + GPU Base Frequency: 1900 MHz + GPU Boost Frequency: 2600 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 346 mm² + GPU: Navi 32 + GPU Variant: Navi 32 + Codename: Wheat Nas + TDP: 190 W + FP32 Compute: 31.95 TFLOPS + FP64 Compute: 998.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 2.1 + Power Connectors: 1x 8-pin + Length: 241 mm + Width: 111 mm + Ray Tracing Cores: 48 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml new file mode 100644 index 00000000..f1a876ae --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml @@ -0,0 +1,38 @@ +name: Radeon-PRO-W7800 +humanName: Radeon PRO W7800 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-04-13' + GPU Base Frequency: 1855 MHz + GPU Boost Frequency: 2499 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 280 + Shader Processor Count: 4480 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 + Codename: Plum Bonito + TDP: 260 W + FP32 Compute: 44.78 TFLOPS + FP64 Compute: 1,399 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 3x DisplayPort 2.1 + - 1x mini-DisplayPort 2.1 + Power Connectors: 2x 8-pin + Length: 280 mm + Width: 110 mm + Height: 40 mm + Ray Tracing Cores: 70 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml new file mode 100644 index 00000000..a0bf5a2b --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml @@ -0,0 +1,38 @@ +name: Radeon-PRO-W7900 +humanName: Radeon PRO W7900 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-04-13' + GPU Base Frequency: 1855 MHz + GPU Boost Frequency: 2495 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 864.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 384 + Shader Processor Count: 6144 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 + Codename: Plum Bonito + TDP: 295 W + FP32 Compute: 61.32 TFLOPS + FP64 Compute: 1.916 TFLOPS (1:32) + Slot Width: Triple-slot + Outputs: + - 3x DisplayPort 2.1 + - 1x mini-DisplayPort 2.1 + Power Connectors: 2x 8-pin + Length: 280 mm + Width: 110 mm + Height: 51 mm + Ray Tracing Cores: 96 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml new file mode 100644 index 00000000..6b307c2a --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml @@ -0,0 +1,35 @@ +name: Radeon-RX-7500-XT +humanName: Radeon RX 7500 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 1452 MHz + GPU Boost Frequency: 2300 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 216.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 + Codename: Hotpink Bonefish + TDP: 100 W + FP32 Compute: 9.421 TFLOPS + FP64 Compute: 294.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 1x 6-pin + Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml new file mode 100644 index 00000000..c0b75657 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml @@ -0,0 +1,35 @@ +name: Radeon-RX-7600-XT +humanName: Radeon RX 7600 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2024-01-08' + GPU Base Frequency: 1980 MHz + GPU Boost Frequency: 2755 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 XT + Codename: Hotpink Bonefish + TDP: 190 W + FP32 Compute: 22.57 TFLOPS + FP64 Compute: 705.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Power Connectors: 1x 8-pin + Length: 204 mm + Width: 115 mm + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml new file mode 100644 index 00000000..ce9238e3 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml @@ -0,0 +1,35 @@ +name: Radeon-RX-7600 +humanName: Radeon RX 7600 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-05-24' + GPU Base Frequency: 1720 MHz + GPU Boost Frequency: 2655 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 XL + Codename: Hotpink Bonefish + TDP: 165 W + FP32 Compute: 21.75 TFLOPS + FP64 Compute: 679.7 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Power Connectors: 1x 8-pin + Length: 204 mm + Width: 115 mm + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml new file mode 100644 index 00000000..961b64cf --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-7600M-XT +humanName: Radeon RX 7600M XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 1280 MHz + GPU Boost Frequency: 2469 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 XTM + Codename: Hotpink Bonefish + TDP: 120 W + FP32 Compute: 20.23 TFLOPS + FP64 Compute: 632.1 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml new file mode 100644 index 00000000..d3659c3f --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-7600M +humanName: Radeon RX 7600M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2410 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 LE + Codename: Hotpink Bonefish + TDP: 90 W + FP32 Compute: 17.27 TFLOPS + FP64 Compute: 539.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml new file mode 100644 index 00000000..32587c7e --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-7600S +humanName: Radeon RX 7600S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 256.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 112 + Shader Processor Count: 1792 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 LE + Codename: Hotpink Bonefish + TDP: 75 W + FP32 Compute: 15.77 TFLOPS + FP64 Compute: 492.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 28 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml new file mode 100644 index 00000000..70ca4a0a --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7700-XT +humanName: Radeon RX 7700 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-08-25' + GPU Base Frequency: 1435 MHz + GPU Boost Frequency: 2544 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 216 + Shader Processor Count: 3456 + Die Size: 346 mm² + GPU: Navi 32 + GPU Variant: Navi 32 XL + Codename: Wheat Nas + TDP: 245 W + FP32 Compute: 35.17 TFLOPS + FP64 Compute: 1,099 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 135 mm + Height: 50 mm + Ray Tracing Cores: 54 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml new file mode 100644 index 00000000..eea99613 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7700 +humanName: Radeon RX 7700 +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023' + GPU Base Frequency: 1900 MHz + GPU Boost Frequency: 2600 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 432.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 346 mm² + GPU: Navi 32 + GPU Variant: Navi 32 + Codename: Wheat Nas + TDP: 200 W + FP32 Compute: 31.95 TFLOPS + FP64 Compute: 998.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 135 mm + Height: 50 mm + Ray Tracing Cores: 48 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml new file mode 100644 index 00000000..031197c6 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-7700S +humanName: Radeon RX 7700S +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 6 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-01-04' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 2500 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 128 + Shader Processor Count: 2048 + Die Size: 204 mm² + GPU: Navi 33 + GPU Variant: Navi 33 XT + Codename: Hotpink Bonefish + TDP: 100 W + FP32 Compute: 20.48 TFLOPS + FP64 Compute: 640.0 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 32 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml new file mode 100644 index 00000000..35c7a320 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml @@ -0,0 +1,36 @@ +name: Radeon-RX-7800-XT +humanName: Radeon RX 7800 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-08-25' + GPU Base Frequency: 1295 MHz + GPU Boost Frequency: 2430 MHz + VRAM Frequency: 2438 MHz + VRAM Bandwidth: 624.1 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 240 + Shader Processor Count: 3840 + Die Size: 346 mm² + GPU: Navi 32 + GPU Variant: Navi 32 XT + Codename: Wheat Nas + TDP: 263 W + FP32 Compute: 37.32 TFLOPS + FP64 Compute: 1,166 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 111 mm + Height: 50 mm + Ray Tracing Cores: 60 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml new file mode 100644 index 00000000..eeb969c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7900-GRE +humanName: Radeon RX 7900 GRE +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-07-27' + GPU Base Frequency: 1287 MHz + GPU Boost Frequency: 2245 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 160 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XL + Codename: Plum Bonito + TDP: 260 W + FP32 Compute: 45.98 TFLOPS + FP64 Compute: 1,437 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 276 mm + Width: 110 mm + Height: 51 mm + Ray Tracing Cores: 80 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml new file mode 100644 index 00000000..1c4cf4b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7900-XT +humanName: Radeon RX 7900 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-11-03' + GPU Base Frequency: 1387 MHz + GPU Boost Frequency: 2394 MHz + VRAM Frequency: 2500 MHz + VRAM Bandwidth: 800.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6 + VRAM Bus Width: 320 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 336 + Shader Processor Count: 5376 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XT + Codename: Plum Bonito + TDP: 300 W + FP32 Compute: 51.48 TFLOPS + FP64 Compute: 1.609 TFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 276 mm + Width: 110 mm + Height: 51 mm + Ray Tracing Cores: 84 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml new file mode 100644 index 00000000..8bccd1a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7900-XTX +humanName: Radeon RX 7900 XTX +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2022-11-03' + GPU Base Frequency: 1929 MHz + GPU Boost Frequency: 2498 MHz + VRAM Frequency: 2500 MHz + VRAM Bandwidth: 960.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 384 + Shader Processor Count: 6144 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XTX + Codename: Plum Bonito + TDP: 355 W + FP32 Compute: 61.39 TFLOPS + FP64 Compute: 1.918 TFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 287 mm + Width: 110 mm + Height: 51 mm + Ray Tracing Cores: 96 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml new file mode 100644 index 00000000..0e4a6797 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml @@ -0,0 +1,33 @@ +name: Radeon-RX-7900M +humanName: Radeon RX 7900M +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2023-10-19' + GPU Base Frequency: 1825 MHz + GPU Boost Frequency: 2090 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 576.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 + Codename: Plum Bonito + TDP: 180 W + FP32 Compute: 38.52 TFLOPS + FP64 Compute: 1,204 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 72 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml new file mode 100644 index 00000000..75a123d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7950-XT +humanName: Radeon RX 7950 XT +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 3000 MHz + VRAM Frequency: 2500 MHz + VRAM Bandwidth: 800.0 GB/s + VRAM Capacity: 20 GB + VRAM Type: GDDR6 + VRAM Bus Width: 320 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 336 + Shader Processor Count: 5376 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XT+ + Codename: Plum Bonito + TDP: 300 W + FP32 Compute: 64.51 TFLOPS + FP64 Compute: 2.016 TFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 276 mm + Width: 135 mm + Height: 51 mm + Ray Tracing Cores: 84 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml new file mode 100644 index 00000000..d50581c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7950-XTX +humanName: Radeon RX 7950 XTX +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 2200 MHz + GPU Boost Frequency: 3300 MHz + VRAM Frequency: 2500 MHz + VRAM Bandwidth: 960.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 384 + Shader Processor Count: 6144 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XTX+ + Codename: Plum Bonito + TDP: 355 W + FP32 Compute: 81.10 TFLOPS + FP64 Compute: 2.534 TFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 2x 8-pin + Length: 287 mm + Width: 135 mm + Height: 51 mm + Ray Tracing Cores: 96 diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml new file mode 100644 index 00000000..983d904e --- /dev/null +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml @@ -0,0 +1,38 @@ +name: Radeon-RX-7990-XTX +humanName: Radeon RX 7990 XTX +isPart: true +type: Graphics Card +data: + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: 'Never Released' + GPU Base Frequency: 2500 MHz + GPU Boost Frequency: 3599 MHz + VRAM Frequency: 3000 MHz + VRAM Bandwidth: 1,152 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 192 + Texture Mapping Unit Count: 384 + Shader Processor Count: 6144 + Die Size: 529 mm² + GPU: Navi 31 + GPU Variant: Navi 31 XTX+ + Codename: Plum Bonito + TDP: 405 W + FP32 Compute: 88.45 TFLOPS + FP64 Compute: 2.764 TFLOPS (1:32) + Slot Width: Triple-slot + Outputs: + - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x USB Type-C + Power Connectors: 3x 8-pin + Length: 287 mm + Width: 135 mm + Height: 50 mm + Ray Tracing Cores: 96 diff --git a/specs/GPUs-CONSUMER/RX-400.yaml b/specs/GPUs-CONSUMER/RX-400.yaml deleted file mode 100755 index 2bd40469..00000000 --- a/specs/GPUs-CONSUMER/RX-400.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-400 -humanName: RX 400 -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 14 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2016-06-29' -sections: - - header: MID RANGE - members: - - RX-480-8GiB - - RX-480-4GiB - - RX-470-8GiB - - RX-470-4GiB - - RX-470D - - header: ENTRY LEVEL - members: - - RX-460-4GiB - - RX-460-2GiB - - RX-455 - - RX-450 diff --git a/specs/GPUs-CONSUMER/RX-400/RX-450.yaml b/specs/GPUs-CONSUMER/RX-400/RX-450.yaml deleted file mode 100755 index cefa28c5..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-450.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: RX-450 -humanName: RX 450 -isPart: true -type: Graphics Card -inherits: - - GCN 1 -data: - Release Date: '2016-06-30' - GPU Base Frequency: 1050 MHz - VRAM Frequency: 4500 MT/s - VRAM Bandwidth: 72 GB/s - VRAM Capacity: 2 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 32 - Shader Processor Count: 512 - Die Size: 123 mm - GPU: Cape Verde - Codename: Cape Verde Pro - TDP: 65 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 1.075 TFLOPS - FP64 Compute: 67 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-400/RX-455.yaml b/specs/GPUs-CONSUMER/RX-400/RX-455.yaml deleted file mode 100755 index 003a41ea..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-455.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: RX-455 -humanName: RX 455 -isPart: true -type: Graphics Card -inherits: - - GCN 2 -data: - Release Date: '2016-06-30' - GPU Base Frequency: 1050 MHz - VRAM Frequency: 6500 MT/s - VRAM Bandwidth: 104 GB/s - VRAM Capacity: 2 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 48 - Shader Processor Count: 768 - Die Size: 160 mm - GPU: Bonaire - Codename: Bonaire Pro - TDP: 100 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 1.613 TFLOPS - FP64 Compute: 101 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml deleted file mode 100755 index ef85c5ab..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-460-2GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: RX-460-2GiB -humanName: RX 460 (2GiB) -isPart: true -type: Graphics Card -inherits: - - RX 460 Base -data: - VRAM Capacity: 2 GiB diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml deleted file mode 100755 index b520c28b..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-460-4GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: RX-460-4GiB -humanName: RX 460 (4 GiB) -isPart: true -type: Graphics Card -inherits: - - RX 460 Base -data: - VRAM Capacity: 4 GiB diff --git a/specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml deleted file mode 100755 index c55064fa..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-460-base.yaml +++ /dev/null @@ -1,21 +0,0 @@ -hidden: true -name: RX 460 Base -inherits: - - GCN 4 -data: - Release Date: '2016-08-08' - GPU Base Frequency: 1090 MHz - GPU Boost Frequency: 1200 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 112 GB/s - Render Output Unit Count: 16 - Texture Mapping Unit Count: 56 - Shader Processor Count: 896 - Die Size: 123 mm - GPU: Polaris 11 - Codename: Baffin Pro - TDP: 75 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 1.953 TFLOPS - FP64 Compute: 122 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml deleted file mode 100755 index 7965ac0c..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-470-4GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: RX-470-4GiB -humanName: RX 470 (4 GiB) -isPart: true -type: Graphics Card -inherits: - - RX 470 Base -data: - VRAM Capacity: 4 GiB diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml deleted file mode 100755 index 0b72525b..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-470-8GiB.yaml +++ /dev/null @@ -1,8 +0,0 @@ -name: RX-470-8GiB -humanName: RX 470 (8 GiB) -isPart: true -type: Graphics Card -inherits: - - RX 470 Base -data: - VRAM Capacity: 8 GiB diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml deleted file mode 100755 index ce43ae70..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-470-base.yaml +++ /dev/null @@ -1,21 +0,0 @@ -hidden: true -name: RX 470 Base -inherits: - - GCN 4 -data: - Release Date: '2016-08-04' - GPU Base Frequency: 926 MHz - GPU Boost Frequency: 1206 MHz - VRAM Frequency: 6600 MT/s - VRAM Bandwidth: 211 GB/s - Render Output Unit Count: 32 - Texture Mapping Unit Count: 128 - Shader Processor Count: 2048 - Die Size: 232 mm - GPU: Polaris 10 - Codename: Ellesmere Pro - TDP: 120 W - VRAM Type: GDDR5 - VRAM Bus Width: 256 Bits - FP32 Compute: 3.793 TFLOPS - FP64 Compute: 237 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-400/RX-470D.yaml b/specs/GPUs-CONSUMER/RX-400/RX-470D.yaml deleted file mode 100755 index 98f8bdf1..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-470D.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-470D -humanName: RX 470D -isPart: true -type: Graphics Card -inherits: - - GCN 4 -data: - VRAM Capacity: 8 GB - Release Date: '2016-10-21' - GPU Base Frequency: 926 MHz - GPU Boost Frequency: 1206 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 224 GB/s - Render Output Unit Count: 32 - Texture Mapping Unit Count: 112 - Shader Processor Count: 1792 - Die Size: 232 mm - GPU: Polaris 10 - Codename: Ellesmere LE - TDP: 120 W - VRAM Type: GDDR5 - VRAM Bus Width: 256 Bits - FP32 Compute: 3.319 TFLOPS - FP64 Compute: 207 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml deleted file mode 100755 index a8933f3a..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-480-4GiB.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: RX-480-4GiB -humanName: RX 480 (4 GiB) -isPart: true -type: Graphics Card -inherits: - - RX 480 Base -data: - VRAM Frequency: 7000 MT/s - VRAM Capacity: 4 GiB - VRAM Bandwidth: 209 GiB/s diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml deleted file mode 100755 index e702ceec..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-480-8GiB.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: RX-480-8GiB -humanName: RX 480 (8 GiB) -isPart: true -type: Graphics Card -inherits: - - RX 480 Base -data: - VRAM Frequency: 8000 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 256 GiB/s diff --git a/specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml b/specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml deleted file mode 100755 index 47ff553e..00000000 --- a/specs/GPUs-CONSUMER/RX-400/RX-480-base.yaml +++ /dev/null @@ -1,19 +0,0 @@ -hidden: true -name: RX 480 Base -inherits: - - GCN 4 -data: - Release Date: '2016-06-29' - GPU Base Frequency: 1120 MHz - GPU Boost Frequency: 1266 MHz - Render Output Unit Count: 32 - Texture Mapping Unit Count: 144 - Shader Processor Count: 2304 - Die Size: 232 mm - GPU: Polaris 10 - Codename: Ellesmere XT - TDP: 150 W - VRAM Type: GDDR5 - VRAM Bus Width: 256 Bits - FP32 Compute: 5.161 TFLOPS - FP64 Compute: 323 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-500.yaml b/specs/GPUs-CONSUMER/RX-500.yaml deleted file mode 100755 index 7edcd768..00000000 --- a/specs/GPUs-CONSUMER/RX-500.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: RX-500 -humanName: RX 500 -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 14 nm - DirectX Support: '12.0' - Vulkan Support: '1.1' - Release Date: '2017-04-18' -sections: - - header: MID RANGE - members: - - RX-580-8GiB - - RX-580-4GiB - - RX-570-8GiB - - RX-570-4GiB - - header: ENTRY LEVEL - members: - - RX-560-4GiB - - RX-560-2GiB - - RX-550-4GiB - - RX-550-2GiB diff --git a/specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml deleted file mode 100755 index 54d71c1f..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-550-2GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-550-2GiB -humanName: RX 550 (2GiB) -isPart: true -type: Graphics Card -inherits: - - GCN 4 -data: - Release Date: '2017-04-18' - GPU Base Frequency: 1100 MHz - GPU Boost Frequency: 1183 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 112 GB/s - VRAM Capacity: 2 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 32 - Shader Processor Count: 512 - Die Size: 101 mm - GPU: Polaris 12 - Codename: Lexa Pro - TDP: 50 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 1.126 TFLOPS - FP64 Compute: 70 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml deleted file mode 100755 index 41852c4b..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-550-4GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-550-4GiB -humanName: RX 550 (4GiB) -isPart: true -type: Graphics Card -inherits: - - GCN 4 -data: - Release Date: '2017-04-18' - GPU Base Frequency: 1100 MHz - GPU Boost Frequency: 1183 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 112 GB/s - VRAM Capacity: 4 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 32 - Shader Processor Count: 512 - Die Size: 101 mm - GPU: Polaris 12 - Codename: Lexa Pro - TDP: 50 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 1.126 TFLOPS - FP64 Compute: 70 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml deleted file mode 100755 index 0f2b630f..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-560-2GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-560-2GiB -humanName: RX 560 (2GiB) -isPart: true -type: Graphics Card -inherits: - - GCN 4 -data: - Release Date: '2017-04-20' - GPU Base Frequency: 1175 MHz - GPU Boost Frequency: 1275 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 112 GB/s - VRAM Capacity: 2 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 64 - Shader Processor Count: 1024 - Die Size: 123 mm - GPU: Polaris 11 - Codename: Baffin XT - TDP: 80 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 2.406 TFLOPS - FP64 Compute: 150 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml deleted file mode 100755 index 02561558..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-560-4GiB.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: RX-560-4GiB -humanName: RX 560 (4GiB) -isPart: true -type: Graphics Card -inherits: - - GCN 4 -data: - Release Date: '2017-04-20' - GPU Base Frequency: 1175 MHz - GPU Boost Frequency: 1275 MHz - VRAM Frequency: 7000 MT/s - VRAM Bandwidth: 112 GB/s - VRAM Capacity: 4 GiB - Render Output Unit Count: 16 - Texture Mapping Unit Count: 64 - Shader Processor Count: 1024 - Die Size: 123 mm - GPU: Polaris 11 - Codename: Baffin XT - TDP: 80 W - VRAM Type: GDDR5 - VRAM Bus Width: 128 Bits - FP32 Compute: 2.406 TFLOPS - FP64 Compute: 150 GFLOPS diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml deleted file mode 100755 index c81f457a..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-570-4GiB.yaml +++ /dev/null @@ -1,19 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 1168 MHz - GPU Boost Frequency: 1244 MHz - VRAM Frequency: 7000 MT/s - VRAM Capacity: 4 GiB - VRAM Bandwidth: 224 GB/s - TDP: 150 W - Codename: Ellesmere Xl - FP32 Compute: 4.784 GFLOPS - FP64 Compute: 299 GFLOPS -inherits: - - RX 570 580 Base -name: RX-570-4GiB -humanName: RX 570 (4GiB) diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml deleted file mode 100755 index d55207bb..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-570-580-Base.yaml +++ /dev/null @@ -1,10 +0,0 @@ -hidden: true -name: RX 570 580 Base -inherits: - - GCN 4 -data: - VRAM Type: GDDR5 - VRAM Bus Width: 256 Bits - Release Date: '2017-04-18' - Die Size: 232 mm - GPU: Polaris 20 diff --git a/specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml deleted file mode 100755 index b4ca7492..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-570-8GiB.yaml +++ /dev/null @@ -1,19 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 2048 - Texture Mapping Unit Count: 128 - Render Output Unit Count: 32 - GPU Base Frequency: 1168 MHz - GPU Boost Frequency: 1244 MHz - VRAM Frequency: 7000 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 224 GB/s - Codename: Ellesmere Xl - TDP: 150 W - FP32 Compute: 4.784 TFLOPS - FP64 Compute: 299 GFLOPS -inherits: - - RX 570 580 Base -name: RX-570-8GiB -humanName: RX 570 (8GiB) diff --git a/specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml deleted file mode 100755 index d16f143f..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-580-4GiB.yaml +++ /dev/null @@ -1,19 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 2304 - Texture Mapping Unit Count: 144 - Render Output Unit Count: 32 - GPU Base Frequency: 1257 MHz - GPU Boost Frequency: 1340 MHz - VRAM Frequency: 8000 MT/s - VRAM Capacity: 4 GB - VRAM Bandwidth: 256 GB/s - TDP: 185 W - Codename: Ellesmere XTX - FP32 Compute: 5.792 TFLOPS - FP64 Compute: 362 GFLOPS -inherits: - - RX 570 580 Base -name: RX-580-4GiB -humanName: RX 580 (4GiB) diff --git a/specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml b/specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml deleted file mode 100755 index 94deb803..00000000 --- a/specs/GPUs-CONSUMER/RX-500/RX-580-8GiB.yaml +++ /dev/null @@ -1,19 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 2304 - Texture Mapping Unit Count: 144 - Render Output Unit Count: 32 - GPU Base Frequency: 1257 MHz - GPU Boost Frequency: 1340 MHz - VRAM Frequency: 8000 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 256 GB/s - TDP: 185 W - Codename: Ellesmere XTX - FP32 Compute: 5.792 TFLOPS - FP64 Compute: 362 GFLOPS -inherits: - - RX 570 580 Base -name: RX-580-8GiB -humanName: RX 580 (8GiB) diff --git a/specs/GPUs-CONSUMER/RX-Vega.yaml b/specs/GPUs-CONSUMER/RX-Vega.yaml deleted file mode 100755 index 95cf518f..00000000 --- a/specs/GPUs-CONSUMER/RX-Vega.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: RX-Vega -humanName: RX Vega -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 14 nm - DirectX Support: '12.1' - Vulkan Support: '1.1' - Release Date: '2017-08-14' -sections: - - header: ENTHUSIAST - members: - - RX-Vega-64-Liquid - - RX-Vega-64 - - header: HIGH END - members: - - RX-Vega-56 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml deleted file mode 100755 index faef3b84..00000000 --- a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-56.yaml +++ /dev/null @@ -1,17 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 3584 - Texture Mapping Unit Count: 224 - Render Output Unit Count: 64 - GPU Base Frequency: 1156 MHz - GPU Boost Frequency: 1471 MHz - VRAM Frequency: 1600 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 410 GB/s - TDP: 210 W - Codename: Vega 56 -inherits: - - RX Vega Base -name: RX-Vega-56 -humanName: RX Vega 56 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml deleted file mode 100755 index 26ae440a..00000000 --- a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64-Liquid.yaml +++ /dev/null @@ -1,17 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 1406 MHz - GPU Boost Frequency: 1677 MHz - VRAM Frequency: 1890 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 483.8 GB/s - TDP: 345 W - Codename: Vega 64 Liquid -inherits: - - RX Vega Base -name: RX-Vega-64-Liquid -humanName: RX Vega 64 Liquid diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml deleted file mode 100755 index 35d975a8..00000000 --- a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-64.yaml +++ /dev/null @@ -1,17 +0,0 @@ -isPart: true -type: Graphics Card -data: - Shader Processor Count: 4096 - Texture Mapping Unit Count: 256 - Render Output Unit Count: 64 - GPU Base Frequency: 1247 MHz - GPU Boost Frequency: 1546 MHz - VRAM Frequency: 1890 MT/s - VRAM Capacity: 8 GiB - VRAM Bandwidth: 483.8 GB/s - TDP: 295 W - Codename: Vega 64 -inherits: - - RX Vega Base -name: RX-Vega-64 -humanName: RX Vega 64 diff --git a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml b/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml deleted file mode 100755 index b1fa81e8..00000000 --- a/specs/GPUs-CONSUMER/RX-Vega/RX-Vega-Base.yaml +++ /dev/null @@ -1,10 +0,0 @@ -hidden: true -name: RX Vega Base -inherits: - - GCN 5 -data: - VRAM Type: HBM2 - VRAM Bus Width: 2048 Bits - Release Date: '2017-08-14' - Die Size: 484 mm - GPU: Vega 10 diff --git a/specs/GPUs-CONSUMER/Radeon-VII.yaml b/specs/GPUs-CONSUMER/Radeon-VII.yaml deleted file mode 100755 index a4da2b7e..00000000 --- a/specs/GPUs-CONSUMER/Radeon-VII.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: Radeon-VII-Architecture -humanName: Radeon VII -type: Graphics Architecture -isPart: false -topHeader: 'SELECT CARD:' -data: - Lithography: 7 nm - DirectX Support: '12.1' - Vulkan Support: '1.1' - Release Date: '2019-02-07' -sections: - - header: ENTHUSIAST - members: - - Radeon-VII diff --git a/specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml b/specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml deleted file mode 100755 index 0ae3217e..00000000 --- a/specs/GPUs-CONSUMER/Radeon-VII/Radeon-VII.yaml +++ /dev/null @@ -1,21 +0,0 @@ -isPart: true -type: Graphics Card -data: - Release Date: '2019-02-07' - Shader Processor Count: 3840 - Texture Mapping Unit Count: 240 - Render Output Unit Count: 64 - GPU Base Frequency: 1400 MHz - GPU Boost Frequency: 1750 MHz - VRAM Frequency: 2000 MT/s - VRAM Capacity: 16 GiB - VRAM Bandwidth: 1 TiB/s - VRAM Type: HBM2 - VRAM Bus Width: 4096 Bits - Die Size: 331 mm - GPU: Vega 20 - TDP: 300 W -inherits: - - GCN 5 -name: Radeon-VII -humanName: Radeon VII diff --git a/specs/GPUs-CONSUMER/Rage-2.yaml b/specs/GPUs-CONSUMER/Rage-2.yaml new file mode 100644 index 00000000..30d79182 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-2.yaml @@ -0,0 +1,15 @@ +name: Rage-2 +humanName: Rage 2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + Release Date: '1997-04-01' +sections: + - header: WHOLE RANGE + members: + - 3D-Rage-IIC-AGP + - 3D-Rage-IIC-PCI diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml new file mode 100644 index 00000000..9a07cfbe --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-IIC-AGP +humanName: 3D Rage IIC AGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 2 + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1997-04-01' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 39 mm² + GPU: Rage IIC + GPU Variant: Rage IIC AGP + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml new file mode 100644 index 00000000..3a4131a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-IIC-PCI +humanName: 3D Rage IIC PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 2 + Lithography: 500 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1997-04-01' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 39 mm² + GPU: Rage IIC + GPU Variant: Rage IIC PCI + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-3.yaml b/specs/GPUs-CONSUMER/Rage-3.yaml new file mode 100644 index 00000000..053965f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3.yaml @@ -0,0 +1,18 @@ +name: Rage-3 +humanName: Rage 3 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + Release Date: '1997-03-01' +sections: + - header: WHOLE RANGE + members: + - 3D-Rage-PRO-AGP + - 3D-Rage-PRO-PCI + - Rage-PRO-Turbo-AGP + - Rage-PRO-Turbo-PCI + - Rage-XL-PCI diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml new file mode 100644 index 00000000..5f2d9fe3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-PRO-AGP +humanName: 3D Rage PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 3 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1997-03-01' + VRAM Frequency: 75 MHz + VRAM Bandwidth: 600.0 MB/s + VRAM Capacity: 2 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 47 mm² + GPU: Rage PRO + GPU Variant: 3D Rage PRO AGP + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml new file mode 100644 index 00000000..8dfbfc24 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml @@ -0,0 +1,25 @@ +name: 3D-Rage-PRO-PCI +humanName: 3D Rage PRO PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 3 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1997-03-01' + VRAM Frequency: 75 MHz + VRAM Bandwidth: 600.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 47 mm² + GPU: Rage PRO + GPU Variant: 3D Rage PRO PCI + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml new file mode 100644 index 00000000..fd2db152 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml @@ -0,0 +1,28 @@ +name: Rage-PRO-Turbo-AGP +humanName: Rage PRO Turbo AGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 3 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1997-03-01' + VRAM Frequency: 75 MHz + VRAM Bandwidth: 600.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 67 mm² + GPU: Rage PRO Turbo + GPU Variant: Rage PRO Turbo A + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Length: 150 mm + Width: 82 mm + Height: 13 mm diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml new file mode 100644 index 00000000..e398f5e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml @@ -0,0 +1,25 @@ +name: Rage-PRO-Turbo-PCI +humanName: Rage PRO Turbo PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 3 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1997-03-01' + VRAM Frequency: 75 MHz + VRAM Bandwidth: 600.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 67 mm² + GPU: Rage PRO Turbo + GPU Variant: Rage PRO Turbo P + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DB13W3 diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml new file mode 100644 index 00000000..58c7633d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml @@ -0,0 +1,26 @@ +name: Rage-XL-PCI +humanName: Rage XL PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 3 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1998-08-01' + VRAM Frequency: 83 MHz + VRAM Bandwidth: 664.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 47 mm² + GPU: Rage XL + GPU Variant: Rage XL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4.yaml b/specs/GPUs-CONSUMER/Rage-4.yaml new file mode 100644 index 00000000..6c16c13c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4.yaml @@ -0,0 +1,35 @@ +name: Rage-4 +humanName: Rage 4 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + Release Date: '1998-08-01' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-128 + - All-In-Wonder-128-PCI + - All-In-Wonder-128-PRO + - All-In-Wonder-128-PRO-Ultra + - Rage-128-GL + - Rage-128-GL-PCI + - Rage-128-PRO + - Rage-128-PRO-Ultra + - Rage-128-PRO-Ultra-GL + - Rage-128-Ultra + - Rage-128-VR-AGP + - Rage-128-VR-PCI + - Rage-Fury + - Rage-Fury-MAXX + - Rage-Mobility-M + - Rage-Mobility-M1 + - Rage-Mobility-M3 + - Rage-Mobility-M4 + - Rage-Mobility-P + - Rage-Mobility-128-AGP-2X + - Rage-Mobility-128-AGP-4X + - Rage-Mobility-CL diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml new file mode 100644 index 00000000..bb69b539 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-128-PCI +humanName: All-In-Wonder 128 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-06-16' + VRAM Frequency: 90 MHz + VRAM Bandwidth: 1.440 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: 215R4GASA21 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml new file mode 100644 index 00000000..e052e754 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-128-PRO-Ultra +humanName: All-In-Wonder 128 PRO Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-06-16' + VRAM Frequency: 134 MHz + VRAM Bandwidth: 2.144 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml new file mode 100644 index 00000000..e4f44bbf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml @@ -0,0 +1,26 @@ +name: All-In-Wonder-128-PRO +humanName: All-In-Wonder 128 PRO +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-06-16' + VRAM Frequency: 120 MHz + VRAM Bandwidth: 1.920 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml new file mode 100644 index 00000000..fd10dd95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-128 +humanName: All-In-Wonder 128 +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-06-16' + VRAM Frequency: 90 MHz + VRAM Bandwidth: 1.440 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml new file mode 100644 index 00000000..5d39cb08 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml @@ -0,0 +1,26 @@ +name: Rage-128-GL-PCI +humanName: Rage 128 GL PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-08-27' + VRAM Frequency: 103 MHz + VRAM Bandwidth: 1.648 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: Rage 128 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml new file mode 100644 index 00000000..510fdb43 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml @@ -0,0 +1,26 @@ +name: Rage-128-GL +humanName: Rage 128 GL +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-08-27' + VRAM Frequency: 60 MHz + VRAM Bandwidth: 960.0 MB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: Rage 128 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml new file mode 100644 index 00000000..78bef00c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml @@ -0,0 +1,26 @@ +name: Rage-128-PRO-Ultra-GL +humanName: Rage 128 PRO Ultra GL +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-08-01' + VRAM Frequency: 130 MHz + VRAM Bandwidth: 2.080 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: Rage 128 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml new file mode 100644 index 00000000..70eb452f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml @@ -0,0 +1,26 @@ +name: Rage-128-PRO-Ultra +humanName: Rage 128 PRO Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-08-01' + VRAM Frequency: 130 MHz + VRAM Bandwidth: 1.040 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml new file mode 100644 index 00000000..579fa1b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml @@ -0,0 +1,26 @@ +name: Rage-128-PRO +humanName: Rage 128 PRO +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-08-01' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 2.288 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml new file mode 100644 index 00000000..479e22a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml @@ -0,0 +1,26 @@ +name: Rage-128-Ultra +humanName: Rage 128 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-08-01' + VRAM Frequency: 130 MHz + VRAM Bandwidth: 2.080 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml new file mode 100644 index 00000000..b8c724cf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml @@ -0,0 +1,26 @@ +name: Rage-128-VR-AGP +humanName: Rage 128 VR AGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-08-01' + VRAM Frequency: 125 MHz + VRAM Bandwidth: 2.000 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: Rage 128 VR + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml new file mode 100644 index 00000000..d74d4546 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml @@ -0,0 +1,26 @@ +name: Rage-128-VR-PCI +humanName: Rage 128 VR PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1998-08-01' + VRAM Frequency: 125 MHz + VRAM Bandwidth: 2.000 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 89 mm² + GPU: Rage 128 + GPU Variant: Rage 128 VR + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml new file mode 100644 index 00000000..f3b2d3bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml @@ -0,0 +1,26 @@ +name: Rage-Fury-MAXX +humanName: Rage Fury MAXX +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-01' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 2.288 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml new file mode 100644 index 00000000..ce00324d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml @@ -0,0 +1,26 @@ +name: Rage-Fury +humanName: Rage Fury +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-08-01' + VRAM Frequency: 120 MHz + VRAM Bandwidth: 1.920 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 98 mm² + GPU: Rage 128 PRO + GPU Variant: Rage 128 PRO + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml new file mode 100644 index 00000000..696a5c7f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-128-AGP-2X +humanName: Rage Mobility 128 AGP 2X +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-01' + VRAM Frequency: 105 MHz + VRAM Bandwidth: 840.0 MB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 70 mm² + GPU: M3 + GPU Variant: Mobility-128M + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DB13W3 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml new file mode 100644 index 00000000..6e65de24 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-128-AGP-4X +humanName: Rage Mobility 128 AGP 4X +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-01' + VRAM Frequency: 105 MHz + VRAM Bandwidth: 1.680 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 70 mm² + GPU: M4 + GPU Variant: Mobility-128M + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DB13W3 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml new file mode 100644 index 00000000..7d196418 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-CL +humanName: Rage Mobility-CL +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-02-01' + VRAM Frequency: 70 MHz + VRAM Bandwidth: 560.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 70 mm² + GPU: Rage Mobility + GPU Variant: Rage Mobility-CL + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml new file mode 100644 index 00000000..6bd2fca5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-M +humanName: Rage Mobility-M +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-02-01' + VRAM Frequency: 70 MHz + VRAM Bandwidth: 560.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 70 mm² + GPU: Rage Mobility + GPU Variant: Rage Mobility-M + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml new file mode 100644 index 00000000..b23f8026 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-M1 +humanName: Rage Mobility-M1 +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-02-01' + VRAM Frequency: 125 MHz + VRAM Bandwidth: 1.000 GB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 70 mm² + GPU: M1 + GPU Variant: Mobility-M1 + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml new file mode 100644 index 00000000..80504aa8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-M3 +humanName: Rage Mobility-M3 +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-01' + VRAM Frequency: 105 MHz + VRAM Bandwidth: 840.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 70 mm² + GPU: M3 + GPU Variant: Mobility-M3 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DB13W3 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml new file mode 100644 index 00000000..2e6cf3be --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-M4 +humanName: Rage Mobility-M4 +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-10-01' + VRAM Frequency: 105 MHz + VRAM Bandwidth: 840.0 MB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 70 mm² + GPU: M4 + GPU Variant: Mobility M4-M + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DB13W3 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml new file mode 100644 index 00000000..1113b168 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml @@ -0,0 +1,25 @@ +name: Rage-Mobility-P +humanName: Rage Mobility-P +isPart: true +type: Graphics Card +data: + Architecture: Rage 4 + Lithography: 350 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.2' + OpenCL Support: 'N/A' + Release Date: '1999-02-01' + VRAM Frequency: 70 MHz + VRAM Bandwidth: 560.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 70 mm² + GPU: Rage Mobility + GPU Variant: Rage Mobility-P + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Rage-5.yaml b/specs/GPUs-CONSUMER/Rage-5.yaml new file mode 100644 index 00000000..a7ee5a93 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-5.yaml @@ -0,0 +1,14 @@ +name: Rage-5 +humanName: Rage 5 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0+' + Vulkan Support: 'N/A' + Release Date: '2000-08-24' +sections: + - header: WHOLE RANGE + members: + - GameCube-GPU diff --git a/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml new file mode 100644 index 00000000..59447186 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml @@ -0,0 +1,26 @@ +name: GameCube-GPU +humanName: GameCube GPU +isPart: true +type: Graphics Card +data: + Architecture: Rage 5 + Lithography: 180 nm + DirectX Support: '6.0+' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2000-08-24' + VRAM Frequency: 162 MHz + VRAM Bandwidth: 1.296 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 120 mm² + GPU: Flipper + TDP: 45 W + Outputs: No outputs + Length: 150 mm + Width: 161 mm + Height: 110 mm diff --git a/specs/GPUs-CONSUMER/Rage-6.yaml b/specs/GPUs-CONSUMER/Rage-6.yaml new file mode 100644 index 00000000..a1d67bec --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6.yaml @@ -0,0 +1,42 @@ +name: Rage-6 +humanName: Rage 6 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + Release Date: '2000-04-01' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-Radeon-7200 + - ES1000 + - Mobility-Radeon + - Mobility-Radeon-7000 + - Mobility-Radeon-7000-IGP + - Mobility-Radeon-P + - Radeon-7000 + - Radeon-7000-Mac-Edition + - Radeon-7000-Mac-Edition-PCI + - Radeon-7000-PCI + - Radeon-7200 + - Radeon-DDR + - Radeon-DDR-MAXX + - Radeon-DDR-VIVO + - Radeon-DDR-VIVO-OEM + - Radeon-DDR-VIVO-SE + - Radeon-7200-64-MB + - Radeon-IGP-320 + - Radeon-IGP-320M + - Radeon-IGP-330M + - Radeon-IGP-340 + - Radeon-IGP-340M + - Radeon-IGP-345M + - Radeon-IGP-350M + - Radeon-LE + - Radeon-SDR + - Radeon-SDR-PCI + - Radeon-VE-AGP + - Radeon-VE-PCI diff --git a/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml new file mode 100644 index 00000000..72fe011a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-Radeon-7200 +humanName: All-In-Wonder Radeon 7200 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-07-31' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 111 mm² + GPU: R100 + GPU Variant: R100 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml b/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml new file mode 100644 index 00000000..493a277f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml @@ -0,0 +1,25 @@ +name: ES1000 +humanName: ES1000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.0' + OpenCL Support: 'N/A' + Release Date: '2007-10-18' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 80 mm² + GPU: ES1000 + GPU Variant: ES1000 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml new file mode 100644 index 00000000..953898e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-7000-IGP +humanName: Mobility Radeon 7000 IGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 97 mm² + GPU: RS250 + GPU Variant: 7000 IGP + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml new file mode 100644 index 00000000..f1081595 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml @@ -0,0 +1,25 @@ +name: Mobility-Radeon-7000 +humanName: Mobility Radeon 7000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2004' + VRAM Frequency: 139 MHz + VRAM Bandwidth: 1.112 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 115 mm² + GPU: M6 + GPU Variant: M6 7000 + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml new file mode 100644 index 00000000..ff6752e6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml @@ -0,0 +1,25 @@ +name: Mobility-Radeon-P +humanName: Mobility Radeon-P +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 115 mm² + GPU: M6 + GPU Variant: M6-P + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml new file mode 100644 index 00000000..476e3546 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml @@ -0,0 +1,25 @@ +name: Mobility-Radeon +humanName: Mobility Radeon +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003' + VRAM Frequency: 144 MHz + VRAM Bandwidth: 2.304 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 115 mm² + GPU: M6 + GPU Variant: M6-C16h + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml new file mode 100644 index 00000000..0b42c973 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-7000-Mac-Edition-PCI +humanName: Radeon 7000 Mac Edition PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2004-03-14' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 80 mm² + GPU: RV100 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml new file mode 100644 index 00000000..b1cc3a64 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-7000-Mac-Edition +humanName: Radeon 7000 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2004-03-14' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 80 mm² + GPU: RV100 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml new file mode 100644 index 00000000..fdc8fd52 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml @@ -0,0 +1,28 @@ +name: Radeon-7000-PCI +humanName: Radeon 7000 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-02-19' + VRAM Frequency: 133 MHz + VRAM Bandwidth: 2.128 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 80 mm² + GPU: RV100 + GPU Variant: RV100 VE + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml new file mode 100644 index 00000000..45faf8e5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml @@ -0,0 +1,28 @@ +name: Radeon-7000 +humanName: Radeon 7000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-02-19' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 80 mm² + GPU: RV100 + GPU Variant: RV100 7000 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml new file mode 100644 index 00000000..b6cba342 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml @@ -0,0 +1,26 @@ +name: Radeon-7200-64-MB +humanName: Radeon 7200 64 MB +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-04-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 111 mm² + GPU: R100 + GPU Variant: R100 + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml new file mode 100644 index 00000000..4f3d77e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml @@ -0,0 +1,26 @@ +name: Radeon-7200 +humanName: Radeon 7200 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 2.288 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 111 mm² + GPU: R100 + GPU Variant: R100 + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml new file mode 100644 index 00000000..fd76e26f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml @@ -0,0 +1,26 @@ +name: Radeon-DDR-MAXX +humanName: Radeon DDR MAXX +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 148 MHz + VRAM Bandwidth: 4.736 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6WASA12 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml new file mode 100644 index 00000000..592447b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml @@ -0,0 +1,25 @@ +name: Radeon-DDR-VIVO-OEM +humanName: Radeon DDR VIVO OEM +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml new file mode 100644 index 00000000..94f5ddb4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml @@ -0,0 +1,25 @@ +name: Radeon-DDR-VIVO-SE +humanName: Radeon DDR VIVO SE +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 180 MHz + VRAM Bandwidth: 5.760 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml new file mode 100644 index 00000000..7ae1c0fa --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml @@ -0,0 +1,25 @@ +name: Radeon-DDR-VIVO +humanName: Radeon DDR VIVO +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 5.856 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml new file mode 100644 index 00000000..2771ee9c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml @@ -0,0 +1,26 @@ +name: Radeon-DDR +humanName: Radeon DDR +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-04-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml new file mode 100644 index 00000000..9c45a5bf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-320 +humanName: Radeon IGP 320 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 73 mm² + GPU: RS100 + GPU Variant: IGP 320 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml new file mode 100644 index 00000000..0f444ebc --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-320M +humanName: Radeon IGP 320M +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: 73 mm² + GPU: RS100 + GPU Variant: IGP 320M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml new file mode 100644 index 00000000..638f1da3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-330M +humanName: Radeon IGP 330M +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-05-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS200 + GPU Variant: IGP 330M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml new file mode 100644 index 00000000..0488b7cf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-340 +humanName: Radeon IGP 340 +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS200 + GPU Variant: IGP 340 + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml new file mode 100644 index 00000000..7737e894 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-340M +humanName: Radeon IGP 340M +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS200 + GPU Variant: IGP 340M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml new file mode 100644 index 00000000..6c55456a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-345M +humanName: Radeon IGP 345M +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS200 + GPU Variant: IGP 345M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml new file mode 100644 index 00000000..36fd094d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml @@ -0,0 +1,26 @@ +name: Radeon-IGP-350M +humanName: Radeon IGP 350M +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-10-05' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 73 mm² + GPU: RS200 + GPU Variant: IGP 350M + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml new file mode 100644 index 00000000..f497f73c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml @@ -0,0 +1,26 @@ +name: Radeon-LE +humanName: Radeon LE +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-05-01' + VRAM Frequency: 148 MHz + VRAM Bandwidth: 4.736 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6WASA12 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml new file mode 100644 index 00000000..842fe519 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-SDR-PCI +humanName: Radeon SDR PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml new file mode 100644 index 00000000..268c37cc --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml @@ -0,0 +1,26 @@ +name: Radeon-SDR +humanName: Radeon SDR +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2000-06-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: 215R6EBGA13 + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml new file mode 100644 index 00000000..6d3150c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-VE-AGP +humanName: Radeon VE AGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-02-19' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: Radeon VE + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml new file mode 100644 index 00000000..a5fecdc6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml @@ -0,0 +1,28 @@ +name: Radeon-VE-PCI +humanName: Radeon VE PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 6 + Lithography: 180 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-02-19' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 3 + Die Size: 115 mm² + GPU: Rage 6 + GPU Variant: Radeon VE + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7.yaml b/specs/GPUs-CONSUMER/Rage-7.yaml new file mode 100644 index 00000000..68bc38d3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7.yaml @@ -0,0 +1,53 @@ +name: Rage-7 +humanName: Rage 7 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: '2001-08-14' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-9000-PRO + - All-In-Wonder-9200 + - All-In-Wonder-9200-SE + - All-In-Wonder-Radeon-7500 + - All-In-Wonder-Radeon-7500-VE + - All-In-Wonder-Radeon-8500 + - All-In-Wonder-Radeon-8500DV + - FireGL-8700 + - FireGL-8800 + - FireMV-2200-PCI + - Mobility-FireGL-7800 + - Mobility-FireGL-9000 + - Mobility-Radeon-7500 + - Mobility-Radeon-9000 + - Mobility-Radeon-9000-IGP + - Mobility-Radeon-9100-IGP + - Mobility-Radeon-9100-PRO-IGP + - Mobility-Radeon-9200 + - Mobility-Radeon-7500C + - Radeon-7500 + - Radeon-7500-LE + - Radeon-7500-Mac-Edition + - Radeon-8500 + - Radeon-8500-LE + - Radeon-8500-X4 + - Radeon-8500-XT + - Radeon-9000 + - Radeon-9000-LE + - Radeon-9000-PRO + - Radeon-9000-PRO-Mac-Edition + - Radeon-9100 + - Radeon-9100-PCI + - Radeon-9200 + - Radeon-9200-LE + - Radeon-9200-PCI + - Radeon-9200-PRO + - Radeon-9200-SE + - Radeon-9200-SE-PCI + - Radeon-9250 + - Radeon-9250-PCI diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml new file mode 100644 index 00000000..b6e6da4c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml @@ -0,0 +1,27 @@ +name: All-In-Wonder-9000-PRO +humanName: All-In-Wonder 9000 PRO +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-03-31' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 97 mm² + GPU: RV250 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml new file mode 100644 index 00000000..76e02b5a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-9200-SE +humanName: All-In-Wonder 9200 SE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-01-26' + VRAM Frequency: 164 MHz + VRAM Bandwidth: 2.624 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 9200 SE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml new file mode 100644 index 00000000..c3b7e7aa --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-9200 +humanName: All-In-Wonder 9200 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-01-26' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 9200 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml new file mode 100644 index 00000000..d00781f1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-Radeon-7500-VE +humanName: All-In-Wonder Radeon 7500 VE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002-04-16' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 83 mm² + GPU: RV200 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml new file mode 100644 index 00000000..9623bf1e --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml @@ -0,0 +1,25 @@ +name: All-In-Wonder-Radeon-7500 +humanName: All-In-Wonder Radeon 7500 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002-04-16' + VRAM Frequency: 180 MHz + VRAM Bandwidth: 5.760 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 83 mm² + GPU: RV200 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA2x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml new file mode 100644 index 00000000..082adfa5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml @@ -0,0 +1,27 @@ +name: All-In-Wonder-Radeon-8500 +humanName: All-In-Wonder Radeon 8500 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-11-14' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml new file mode 100644 index 00000000..e88f9772 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml @@ -0,0 +1,27 @@ +name: All-In-Wonder-Radeon-8500DV +humanName: All-In-Wonder Radeon 8500DV +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-30' + VRAM Frequency: 190 MHz + VRAM Bandwidth: 6.080 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml new file mode 100644 index 00000000..259dc8e6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml @@ -0,0 +1,28 @@ +name: FireGL-8700 +humanName: FireGL 8700 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 270 MHz + VRAM Bandwidth: 8.640 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + GPU Variant: R200 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml new file mode 100644 index 00000000..482fe9f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml @@ -0,0 +1,28 @@ +name: FireGL-8800 +humanName: FireGL 8800 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 290 MHz + VRAM Bandwidth: 9.280 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + GPU Variant: R200 GL 8800 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml new file mode 100644 index 00000000..aed1cf9d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml @@ -0,0 +1,27 @@ +name: FireMV-2200-PCI +humanName: FireMV 2200 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2006' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 GL + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml new file mode 100644 index 00000000..4482d89d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml @@ -0,0 +1,25 @@ +name: Mobility-FireGL-7800 +humanName: Mobility FireGL 7800 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-09-29' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 68 mm² + GPU: M7 + GPU Variant: M7-GL + TDP: 27 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml new file mode 100644 index 00000000..8d6dcaa6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-9000 +humanName: Mobility FireGL 9000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: M9 + GPU Variant: M9-CSP64GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml new file mode 100644 index 00000000..3d0c6442 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-7500 +humanName: Mobility Radeon 7500 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-12-01' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: 68 mm² + GPU: M7 + GPU Variant: M7-P + TDP: 27 W + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml new file mode 100644 index 00000000..ea7f8e08 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-7500C +humanName: Mobility Radeon 7500C +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-12-01' + VRAM Frequency: 183 MHz + VRAM Bandwidth: 2.928 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 2 + Die Size: 68 mm² + GPU: M7 + GPU Variant: M7-16CL + TDP: 27 W + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml new file mode 100644 index 00000000..922b1eeb --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-9000-IGP +humanName: Mobility Radeon 9000 IGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-05-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 92 mm² + GPU: RC300 + GPU Variant: RC300MB + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml new file mode 100644 index 00000000..312bd039 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-9000 +humanName: Mobility Radeon 9000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: M9 + GPU Variant: M9 9000 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml new file mode 100644 index 00000000..b8372f03 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-9100-IGP +humanName: Mobility Radeon 9100 IGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-06-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 92 mm² + GPU: RS300 + GPU Variant: 9100 IGP + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml new file mode 100644 index 00000000..5d7194a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-9100-PRO-IGP +humanName: Mobility Radeon 9100 PRO IGP +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-06-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 92 mm² + GPU: RS350 + GPU Variant: 9100 PRO IGP + TDP: unknown + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml new file mode 100644 index 00000000..a4c3a40d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-9200 +humanName: Mobility Radeon 9200 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 81 mm² + GPU: M9 + GPU Variant: M9 9200 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml new file mode 100644 index 00000000..410ff103 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml @@ -0,0 +1,26 @@ +name: Radeon-7500-LE +humanName: Radeon 7500 LE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 175 MHz + VRAM Bandwidth: 5.600 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 83 mm² + GPU: RV200 + GPU Variant: RV200 7500 LE + TDP: 23 W + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml new file mode 100644 index 00000000..1d549347 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-7500-Mac-Edition +humanName: Radeon 7500 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002-04-16' + VRAM Frequency: 180 MHz + VRAM Bandwidth: 5.760 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 83 mm² + GPU: RV200 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml new file mode 100644 index 00000000..98d66d7d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml @@ -0,0 +1,28 @@ +name: Radeon-7500 +humanName: Radeon 7500 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '7.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 230 MHz + VRAM Bandwidth: 7.360 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 6 + Die Size: 83 mm² + GPU: RV200 + GPU Variant: RV200 7500 + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml new file mode 100644 index 00000000..6006abfb --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml @@ -0,0 +1,28 @@ +name: Radeon-8500-LE +humanName: Radeon 8500 LE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2002-02-04' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + GPU Variant: 215R7AAGA13H + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml new file mode 100644 index 00000000..af736c0a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml @@ -0,0 +1,25 @@ +name: Radeon-8500-X4 +humanName: Radeon 8500 X4 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + TDP: 92 W + Slot Width: Single-slot + Outputs: 2x DVI + Length: 330 mm diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml new file mode 100644 index 00000000..27e491b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml @@ -0,0 +1,27 @@ +name: Radeon-8500-XT +humanName: Radeon 8500 XT +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 68 mm² + GPU: R250 + TDP: 25 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml new file mode 100644 index 00000000..24428b04 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml @@ -0,0 +1,28 @@ +name: Radeon-8500 +humanName: Radeon 8500 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2001-08-14' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + GPU Variant: 215R7AAGA13H + TDP: 23 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml new file mode 100644 index 00000000..f14dba1d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml @@ -0,0 +1,26 @@ +name: Radeon-9000-LE +humanName: Radeon 9000 LE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-07-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 97 mm² + GPU: RV250 + GPU Variant: RV250 LE + TDP: 28 W + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml new file mode 100644 index 00000000..65c59d31 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-9000-PRO-Mac-Edition +humanName: Radeon 9000 PRO Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-03-14' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 97 mm² + GPU: RV250 + GPU Variant: RV250 9000 PRO + TDP: 28 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml new file mode 100644 index 00000000..c61a55bd --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml @@ -0,0 +1,30 @@ +name: Radeon-9000-PRO +humanName: Radeon 9000 PRO +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-07-18' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 97 mm² + GPU: RV250 + GPU Variant: RV250 9000 PRO + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 167 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml new file mode 100644 index 00000000..dbf95994 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml @@ -0,0 +1,28 @@ +name: Radeon-9000 +humanName: Radeon 9000 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2002-07-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 97 mm² + GPU: RV250 + GPU Variant: RV250 9000 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml new file mode 100644 index 00000000..978763da --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-9100-PCI +humanName: Radeon 9100 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-04-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml new file mode 100644 index 00000000..e8d4acbe --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml @@ -0,0 +1,25 @@ +name: Radeon-9100 +humanName: Radeon 9100 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-04-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 120 mm² + GPU: R200 + TDP: 28 W + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml new file mode 100644 index 00000000..86aac056 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml @@ -0,0 +1,27 @@ +name: Radeon-9200-LE +humanName: Radeon 9200 LE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-05-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml new file mode 100644 index 00000000..da62598a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-9200-PCI +humanName: Radeon 9200 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-05-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml new file mode 100644 index 00000000..6d440098 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml @@ -0,0 +1,27 @@ +name: Radeon-9200-PRO +humanName: Radeon 9200 PRO +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-05-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml new file mode 100644 index 00000000..0becdc26 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-9200-SE-PCI +humanName: Radeon 9200 SE PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml new file mode 100644 index 00000000..d049c08d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-9200-SE +humanName: Radeon 9200 SE +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 9200 SE + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml new file mode 100644 index 00000000..523cf07d --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml @@ -0,0 +1,28 @@ +name: Radeon-9200 +humanName: Radeon 9200 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-05-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 9200 + TDP: 28 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml new file mode 100644 index 00000000..0a963ad0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-9250-PCI +humanName: Radeon 9250 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml new file mode 100644 index 00000000..ca9132a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml @@ -0,0 +1,28 @@ +name: Radeon-9250 +humanName: Radeon 9250 +isPart: true +type: Graphics Card +data: + Architecture: Rage 7 + Lithography: 150 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2004-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 98 mm² + GPU: RV280 + GPU Variant: RV280 LX + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine.yaml b/specs/GPUs-CONSUMER/Rankine.yaml new file mode 100644 index 00000000..3619113f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine.yaml @@ -0,0 +1,71 @@ +name: Rankine +humanName: Rankine +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + Release Date: '2003-01-21' +sections: + - header: WHOLE RANGE + members: + - GeForce-FX-5100 + - GeForce-FX-5200 + - GeForce-FX-5200-PCI + - GeForce-FX-5200-Rev.-2 + - GeForce-FX-5200-Ultra + - GeForce-FX-5200-Ultra-Mac-Edition + - GeForce-FX-5500 + - GeForce-FX-5500-PCI + - GeForce-FX-5600 + - GeForce-FX-5200-LE + - GeForce-FX-5600-XT + - GeForce-FX-5600-XT-PCI + - GeForce-FX-5700 + - GeForce-FX-5700-Engineering-Sample + - GeForce-FX-5700-EP + - GeForce-FX-5700-LE + - GeForce-FX-5700-Ultra + - GeForce-FX-5700-VE + - GeForce-FX-5800 + - GeForce-FX-5800-Ultra + - GeForce-FX-5900 + - GeForce-FX-5900-Ultra + - GeForce-FX-5900-XT + - GeForce-FX-5900-ZT + - GeForce-FX-5950-Ultra + - GeForce-FX-Go5100 + - GeForce-FX-Go5200 + - GeForce-FX-Go5200-64M + - GeForce-FX-Go5200-NPB-32M + - GeForce-FX-Go5200-NPB-64M + - GeForce-FX-Go5250 + - GeForce-FX-Go5300 + - GeForce-FX-Go5350 + - GeForce-FX-Go5600 + - GeForce-FX-Go5650 + - GeForce-FX-Go5700 + - GeForce-FX-5600-Ultra + - GeForce-FX-Go5200-32M + - GeForce-PCX-5300 + - GeForce-PCX-5750 + - GeForce-PCX-5900 + - GeForce-PCX-5950 + - Quadro-FX-330 + - Quadro-FX-500 + - Quadro-FX-600-PCI + - Quadro-FX-700 + - Quadro-FX-1000 + - Quadro-FX-1100 + - Quadro-FX-1300 + - Quadro-FX-2000 + - Quadro-FX-3000 + - Quadro-FX-3000G + - Quadro-FX-Go700 + - Quadro-FX-Go1000 + - Quadro-NVS-55-PCI + - Quadro-NVS-280-AGP + - Quadro-NVS-280-PCI + - Quadro-NVS-280-PCIe diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml new file mode 100644 index 00000000..75bb8306 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-5100 +humanName: GeForce FX 5100 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml new file mode 100644 index 00000000..f12f0fa5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5200-LE +humanName: GeForce FX 5200 LE +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-17' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 5200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml new file mode 100644 index 00000000..b848abc4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5200-PCI +humanName: GeForce FX 5200 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: FX 5200 NPB + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 152 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml new file mode 100644 index 00000000..93abcaca --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5200-Rev.-2 +humanName: GeForce FX 5200 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: FX 5200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml new file mode 100644 index 00000000..eb02b4ba --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5200-Ultra-Mac-Edition +humanName: GeForce FX 5200 Ultra Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 5200 Ultra + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 171 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml new file mode 100644 index 00000000..986c1576 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5200-Ultra +humanName: GeForce FX 5200 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 5200 Ultra + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 171 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml new file mode 100644 index 00000000..bef423a1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5200 +humanName: GeForce FX 5200 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 5200 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml new file mode 100644 index 00000000..6db8f34a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5500-PCI +humanName: GeForce FX 5500 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-03-17' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: FX 5500 NPB + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml new file mode 100644 index 00000000..86330de9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5500 +humanName: GeForce FX 5500 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-03-17' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 5.312 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: FX 5500 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 152 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml new file mode 100644 index 00000000..4bc012fc --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5600-Ultra +humanName: GeForce FX 5600 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-17' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: GF-FX-5600-U-A1 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml new file mode 100644 index 00000000..3e436fbf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -0,0 +1,26 @@ +name: GeForce-FX-5600-XT-PCI +humanName: GeForce FX 5600 XT PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-17' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 5600 XT + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml new file mode 100644 index 00000000..0c773725 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5600-XT +humanName: GeForce FX 5600 XT +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-17' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 5600 XT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml new file mode 100644 index 00000000..1d56c59a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5600 +humanName: GeForce FX 5600 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 5600 + TDP: 37 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml new file mode 100644 index 00000000..03fad821 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5700-EP +humanName: GeForce FX 5700 EP +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml new file mode 100644 index 00000000..8537a0b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5700-Engineering-Sample +humanName: GeForce FX 5700 Engineering Sample +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-08-18' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36S + TDP: 25 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml new file mode 100644 index 00000000..88f938ff --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5700-LE +humanName: GeForce FX 5700 LE +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36 + GPU Variant: FX 5700LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml new file mode 100644 index 00000000..12899913 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5700-Ultra +humanName: GeForce FX 5700 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-10-23' + VRAM Frequency: 453 MHz + VRAM Bandwidth: 14.50 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36B + GPU Variant: FX 5700 Ultra + TDP: 46 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml new file mode 100644 index 00000000..da33fbd0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5700-VE +humanName: GeForce FX 5700 VE +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-09-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml new file mode 100644 index 00000000..eba5bdb9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5700 +humanName: GeForce FX 5700 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-10-23' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36B + TDP: 25 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml new file mode 100644 index 00000000..a59eb724 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5800-Ultra +humanName: GeForce FX 5800 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 199 mm² + GPU: NV30 + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 213 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml new file mode 100644 index 00000000..10f305ba --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml @@ -0,0 +1,28 @@ +name: GeForce-FX-5800 +humanName: GeForce FX 5800 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-06' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 199 mm² + GPU: NV30 + TDP: 44 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 213 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml new file mode 100644 index 00000000..3057744c --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5900-Ultra +humanName: GeForce FX 5900 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-10-23' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + GPU Variant: FX 5900 Ultra + TDP: 59 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 218 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml new file mode 100644 index 00000000..9abce6cd --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5900-XT +humanName: GeForce FX 5900 XT +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-05-12' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + TDP: 35 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml new file mode 100644 index 00000000..3166bbf4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml @@ -0,0 +1,27 @@ +name: GeForce-FX-5900-ZT +humanName: GeForce FX 5900 ZT +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-05-12' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml new file mode 100644 index 00000000..cac6101a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml @@ -0,0 +1,29 @@ +name: GeForce-FX-5900 +humanName: GeForce FX 5900 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-05-12' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + GPU Variant: FX 5900 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 218 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml new file mode 100644 index 00000000..1d37837f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml @@ -0,0 +1,30 @@ +name: GeForce-FX-5950-Ultra +humanName: GeForce FX 5950 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-10-23' + VRAM Frequency: 475 MHz + VRAM Bandwidth: 30.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV38 + GPU Variant: FX 5950 Ultra + TDP: 74 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml new file mode 100644 index 00000000..d4506c4f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5100 +humanName: GeForce FX Go5100 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 Go5100 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml new file mode 100644 index 00000000..de20f37a --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5200-32M +humanName: GeForce FX Go5200 32M +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 Go5200 32M + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml new file mode 100644 index 00000000..24028fc3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5200-64M +humanName: GeForce FX Go5200 64M +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: Go5200 64M + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml new file mode 100644 index 00000000..a8152567 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5200-NPB-32M +humanName: GeForce FX Go5200 NPB 32M +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: Go5200 NPB 32M + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml new file mode 100644 index 00000000..673df8f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5200-NPB-64M +humanName: GeForce FX Go5200 NPB 64M +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: Go5200 NPB 64M + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml new file mode 100644 index 00000000..14bc4a84 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5200 +humanName: GeForce FX Go5200 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: Go5200 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml new file mode 100644 index 00000000..68104d17 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml @@ -0,0 +1,24 @@ +name: GeForce-FX-Go5250 +humanName: GeForce FX Go5250 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml new file mode 100644 index 00000000..89c83285 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml @@ -0,0 +1,24 @@ +name: GeForce-FX-Go5300 +humanName: GeForce FX Go5300 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml new file mode 100644 index 00000000..26b336b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml @@ -0,0 +1,24 @@ +name: GeForce-FX-Go5350 +humanName: GeForce FX Go5350 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml new file mode 100644 index 00000000..d2b34f79 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5600 +humanName: GeForce FX Go5600 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 Go5600 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml new file mode 100644 index 00000000..b2663d9f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5650 +humanName: GeForce FX Go5650 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-01' + VRAM Frequency: 295 MHz + VRAM Bandwidth: 9.440 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 Go5650 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml new file mode 100644 index 00000000..a08c3fa3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml @@ -0,0 +1,25 @@ +name: GeForce-FX-Go5700 +humanName: GeForce FX Go5700 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-02-01' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36 + GPU Variant: Go5700-V + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml new file mode 100644 index 00000000..b853c35f --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml @@ -0,0 +1,27 @@ +name: GeForce-PCX-5300 +humanName: GeForce PCX 5300 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-02-17' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV37 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml new file mode 100644 index 00000000..9a1efaaf --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml @@ -0,0 +1,29 @@ +name: GeForce-PCX-5750 +humanName: GeForce PCX 5750 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-02-17' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 125 mm² + GPU: NV39 + GPU Variant: FX 5700 + TDP: 50 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml new file mode 100644 index 00000000..eb0114ec --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml @@ -0,0 +1,27 @@ +name: GeForce-PCX-5900 +humanName: GeForce PCX 5900 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-03-17' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 17.60 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml new file mode 100644 index 00000000..de900be7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml @@ -0,0 +1,27 @@ +name: GeForce-PCX-5950 +humanName: GeForce PCX 5950 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-02-17' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV38 + TDP: 57 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml new file mode 100644 index 00000000..071fe2f1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-1000 +humanName: Quadro FX 1000 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-01-21' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 199 mm² + GPU: NV30 + GPU Variant: NV30GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml new file mode 100644 index 00000000..b273c939 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-1100 +humanName: Quadro FX 1100 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-04-01' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36B + GPU Variant: FX 1100 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml new file mode 100644 index 00000000..753f3aec --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-1300 +humanName: Quadro FX 1300 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-08-09' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 17.60 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV38 + GPU Variant: NV38 GL + TDP: 55 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml new file mode 100644 index 00000000..5043e293 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-2000 +humanName: Quadro FX 2000 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-01-21' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 199 mm² + GPU: NV30 + GPU Variant: NV30GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml new file mode 100644 index 00000000..ceebd7bc --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-3000 +humanName: Quadro FX 3000 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-07-22' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + GPU Variant: NV35 GL + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml new file mode 100644 index 00000000..83759656 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-3000G +humanName: Quadro FX 3000G +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-07-22' + VRAM Frequency: 425 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + GPU Variant: NV35 GL + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video1x SDI + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml new file mode 100644 index 00000000..61f33b16 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-330 +humanName: Quadro FX 330 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-06-28' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV37 + GPU Variant: NV37 GL + TDP: 21 W + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml new file mode 100644 index 00000000..cf344d83 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-500 +humanName: Quadro FX 500 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-05-21' + VRAM Frequency: 240 MHz + VRAM Bandwidth: 7.680 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None + Length: 152 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml new file mode 100644 index 00000000..7b93ffd6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-600-PCI +humanName: Quadro FX 600 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-03-17' + VRAM Frequency: 240 MHz + VRAM Bandwidth: 7.680 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 165 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml new file mode 100644 index 00000000..9158b453 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml @@ -0,0 +1,30 @@ +name: Quadro-FX-700 +humanName: Quadro FX 700 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-03-17' + VRAM Frequency: 275 MHz + VRAM Bandwidth: 8.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: 207 mm² + GPU: NV35 + GPU Variant: NV35 GL + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: 1x Molex + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml new file mode 100644 index 00000000..0cb56656 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-Go1000 +humanName: Quadro FX Go1000 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-02-25' + VRAM Frequency: 285 MHz + VRAM Bandwidth: 9.120 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 133 mm² + GPU: NV36 + GPU Variant: Go1000 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml new file mode 100644 index 00000000..7db39370 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml @@ -0,0 +1,25 @@ +name: Quadro-FX-Go700 +humanName: Quadro FX Go700 +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 130 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-06-25' + VRAM Frequency: 295 MHz + VRAM Bandwidth: 9.440 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 121 mm² + GPU: NV31 + GPU Variant: NV31 Go700 + TDP: unknown + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml new file mode 100644 index 00000000..a9b21690 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-280-AGP +humanName: Quadro NVS 280 AGP +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-05-25' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 124 mm² + GPU: NV34 + GPU Variant: NV34 GL + TDP: 13 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml new file mode 100644 index 00000000..18f0d8d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-280-PCI +humanName: Quadro NVS 280 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2003-10-28' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + GPU Variant: NV34 GL + TDP: 13 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml new file mode 100644 index 00000000..7c9aaa63 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-280-PCIe +humanName: Quadro NVS 280 PCIe +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2004-05-25' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV37 + GPU Variant: NV37 GL + TDP: 13 W + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml new file mode 100644 index 00000000..0ff804d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml @@ -0,0 +1,28 @@ +name: Quadro-NVS-55-PCI +humanName: Quadro NVS 55 PCI +isPart: true +type: Graphics Card +data: + Architecture: Rankine + Lithography: 150 nm + DirectX Support: '9.0a' + Vulkan Support: 'N/A' + OpenGL Support: '1.5 (full)' + OpenCL Support: 'N/A' + Release Date: '2005-05-31' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 3.200 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 91 mm² + GPU: NV34B + TDP: 10 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml b/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml deleted file mode 100755 index be7a4fe4..00000000 --- a/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml +++ /dev/null @@ -1,10 +0,0 @@ -hidden: true -name: TeraScale-1-40nm -data: - Architecture: TeraScale 1 - Lithography: 40 nm - DirectX Support: '10.1' - HLSL Shader Model: '4.1' - OpenGL Support: '3.3' - OpenCL Support: '1.1' - Crossfire Support: CrossfireX diff --git a/specs/GPUs-CONSUMER/TeraScale-1.yaml b/specs/GPUs-CONSUMER/TeraScale-1.yaml deleted file mode 100755 index c06a4ab0..00000000 --- a/specs/GPUs-CONSUMER/TeraScale-1.yaml +++ /dev/null @@ -1,10 +0,0 @@ -hidden: true -name: TeraScale-1 -data: - Architecture: TeraScale 1 - Lithography: 55 nm - DirectX Support: '10.1' - HLSL Shader Model: '4.1' - OpenGL Support: '3.3' - OpenCL Support: '1.1' - Crossfire Support: CrossfireX \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/TeraScale-2.yaml b/specs/GPUs-CONSUMER/TeraScale-2.yaml old mode 100755 new mode 100644 index 63b32a55..2e576490 --- a/specs/GPUs-CONSUMER/TeraScale-2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2.yaml @@ -1,10 +1,204 @@ -hidden: true -name: TeraScale-2 +name: TeraScale-2 +humanName: TeraScale 2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' data: - Architecture: TeraScale 2 - Lithography: 40 nm + Lithography: 14 nm DirectX Support: '11.0' - HLSL Shader Model: '5.0' - OpenGL Support: '4.4' - OpenCL Support: '1.2' - Crossfire Support: CrossfireX + Vulkan Support: 'N/A' + Release Date: '2009-09-23' +sections: + - header: WHOLE RANGE + members: + - FirePro-2270 + - FirePro-2270-PCIe-x1 + - FirePro-2460-Multi-View + - FirePro-M2000 + - FirePro-M3900 + - FirePro-M5800 + - FirePro-M5950 + - FirePro-M7820 + - FirePro-M8900 + - FirePro-V3800 + - FirePro-V3900 + - FirePro-V4800 + - FirePro-V4900 + - FirePro-V5800 + - FirePro-V5800-DVI + - FirePro-V7800 + - FirePro-V7800P + - FirePro-V8800 + - FirePro-V9800 + - FirePro-V9800P + - FireStream-9350 + - FireStream-9370 + - Mobility-Radeon-HD-5430 + - Mobility-Radeon-HD-5450 + - Mobility-Radeon-HD-5570 + - Mobility-Radeon-HD-5650 + - Mobility-Radeon-HD-5670-Mac-Edition + - Mobility-Radeon-HD-5730 + - Mobility-Radeon-HD-5750 + - Mobility-Radeon-HD-5770 + - Mobility-Radeon-HD-5830 + - Mobility-Radeon-HD-5850 + - Mobility-Radeon-HD-5850-Mac-Edition + - Mobility-Radeon-HD-5870 + - Mobility-Radeon-HD-5470 + - Radeon-E6460 + - Radeon-E6465 + - Radeon-E6760-MXM + - Radeon-E6760-PCIe + - Radeon-HD-5450 + - Radeon-HD-5450-PCI + - Radeon-HD-5450-PCIe-x1 + - Radeon-HD-5470 + - Radeon-HD-5490 + - Radeon-HD-5530 + - Radeon-HD-5550 + - Radeon-HD-5570 + - Radeon-HD-5570-OEM + - Radeon-HD-5630 + - Radeon-HD-5670 + - Radeon-HD-5670-640SP-Edition + - Radeon-HD-5690 + - Radeon-HD-5730 + - Radeon-HD-5750 + - Radeon-HD-5770 + - Radeon-HD-5770-Mac-Edition + - Radeon-HD-5770-X2 + - Radeon-HD-5830 + - Radeon-HD-5850 + - Radeon-HD-5870 + - Radeon-HD-5870-Eyefinity-6 + - Radeon-HD-5870-Mac-Edition + - Radeon-HD-5950 + - Radeon-HD-5970 + - Radeon-HD-6230 + - Radeon-HD-6250 + - Radeon-HD-6250-IGP + - Radeon-HD-6290 + - Radeon-HD-6290-IGP + - Radeon-HD-6310-IGP + - Radeon-HD-6330M + - Radeon-HD-6350 + - Radeon-HD-6350M + - Radeon-HD-6370D-IGP + - Radeon-HD-6370M + - Radeon-HD-6380G-IGP + - Radeon-HD-6390 + - Radeon-HD-6410D-IGP + - Radeon-HD-6430M + - Radeon-HD-6450 + - Radeon-HD-6450-OEM + - Radeon-HD-6450A + - Radeon-HD-6450M + - Radeon-HD-6470M + - Radeon-HD-6480G-IGP + - Radeon-HD-6490M + - Radeon-HD-6490M-Mac-Edition + - Radeon-HD-6510 + - Radeon-HD-6530 + - Radeon-HD-6530D-IGP + - Radeon-HD-6530M + - Radeon-HD-6550A + - Radeon-HD-6550D-IGP + - Radeon-HD-6550M + - Radeon-HD-6570 + - Radeon-HD-6570-OEM + - Radeon-HD-6570M + - Radeon-HD-6610 + - Radeon-HD-6610M + - Radeon-HD-6620G-IGP + - Radeon-HD-6625M + - Radeon-HD-6630M + - Radeon-HD-6630M-Mac-Edition + - Radeon-HD-6650A + - Radeon-HD-6650M + - Radeon-HD-6670 + - Radeon-HD-6670A + - Radeon-HD-6730M + - Radeon-HD-6750 + - Radeon-HD-6750M + - Radeon-HD-6750M-Mac-Edition + - Radeon-HD-6770 + - Radeon-HD-6770-Green-Edition + - Radeon-HD-6770M + - Radeon-HD-6770M-Mac-Edition + - Radeon-HD-6790 + - Radeon-HD-6830M + - Radeon-HD-6850 + - Radeon-HD-6850-1440SP-Edition + - Radeon-HD-6850-X2 + - Radeon-HD-6850M + - Radeon-HD-6870 + - Radeon-HD-6870-1600SP-Edition + - Radeon-HD-6870-X2 + - Radeon-HD-6870M + - Radeon-HD-6950M + - Radeon-HD-6970M + - Radeon-HD-6970M-Mac-Edition + - Radeon-HD-6970M-Rebrand + - Radeon-HD-6970M-X2 + - Radeon-HD-6990M + - Radeon-HD-6990M-Rebrand + - Radeon-HD-7290-IGP + - Radeon-HD-7310-IGP + - Radeon-HD-7330M + - Radeon-HD-7340-IGP + - Radeon-HD-7350-OEM + - Radeon-HD-7350-OEM-PCI + - Radeon-HD-7350M + - Radeon-HD-7370M + - Radeon-HD-7410M + - Radeon-HD-7430M + - Radeon-HD-7450-OEM + - Radeon-HD-7450A + - Radeon-HD-7450M + - Radeon-HD-7470-OEM + - Radeon-HD-7470A + - Radeon-HD-7490M + - Radeon-HD-7510-OEM + - Radeon-HD-7510M + - Radeon-HD-7530M + - Radeon-HD-6320-IGP + - Radeon-HD-6490 + - Radeon-HD-6520G-IGP + - Radeon-HD-6570M-Mac-Edition + - Radeon-HD-7470M + - Radeon-HD-7550M + - Radeon-HD-7570 + - Radeon-HD-7570-OEM + - Radeon-HD-7570M + - Radeon-HD-7590M + - Radeon-HD-7610M + - Radeon-HD-7630M + - Radeon-HD-7650A + - Radeon-HD-7650M + - Radeon-HD-7650M-Rebrand + - Radeon-HD-7670-OEM + - Radeon-HD-7670A + - Radeon-HD-7670M + - Radeon-HD-7670M-Rebrand + - Radeon-HD-7690M + - Radeon-HD-7690M-Rebrand + - Radeon-HD-7690M-XT + - Radeon-HD-7690M-XT-Rebrand + - Radeon-HD-7720-OEM + - Radeon-HD-8350-OEM + - Radeon-HD-8450-OEM + - Radeon-HD-8470-OEM + - Radeon-HD-8490-OEM + - Radeon-HD-8510-OEM + - Radeon-HD-8550-OEM + - Radeon-HD-8570-OEM-Rebrand + - Radeon-HD-6350A + - Radeon-R5-230 + - Radeon-R5-230-OEM + - Radeon-R5-235-OEM + - Radeon-R5-235X-OEM + - Radeon-R5-310-OEM + - Radeon-R5-A220 + - Radeon-R5-220-OEM + - Wii-U-GPU diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml new file mode 100644 index 00000000..36952f6c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml @@ -0,0 +1,30 @@ +name: FirePro-2270-PCIe-x1 +humanName: FirePro 2270 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-31' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar WS + TDP: 15 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml new file mode 100644 index 00000000..c3d516cb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml @@ -0,0 +1,30 @@ +name: FirePro-2270 +humanName: FirePro 2270 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-31' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar WS + TDP: 15 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml new file mode 100644 index 00000000..f0a0eee1 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml @@ -0,0 +1,30 @@ +name: FirePro-2460-Multi-View +humanName: FirePro 2460 Multi-View +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar GL + TDP: 17 W + FP32 Compute: 80.00 GFLOPS + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.1 + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml new file mode 100644 index 00000000..dcf452f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml @@ -0,0 +1,26 @@ +name: FirePro-M2000 +humanName: FirePro M2000 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-07-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks GL + TDP: 33 W + FP32 Compute: 480.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml new file mode 100644 index 00000000..963f9698 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml @@ -0,0 +1,26 @@ +name: FirePro-M3900 +humanName: FirePro M3900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-10-19' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour GL + TDP: 20 W + FP32 Compute: 240.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml new file mode 100644 index 00000000..6a837e2d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml @@ -0,0 +1,26 @@ +name: FirePro-M5800 +humanName: FirePro M5800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-03-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison XT GL + TDP: 26 W + FP32 Compute: 520.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml new file mode 100644 index 00000000..19e40c16 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml @@ -0,0 +1,27 @@ +name: FirePro-M5950 +humanName: FirePro M5950 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT GL MXM + TDP: 35 W + FP32 Compute: 696.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml new file mode 100644 index 00000000..f590741f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml @@ -0,0 +1,28 @@ +name: FirePro-M7820 +humanName: FirePro M7820 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-05-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway XT GL + TDP: 50 W + FP32 Compute: 1,120 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml new file mode 100644 index 00000000..ec45b37c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml @@ -0,0 +1,28 @@ +name: FirePro-M8900 +humanName: FirePro M8900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-12' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb XT GL + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml new file mode 100644 index 00000000..b5733114 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml @@ -0,0 +1,32 @@ +name: FirePro-V3800 +humanName: FirePro V3800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO GL + TDP: 43 W + FP32 Compute: 520.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml new file mode 100644 index 00000000..afb603d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml @@ -0,0 +1,32 @@ +name: FirePro-V3900 +humanName: FirePro V3900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-02-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks GL + TDP: 50 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml new file mode 100644 index 00000000..ff1276a1 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml @@ -0,0 +1,32 @@ +name: FirePro-V4800 +humanName: FirePro V4800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood XT GL + TDP: 69 W + FP32 Compute: 620.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml new file mode 100644 index 00000000..91fa11df --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml @@ -0,0 +1,32 @@ +name: FirePro-V4900 +humanName: FirePro V4900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-11-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks XT GL + TDP: 75 W + FP32 Compute: 768.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.1 + Power Connectors: None + Length: 163 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml new file mode 100644 index 00000000..92362e51 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml @@ -0,0 +1,30 @@ +name: FirePro-V5800-DVI +humanName: FirePro V5800 DVI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-26' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT GL + TDP: 74 W + FP32 Compute: 1,104 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml new file mode 100644 index 00000000..da9193ee --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml @@ -0,0 +1,32 @@ +name: FirePro-V5800 +humanName: FirePro V5800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-26' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT GL + TDP: 74 W + FP32 Compute: 1,104 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.1 + Power Connectors: None + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml new file mode 100644 index 00000000..f36b2beb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml @@ -0,0 +1,32 @@ +name: FirePro-V7800 +humanName: FirePro V7800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-26' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress PRO GL + TDP: 150 W + FP32 Compute: 2.016 TFLOPS + FP64 Compute: 403.2 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 254 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml new file mode 100644 index 00000000..68a3cb03 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml @@ -0,0 +1,31 @@ +name: FirePro-V7800P +humanName: FirePro V7800P +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-16' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress PRO GL + TDP: 138 W + FP32 Compute: 2.016 TFLOPS + FP64 Compute: 403.2 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml new file mode 100644 index 00000000..5b852241 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml @@ -0,0 +1,33 @@ +name: FirePro-V8800 +humanName: FirePro V8800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-07' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 147.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT GL + TDP: 208 W + FP32 Compute: 2.640 TFLOPS + FP64 Compute: 528.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 4x DisplayPort 1.1 + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml new file mode 100644 index 00000000..d3278a26 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml @@ -0,0 +1,33 @@ +name: FirePro-V9800 +humanName: FirePro V9800 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-09-09' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 147.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT GL + TDP: 250 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 6x mini-DisplayPort 1.1 + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml new file mode 100644 index 00000000..409f796e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml @@ -0,0 +1,31 @@ +name: FirePro-V9800P +humanName: FirePro V9800P +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-09-09' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 147.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT GL + TDP: 225 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: 1x DisplayPort 1.1 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml new file mode 100644 index 00000000..fdd99645 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml @@ -0,0 +1,31 @@ +name: FireStream-9350 +humanName: FireStream 9350 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-06-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress PRO GL + TDP: 150 W + FP32 Compute: 2.016 TFLOPS + FP64 Compute: 403.2 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: 1x DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml new file mode 100644 index 00000000..58753945 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml @@ -0,0 +1,31 @@ +name: FireStream-9370 +humanName: FireStream 9370 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-06-23' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 147.2 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT GL + TDP: 225 W + FP32 Compute: 2.640 TFLOPS + FP64 Compute: 528.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: 1x DisplayPort 1.1 + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml new file mode 100644 index 00000000..0c79d05f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5430 +humanName: Mobility Radeon HD 5430 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Park + GPU Variant: Park LP S3 + TDP: 7 W + FP32 Compute: 80.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml new file mode 100644 index 00000000..125b5672 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-5450 +humanName: Mobility Radeon HD 5450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Park + GPU Variant: Park PRO M2 + TDP: 11 W + FP32 Compute: 108.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml new file mode 100644 index 00000000..b3662b97 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5470 +humanName: Mobility Radeon HD 5470 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Park + GPU Variant: Park XT S3 + TDP: 15 W + FP32 Compute: 120.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml new file mode 100644 index 00000000..37e2092e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-5570 +humanName: Mobility Radeon HD 5570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-11-23' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Pinewood + GPU Variant: Pinewood MXM + TDP: 20 W + FP32 Compute: 440.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml new file mode 100644 index 00000000..90ecb3fd --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5650 +humanName: Mobility Radeon HD 5650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison PRO + TDP: 15 W + FP32 Compute: 360.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml new file mode 100644 index 00000000..99c91e6a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5670-Mac-Edition +humanName: Mobility Radeon HD 5670 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-04-22' + VRAM Frequency: 795 MHz + VRAM Bandwidth: 25.44 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison XT + TDP: 15 W + FP32 Compute: 520.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml new file mode 100644 index 00000000..90e49485 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5730 +humanName: Mobility Radeon HD 5730 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison XT + TDP: 26 W + FP32 Compute: 520.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml new file mode 100644 index 00000000..9a1e6feb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5750 +humanName: Mobility Radeon HD 5750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison PRO + TDP: 25 W + FP32 Compute: 440.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml new file mode 100644 index 00000000..8477f0aa --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5770 +humanName: Mobility Radeon HD 5770 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Madison + GPU Variant: Madison XT + TDP: 30 W + FP32 Compute: 520.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml new file mode 100644 index 00000000..dcf121a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5830 +humanName: Mobility Radeon HD 5830 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway LP + TDP: 24 W + FP32 Compute: 800.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml new file mode 100644 index 00000000..912d5a42 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-5850-Mac-Edition +humanName: Mobility Radeon HD 5850 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway PRO + TDP: 30 W + FP32 Compute: 1,005 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml new file mode 100644 index 00000000..77384381 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5850 +humanName: Mobility Radeon HD 5850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway PRO + TDP: 30 W + FP32 Compute: 800.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml new file mode 100644 index 00000000..83a56a64 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-5870 +humanName: Mobility Radeon HD 5870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-07' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway XT + TDP: 50 W + FP32 Compute: 1,120 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml new file mode 100644 index 00000000..3d298ef3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml @@ -0,0 +1,27 @@ +name: Radeon-E6460 +humanName: Radeon E6460 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: E6460 + TDP: 25 W + FP32 Compute: 192.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml new file mode 100644 index 00000000..7d5bdcf0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml @@ -0,0 +1,27 @@ +name: Radeon-E6465 +humanName: Radeon E6465 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2015-09-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + TDP: 25 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml new file mode 100644 index 00000000..52f34fce --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml @@ -0,0 +1,27 @@ +name: Radeon-E6760-MXM +humanName: Radeon E6760 MXM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-02' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler CSP + TDP: 45 W + FP32 Compute: 576.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml new file mode 100644 index 00000000..f21955d3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml @@ -0,0 +1,28 @@ +name: Radeon-E6760-PCIe +humanName: Radeon E6760 PCIe +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-02' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler CSP + TDP: 45 W + FP32 Compute: 576.0 GFLOPS + Slot Width: Single-slot + Outputs: 6x mini-DisplayPort 1.1 + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml new file mode 100644 index 00000000..a6b3b500 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5450-PCI +humanName: Radeon HD 5450 PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-04' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml new file mode 100644 index 00000000..f3231750 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-5450-PCIe-x1 +humanName: Radeon HD 5450 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-04' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml new file mode 100644 index 00000000..f2bf0a18 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5450 +humanName: Radeon HD 5450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-04' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml new file mode 100644 index 00000000..c6e7fcde --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5470 +humanName: Radeon HD 5470 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-02-13' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml new file mode 100644 index 00000000..b99af489 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5490 +humanName: Radeon HD 5490 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar XTX + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml new file mode 100644 index 00000000..b373f0b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-5530 +humanName: Radeon HD 5530 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-03-17' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar XTX + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml new file mode 100644 index 00000000..9e00cda0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5550 +humanName: Radeon HD 5550 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO2 + TDP: 39 W + FP32 Compute: 352.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml new file mode 100644 index 00000000..480464dc --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-5570-OEM +humanName: Radeon HD 5570 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-09' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood LE + TDP: 39 W + FP32 Compute: 352.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml new file mode 100644 index 00000000..94abbb29 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5570 +humanName: Radeon HD 5570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Pinewood + GPU Variant: Pinewood PRO + TDP: 39 W + FP32 Compute: 500.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml new file mode 100644 index 00000000..f12087e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5630 +humanName: Radeon HD 5630 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-15' + VRAM Frequency: 390 MHz + VRAM Bandwidth: 12.48 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood LE + TDP: 39 W + FP32 Compute: 416.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml new file mode 100644 index 00000000..e03af560 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5670-640SP-Edition +humanName: Radeon HD 5670 640SP Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-07-18' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper CE + TDP: 64 W + FP32 Compute: 960.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml new file mode 100644 index 00000000..c46f4b9f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml @@ -0,0 +1,33 @@ +name: Radeon-HD-5670 +humanName: Radeon HD 5670 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-01-14' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood XT + TDP: 64 W + FP32 Compute: 620.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm + Width: 111 mm + Height: 20 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml new file mode 100644 index 00000000..e953c33e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-5690 +humanName: Radeon HD 5690 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood XT + TDP: 64 W + FP32 Compute: 620.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml new file mode 100644 index 00000000..0ebbd8cf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-5730 +humanName: Radeon HD 5730 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-26' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood XT + TDP: 64 W + FP32 Compute: 620.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml new file mode 100644 index 00000000..fd46028c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5750 +humanName: Radeon HD 5750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-10-13' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 36 + Shader Processor Count: 720 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper LE + TDP: 86 W + FP32 Compute: 1,008 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 178 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml new file mode 100644 index 00000000..2af1d737 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml @@ -0,0 +1,33 @@ +name: Radeon-HD-5770-Mac-Edition +humanName: Radeon HD 5770 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-07-04' + VRAM Frequency: 1195 MHz + VRAM Bandwidth: 76.48 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT + TDP: 108 W + FP32 Compute: 1,360 GFLOPS + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 208 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml new file mode 100644 index 00000000..f26f7db8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-5770-X2 +humanName: Radeon HD 5770 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-10-13' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT + TDP: unknown + FP32 Compute: 1,360 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml new file mode 100644 index 00000000..c2d4a696 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-5770 +humanName: Radeon HD 5770 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-10-13' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT + TDP: 108 W + FP32 Compute: 1,360 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 208 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml new file mode 100644 index 00000000..c57bbcd2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-5830 +humanName: Radeon HD 5830 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-02-25' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 1120 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress LE + TDP: 175 W + FP32 Compute: 1.792 TFLOPS + FP64 Compute: 358.4 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 280 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml new file mode 100644 index 00000000..da9cf1cf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-5850 +humanName: Radeon HD 5850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-09-30' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress PRO + TDP: 151 W + FP32 Compute: 2.088 TFLOPS + FP64 Compute: 417.6 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml new file mode 100644 index 00000000..d806cad6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-5870-Eyefinity-6 +humanName: Radeon HD 5870 Eyefinity 6 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-03-11' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT + TDP: 228 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: 6x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 280 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml new file mode 100644 index 00000000..0b569921 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-5870-Mac-Edition +humanName: Radeon HD 5870 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-06-30' + VRAM Frequency: 1195 MHz + VRAM Bandwidth: 153.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT + TDP: 228 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x mini-DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 280 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml new file mode 100644 index 00000000..b5a959ed --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-5870 +humanName: Radeon HD 5870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-09-23' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT + TDP: 188 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 280 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml new file mode 100644 index 00000000..6460c083 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml @@ -0,0 +1,33 @@ +name: Radeon-HD-5950 +humanName: Radeon HD 5950 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: 'Never Released' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Hemlock + GPU Variant: Hemlock PRO + TDP: 302 W + FP32 Compute: 2.088 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 280 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml new file mode 100644 index 00000000..13e7abaa --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-5970 +humanName: Radeon HD 5970 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-11-18' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Hemlock + GPU Variant: Hemlock XT + TDP: 294 W + FP32 Compute: 2.320 TFLOPS + FP64 Compute: 464.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 311 mm + Width: 111 mm + Height: 37 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml new file mode 100644 index 00000000..5566c145 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6230 +humanName: Radeon HD 6230 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-02' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Park + GPU Variant: Park LP S3 + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml new file mode 100644 index 00000000..c9311c72 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6250-IGP +humanName: Radeon HD 6250 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-04-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 9 W + FP32 Compute: 44.32 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml new file mode 100644 index 00000000..aca562c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6250 +humanName: Radeon HD 6250 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-31' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml new file mode 100644 index 00000000..498c8348 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6290-IGP +humanName: Radeon HD 6290 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-07' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 9 W + FP32 Compute: 44.16 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml new file mode 100644 index 00000000..178585c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6290 +humanName: Radeon HD 6290 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-12-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar LE + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml new file mode 100644 index 00000000..5bc92ccc --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6310-IGP +humanName: Radeon HD 6310 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-09' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 18 W + FP32 Compute: 44.16 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml new file mode 100644 index 00000000..0ac52b32 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6320-IGP +humanName: Radeon HD 6320 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-08-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 18 W + FP32 Compute: 81.28 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml new file mode 100644 index 00000000..8f06a7bb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6330M +humanName: Radeon HD 6330M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-26' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson LP S3 + TDP: 7 W + FP32 Compute: 80.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml new file mode 100644 index 00000000..77a2cdd9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6350 +humanName: Radeon HD 6350 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-07' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Park + GPU Variant: Park LP S3 + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml new file mode 100644 index 00000000..14e25850 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6350A +humanName: Radeon HD 6350A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + TDP: 25 W + FP32 Compute: 104.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml new file mode 100644 index 00000000..d99aaac0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6350M +humanName: Radeon HD 6350M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-26' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson PRO S3 + TDP: 7 W + FP32 Compute: 80.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml new file mode 100644 index 00000000..820f391a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6370D-IGP +humanName: Radeon HD 6370D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-11-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 227 mm² + GPU: SuperSumo + TDP: 65 W + FP32 Compute: 142.1 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml new file mode 100644 index 00000000..17f730fd --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6370M +humanName: Radeon HD 6370M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-26' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson XT S3 + TDP: 11 W + FP32 Compute: 120.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml new file mode 100644 index 00000000..6e406d2d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6380G-IGP +humanName: Radeon HD 6380G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-06-14' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 227 mm² + GPU: SuperSumo + TDP: 35 W + FP32 Compute: 128.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml new file mode 100644 index 00000000..8190dabe --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6390 +humanName: Radeon HD 6390 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-04' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO2 + TDP: 39 W + FP32 Compute: 352.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml new file mode 100644 index 00000000..b4a31a70 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6410D-IGP +humanName: Radeon HD 6410D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-06-20' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 227 mm² + GPU: SuperSumo + TDP: 65 W + FP32 Compute: 142.1 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml new file mode 100644 index 00000000..0b1df307 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6430M +humanName: Radeon HD 6430M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour LP S3 + TDP: unknown + FP32 Compute: 153.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml new file mode 100644 index 00000000..9c4f39f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6450-OEM +humanName: Radeon HD 6450 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-07' + VRAM Frequency: 533 MHz + VRAM Bandwidth: 8.528 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Junbonator + TDP: 18 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml new file mode 100644 index 00000000..28e4d3b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6450 +humanName: Radeon HD 6450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-07' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos PRO + TDP: 18 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml new file mode 100644 index 00000000..a6b74e51 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6450A +humanName: Radeon HD 6450A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-07' + VRAM Frequency: 533 MHz + VRAM Bandwidth: 8.528 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + TDP: 25 W + FP32 Compute: 200.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml new file mode 100644 index 00000000..ac63114f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6450M +humanName: Radeon HD 6450M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour PRO S3 + TDP: unknown + FP32 Compute: 192.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml new file mode 100644 index 00000000..1b7201c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6470M +humanName: Radeon HD 6470M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XT M2 + TDP: 25 W + FP32 Compute: 224.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml new file mode 100644 index 00000000..b1396e47 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6480G-IGP +humanName: Radeon HD 6480G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-06-14' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 240 + Die Size: 227 mm² + GPU: Sumo + TDP: 35 W + FP32 Compute: 213.1 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml new file mode 100644 index 00000000..1c305eb5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6490 +humanName: Radeon HD 6490 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-04' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood LE + TDP: 39 W + FP32 Compute: 352.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml new file mode 100644 index 00000000..f02c7779 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6490M-Mac-Edition +humanName: Radeon HD 6490M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-02' + VRAM Frequency: 794 MHz + VRAM Bandwidth: 25.41 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XTX M2 + TDP: unknown + FP32 Compute: 240.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml new file mode 100644 index 00000000..acf5822b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6490M +humanName: Radeon HD 6490M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XTX S3 + TDP: unknown + FP32 Compute: 256.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml new file mode 100644 index 00000000..59350fe9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6510 +humanName: Radeon HD 6510 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-14' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks LE + TDP: 39 W + FP32 Compute: 416.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml new file mode 100644 index 00000000..a15dba0a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6520G-IGP +humanName: Radeon HD 6520G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-12-07' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 227 mm² + GPU: Sumo + TDP: 35 W + FP32 Compute: 256.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml new file mode 100644 index 00000000..d6c3b9b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6530 +humanName: Radeon HD 6530 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-14' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO + TDP: 39 W + FP32 Compute: 520.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml new file mode 100644 index 00000000..c354604e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6530D-IGP +humanName: Radeon HD 6530D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-06-20' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 227 mm² + GPU: Sumo + TDP: 65 W + FP32 Compute: 284.2 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml new file mode 100644 index 00000000..016e148c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6530M +humanName: Radeon HD 6530M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Capilano + GPU Variant: Capilano LP + TDP: 26 W + FP32 Compute: 360.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml new file mode 100644 index 00000000..697bd40c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6550A +humanName: Radeon HD 6550A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 104 mm² + GPU: Pinewood + GPU Variant: Pinewood PRO + TDP: 35 W + FP32 Compute: 528.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml new file mode 100644 index 00000000..fd1032fb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6550D-IGP +humanName: Radeon HD 6550D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-06-20' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 227 mm² + GPU: Sumo + TDP: 65 W + FP32 Compute: 480.0 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml new file mode 100644 index 00000000..0d6746f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6550M +humanName: Radeon HD 6550M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-11-26' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Capilano + GPU Variant: Capilano PRO + TDP: 26 W + FP32 Compute: 480.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml new file mode 100644 index 00000000..ad2779f7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6570-OEM +humanName: Radeon HD 6570 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks PRO-G + TDP: 44 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml new file mode 100644 index 00000000..3463a1c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6570 +humanName: Radeon HD 6570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-02-07' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 XTX + TDP: 44 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml new file mode 100644 index 00000000..0eb022bb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6570M-Mac-Edition +humanName: Radeon HD 6570M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2009-10-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Capilano + GPU Variant: Capilano XT + TDP: 30 W + FP32 Compute: 480.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml new file mode 100644 index 00000000..6d810a49 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6570M +humanName: Radeon HD 6570M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + TDP: 30 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml new file mode 100644 index 00000000..de13e8d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6610 +humanName: Radeon HD 6610 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-03-20' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO + TDP: 39 W + FP32 Compute: 520.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml new file mode 100644 index 00000000..a1e41cf3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6610M +humanName: Radeon HD 6610M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LP + TDP: 26 W + FP32 Compute: 360.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml new file mode 100644 index 00000000..5503d724 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6620G-IGP +humanName: Radeon HD 6620G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-12-07' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 227 mm² + GPU: Sumo + TDP: 35 W + FP32 Compute: 355.2 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml new file mode 100644 index 00000000..7ae08a5b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6625M +humanName: Radeon HD 6625M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LP + TDP: 26 W + FP32 Compute: 432.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml new file mode 100644 index 00000000..2774b9ff --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6630M-Mac-Edition +humanName: Radeon HD 6630M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LP + TDP: 26 W + FP32 Compute: 480.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml new file mode 100644 index 00000000..f04df7dd --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6630M +humanName: Radeon HD 6630M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LP + TDP: 26 W + FP32 Compute: 480.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml new file mode 100644 index 00000000..cbe92297 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6650A +humanName: Radeon HD 6650A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-19' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Onega + TDP: 45 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml new file mode 100644 index 00000000..50802341 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6650M +humanName: Radeon HD 6650M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LE + TDP: unknown + FP32 Compute: 576.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml new file mode 100644 index 00000000..6bd91c2b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6670 +humanName: Radeon HD 6670 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-19' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks XT + TDP: 66 W + FP32 Compute: 768.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml new file mode 100644 index 00000000..e5b74f1a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6670A +humanName: Radeon HD 6670A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-19' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks XT + TDP: 45 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml new file mode 100644 index 00000000..d897e15d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6730M +humanName: Radeon HD 6730M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler LE + TDP: 35 W + FP32 Compute: 696.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml new file mode 100644 index 00000000..5a4e458c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6750 +humanName: Radeon HD 6750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-21' + VRAM Frequency: 1150 MHz + VRAM Bandwidth: 73.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 36 + Shader Processor Count: 720 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper LE + TDP: 86 W + FP32 Compute: 1,008 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml new file mode 100644 index 00000000..05026681 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6750M-Mac-Edition +humanName: Radeon HD 6750M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-18' + VRAM Frequency: 794 MHz + VRAM Bandwidth: 50.82 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler PRO + TDP: 35 W + FP32 Compute: 574.1 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml new file mode 100644 index 00000000..7017ca50 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6750M +humanName: Radeon HD 6750M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler PRO + TDP: 35 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml new file mode 100644 index 00000000..14bf249c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6770-Green-Edition +humanName: Radeon HD 6770 Green Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-04-19' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 36 + Shader Processor Count: 720 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper LE + TDP: 86 W + FP32 Compute: 1,008 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml new file mode 100644 index 00000000..a7e83596 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6770 +humanName: Radeon HD 6770 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-21' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Juniper + GPU Variant: Juniper XT + TDP: 108 W + FP32 Compute: 1,360 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml new file mode 100644 index 00000000..dc2e8528 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6770M-Mac-Edition +humanName: Radeon HD 6770M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-28' + VRAM Frequency: 794 MHz + VRAM Bandwidth: 50.82 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT Mac + TDP: 35 W + FP32 Compute: 648.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml new file mode 100644 index 00000000..4b68593e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6770M +humanName: Radeon HD 6770M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT + TDP: 35 W + FP32 Compute: 696.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml new file mode 100644 index 00000000..6b02ff1f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6790 +humanName: Radeon HD 6790 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-04-04' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts LE + TDP: 150 W + FP32 Compute: 1,344 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml new file mode 100644 index 00000000..0d1e0b3b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6830M +humanName: Radeon HD 6830M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Granville + GPU Variant: Granville LP + TDP: 39 W + FP32 Compute: 920.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml new file mode 100644 index 00000000..e71c84c3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-6850-1440SP-Edition +humanName: Radeon HD 6850 1440SP Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-08-21' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 72 + Shader Processor Count: 1440 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress PRO + TDP: 151 W + FP32 Compute: 2.088 TFLOPS + FP64 Compute: 417.6 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml new file mode 100644 index 00000000..e967cc8c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6850-X2 +humanName: Radeon HD 6850 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-09-19' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts PRO + TDP: 254 W + FP32 Compute: 1.536 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Power Connectors: 2x 8-pin diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml new file mode 100644 index 00000000..83923c54 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6850 +humanName: Radeon HD 6850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-10-21' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 128.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts PRO + TDP: 127 W + FP32 Compute: 1,488 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 1x 6-pin + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml new file mode 100644 index 00000000..accf7914 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-6850M +humanName: Radeon HD 6850M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Granville + GPU Variant: Granville PRO + TDP: 50 W + FP32 Compute: 1,080 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml new file mode 100644 index 00000000..30a7c800 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-6870-1600SP-Edition +humanName: Radeon HD 6870 1600SP Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-01-14' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1600 + Die Size: 334 mm² + GPU: Cypress + GPU Variant: Cypress XT + TDP: 175 W + FP32 Compute: 2.720 TFLOPS + FP64 Compute: 544.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 282 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml new file mode 100644 index 00000000..79ecfabe --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-6870-X2 +humanName: Radeon HD 6870 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-08' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 1120 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts XT + TDP: 300 W + FP32 Compute: 2.016 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 2x 8-pin + Length: 304 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml new file mode 100644 index 00000000..71eb62d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml @@ -0,0 +1,33 @@ +name: Radeon-HD-6870 +humanName: Radeon HD 6870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-10-21' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 1120 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts XT + TDP: 151 W + FP32 Compute: 2.016 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a2x mini-DisplayPort 1.1 + Power Connectors: 2x 6-pin + Length: 247 mm + Width: 111 mm + Height: 36 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml new file mode 100644 index 00000000..8b6aaad4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6870M +humanName: Radeon HD 6870M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Granville + GPU Variant: Granville XT + TDP: 50 W + FP32 Compute: 1,080 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml new file mode 100644 index 00000000..cec6e77b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6950M +humanName: Radeon HD 6950M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb PRO + TDP: 50 W + FP32 Compute: 1,114 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml new file mode 100644 index 00000000..5b10c1b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-6970M-Mac-Edition +humanName: Radeon HD 6970M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-08-25' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb XT + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml new file mode 100644 index 00000000..a970514a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6970M-Rebrand +humanName: Radeon HD 6970M Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway PRO + TDP: 75 W + FP32 Compute: 1,280 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml new file mode 100644 index 00000000..eaac8605 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-6970M-X2 +humanName: Radeon HD 6970M X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb XT + TDP: 150 W + FP32 Compute: 1,306 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml new file mode 100644 index 00000000..826d3967 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-6970M +humanName: Radeon HD 6970M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 48 + Shader Processor Count: 960 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb XT + TDP: 75 W + FP32 Compute: 1,306 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml new file mode 100644 index 00000000..dbf9644d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-6990M-Rebrand +humanName: Radeon HD 6990M Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-12' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 166 mm² + GPU: Broadway + GPU Variant: Broadway XT + TDP: 100 W + FP32 Compute: 1,120 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml new file mode 100644 index 00000000..ceea92bb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-6990M +humanName: Radeon HD 6990M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-07-12' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 1120 + Die Size: 212 mm² + GPU: Blackcomb + GPU Variant: Blackcomb XTX + TDP: 100 W + FP32 Compute: 1.602 TFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml new file mode 100644 index 00000000..4fbe78ee --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7290-IGP +humanName: Radeon HD 7290 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 18 W + FP32 Compute: 44.16 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml new file mode 100644 index 00000000..22072d46 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7310-IGP +humanName: Radeon HD 7310 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 18 W + FP32 Compute: 80.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml new file mode 100644 index 00000000..443efe80 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7330M +humanName: Radeon HD 7330M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson LP S3 + TDP: 5 W + FP32 Compute: 104.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml new file mode 100644 index 00000000..89d26603 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7340-IGP +humanName: Radeon HD 7340 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 75 mm² + GPU: Loveland + TDP: 18 W + FP32 Compute: 83.68 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml new file mode 100644 index 00000000..e53d3771 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-7350-OEM-PCI +humanName: Radeon HD 7350 OEM PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml new file mode 100644 index 00000000..7d0ecbb0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-7350-OEM +humanName: Radeon HD 7350 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml new file mode 100644 index 00000000..7f495b64 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7350M +humanName: Radeon HD 7350M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson PRO M2 + TDP: 7 W + FP32 Compute: 104.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml new file mode 100644 index 00000000..3d74df36 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7370M +humanName: Radeon HD 7370M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Robson + GPU Variant: Robson XT M2 + TDP: 11 W + FP32 Compute: 120.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml new file mode 100644 index 00000000..c125e48c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7410M +humanName: Radeon HD 7410M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour LP S3 + TDP: unknown + FP32 Compute: 153.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml new file mode 100644 index 00000000..81672f0f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7430M +humanName: Radeon HD 7430M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour PRO S3 + TDP: 7 W + FP32 Compute: 192.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml new file mode 100644 index 00000000..7ab6a7e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-7450-OEM +humanName: Radeon HD 7450 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 533 MHz + VRAM Bandwidth: 8.528 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caimour + TDP: 18 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml new file mode 100644 index 00000000..3dafba71 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7450A +humanName: Radeon HD 7450A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + TDP: 25 W + FP32 Compute: 200.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml new file mode 100644 index 00000000..64fb539e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7450M +humanName: Radeon HD 7450M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XT M2 + TDP: 7 W + FP32 Compute: 240.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml new file mode 100644 index 00000000..fd482e6f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-7470-OEM +humanName: Radeon HD 7470 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Khalidster + TDP: 27 W + FP32 Compute: 240.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml new file mode 100644 index 00000000..268b661e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7470A +humanName: Radeon HD 7470A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + TDP: 25 W + FP32 Compute: 200.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml new file mode 100644 index 00000000..c03bfc2e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7470M +humanName: Radeon HD 7470M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + GPU Base Frequency: 750 MHz + GPU Boost Frequency: 800 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XTX M2 + TDP: 25 W + FP32 Compute: 256.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml new file mode 100644 index 00000000..791bb98d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7490M +humanName: Radeon HD 7490M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 30.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Seymour + GPU Variant: Seymour XTX M2 + TDP: 9 W + FP32 Compute: 256.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml new file mode 100644 index 00000000..d6876633 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-7510-OEM +humanName: Radeon HD 7510 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-02-01' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks LE + TDP: 39 W + FP32 Compute: 416.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml new file mode 100644 index 00000000..34850b14 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7510M +humanName: Radeon HD 7510M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 LE + TDP: 11 W + FP32 Compute: 360.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml new file mode 100644 index 00000000..74664b6e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7530M +humanName: Radeon HD 7530M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 LP + TDP: 11 W + FP32 Compute: 360.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml new file mode 100644 index 00000000..5f7ddab0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7550M +humanName: Radeon HD 7550M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + GPU Base Frequency: 450 MHz + GPU Boost Frequency: 550 MHz + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 LP + TDP: 14 W + FP32 Compute: 528.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml new file mode 100644 index 00000000..5f6096d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-7570-OEM +humanName: Radeon HD 7570 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-03-20' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 104 mm² + GPU: Redwood + GPU Variant: Redwood PRO + TDP: 39 W + FP32 Compute: 520.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 165 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml new file mode 100644 index 00000000..b4e25895 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-7570 +humanName: Radeon HD 7570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks PRO-L + TDP: 60 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml new file mode 100644 index 00000000..eccfffc3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7570M +humanName: Radeon HD 7570M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 PRO + TDP: 13 W + FP32 Compute: 480.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml new file mode 100644 index 00000000..de8e4a3f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7590M +humanName: Radeon HD 7590M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 XT + TDP: 18 W + FP32 Compute: 576.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml new file mode 100644 index 00000000..35a26bd2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7610M +humanName: Radeon HD 7610M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 20 + Shader Processor Count: 400 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler PX4 M2 LE + TDP: 20 W + FP32 Compute: 400.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml new file mode 100644 index 00000000..56240080 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7630M +humanName: Radeon HD 7630M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 LP + TDP: 20 W + FP32 Compute: 432.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml new file mode 100644 index 00000000..9e988b09 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7650A +humanName: Radeon HD 7650A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Onega + TDP: 33 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml new file mode 100644 index 00000000..9d1b8477 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7650M-Rebrand +humanName: Radeon HD 7650M Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-03-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler PRO + TDP: 20 W + FP32 Compute: 465.6 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml new file mode 100644 index 00000000..c0987572 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7650M +humanName: Radeon HD 7650M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 PRO + TDP: 20 W + FP32 Compute: 480.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml new file mode 100644 index 00000000..801583bb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-7670-OEM +humanName: Radeon HD 7670 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks XT + TDP: 66 W + FP32 Compute: 768.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.1 + - 1x VGA + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml new file mode 100644 index 00000000..e04a7585 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-7670A +humanName: Radeon HD 7670A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-05' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks XT + TDP: 45 W + FP32 Compute: 576.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml new file mode 100644 index 00000000..4f75da0c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7670M-Rebrand +humanName: Radeon HD 7670M Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-07-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT + TDP: 20 W + FP32 Compute: 576.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml new file mode 100644 index 00000000..8d676931 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7670M +humanName: Radeon HD 7670M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-02-17' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 XT + TDP: 20 W + FP32 Compute: 576.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml new file mode 100644 index 00000000..08fbbf51 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7690M-Rebrand +humanName: Radeon HD 7690M Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT + TDP: 20 W + FP32 Compute: 576.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml new file mode 100644 index 00000000..6d8fe638 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7690M-XT-Rebrand +humanName: Radeon HD 7690M XT Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-01-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Whistler + GPU Variant: Whistler XT + TDP: 25 W + FP32 Compute: 696.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml new file mode 100644 index 00000000..5a0f2850 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7690M-XT +humanName: Radeon HD 7690M XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-01-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 XTX + TDP: 25 W + FP32 Compute: 696.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml new file mode 100644 index 00000000..c23bb616 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7690M +humanName: Radeon HD 7690M +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-12-25' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Thames + GPU Variant: Thames M2 XTX + TDP: 20 W + FP32 Compute: 696.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml new file mode 100644 index 00000000..b624d5ef --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-7720-OEM +humanName: Radeon HD 7720 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-03-15' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 134.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 255 mm² + GPU: Barts + GPU Variant: Barts LE + TDP: 150 W + FP32 Compute: 1,344 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.3a1x DisplayPort 1.1 + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml new file mode 100644 index 00000000..d0aab08d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8350-OEM +humanName: Radeon HD 8350 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-01-08' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml new file mode 100644 index 00000000..5b262d9e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-8450-OEM +humanName: Radeon HD 8450 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-01-08' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos PRO-L + TDP: 18 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml new file mode 100644 index 00000000..a94f1405 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-8470-OEM +humanName: Radeon HD 8470 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-01-08' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XT + TDP: 35 W + FP32 Compute: 248.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml new file mode 100644 index 00000000..a0d4c3c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-8490-OEM +humanName: Radeon HD 8490 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-07-23' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XTX + TDP: 35 W + FP32 Compute: 280.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort 1.1 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml new file mode 100644 index 00000000..738274fe --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8510-OEM +humanName: Radeon HD 8510 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-07-23' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks PRO + TDP: 60 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml new file mode 100644 index 00000000..dd6bb085 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-8550-OEM +humanName: Radeon HD 8550 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-10-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks PRO + TDP: 60 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml new file mode 100644 index 00000000..c4e02d47 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-8570-OEM-Rebrand +humanName: Radeon HD 8570 OEM Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-07-23' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 480 + Die Size: 118 mm² + GPU: Turks + GPU Variant: Turks PRO + TDP: 60 W + FP32 Compute: 624.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml new file mode 100644 index 00000000..c985a25f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-220-OEM +humanName: Radeon R5 220 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-12-21' + VRAM Frequency: 533 MHz + VRAM Bandwidth: 8.528 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 59 mm² + GPU: Cedar + GPU Variant: Cedar PRO + TDP: 19 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml new file mode 100644 index 00000000..ee81e214 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-230-OEM +humanName: Radeon R5 230 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-12-21' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos PRO + TDP: 19 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml new file mode 100644 index 00000000..9e3c2188 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-230 +humanName: Radeon R5 230 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2014-04-03' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 10.67 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos PRO + TDP: 19 W + FP32 Compute: 200.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml new file mode 100644 index 00000000..5dbbd704 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-235-OEM +humanName: Radeon R5 235 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-12-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XT + TDP: 35 W + FP32 Compute: 248.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml new file mode 100644 index 00000000..7f2e6a7a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-235X-OEM +humanName: Radeon R5 235X OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-12-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XTX + TDP: 18 W + FP32 Compute: 280.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml new file mode 100644 index 00000000..90a928f7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-310-OEM +humanName: Radeon R5 310 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2015-05-05' + VRAM Frequency: 805 MHz + VRAM Bandwidth: 12.88 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XT + TDP: 35 W + FP32 Compute: 248.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml new file mode 100644 index 00000000..c34b614d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml @@ -0,0 +1,31 @@ +name: Radeon-R5-A220 +humanName: Radeon R5 A220 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2014' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 160 + Die Size: 67 mm² + GPU: Caicos + GPU Variant: Caicos XT + TDP: 35 W + FP32 Compute: 248.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml new file mode 100644 index 00000000..83bc3f68 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml @@ -0,0 +1,27 @@ +name: Wii-U-GPU +humanName: Wii U GPU +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 2 + Lithography: 40 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2012-11-18' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 2 GB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 160 + Die Size: 146 mm² + GPU: Latte + TDP: 33 W + FP32 Compute: 176.0 GFLOPS + Outputs: 1x HDMI 1.4 + Length: 269 mm + Width: 172 mm + Height: 46 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3.yaml b/specs/GPUs-CONSUMER/TeraScale-3.yaml old mode 100755 new mode 100644 index 7526ab57..fe357ba0 --- a/specs/GPUs-CONSUMER/TeraScale-3.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3.yaml @@ -1,10 +1,49 @@ -hidden: true -name: TeraScale-3 +name: TeraScale-3 +humanName: TeraScale 3 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' data: - Architecture: TeraScale 3 - Lithography: 40 nm + Lithography: 14 nm DirectX Support: '11.0' - HLSL Shader Model: '5.0' - OpenGL Support: '4.4' - OpenCL Support: '1.2' - Crossfire Support: CrossfireX + Vulkan Support: 'N/A' + Release Date: '2010-12-14' +sections: + - header: WHOLE RANGE + members: + - FirePro-A300 + - FirePro-A320 + - FirePro-V5900 + - FirePro-V7900 + - FirePro-V7900-SDI + - Radeon-HD-6930 + - Radeon-HD-6950 + - Radeon-HD-6970 + - Radeon-HD-6970-X2 + - Radeon-HD-6990 + - Radeon-HD-7400G-IGP + - Radeon-HD-7420G-IGP + - Radeon-HD-7480D-IGP + - Radeon-HD-7500G-IGP + - Radeon-HD-7520G-IGP + - Radeon-HD-7540D-IGP + - Radeon-HD-7560G-IGP + - Radeon-HD-7600G-IGP + - Radeon-HD-7620G-IGP + - Radeon-HD-7640G-IGP + - Radeon-HD-7660D-IGP + - Radeon-HD-7660G-IGP + - Radeon-HD-8310G-IGP + - Radeon-HD-8350G-IGP + - Radeon-HD-8370D-IGP + - Radeon-HD-8410G-IGP + - Radeon-HD-8450G-IGP + - Radeon-HD-8470D-IGP + - Radeon-HD-8550D-IGP + - Radeon-HD-8550G-IGP + - Radeon-HD-8570D-IGP + - Radeon-HD-8610G-IGP + - Radeon-HD-8650D-IGP + - Radeon-HD-8650G-IGP + - Radeon-HD-7560D-IGP + - Radeon-HD-8510G-IGP diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml new file mode 100644 index 00000000..a3fd2cc5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml @@ -0,0 +1,29 @@ +name: FirePro-A300 +humanName: FirePro A300 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + GPU Base Frequency: 760 MHz + GPU Boost Frequency: 905 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + GPU Variant: A300 + TDP: 65 W + FP32 Compute: 695.0 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml new file mode 100644 index 00000000..5eb964c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml @@ -0,0 +1,29 @@ +name: FirePro-A320 +humanName: FirePro A320 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + GPU Base Frequency: 800 MHz + GPU Boost Frequency: 955 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + GPU Variant: A320 + TDP: 100 W + FP32 Compute: 733.4 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml new file mode 100644 index 00000000..c849ab2b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml @@ -0,0 +1,34 @@ +name: FirePro-V5900 +humanName: FirePro V5900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-24' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman LE WS + TDP: 75 W + FP32 Compute: 614.4 GFLOPS + FP64 Compute: 153.6 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.2 + Power Connectors: None + Length: 229 mm + Width: 112 mm + Height: 19 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml new file mode 100644 index 00000000..f57781b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml @@ -0,0 +1,33 @@ +name: FirePro-V7900-SDI +humanName: FirePro V7900 SDI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-24' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman PRO GL + TDP: 150 W + FP32 Compute: 1.856 TFLOPS + FP64 Compute: 464.0 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: + - 4x DisplayPort 1.2 + - 1x SDI + Power Connectors: 1x 6-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml new file mode 100644 index 00000000..51158df0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml @@ -0,0 +1,31 @@ +name: FirePro-V7900 +humanName: FirePro V7900 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-05-24' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman PRO GL + TDP: 150 W + FP32 Compute: 1.856 TFLOPS + FP64 Compute: 464.0 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: 4x DisplayPort 1.2 + Power Connectors: 1x 6-pin + Length: 279 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml new file mode 100644 index 00000000..241579b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-6930 +humanName: Radeon HD 6930 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-12-01' + VRAM Frequency: 1200 MHz + VRAM Bandwidth: 153.6 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman CE + TDP: 186 W + FP32 Compute: 1.920 TFLOPS + FP64 Compute: 480.0 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 220 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml new file mode 100644 index 00000000..6bda662a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-6950 +humanName: Radeon HD 6950 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-12-14' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman PRO + TDP: 200 W + FP32 Compute: 2.253 TFLOPS + FP64 Compute: 563.2 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 2x 6-pin + Length: 286 mm + Width: 126 mm + Height: 42 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml new file mode 100644 index 00000000..58ae5df7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-6970-X2 +humanName: Radeon HD 6970 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: 'Never Released' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 389 mm² + GPU: Antilles + GPU Variant: Antilles XT + TDP: 375 W + FP32 Compute: 2.703 TFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 3x 8-pin diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml new file mode 100644 index 00000000..9dce37d8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-6970 +humanName: Radeon HD 6970 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2010-12-14' + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 176.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 389 mm² + GPU: Cayman + GPU Variant: Cayman XT + TDP: 250 W + FP32 Compute: 2.703 TFLOPS + FP64 Compute: 675.8 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI 1.4a2x mini-DisplayPort 1.2 + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 286 mm + Width: 126 mm + Height: 42 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml new file mode 100644 index 00000000..debd889e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-6990 +humanName: Radeon HD 6990 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2011-03-08' + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 389 mm² + GPU: Antilles + GPU Variant: Antilles XT + TDP: 375 W + FP32 Compute: 2.550 TFLOPS + FP64 Compute: 637.4 GFLOPS (1:4) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 4x mini-DisplayPort 1.2 + Power Connectors: 2x 8-pin + Length: 310 mm + Width: 115 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml new file mode 100644 index 00000000..6d97fd03 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7400G-IGP +humanName: Radeon HD 7400G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-02' + GPU Base Frequency: 327 MHz + GPU Boost Frequency: 424 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 17 W + FP32 Compute: 162.8 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml new file mode 100644 index 00000000..58b77ccf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7420G-IGP +humanName: Radeon HD 7420G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + GPU Base Frequency: 480 MHz + GPU Boost Frequency: 655 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 246 mm² + GPU: Scrapper Lite + TDP: 35 W + FP32 Compute: 167.7 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml new file mode 100644 index 00000000..bda55294 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7480D-IGP +humanName: Radeon HD 7480D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-02' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 246 mm² + GPU: Scrapper Lite + TDP: 65 W + FP32 Compute: 184.3 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml new file mode 100644 index 00000000..0e1eea44 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7500G-IGP +humanName: Radeon HD 7500G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-05-15' + GPU Base Frequency: 327 MHz + GPU Boost Frequency: 424 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 17 W + FP32 Compute: 217.1 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml new file mode 100644 index 00000000..a445dd3f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7520G-IGP +humanName: Radeon HD 7520G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-06-06' + GPU Base Frequency: 496 MHz + GPU Boost Frequency: 686 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 35 W + FP32 Compute: 263.4 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml new file mode 100644 index 00000000..d7097cc2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7540D-IGP +humanName: Radeon HD 7540D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-02' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 65 W + FP32 Compute: 291.8 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml new file mode 100644 index 00000000..4a321e61 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7560D-IGP +humanName: Radeon HD 7560D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-02' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 65 W + FP32 Compute: 389.1 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml new file mode 100644 index 00000000..8ed60fe0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7560G-IGP +humanName: Radeon HD 7560G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-05-15' + GPU Base Frequency: 496 MHz + GPU Boost Frequency: 760 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 35 W + FP32 Compute: 389.1 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml new file mode 100644 index 00000000..202d4aab --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7600G-IGP +humanName: Radeon HD 7600G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-09-01' + GPU Base Frequency: 320 MHz + GPU Boost Frequency: 424 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 19 W + FP32 Compute: 325.6 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml new file mode 100644 index 00000000..5ca5a666 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7620G-IGP +humanName: Radeon HD 7620G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-05-15' + GPU Base Frequency: 360 MHz + GPU Boost Frequency: 497 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 25 W + FP32 Compute: 381.7 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml new file mode 100644 index 00000000..49539a6b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-7640G-IGP +humanName: Radeon HD 7640G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-05-15' + GPU Base Frequency: 496 MHz + GPU Boost Frequency: 655 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 35 W + FP32 Compute: 335.4 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml new file mode 100644 index 00000000..812879d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7660D-IGP +humanName: Radeon HD 7660D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-10-02' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 100 W + FP32 Compute: 583.7 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml new file mode 100644 index 00000000..2040d2cb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-7660G-IGP +humanName: Radeon HD 7660G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2012-05-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 35 W + FP32 Compute: 526.8 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml new file mode 100644 index 00000000..494e5779 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8310G-IGP +humanName: Radeon HD 8310G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: 'Jul 2013' + GPU Base Frequency: 424 MHz + GPU Boost Frequency: 554 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 246 mm² + GPU: Scrapper Lite + TDP: 20 W + FP32 Compute: 141.8 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml new file mode 100644 index 00000000..f0546042 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8350G-IGP +humanName: Radeon HD 8350G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-03-12' + GPU Base Frequency: 514 MHz + GPU Boost Frequency: 720 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 246 mm² + GPU: Scrapper Lite + TDP: 35 W + FP32 Compute: 184.3 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml new file mode 100644 index 00000000..98275568 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-8370D-IGP +humanName: Radeon HD 8370D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: 'Jul 2013' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 128 + Die Size: 246 mm² + GPU: Scrapper Lite + TDP: 65 W + FP32 Compute: 194.6 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml new file mode 100644 index 00000000..c6defe4e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8410G-IGP +humanName: Radeon HD 8410G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 450 MHz + GPU Boost Frequency: 600 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 35 W + FP32 Compute: 230.4 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml new file mode 100644 index 00000000..3b4c8db0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8450G-IGP +humanName: Radeon HD 8450G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 533 MHz + GPU Boost Frequency: 720 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 35 W + FP32 Compute: 276.5 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml new file mode 100644 index 00000000..10f37498 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-8470D-IGP +humanName: Radeon HD 8470D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-07-29' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 12 + Shader Processor Count: 192 + Die Size: 246 mm² + GPU: Scrapper + TDP: 65 W + FP32 Compute: 307.2 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml new file mode 100644 index 00000000..bccb5067 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-8510G-IGP +humanName: Radeon HD 8510G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 35 W + FP32 Compute: 425.5 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml new file mode 100644 index 00000000..27c04192 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8550D-IGP +humanName: Radeon HD 8550D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 720 MHz + GPU Boost Frequency: 844 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Scrapper + TDP: 65 W + FP32 Compute: 432.1 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml new file mode 100644 index 00000000..84458082 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8550G-IGP +humanName: Radeon HD 8550G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 515 MHz + GPU Boost Frequency: 660 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 35 W + FP32 Compute: 337.9 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml new file mode 100644 index 00000000..3bf62952 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-8570D-IGP +humanName: Radeon HD 8570D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-07-10' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 256 + Die Size: 246 mm² + GPU: Devastator Lite + TDP: 65 W + FP32 Compute: 409.6 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml new file mode 100644 index 00000000..383eb365 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8610G-IGP +humanName: Radeon HD 8610G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 533 MHz + GPU Boost Frequency: 626 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 35 W + FP32 Compute: 480.8 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml new file mode 100644 index 00000000..a972d4f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8650D-IGP +humanName: Radeon HD 8650D IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-12-28' + GPU Base Frequency: 720 MHz + GPU Boost Frequency: 844 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Scrapper + TDP: 65 W + FP32 Compute: 648.2 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml new file mode 100644 index 00000000..4520d6a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-8650G-IGP +humanName: Radeon HD 8650G IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale 3 + Lithography: 32 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.4' + OpenCL Support: '1.2' + Release Date: '2013-05-23' + GPU Base Frequency: 533 MHz + GPU Boost Frequency: 720 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 246 mm² + GPU: Devastator + TDP: 35 W + FP32 Compute: 553.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale.yaml b/specs/GPUs-CONSUMER/TeraScale.yaml new file mode 100644 index 00000000..354faaa8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale.yaml @@ -0,0 +1,180 @@ +name: TeraScale +humanName: TeraScale +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2005-11-22' +sections: + - header: WHOLE RANGE + members: + - FireGL-V3600 + - FireGL-V5600 + - FireGL-V7600 + - FireGL-V7700 + - FireGL-V8600 + - FireGL-V8650 + - FireMV-2260 + - FireMV-2260-PCIe-x1 + - FirePro-2260-PCI + - FirePro-2450-Multi-View + - FirePro-2450-Multi-View-PCIe-x1 + - FirePro-M5725 + - FirePro-M7740 + - FirePro-RG220 + - FirePro-RG220A + - FirePro-V3700 + - FirePro-V3750 + - FirePro-V5700 + - FirePro-V7750 + - FirePro-V7760 + - FirePro-V7770 + - FirePro-V8700 + - FirePro-V8700-Duo + - FirePro-V8750 + - FireStream-9170 + - FireStream-9250 + - FireStream-9270 + - Mobility-FireGL-V5600 + - Mobility-FireGL-V5700 + - Mobility-FireGL-V5725 + - Mobility-Radeon-HD-530v + - Mobility-Radeon-HD-540v + - Mobility-Radeon-HD-545v + - Mobility-Radeon-HD-560v + - Mobility-Radeon-HD-565v + - Mobility-Radeon-HD-2400 + - Mobility-Radeon-HD-2400-XT + - Mobility-Radeon-HD-2400-XT-Mac-Edition + - Mobility-Radeon-HD-2600 + - Mobility-Radeon-HD-2600-XT + - Mobility-Radeon-HD-2600-XT-Mac-Edition + - Mobility-Radeon-HD-2700 + - Mobility-Radeon-HD-3410 + - Mobility-Radeon-HD-3430 + - Mobility-Radeon-HD-3450 + - Mobility-Radeon-HD-3470 + - Mobility-Radeon-HD-3650 + - Mobility-Radeon-HD-3670 + - Mobility-Radeon-HD-3850 + - Mobility-Radeon-HD-3850-X2 + - Mobility-Radeon-HD-3870 + - Mobility-Radeon-HD-3870-X2 + - Mobility-Radeon-HD-4100-IGP + - Mobility-Radeon-HD-4200-IGP + - Mobility-Radeon-HD-4225-IGP + - Mobility-Radeon-HD-4250-IGP + - Mobility-Radeon-HD-4270-IGP + - Mobility-Radeon-HD-4330 + - Mobility-Radeon-HD-4350 + - Mobility-Radeon-HD-4530 + - Mobility-Radeon-HD-4550 + - Mobility-Radeon-HD-4570 + - Mobility-Radeon-HD-4650 + - Mobility-Radeon-HD-4670 + - Mobility-Radeon-HD-4670-Mac-Edition + - Mobility-Radeon-HD-4830 + - Mobility-Radeon-HD-4850 + - Mobility-Radeon-HD-4850-Mac-Edition + - Mobility-Radeon-HD-4850-X2 + - Mobility-Radeon-HD-4860 + - Mobility-Radeon-HD-4870 + - Mobility-Radeon-HD-4870-X2 + - Mobility-Radeon-HD-5145 + - Mobility-Radeon-HD-5165 + - Mobility-Radeon-HD-550v + - Radeon-3000-IGP + - Radeon-3100-IGP + - Radeon-3100-Mobile-IGP + - Radeon-E2400 + - Radeon-E4690-MXM + - Radeon-HD-2400 + - Radeon-HD-2400-PRO + - Radeon-HD-2400-PRO-AGP + - Radeon-HD-2400-PRO-PCI + - Radeon-HD-2400-XT + - Radeon-HD-2600-PRO + - Radeon-HD-2600-PRO-AGP + - Radeon-HD-2600-XT + - Radeon-HD-2600-XT-AGP + - Radeon-HD-2600-XT-Mac-Edition + - Radeon-E4690-PCIe + - Radeon-HD-2600-XT-X2 + - Radeon-HD-2900-GT + - Radeon-HD-2900-PRO + - Radeon-HD-2900-XT + - Radeon-HD-2900-XTX + - Radeon-HD-2950-PRO + - Radeon-HD-2950-XTX + - Radeon-HD-3200-IGP + - Radeon-HD-3200-Mobile-IGP + - Radeon-HD-3300-IGP + - Radeon-HD-3410 + - Radeon-HD-3450 + - Radeon-HD-3450-AGP + - Radeon-HD-3450-PCI + - Radeon-HD-3450-X2 + - Radeon-HD-3470 + - Radeon-HD-3550 + - Radeon-HD-3570 + - Radeon-HD-3610 + - Radeon-HD-3650 + - Radeon-HD-3650-AGP + - Radeon-HD-3690 + - Radeon-HD-3730 + - Radeon-HD-3750 + - Radeon-HD-3830 + - Radeon-HD-3850 + - Radeon-HD-3850-AGP + - Radeon-HD-3850-X2 + - Radeon-HD-3850-X3 + - Radeon-HD-3870 + - Radeon-HD-3870-AGP + - Radeon-HD-3870-Mac-Edition + - Radeon-HD-3870-X2 + - Radeon-HD-4200-IGP + - Radeon-HD-4250 + - Radeon-HD-4250-IGP + - Radeon-HD-4290-IGP + - Radeon-HD-4350 + - Radeon-HD-4350-AGP + - Radeon-HD-4350-PCI + - Radeon-HD-4350-PCIe-x1 + - Radeon-HD-4450 + - Radeon-HD-4520 + - Radeon-HD-4550 + - Radeon-HD-4570 + - Radeon-HD-4570-Rebrand + - Radeon-HD-4580 + - Radeon-HD-4650 + - Radeon-HD-4650-AGP + - Radeon-HD-4670 + - Radeon-HD-4670-AGP + - Radeon-HD-4670-X2 + - Radeon-HD-4700 + - Radeon-HD-4710 + - Radeon-HD-4720 + - Radeon-HD-4730 + - Radeon-HD-4730-OEM + - Radeon-HD-4750 + - Radeon-HD-4770 + - Radeon-HD-4810 + - Radeon-HD-4830 + - Radeon-HD-4850 + - Radeon-HD-4850-X2 + - Radeon-HD-4855 + - Radeon-HD-4860 + - Radeon-HD-4870 + - Radeon-HD-4870-Mac-Edition + - Radeon-HD-4870-X2 + - Radeon-HD-4890 + - Radeon-HD-2350-PRO + - Radeon-Xpress-2100-IGP + - Xbox-360-E-GPU + - Xbox-360-GPU-65nm + - Xbox-360-GPU-80nm + - Xbox-360-GPU-90nm + - Xbox-360-S-GPU diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml new file mode 100644 index 00000000..2a6cae3e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml @@ -0,0 +1,28 @@ +name: FireGL-V3600 +humanName: FireGL V3600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 GL + TDP: 73 W + FP32 Compute: 144.0 GFLOPS + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml new file mode 100644 index 00000000..873f1f4d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml @@ -0,0 +1,28 @@ +name: FireGL-V5600 +humanName: FireGL V5600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-08-06' + VRAM Frequency: 1100 MHz + VRAM Bandwidth: 35.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 GL + TDP: 89 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml new file mode 100644 index 00000000..86a59113 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml @@ -0,0 +1,32 @@ +name: FireGL-V7600 +humanName: FireGL V7600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-08-06' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 GL + TDP: 127 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 8-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml new file mode 100644 index 00000000..20bcdfbb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml @@ -0,0 +1,33 @@ +name: FireGL-V7700 +humanName: FireGL V7700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-19' + VRAM Frequency: 1126 MHz + VRAM Bandwidth: 72.06 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 GL + TDP: unknown + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml new file mode 100644 index 00000000..860a04f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml @@ -0,0 +1,32 @@ +name: FireGL-V8600 +humanName: FireGL V8600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 868 MHz + VRAM Bandwidth: 111.1 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR4 + VRAM Bus Width: 512 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 V8600 + TDP: 159 W + FP32 Compute: 440.3 GFLOPS + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml new file mode 100644 index 00000000..7f5859b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml @@ -0,0 +1,32 @@ +name: FireGL-V8650 +humanName: FireGL V8650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-08-06' + VRAM Frequency: 868 MHz + VRAM Bandwidth: 111.1 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR4 + VRAM Bus Width: 512 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 V8650 + TDP: unknown + FP32 Compute: 440.3 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml new file mode 100644 index 00000000..e81651cd --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml @@ -0,0 +1,29 @@ +name: FireMV-2260-PCIe-x1 +humanName: FireMV 2260 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + TDP: 15 W + FP32 Compute: 40.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml new file mode 100644 index 00000000..31997524 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml @@ -0,0 +1,29 @@ +name: FireMV-2260 +humanName: FireMV 2260 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + TDP: 15 W + FP32 Compute: 40.00 GFLOPS + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml new file mode 100644 index 00000000..27fe9d4b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml @@ -0,0 +1,29 @@ +name: FirePro-2260-PCI +humanName: FirePro 2260 PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + TDP: 15 W + FP32 Compute: 40.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml new file mode 100644 index 00000000..5480a126 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml @@ -0,0 +1,30 @@ +name: FirePro-2450-Multi-View-PCIe-x1 +humanName: FirePro 2450 Multi-View PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RC620 PRO + TDP: 32 W + FP32 Compute: 32.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x VHDCI + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml new file mode 100644 index 00000000..47b5735e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml @@ -0,0 +1,30 @@ +name: FirePro-2450-Multi-View +humanName: FirePro 2450 Multi-View +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 PRO + TDP: 32 W + FP32 Compute: 32.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x VHDCI + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml new file mode 100644 index 00000000..ea63f7d7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml @@ -0,0 +1,26 @@ +name: FirePro-M5725 +humanName: FirePro M5725 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 XT GL + TDP: 35 W + FP32 Compute: 432.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml new file mode 100644 index 00000000..8e69796e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml @@ -0,0 +1,29 @@ +name: FirePro-M7740 +humanName: FirePro M7740 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-08-04' + VRAM Frequency: 846 MHz + VRAM Bandwidth: 54.14 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 137 mm² + GPU: M97 + GPU Variant: M97 XT-GL + TDP: 60 W + FP32 Compute: 832.0 GFLOPS + FP64 Compute: 166.4 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml new file mode 100644 index 00000000..3301451b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml @@ -0,0 +1,29 @@ +name: FirePro-RG220 +humanName: FirePro RG220 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV711 + TDP: 35 W + FP32 Compute: 80.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml new file mode 100644 index 00000000..f3a20a50 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml @@ -0,0 +1,29 @@ +name: FirePro-RG220A +humanName: FirePro RG220A +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-04' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV711 + TDP: 35 W + FP32 Compute: 80.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml new file mode 100644 index 00000000..daf03cd0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml @@ -0,0 +1,30 @@ +name: FirePro-V3700 +humanName: FirePro V3700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-08-08' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 15.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 GL + TDP: 32 W + FP32 Compute: 64.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml new file mode 100644 index 00000000..e1b03416 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml @@ -0,0 +1,32 @@ +name: FirePro-V3750 +humanName: FirePro V3750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-11' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 GL V3750 + TDP: 48 W + FP32 Compute: 352.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml new file mode 100644 index 00000000..7b323ab2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml @@ -0,0 +1,32 @@ +name: FirePro-V5700 +humanName: FirePro V5700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-08' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 GL V5700 + TDP: 56 W + FP32 Compute: 448.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml new file mode 100644 index 00000000..772b85d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml @@ -0,0 +1,32 @@ +name: FirePro-V7750 +humanName: FirePro V7750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-27' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 GL V7750 + TDP: 76 W + FP32 Compute: 512.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.0 + Power Connectors: 1x 6-pin + Length: 234 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml new file mode 100644 index 00000000..f1897d4b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml @@ -0,0 +1,30 @@ +name: FirePro-V7760 +humanName: FirePro V7760 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2012' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 76 W + FP32 Compute: 1,200 GFLOPS + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + Length: 234 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml new file mode 100644 index 00000000..b6fd7d68 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml @@ -0,0 +1,30 @@ +name: FirePro-V7770 +humanName: FirePro V7770 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2012' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 33.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR4 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 76 W + FP32 Compute: 1,000 GFLOPS + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + Length: 234 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml new file mode 100644 index 00000000..c620d106 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml @@ -0,0 +1,30 @@ +name: FirePro-V8700-Duo +humanName: FirePro V8700 Duo +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: 'Never Released' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 108.8 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 151 W + FP32 Compute: 1,200 GFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 6-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml new file mode 100644 index 00000000..35653d57 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml @@ -0,0 +1,34 @@ +name: FirePro-V8700 +humanName: FirePro V8700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-11' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 108.8 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 151 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.0 + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml new file mode 100644 index 00000000..26dba68f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml @@ -0,0 +1,34 @@ +name: FirePro-V8750 +humanName: FirePro V8750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-28' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 151 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort 1.0 + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml new file mode 100644 index 00000000..4c4690c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml @@ -0,0 +1,32 @@ +name: FireStream-9170 +humanName: FireStream 9170 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-08' + VRAM Frequency: 802 MHz + VRAM Bandwidth: 51.33 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + TDP: 105 W + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml new file mode 100644 index 00000000..ac4840f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml @@ -0,0 +1,31 @@ +name: FireStream-9250 +humanName: FireStream 9250 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-16' + VRAM Frequency: 993 MHz + VRAM Bandwidth: 63.55 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 PRO + TDP: 150 W + FP32 Compute: 1,000 GFLOPS + FP64 Compute: 200.0 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + Length: 234 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml new file mode 100644 index 00000000..980c58b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml @@ -0,0 +1,32 @@ +name: FireStream-9270 +humanName: FireStream 9270 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-13' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 160 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: 1x DVI + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml new file mode 100644 index 00000000..7f44d56a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml @@ -0,0 +1,26 @@ +name: Mobility-FireGL-V5600 +humanName: Mobility FireGL V5600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: M76 + GPU Variant: M76 GL + TDP: unknown + FP32 Compute: 120.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml new file mode 100644 index 00000000..58673d70 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml @@ -0,0 +1,26 @@ +name: Mobility-FireGL-V5700 +humanName: Mobility FireGL V5700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-07' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: M86 + GPU Variant: M86-M GL + TDP: unknown + FP32 Compute: 144.0 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml new file mode 100644 index 00000000..c14603bc --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml @@ -0,0 +1,26 @@ +name: Mobility-FireGL-V5725 +humanName: Mobility FireGL V5725 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: M86 + GPU Variant: M86-ME XT GL + TDP: unknown + FP32 Compute: 163.2 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml new file mode 100644 index 00000000..47fbb6e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-2400-XT-Mac-Edition +humanName: Mobility Radeon HD 2400 XT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: M74 + GPU Variant: M74-M + TDP: unknown + FP32 Compute: 52.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml new file mode 100644 index 00000000..be5b2e4c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-2400-XT +humanName: Mobility Radeon HD 2400 XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: M74 + GPU Variant: M74-M + TDP: unknown + FP32 Compute: 48.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml new file mode 100644 index 00000000..afcdb084 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-2400 +humanName: Mobility Radeon HD 2400 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: M72 + GPU Variant: M72-S + TDP: unknown + FP32 Compute: 36.00 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml new file mode 100644 index 00000000..c36197e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-2600-XT-Mac-Edition +humanName: Mobility Radeon HD 2600 XT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-07-26' + VRAM Frequency: 685 MHz + VRAM Bandwidth: 21.92 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: M76 + GPU Variant: M76 XT-M + TDP: unknown + FP32 Compute: 144.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml new file mode 100644 index 00000000..e7e71558 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-2600-XT +humanName: Mobility Radeon HD 2600 XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 24.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: M76 + GPU Variant: M76 XT-M + TDP: unknown + FP32 Compute: 163.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml new file mode 100644 index 00000000..e78b78cf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-2600 +humanName: Mobility Radeon HD 2600 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: M76 + GPU Variant: M76-M + TDP: unknown + FP32 Compute: 120.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml new file mode 100644 index 00000000..dbf812e8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-2700 +humanName: Mobility Radeon HD 2700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-12-12' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: M76 + GPU Variant: M76 XT-M + TDP: 35 W + FP32 Compute: 156.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml new file mode 100644 index 00000000..d79e2086 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-3410 +humanName: Mobility Radeon HD 3410 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-07-25' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: M82 + TDP: 7 W + FP32 Compute: 32.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml new file mode 100644 index 00000000..eb66cdca --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3430 +humanName: Mobility Radeon HD 3430 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-07-25' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: M82 + GPU Variant: M82-SE + TDP: 12 W + FP32 Compute: 36.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml new file mode 100644 index 00000000..8b839cfa --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3450 +humanName: Mobility Radeon HD 3450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-07' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: M82 + GPU Variant: M82-SCE XT + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml new file mode 100644 index 00000000..1edd0820 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3470 +humanName: Mobility Radeon HD 3470 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-07' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: M82 + GPU Variant: M82-ME XT + TDP: unknown + FP32 Compute: 54.40 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml new file mode 100644 index 00000000..ecdaa328 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3650 +humanName: Mobility Radeon HD 3650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-07' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: M86 + GPU Variant: M86-ME + TDP: unknown + FP32 Compute: 120.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml new file mode 100644 index 00000000..9b3e550f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3670 +humanName: Mobility Radeon HD 3670 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: M86 + GPU Variant: M86-ME XT + TDP: 30 W + FP32 Compute: 163.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml new file mode 100644 index 00000000..601e8e04 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-3850-X2 +humanName: Mobility Radeon HD 3850 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-04' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: M88 + TDP: 70 W + FP32 Compute: 371.2 GFLOPS + FP64 Compute: 74.24 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml new file mode 100644 index 00000000..2ea4b082 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3850 +humanName: Mobility Radeon HD 3850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-04' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: M88 + GPU Variant: M88-L + TDP: 35 W + FP32 Compute: 371.2 GFLOPS + FP64 Compute: 74.24 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml new file mode 100644 index 00000000..015b5e72 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3870-X2 +humanName: Mobility Radeon HD 3870 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-09-01' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: M88 + GPU Variant: M88 XT-L + TDP: 110 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 84.48 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml new file mode 100644 index 00000000..1327501f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-3870 +humanName: Mobility Radeon HD 3870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-04' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: M88 + GPU Variant: M88-LE + TDP: 55 W + FP32 Compute: 422.4 GFLOPS + FP64 Compute: 84.48 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml new file mode 100644 index 00000000..d33391f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4100-IGP +humanName: Mobility Radeon HD 4100 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2009-11-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + GPU Variant: RS880M + TDP: unknown + FP32 Compute: 32.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml new file mode 100644 index 00000000..5ed27149 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4200-IGP +humanName: Mobility Radeon HD 4200 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2009-09-10' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + GPU Variant: RS880M + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml new file mode 100644 index 00000000..5bca9143 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4225-IGP +humanName: Mobility Radeon HD 4225 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2010-05-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + GPU Variant: RS880M + TDP: 9 W + FP32 Compute: 30.40 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml new file mode 100644 index 00000000..55c9e0f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml @@ -0,0 +1,30 @@ +name: Mobility-Radeon-HD-4250-IGP +humanName: Mobility Radeon HD 4250 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2010-05-01' + GPU Base Frequency: 500 MHz + GPU Boost Frequency: 560 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + GPU Variant: RS880M + TDP: unknown + FP32 Compute: 44.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml new file mode 100644 index 00000000..dc5dc3ec --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4270-IGP +humanName: Mobility Radeon HD 4270 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2010-05-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + GPU Variant: RS880M + TDP: unknown + FP32 Compute: 47.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml new file mode 100644 index 00000000..6fbd39c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4330 +humanName: Mobility Radeon HD 4330 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M92 + GPU Variant: M92-M + TDP: unknown + FP32 Compute: 72.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml new file mode 100644 index 00000000..c2fd3575 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4350 +humanName: Mobility Radeon HD 4350 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M93 + TDP: unknown + FP32 Compute: 72.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml new file mode 100644 index 00000000..f0c90bb7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4530 +humanName: Mobility Radeon HD 4530 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M92 + GPU Variant: M92-M2 A11 + TDP: unknown + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml new file mode 100644 index 00000000..747eab7b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4550 +humanName: Mobility Radeon HD 4550 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M93 + TDP: unknown + FP32 Compute: 88.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml new file mode 100644 index 00000000..659d52a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4570 +humanName: Mobility Radeon HD 4570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M92 + GPU Variant: M92-M2 XT A11 + TDP: unknown + FP32 Compute: 108.8 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml new file mode 100644 index 00000000..b875345b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4650 +humanName: Mobility Radeon HD 4650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 M2 + TDP: 35 W + FP32 Compute: 352.0 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml new file mode 100644 index 00000000..aee27c49 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4670-Mac-Edition +humanName: Mobility Radeon HD 4670 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-09-16' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 XT + TDP: 35 W + FP32 Compute: 435.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml new file mode 100644 index 00000000..ba480df3 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-4670 +humanName: Mobility Radeon HD 4670 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 XT + TDP: 35 W + FP32 Compute: 432.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml new file mode 100644 index 00000000..0d2184c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4830 +humanName: Mobility Radeon HD 4830 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 137 mm² + GPU: M97 + GPU Variant: M97 M2 + TDP: unknown + FP32 Compute: 640.0 GFLOPS + FP64 Compute: 128.0 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml new file mode 100644 index 00000000..f8e59f1f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Mobility-Radeon-HD-4850-Mac-Edition +humanName: Mobility Radeon HD 4850 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-08-28' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: M98 + GPU Variant: M98 L2 + TDP: unknown + FP32 Compute: 804.8 GFLOPS + FP64 Compute: 161.0 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml new file mode 100644 index 00000000..80f83ccf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml @@ -0,0 +1,29 @@ +name: Mobility-Radeon-HD-4850-X2 +humanName: Mobility Radeon HD 4850 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 89.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: M98 + GPU Variant: M98 L2 + TDP: unknown + FP32 Compute: 800.0 GFLOPS + FP64 Compute: 160.0 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml new file mode 100644 index 00000000..3edcb13b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml @@ -0,0 +1,27 @@ +name: Mobility-Radeon-HD-4850 +humanName: Mobility Radeon HD 4850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: M98 + GPU Variant: M98 L2 + TDP: unknown + FP32 Compute: 804.8 GFLOPS + FP64 Compute: 161.0 GFLOPS (1:5) + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml new file mode 100644 index 00000000..8798afb1 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml @@ -0,0 +1,29 @@ +name: Mobility-Radeon-HD-4860 +humanName: Mobility Radeon HD 4860 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 137 mm² + GPU: M97 + GPU Variant: M97 M2 XT + TDP: unknown + FP32 Compute: 832.0 GFLOPS + FP64 Compute: 166.4 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml new file mode 100644 index 00000000..195c1663 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml @@ -0,0 +1,29 @@ +name: Mobility-Radeon-HD-4870-X2 +humanName: Mobility Radeon HD 4870 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 89.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: M98 + GPU Variant: M98 XT L2 + TDP: unknown + FP32 Compute: 880.0 GFLOPS + FP64 Compute: 176.0 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml new file mode 100644 index 00000000..4e4e9cfd --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml @@ -0,0 +1,29 @@ +name: Mobility-Radeon-HD-4870 +humanName: Mobility Radeon HD 4870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-09' + VRAM Frequency: 888 MHz + VRAM Bandwidth: 56.83 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: M98 + GPU Variant: M98 XT L2 + TDP: unknown + FP32 Compute: 880.0 GFLOPS + FP64 Compute: 176.0 GFLOPS (1:5) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml new file mode 100644 index 00000000..0c53b876 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5145 +humanName: Mobility Radeon HD 5145 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M92 + GPU Variant: M92-S2 LP + TDP: 15 W + FP32 Compute: 115.2 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml new file mode 100644 index 00000000..2e2fd1ad --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml @@ -0,0 +1,26 @@ +name: Mobility-Radeon-HD-5165 +humanName: Mobility Radeon HD 5165 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + TDP: 35 W + FP32 Compute: 384.0 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml new file mode 100644 index 00000000..a6dd6701 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-530v +humanName: Mobility Radeon HD 530v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M92 + GPU Variant: M92-M2 LP + TDP: 10 W + FP32 Compute: 72.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml new file mode 100644 index 00000000..44f1cfe4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-540v +humanName: Mobility Radeon HD 540v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M93 + GPU Variant: M93-S3 + TDP: 15 W + FP32 Compute: 88.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml new file mode 100644 index 00000000..8b0270b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-545v +humanName: Mobility Radeon HD 545v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 12.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: M93 + GPU Variant: M93-S3 XT + TDP: 15 W + FP32 Compute: 108.8 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml new file mode 100644 index 00000000..01545d57 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-550v +humanName: Mobility Radeon HD 550v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 19.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 LP + TDP: 10 W + FP32 Compute: 288.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml new file mode 100644 index 00000000..c18af698 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-560v +humanName: Mobility Radeon HD 560v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 LP + TDP: 15 W + FP32 Compute: 352.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml new file mode 100644 index 00000000..237d2c4a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml @@ -0,0 +1,28 @@ +name: Mobility-Radeon-HD-565v +humanName: Mobility Radeon HD 565v +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 XT + TDP: 20 W + FP32 Compute: 432.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml new file mode 100644 index 00000000..6acfc21e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-3000-IGP +humanName: Radeon 3000 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2009' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + GPU Variant: RS780L + TDP: unknown + FP32 Compute: 28.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml new file mode 100644 index 00000000..7b5e9316 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-3100-IGP +humanName: Radeon 3100 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2008-03-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + GPU Variant: RS780C + TDP: unknown + FP32 Compute: 28.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml new file mode 100644 index 00000000..c6adb66f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-3100-Mobile-IGP +humanName: Radeon 3100 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2008-08-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + GPU Variant: RS780M + TDP: unknown + FP32 Compute: 28.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml new file mode 100644 index 00000000..65581c4a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml @@ -0,0 +1,27 @@ +name: Radeon-E2400 +humanName: Radeon E2400 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + GPU Variant: E2400 + TDP: 25 W + FP32 Compute: 48.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml new file mode 100644 index 00000000..3cf29a1e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml @@ -0,0 +1,27 @@ +name: Radeon-E4690-MXM +humanName: Radeon E4690 MXM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 E4690 + TDP: 30 W + FP32 Compute: 384.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml new file mode 100644 index 00000000..52178974 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml @@ -0,0 +1,28 @@ +name: Radeon-E4690-PCIe +humanName: Radeon E4690 PCIe +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: M96 + GPU Variant: M96 E4690 + TDP: 30 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml new file mode 100644 index 00000000..6a152048 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-2350-PRO +humanName: Radeon HD 2350 PRO +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + TDP: 20 W + FP32 Compute: 42.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml new file mode 100644 index 00000000..1413f5bf --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2400-PRO-AGP +humanName: Radeon HD 2400 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + GPU Variant: RV610 LE AGP + TDP: 20 W + FP32 Compute: 42.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml new file mode 100644 index 00000000..93d4d637 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-2400-PRO-PCI +humanName: Radeon HD 2400 PRO PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + GPU Variant: RV610 LE + TDP: 20 W + FP32 Compute: 42.00 GFLOPS + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml new file mode 100644 index 00000000..385e2cfa --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2400-PRO +humanName: Radeon HD 2400 PRO +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + GPU Variant: RV610 LE + TDP: 20 W + FP32 Compute: 42.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml new file mode 100644 index 00000000..fbdc782b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2400-XT +humanName: Radeon HD 2400 XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + GPU Variant: RV610 PRO + TDP: 25 W + FP32 Compute: 52.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml new file mode 100644 index 00000000..6df62e49 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-2400 +humanName: Radeon HD 2400 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-02-19' + VRAM Frequency: 495 MHz + VRAM Bandwidth: 7.920 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + TDP: 20 W + FP32 Compute: 31.84 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml new file mode 100644 index 00000000..5b67cd4e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2600-PRO-AGP +humanName: Radeon HD 2600 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 12.67 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 PRO + TDP: 35 W + FP32 Compute: 142.6 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml new file mode 100644 index 00000000..aa1524d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2600-PRO +humanName: Radeon HD 2600 PRO +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 PRO + TDP: 35 W + FP32 Compute: 144.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml new file mode 100644 index 00000000..84513c14 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2600-XT-AGP +humanName: Radeon HD 2600 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 XT + TDP: 45 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml new file mode 100644 index 00000000..a40d3b5a --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-2600-XT-Mac-Edition +humanName: Radeon HD 2600 XT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-02-21' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + TDP: 45 W + FP32 Compute: 168.0 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml new file mode 100644 index 00000000..d7b50260 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-2600-XT-X2 +humanName: Radeon HD 2600 XT X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-07-26' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + TDP: unknown + FP32 Compute: 192.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 4x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml new file mode 100644 index 00000000..2e8828be --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-2600-XT +humanName: Radeon HD 2600 XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-06-28' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + TDP: 45 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml new file mode 100644 index 00000000..5fcdcbe5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-2900-GT +humanName: Radeon HD 2900 GT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-06' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Shader Processor Count: 240 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 GT + TDP: 150 W + FP32 Compute: 288.5 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml new file mode 100644 index 00000000..a16dc8a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-2900-PRO +humanName: Radeon HD 2900 PRO +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-12-12' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 PRO + TDP: 200 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml new file mode 100644 index 00000000..284739b9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-2900-XT +humanName: Radeon HD 2900 XT +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-05-14' + VRAM Frequency: 828 MHz + VRAM Bandwidth: 106.0 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 XT + TDP: 215 W + FP32 Compute: 475.5 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml new file mode 100644 index 00000000..eb9747f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-2900-XTX +humanName: Radeon HD 2900 XTX +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 828 MHz + VRAM Bandwidth: 106.0 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 420 mm² + GPU: R600 + GPU Variant: R600 XTX A11 + TDP: 240 W + FP32 Compute: 475.5 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 315 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml new file mode 100644 index 00000000..b4dbfa98 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-2950-PRO +humanName: Radeon HD 2950 PRO +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO ES + TDP: 75 W + FP32 Compute: 384.0 GFLOPS + FP64 Compute: 76.80 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 208 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml new file mode 100644 index 00000000..f83447c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-2950-XTX +humanName: Radeon HD 2950 XTX +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 1126 MHz + VRAM Bandwidth: 72.06 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 XTX + TDP: 110 W + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml new file mode 100644 index 00000000..6e3e5ec8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-3200-IGP +humanName: Radeon HD 3200 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2008-03-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml new file mode 100644 index 00000000..f05037b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-3200-Mobile-IGP +humanName: Radeon HD 3200 Mobile IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2009-11-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + GPU Variant: RS780M + TDP: unknown + FP32 Compute: 30.40 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml new file mode 100644 index 00000000..af171ba4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml @@ -0,0 +1,27 @@ +name: Radeon-HD-3300-IGP +humanName: Radeon HD 3300 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2008-08-06' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + GPU Variant: RS780D + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml new file mode 100644 index 00000000..d1bf59f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-3410 +humanName: Radeon HD 3410 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-05-07' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 6.336 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RV610 + TDP: 20 W + FP32 Compute: 41.52 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml new file mode 100644 index 00000000..923ffe25 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-3450-AGP +humanName: Radeon HD 3450 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-23' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 LE + TDP: 25 W + FP32 Compute: 48.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml new file mode 100644 index 00000000..f1ceb60c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3450-PCI +humanName: Radeon HD 3450 PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-23' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 LE + TDP: 25 W + FP32 Compute: 48.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml new file mode 100644 index 00000000..dea0cd42 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-3450-X2 +humanName: Radeon HD 3450 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-12-10' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 LE + TDP: 50 W + FP32 Compute: 48.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml new file mode 100644 index 00000000..94c25859 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3450 +humanName: Radeon HD 3450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-12-10' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 LE + TDP: 25 W + FP32 Compute: 48.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml new file mode 100644 index 00000000..40502131 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-3470 +humanName: Radeon HD 3470 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-23' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 15.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 PRO + TDP: 30 W + FP32 Compute: 64.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml new file mode 100644 index 00000000..bfb973e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-3550 +humanName: Radeon HD 3550 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-08-04' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 6.336 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 PRO + TDP: 30 W + FP32 Compute: 47.52 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml new file mode 100644 index 00000000..060b258e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-3570 +humanName: Radeon HD 3570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2010-07-05' + VRAM Frequency: 495 MHz + VRAM Bandwidth: 7.920 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 PRO + TDP: 30 W + FP32 Compute: 63.68 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml new file mode 100644 index 00000000..74d21d1f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3610 +humanName: Radeon HD 3610 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-09-24' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 12.67 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 153 mm² + GPU: RV630 + GPU Variant: RV630 PRO + TDP: 35 W + FP32 Compute: 142.6 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml new file mode 100644 index 00000000..fddf9c00 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3650-AGP +humanName: Radeon HD 3650 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-23' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO AGP + TDP: 65 W + FP32 Compute: 174.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml new file mode 100644 index 00000000..0b4c6b93 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3650 +humanName: Radeon HD 3650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-01-20' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO + TDP: 65 W + FP32 Compute: 174.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml new file mode 100644 index 00000000..11e0c4b2 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-3690 +humanName: Radeon HD 3690 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-03-30' + VRAM Frequency: 830 MHz + VRAM Bandwidth: 26.56 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 75 W + FP32 Compute: 428.8 GFLOPS + FP64 Compute: 85.76 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml new file mode 100644 index 00000000..0734bbf9 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3730 +humanName: Radeon HD 3730 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-10-05' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 12.67 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO + TDP: 65 W + FP32 Compute: 173.3 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml new file mode 100644 index 00000000..8bbcd0aa --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-3750 +humanName: Radeon HD 3750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-09-11' + VRAM Frequency: 693 MHz + VRAM Bandwidth: 22.18 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO + TDP: 65 W + FP32 Compute: 191.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml new file mode 100644 index 00000000..d197f61d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-3830 +humanName: Radeon HD 3830 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-04-01' + VRAM Frequency: 828 MHz + VRAM Bandwidth: 26.50 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 75 W + FP32 Compute: 427.5 GFLOPS + FP64 Compute: 85.50 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml new file mode 100644 index 00000000..a81d0f59 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-3850-AGP +humanName: Radeon HD 3850 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-01-03' + VRAM Frequency: 828 MHz + VRAM Bandwidth: 52.99 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 75 W + FP32 Compute: 427.5 GFLOPS + FP64 Compute: 85.50 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml new file mode 100644 index 00000000..038c606f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-3850-X2 +humanName: Radeon HD 3850 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-04-04' + VRAM Frequency: 828 MHz + VRAM Bandwidth: 52.99 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 140 W + FP32 Compute: 428.2 GFLOPS + FP64 Compute: 85.63 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml new file mode 100644 index 00000000..3f738e79 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml @@ -0,0 +1,29 @@ +name: Radeon-HD-3850-X3 +humanName: Radeon HD 3850 X3 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 145 W + FP32 Compute: 428.2 GFLOPS + Slot Width: Dual-slot + Outputs: 4x DVI + Power Connectors: 1x 8-pin + Length: 292 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml new file mode 100644 index 00000000..fc7f1c18 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-3850 +humanName: Radeon HD 3850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-19' + VRAM Frequency: 830 MHz + VRAM Bandwidth: 53.12 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 PRO + TDP: 75 W + FP32 Compute: 427.5 GFLOPS + FP64 Compute: 85.50 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 208 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml new file mode 100644 index 00000000..ebc1ce8d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-3870-AGP +humanName: Radeon HD 3870 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 1126 MHz + VRAM Bandwidth: 72.06 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 XT + TDP: 106 W + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 8-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml new file mode 100644 index 00000000..3e7b3493 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-3870-Mac-Edition +humanName: Radeon HD 3870 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-06-12' + VRAM Frequency: 1126 MHz + VRAM Bandwidth: 72.06 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 XT + TDP: 106 W + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml new file mode 100644 index 00000000..126bd414 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-3870-X2 +humanName: Radeon HD 3870 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-01-26' + VRAM Frequency: 901 MHz + VRAM Bandwidth: 57.66 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: R680 + GPU Variant: R680 XT + TDP: 165 W + FP32 Compute: 528.0 GFLOPS + FP64 Compute: 105.6 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 113 mm + Height: 39 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml new file mode 100644 index 00000000..aac56ac6 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-3870 +humanName: Radeon HD 3870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-11-19' + VRAM Frequency: 1126 MHz + VRAM Bandwidth: 72.06 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + GPU Variant: RV670 XT + TDP: 106 W + FP32 Compute: 497.3 GFLOPS + FP64 Compute: 99.46 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml new file mode 100644 index 00000000..96c2914f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-4200-IGP +humanName: Radeon HD 4200 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2009-08-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml new file mode 100644 index 00000000..22e22c50 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-4250-IGP +humanName: Radeon HD 4250 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2010-03-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + TDP: unknown + FP32 Compute: 44.80 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml new file mode 100644 index 00000000..bac0d67d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4250 +humanName: Radeon HD 4250 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-02-25' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 6.336 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RV620 + GPU Variant: RV620 LE + TDP: 25 W + FP32 Compute: 47.52 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml new file mode 100644 index 00000000..43f3ec0b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-HD-4290-IGP +humanName: Radeon HD 4290 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2010-03-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 67 mm² + GPU: RS880 + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml new file mode 100644 index 00000000..833a1ea0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4350-AGP +humanName: Radeon HD 4350 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-30' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 20 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml new file mode 100644 index 00000000..b40ba097 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4350-PCI +humanName: Radeon HD 4350 PCI +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-30' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 PCI + TDP: 20 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 178 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml new file mode 100644 index 00000000..8cb94495 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4350-PCIe-x1 +humanName: Radeon HD 4350 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-30' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 20 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml new file mode 100644 index 00000000..f5dc5f63 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-4350 +humanName: Radeon HD 4350 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-30' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 20 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort 1.0 + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml new file mode 100644 index 00000000..3d4e29bb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4450 +humanName: Radeon HD 4450 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-11-18' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 25 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml new file mode 100644 index 00000000..3f27e62e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4520 +humanName: Radeon HD 4520 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-12-02' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 25 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml new file mode 100644 index 00000000..380ac312 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4550 +humanName: Radeon HD 4550 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-30' + VRAM Frequency: 655 MHz + VRAM Bandwidth: 10.48 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 HD4550 + TDP: 25 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml new file mode 100644 index 00000000..011b6d46 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4570-Rebrand +humanName: Radeon HD 4570 Rebrand +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-11-22' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 12.67 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO + TDP: 65 W + FP32 Compute: 191.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml new file mode 100644 index 00000000..1be185ff --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4570 +humanName: Radeon HD 4570 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-25' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 80 + Die Size: 73 mm² + GPU: RV710 + GPU Variant: RV710 + TDP: 25 W + FP32 Compute: 104.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x DisplayPort 1.0 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml new file mode 100644 index 00000000..5e977d6b --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4580 +humanName: Radeon HD 4580 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2011-11-20' + VRAM Frequency: 693 MHz + VRAM Bandwidth: 22.18 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 120 + Die Size: 135 mm² + GPU: RV635 + GPU Variant: RV635 PRO + TDP: 65 W + FP32 Compute: 191.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 190 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml new file mode 100644 index 00000000..d4bf2de5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4650-AGP +humanName: Radeon HD 4650 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-10' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 PRO + TDP: 48 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml new file mode 100644 index 00000000..ec61825f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4650 +humanName: Radeon HD 4650 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-10' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 PRO + TDP: 48 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml new file mode 100644 index 00000000..83a03fbe --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4670-AGP +humanName: Radeon HD 4670 AGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-07-17' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 XT + TDP: 59 W + FP32 Compute: 480.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml new file mode 100644 index 00000000..146efd7c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml @@ -0,0 +1,28 @@ +name: Radeon-HD-4670-X2 +humanName: Radeon HD 4670 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-10' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 XT + TDP: 118 W + FP32 Compute: 480.0 GFLOPS + Slot Width: Dual-slot + Outputs: 4x DVI + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml new file mode 100644 index 00000000..d77ac340 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4670 +humanName: Radeon HD 4670 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-10' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 XT + TDP: 59 W + FP32 Compute: 480.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml new file mode 100644 index 00000000..4ad5943e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4700 +humanName: Radeon HD 4700 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-11' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 CE + TDP: 50 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml new file mode 100644 index 00000000..11e098a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4710 +humanName: Radeon HD 4710 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-10' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 CE + TDP: 59 W + FP32 Compute: 480.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml new file mode 100644 index 00000000..240c6e32 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4720 +humanName: Radeon HD 4720 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-12-11' + VRAM Frequency: 667 MHz + VRAM Bandwidth: 21.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 320 + Die Size: 146 mm² + GPU: RV730 + GPU Variant: RV730 XT + TDP: 55 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 193 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml new file mode 100644 index 00000000..51afd067 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml @@ -0,0 +1,30 @@ +name: Radeon-HD-4730-OEM +humanName: Radeon HD 4730 OEM +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3 (full)' + OpenCL Support: 'N/A' + Release Date: '2008-12-26' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 25.34 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Shader Processor Count: 320 + Die Size: 192 mm² + GPU: RV670 + TDP: 110 W + FP32 Compute: 428.2 GFLOPS + FP64 Compute: 85.63 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml new file mode 100644 index 00000000..4995c15e --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4730 +humanName: Radeon HD 4730 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-08' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 CE + TDP: 110 W + FP32 Compute: 960.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml new file mode 100644 index 00000000..9a68b126 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4750 +humanName: Radeon HD 4750 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-09-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 137 mm² + GPU: RV740 + GPU Variant: RV740 PRO + TDP: 100 W + FP32 Compute: 934.4 GFLOPS + FP64 Compute: 186.9 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml new file mode 100644 index 00000000..b58c178f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4770 +humanName: Radeon HD 4770 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 137 mm² + GPU: RV740 + GPU Variant: RV740 XT + TDP: 80 W + FP32 Compute: 960.0 GFLOPS + FP64 Compute: 192.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 203 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml new file mode 100644 index 00000000..b0605979 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4810 +humanName: Radeon HD 4810 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-05-28' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 CE + TDP: 95 W + FP32 Compute: 800.0 GFLOPS + FP64 Compute: 160.0 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 246 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml new file mode 100644 index 00000000..31ac69b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-4830 +humanName: Radeon HD 4830 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-10-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 LE + TDP: 95 W + FP32 Compute: 736.0 GFLOPS + FP64 Compute: 147.2 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 246 mm + Width: 111 mm + Height: 20 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml new file mode 100644 index 00000000..2ba4bead --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4850-X2 +humanName: Radeon HD 4850 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-07' + VRAM Frequency: 995 MHz + VRAM Bandwidth: 63.68 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: R700 + GPU Variant: R700 PRO + TDP: 250 W + FP32 Compute: 1,000 GFLOPS + FP64 Compute: 200.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 4x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml new file mode 100644 index 00000000..82ccc51f --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4850 +humanName: Radeon HD 4850 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-25' + VRAM Frequency: 993 MHz + VRAM Bandwidth: 63.55 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 PRO + TDP: 110 W + FP32 Compute: 1,000 GFLOPS + FP64 Compute: 200.0 GFLOPS (1:5) + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 246 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml new file mode 100644 index 00000000..aa775bf0 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4855 +humanName: Radeon HD 4855 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-03' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 PRO + TDP: 110 W + FP32 Compute: 736.0 GFLOPS + FP64 Compute: 147.2 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 1.3a1x VGA + Power Connectors: 1x 6-pin + Length: 220 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml new file mode 100644 index 00000000..9b104850 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml @@ -0,0 +1,31 @@ +name: Radeon-HD-4860 +humanName: Radeon HD 4860 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-09-09' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 640 + Die Size: 282 mm² + GPU: RV790 + GPU Variant: RV790 GT + TDP: 130 W + FP32 Compute: 896.0 GFLOPS + FP64 Compute: 179.2 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml new file mode 100644 index 00000000..ce60c1ac --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: Radeon-HD-4870-Mac-Edition +humanName: Radeon HD 4870 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-06' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 108.8 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT Mac + TDP: 150 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x mini-DisplayPort 1.0 + Power Connectors: 2x 6-pin + Length: 250 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml new file mode 100644 index 00000000..8205b181 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-4870-X2 +humanName: Radeon HD 4870 X2 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-12' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: R700 + GPU Variant: R700 XT + TDP: 286 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml new file mode 100644 index 00000000..273f6002 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-4870 +humanName: Radeon HD 4870 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-25' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 115.2 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 256 mm² + GPU: RV770 + GPU Variant: RV770 XT + TDP: 150 W + FP32 Compute: 1,200 GFLOPS + FP64 Compute: 240.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml new file mode 100644 index 00000000..88b432d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml @@ -0,0 +1,34 @@ +name: Radeon-HD-4890 +humanName: Radeon HD 4890 +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 55 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-02' + VRAM Frequency: 975 MHz + VRAM Bandwidth: 124.8 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 40 + Shader Processor Count: 800 + Die Size: 282 mm² + GPU: RV790 + GPU Variant: RV790 XT + TDP: 190 W + FP32 Compute: 1,360 GFLOPS + FP64 Compute: 272.0 GFLOPS (1:5) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 241 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml new file mode 100644 index 00000000..046937f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml @@ -0,0 +1,26 @@ +name: Radeon-Xpress-2100-IGP +humanName: Radeon Xpress 2100 IGP +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.0' + Release Date: '2008-03-04' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 40 + Die Size: 85 mm² + GPU: RS780 + TDP: unknown + FP32 Compute: 40.00 GFLOPS + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml new file mode 100644 index 00000000..94b74e8d --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-360-E-GPU +humanName: Xbox 360 E GPU +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 45 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2013-06-10' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 240 + Die Size: 168 mm² + GPU: Xenos Corona + GPU Variant: Crayola 6 + TDP: 120 W + FP32 Compute: 240.0 GFLOPS + Outputs: 1x HDMI 1.2 + Length: 264 mm + Width: 254 mm + Height: 67 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml new file mode 100644 index 00000000..85e67756 --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml @@ -0,0 +1,29 @@ +name: Xbox-360-GPU-65nm +humanName: Xbox 360 GPU 65nm +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 65 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2008-08-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 240 + Die Size: 121 mm² + GPU: Xenos Jasper + GPU Variant: Crayola 6 + TDP: 150 W + FP32 Compute: 240.0 GFLOPS + Outputs: 1x HDMI 1.2 + Length: 310 mm + Width: 269 mm + Height: 79 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml new file mode 100644 index 00000000..12d33aeb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml @@ -0,0 +1,29 @@ +name: Xbox-360-GPU-80nm +humanName: Xbox 360 GPU 80nm +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2007-10-27' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 240 + Die Size: 156 mm² + GPU: Xenos Falcon + GPU Variant: Crayola 6 + TDP: 175 W + FP32 Compute: 240.0 GFLOPS + Outputs: 1x HDMI 1.2 + Length: 310 mm + Width: 269 mm + Height: 79 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml new file mode 100644 index 00000000..82bcfbfb --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml @@ -0,0 +1,29 @@ +name: Xbox-360-GPU-90nm +humanName: Xbox 360 GPU 90nm +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2005-11-22' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 240 + Die Size: 181 mm² + GPU: Xenos Xenon + GPU Variant: Crayola 6 + TDP: 203 W + FP32 Compute: 240.0 GFLOPS + Outputs: No outputs + Length: 310 mm + Width: 269 mm + Height: 79 mm diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml new file mode 100644 index 00000000..7a3e7c3c --- /dev/null +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml @@ -0,0 +1,29 @@ +name: Xbox-360-S-GPU +humanName: Xbox 360 S GPU +isPart: true +type: Graphics Card +data: + Architecture: TeraScale + Lithography: 45 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2010-06-19' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 240 + Die Size: 168 mm² + GPU: Xenos Vejle + GPU Variant: Crayola 6 + TDP: 133 W + FP32 Compute: 240.0 GFLOPS + Outputs: 1x HDMI 1.2 + Length: 260 mm + Width: 270 mm + Height: 78 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0.yaml b/specs/GPUs-CONSUMER/Tesla-2.0.yaml new file mode 100644 index 00000000..58477bbc --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0.yaml @@ -0,0 +1,86 @@ +name: Tesla-2.0 +humanName: Tesla 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2007-04-17' +sections: + - header: WHOLE RANGE + members: + - GeForce-205-OEM + - GeForce-210 + - GeForce-210-OEM + - GeForce-210-PCI + - GeForce-210-Rev.-2 + - GeForce-305M + - GeForce-310-OEM + - GeForce-310M + - GeForce-315-OEM + - GeForce-315M + - GeForce-320M-Mac-Edition + - GeForce-405-OEM + - GeForce-405M + - GeForce-505-OEM + - GeForce-8400-GS-PCI-Rev.-2 + - GeForce-8400-GS-Rev.-3 + - GeForce-9300-GS-Rev.-2 + - GeForce-9400-GT-Rev.-3 + - GeForce-G105M + - GeForce-G210-OEM-Rev.-2 + - GeForce-G210M + - GeForce-GT-220 + - GeForce-GT-230M + - GeForce-GT-240 + - GeForce-GT-240M + - GeForce-GT-320-OEM + - GeForce-GT-330-OEM + - GeForce-GT-330M + - GeForce-GT-335M + - GeForce-GT-340-OEM + - GeForce-GT-415-OEM + - GeForce-GT-220-OEM + - GeForce-GT-325M + - GeForce-GTS-260M + - GeForce-GTS-350M + - GeForce-GTS-360M + - GeForce-GTX-260 + - GeForce-GTX-260-Core-216 + - GeForce-GTX-260-Core-216-Rev.-2 + - GeForce-GTX-260-OEM + - GeForce-GTX-260-Rev.-2 + - GeForce-GTX-275 + - GeForce-GTX-280 + - GeForce-GTX-285 + - GeForce-GTX-285-Mac-Edition + - GeForce-GTX-285-X2 + - GeForce-GTX-295 + - GeForce-GTX-295-Single-PCB + - GeForce-GT-330M-Mac-Edition + - GeForce-GTS-250M + - GeForce-GTX-470-PhysX-Edition + - ION-2 + - NVS-300 + - NVS-2100M + - NVS-3100M + - NVS-5100M + - Quadro-400 + - Quadro-CX + - Quadro-FX-380-LP + - Quadro-FX-380M + - Quadro-FX-880M + - Quadro-FX-1800M + - Quadro-FX-3800 + - Quadro-FX-4800 + - Quadro-FX-4800-Mac-Edition + - Quadro-FX-5800 + - Quadro-Plex-2200-D2 + - Quadro-Plex-2200-S4 + - Tesla-C1060 + - Tesla-C1080 + - Tesla-M1060 + - Tesla-S1070 + - Tesla-S1075 diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml new file mode 100644 index 00000000..dc287bab --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-205-OEM +humanName: GeForce 205 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-11-26' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-200-B1 + TDP: 31 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml new file mode 100644 index 00000000..aefcb992 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-210-OEM +humanName: GeForce 210 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-09-04' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 100 mm² + GPU: GT216 + TDP: 31 W + FP32 Compute: 35.20 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml new file mode 100644 index 00000000..6ec30160 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml @@ -0,0 +1,28 @@ +name: GeForce-210-PCI +humanName: GeForce 210 PCI +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 100 mm² + GPU: GT216 + TDP: 31 W + FP32 Compute: 35.20 GFLOPS + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml new file mode 100644 index 00000000..265b0cab --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml @@ -0,0 +1,31 @@ +name: GeForce-210-Rev.-2 +humanName: GeForce 210 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-325-B1 + TDP: 31 W + FP32 Compute: 39.36 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml new file mode 100644 index 00000000..a392a7c4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml @@ -0,0 +1,31 @@ +name: GeForce-210 +humanName: GeForce 210 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-300-A2 + TDP: 31 W + FP32 Compute: 39.36 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml new file mode 100644 index 00000000..64483849 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml @@ -0,0 +1,28 @@ +name: GeForce-305M +humanName: GeForce 305M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-10' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218 + GPU Variant: N11M-LP1 + TDP: 14 W + FP32 Compute: 36.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml new file mode 100644 index 00000000..c5b56fd2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-310-OEM +humanName: GeForce 310 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-11-27' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-300-A2 + TDP: 31 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml new file mode 100644 index 00000000..af536682 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml @@ -0,0 +1,28 @@ +name: GeForce-310M +humanName: GeForce 310M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-10' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218 + GPU Variant: N11M-GE1 + TDP: 14 W + FP32 Compute: 48.96 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml new file mode 100644 index 00000000..d0fcad1d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-315-OEM +humanName: GeForce 315 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-02-22' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-300-B1 + TDP: 33 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml new file mode 100644 index 00000000..e232e9fe --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml @@ -0,0 +1,28 @@ +name: GeForce-315M +humanName: GeForce 315M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218 + GPU Variant: N11M-GE + TDP: 14 W + FP32 Compute: 38.78 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml new file mode 100644 index 00000000..3455d757 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: GeForce-320M-Mac-Edition +humanName: GeForce 320M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2010-04-01' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: C89 + GPU Variant: MCP89UL-A3 + TDP: 23 W + FP32 Compute: 91.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml new file mode 100644 index 00000000..beef56f8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-405-OEM +humanName: GeForce 405 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 12 + Shader Processor Count: 24 + Die Size: 100 mm² + GPU: GT216 + TDP: 25 W + FP32 Compute: 52.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml new file mode 100644 index 00000000..b6ddc407 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml @@ -0,0 +1,27 @@ +name: GeForce-405M +humanName: GeForce 405M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-01-05' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218 + TDP: 14 W + FP32 Compute: 46.98 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml new file mode 100644 index 00000000..45830862 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-505-OEM +humanName: GeForce 505 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2013-01-06' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-300-B1 + TDP: 25 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml new file mode 100644 index 00000000..8cb17dfe --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml @@ -0,0 +1,29 @@ +name: GeForce-8400-GS-PCI-Rev.-2 +humanName: GeForce 8400 GS PCI Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + TDP: 40 W + FP32 Compute: 39.36 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml new file mode 100644 index 00000000..9ab3f701 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml @@ -0,0 +1,31 @@ +name: GeForce-8400-GS-Rev.-3 +humanName: GeForce 8400 GS Rev. 3 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-07-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: 8400GS-225-B1 + TDP: 25 W + FP32 Compute: 19.68 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml new file mode 100644 index 00000000..7381dbfc --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml @@ -0,0 +1,30 @@ +name: GeForce-9300-GS-Rev.-2 +humanName: GeForce 9300 GS Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-03-12' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-670-B1 + TDP: unknown + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml new file mode 100644 index 00000000..daac5346 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml @@ -0,0 +1,31 @@ +name: GeForce-9400-GT-Rev.-3 +humanName: GeForce 9400 GT Rev. 3 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2012-06-13' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-670-B1 + TDP: 50 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml new file mode 100644 index 00000000..5cc5f0dc --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G105M +humanName: GeForce G105M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-12-14' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-300-A2 + TDP: 14 W + FP32 Compute: 39.36 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml new file mode 100644 index 00000000..0f3fc945 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml @@ -0,0 +1,31 @@ +name: GeForce-G210-OEM-Rev.-2 +humanName: GeForce G210 OEM Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-08-24' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-200-B1 + TDP: 31 W + FP32 Compute: 44.86 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml new file mode 100644 index 00000000..c81b2890 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G210M +humanName: GeForce G210M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: N10M-GS-S-A2 + TDP: 14 W + FP32 Compute: 46.98 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml new file mode 100644 index 00000000..f82bdcf7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-220-OEM +humanName: GeForce GT 220 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-450-A2 + TDP: 58 W + FP32 Compute: 97.15 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml new file mode 100644 index 00000000..b8000c28 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-220 +humanName: GeForce GT 220 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: GT216-300-A2 + TDP: 58 W + FP32 Compute: 127.7 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml new file mode 100644 index 00000000..81506359 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-230M +humanName: GeForce GT 230M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N10P-GE-A2 + TDP: 23 W + FP32 Compute: 105.6 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml new file mode 100644 index 00000000..ae29e2db --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-240 +humanName: GeForce GT 240 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-11-17' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-450-A2 + TDP: 69 W + FP32 Compute: 257.3 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml new file mode 100644 index 00000000..602ca016 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-240M +humanName: GeForce GT 240M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N10P-GS + TDP: 23 W + FP32 Compute: 116.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml new file mode 100644 index 00000000..1952d0a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-320-OEM +humanName: GeForce GT 320 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-02' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 72 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-250-A2 + TDP: 43 W + FP32 Compute: 187.5 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml new file mode 100644 index 00000000..5f6220e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-325M +humanName: GeForce GT 325M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-10' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N11P-GV1 + TDP: 23 W + FP32 Compute: 95.04 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml new file mode 100644 index 00000000..941ad6f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-330-OEM +humanName: GeForce GT 330 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-02' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-301-A3 + TDP: 75 W + FP32 Compute: 250.4 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml new file mode 100644 index 00000000..9fbc5a00 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-330M-Mac-Edition +humanName: GeForce GT 330M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-04-26' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N11P-GE1-A3 + TDP: 23 W + FP32 Compute: 105.6 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml new file mode 100644 index 00000000..74a86538 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-330M +humanName: GeForce GT 330M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-10' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 24 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N11P-GE1-A3 + TDP: 23 W + FP32 Compute: 65.28 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml new file mode 100644 index 00000000..8d7d3b09 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-335M +humanName: GeForce GT 335M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 72 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N11P-GS1 + TDP: 28 W + FP32 Compute: 155.5 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml new file mode 100644 index 00000000..617ad046 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-340-OEM +humanName: GeForce GT 340 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-02' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 27.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-301-A3 + TDP: 69 W + FP32 Compute: 257.3 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml new file mode 100644 index 00000000..6a775b83 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GT-415-OEM +humanName: GeForce GT 415 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-09-03' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 10.66 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: GT216-305-A3 + TDP: 32 W + FP32 Compute: 130.6 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml new file mode 100644 index 00000000..e2af4ee9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml @@ -0,0 +1,26 @@ +name: GeForce-GTS-250M +humanName: GeForce GTS 250M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 50.56 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N10E-GE-A2 + TDP: 28 W + FP32 Compute: 207.4 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml new file mode 100644 index 00000000..90050bb4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml @@ -0,0 +1,26 @@ +name: GeForce-GTS-260M +humanName: GeForce GTS 260M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 850 MHz + VRAM Bandwidth: 54.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N10E-GS + TDP: 38 W + FP32 Compute: 257.3 GFLOPS + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml new file mode 100644 index 00000000..7be82750 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTS-350M +humanName: GeForce GTS 350M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 50.56 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N11E-GE1 + TDP: 28 W + FP32 Compute: 207.4 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml new file mode 100644 index 00000000..66366c9c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTS-360M +humanName: GeForce GTS 360M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 32 + Shader Processor Count: 96 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N11E-GS1-A3 + TDP: 38 W + FP32 Compute: 254.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml new file mode 100644 index 00000000..aa367505 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-260-Core-216-Rev.-2 +humanName: GeForce GTX 260 Core 216 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-27' + VRAM Frequency: 999 MHz + VRAM Bandwidth: 111.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 72 + Shader Processor Count: 216 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-103-B2 + TDP: 171 W + FP32 Compute: 536.5 GFLOPS + FP64 Compute: 67.07 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml new file mode 100644 index 00000000..df5b7dbe --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-260-Core-216 +humanName: GeForce GTX 260 Core 216 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-16' + VRAM Frequency: 999 MHz + VRAM Bandwidth: 111.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 72 + Shader Processor Count: 216 + Die Size: 576 mm² + GPU: GT200 + GPU Variant: G200-103-A2 + TDP: 182 W + FP32 Compute: 536.5 GFLOPS + FP64 Compute: 67.07 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml new file mode 100644 index 00000000..6d8e350f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-260-OEM +humanName: GeForce GTX 260 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-12-08' + VRAM Frequency: 1008 MHz + VRAM Bandwidth: 112.9 GB/s + VRAM Capacity: 1792 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 576 mm² + GPU: GT200 + GPU Variant: G200-101-A2 + TDP: 150 W + FP32 Compute: 414.7 GFLOPS + FP64 Compute: 51.84 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml new file mode 100644 index 00000000..8a1ae232 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-260-Rev.-2 +humanName: GeForce GTX 260 Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-23' + VRAM Frequency: 999 MHz + VRAM Bandwidth: 111.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-103-B3 + TDP: 182 W + FP32 Compute: 476.9 GFLOPS + FP64 Compute: 59.62 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml new file mode 100644 index 00000000..edfdefe9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-260 +humanName: GeForce GTX 260 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-16' + VRAM Frequency: 999 MHz + VRAM Bandwidth: 111.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 576 mm² + GPU: GT200 + GPU Variant: G200-100-A2 + TDP: 182 W + FP32 Compute: 476.9 GFLOPS + FP64 Compute: 59.62 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml new file mode 100644 index 00000000..fbe9eefd --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-275 +humanName: GeForce GTX 275 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-15' + VRAM Frequency: 1134 MHz + VRAM Bandwidth: 127.0 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-105-B3 + TDP: 219 W + FP32 Compute: 673.9 GFLOPS + FP64 Compute: 84.24 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml new file mode 100644 index 00000000..4ab939be --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml @@ -0,0 +1,33 @@ +name: GeForce-GTX-280 +humanName: GeForce GTX 280 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-16' + VRAM Frequency: 1107 MHz + VRAM Bandwidth: 141.7 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 576 mm² + GPU: GT200 + GPU Variant: G200-300-A2 + TDP: 236 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml new file mode 100644 index 00000000..6575c983 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-285-Mac-Edition +humanName: GeForce GTX 285 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-15' + VRAM Frequency: 1242 MHz + VRAM Bandwidth: 159.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-350-B3 + TDP: 204 W + FP32 Compute: 708.5 GFLOPS + FP64 Compute: 88.56 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml new file mode 100644 index 00000000..1ad17e56 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-285-X2 +humanName: GeForce GTX 285 X2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-17' + VRAM Frequency: 1152 MHz + VRAM Bandwidth: 147.5 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-350-B3 + TDP: 315 W + FP32 Compute: 708.5 GFLOPS + FP64 Compute: 88.56 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI + Power Connectors: 2x 8-pin + Length: 275 mm + Width: 115 mm + Height: 48 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml new file mode 100644 index 00000000..215fc000 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-285 +humanName: GeForce GTX 285 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-12-23' + VRAM Frequency: 1242 MHz + VRAM Bandwidth: 159.0 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-350-B3 + TDP: 204 W + FP32 Compute: 708.5 GFLOPS + FP64 Compute: 88.56 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml new file mode 100644 index 00000000..00486d55 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml @@ -0,0 +1,32 @@ +name: GeForce-GTX-295-Single-PCB +humanName: GeForce GTX 295 Single PCB +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-16' + VRAM Frequency: 1008 MHz + VRAM Bandwidth: 112.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-401-B3 + TDP: 289 W + FP32 Compute: 596.2 GFLOPS + FP64 Compute: 74.52 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml new file mode 100644 index 00000000..193a9f19 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml @@ -0,0 +1,34 @@ +name: GeForce-GTX-295 +humanName: GeForce GTX 295 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-08' + VRAM Frequency: 999 MHz + VRAM Bandwidth: 111.9 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-400-B3 + TDP: 289 W + FP32 Compute: 596.2 GFLOPS + FP64 Compute: 74.52 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml new file mode 100644 index 00000000..cb1dad0a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-470-PhysX-Edition +humanName: GeForce GTX 470 PhysX Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + OpenGL Support: '4.6' + OpenCL Support: '1.1' + Release Date: 'Never Released' + VRAM Frequency: 837 MHz + VRAM Bandwidth: 133.9 GB/s + VRAM Capacity: 1280 MB + VRAM Type: GDDR5 + VRAM Bus Width: 320 bit + Render Output Unit Count: 40 + Texture Mapping Unit Count: 56 + Shader Processor Count: 448 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: GT215-400-A2 + TDP: 215 W + FP32 Compute: 1,089 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x mini-HDMI 1.3a + Power Connectors: 1x 6-pin + 1x 8-pin diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml new file mode 100644 index 00000000..081f60f7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml @@ -0,0 +1,27 @@ +name: ION-2 +humanName: ION 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-03' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: N11M-PT1 + TDP: 20 W + FP32 Compute: 34.24 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml new file mode 100644 index 00000000..a56ae18b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml @@ -0,0 +1,26 @@ +name: NVS-2100M +humanName: NVS 2100M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + TDP: 11 W + FP32 Compute: 39.36 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml new file mode 100644 index 00000000..80c31b7d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml @@ -0,0 +1,29 @@ +name: NVS-300 +humanName: NVS 300 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-01-08' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218-670-B1 + TDP: 18 W + FP32 Compute: 39.36 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml new file mode 100644 index 00000000..f5e5116f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml @@ -0,0 +1,27 @@ +name: NVS-3100M +humanName: NVS 3100M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: N10M-NS + TDP: 14 W + FP32 Compute: 46.98 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml new file mode 100644 index 00000000..d0011749 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml @@ -0,0 +1,28 @@ +name: NVS-5100M +humanName: NVS 5100M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N10P-NS + TDP: 35 W + FP32 Compute: 116.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml new file mode 100644 index 00000000..a3f195c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml @@ -0,0 +1,32 @@ +name: Quadro-400 +humanName: Quadro 400 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2011-04-05' + VRAM Frequency: 770 MHz + VRAM Bandwidth: 12.32 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: GT216 GL + TDP: 32 W + FP32 Compute: 108.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort + Power Connectors: None + Length: 163 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml new file mode 100644 index 00000000..2785d0dc --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml @@ -0,0 +1,31 @@ +name: Quadro-CX +humanName: Quadro CX +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 470 mm² + GPU: GT200B + TDP: 150 W + FP32 Compute: 462.3 GFLOPS + FP64 Compute: 57.79 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml new file mode 100644 index 00000000..3a4dd2b9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-1800M +humanName: Quadro FX 1800M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 72 + Die Size: 144 mm² + GPU: GT215 + GPU Variant: N10P-GLM4 + TDP: 45 W + FP32 Compute: 162.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml new file mode 100644 index 00000000..f83ea8d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-380-LP +humanName: Quadro FX 380 LP +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-12-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: GT218 GL + TDP: 28 W + FP32 Compute: 44.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort + Power Connectors: None + Length: 168 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml new file mode 100644 index 00000000..622b9132 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml @@ -0,0 +1,33 @@ +name: Quadro-FX-3800 +humanName: Quadro FX 3800 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-30' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 470 mm² + GPU: GT200B + GPU Variant: G200-835-B2 + TDP: 108 W + FP32 Compute: 462.3 GFLOPS + FP64 Compute: 57.79 GFLOPS (1:8) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: 1x 6-pin + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml new file mode 100644 index 00000000..df874fda --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml @@ -0,0 +1,27 @@ +name: Quadro-FX-380M +humanName: Quadro FX 380M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 12.64 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 57 mm² + GPU: GT218S + GPU Variant: N10M-GLM + TDP: 25 W + FP32 Compute: 46.98 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml new file mode 100644 index 00000000..aa38e9c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-4800-Mac-Edition +humanName: Quadro FX 4800 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 470 mm² + GPU: GT200B + TDP: 150 W + FP32 Compute: 462.3 GFLOPS + FP64 Compute: 57.79 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml new file mode 100644 index 00000000..656f3008 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-4800 +humanName: Quadro FX 4800 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 64 + Shader Processor Count: 192 + Die Size: 470 mm² + GPU: GT200B + TDP: 150 W + FP32 Compute: 462.3 GFLOPS + FP64 Compute: 57.79 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 2x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml new file mode 100644 index 00000000..bcfa83a6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml @@ -0,0 +1,33 @@ +name: Quadro-FX-5800 +humanName: Quadro FX 5800 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-11' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 189 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x DisplayPort1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 40 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml new file mode 100644 index 00000000..efd4aab9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-880M +humanName: Quadro FX 880M +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 40 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-07' + VRAM Frequency: 790 MHz + VRAM Bandwidth: 25.28 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 48 + Die Size: 100 mm² + GPU: GT216 + GPU Variant: N10P-GLM + TDP: 35 W + FP32 Compute: 116.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml new file mode 100644 index 00000000..f9621cde --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml @@ -0,0 +1,27 @@ +name: Quadro-Plex-2200-D2 +humanName: Quadro Plex 2200 D2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 640 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml new file mode 100644 index 00000000..6ca0aa43 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml @@ -0,0 +1,27 @@ +name: Quadro-Plex-2200-S4 +humanName: Quadro Plex 2200 S4 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 600 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml new file mode 100644 index 00000000..75224a0e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml @@ -0,0 +1,30 @@ +name: Tesla-C1060 +humanName: Tesla C1060 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 188 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml new file mode 100644 index 00000000..77af45f6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml @@ -0,0 +1,30 @@ +name: Tesla-C1080 +humanName: Tesla C1080 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 188 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml new file mode 100644 index 00000000..e0b9af3b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml @@ -0,0 +1,30 @@ +name: Tesla-M1060 +humanName: Tesla M1060 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 188 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml new file mode 100644 index 00000000..d2f640af --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml @@ -0,0 +1,27 @@ +name: Tesla-S1070 +humanName: Tesla S1070 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 800 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml new file mode 100644 index 00000000..9f4d28b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml @@ -0,0 +1,27 @@ +name: Tesla-S1075 +humanName: Tesla S1075 +isPart: true +type: Graphics Card +data: + Architecture: Tesla 2.0 + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 102.4 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR3 + VRAM Bus Width: 512 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 470 mm² + GPU: GT200B + TDP: 800 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Tesla.yaml b/specs/GPUs-CONSUMER/Tesla.yaml new file mode 100644 index 00000000..75eb600f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla.yaml @@ -0,0 +1,173 @@ +name: Tesla +humanName: Tesla +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + Release Date: '2006-11-08' +sections: + - header: WHOLE RANGE + members: + - GeForce-8100-+-nForce-720a + - GeForce-8200M-G-mGPU-AMD + - GeForce-8200M-G-mGPU-Intel + - GeForce-8300 + - GeForce-8300-GS + - GeForce-8400 + - GeForce-8400-GS + - GeForce-8400-GS-PCI + - GeForce-8400-GS-Rev.-2 + - GeForce-8400-SE + - GeForce-8400M-G + - GeForce-8400M-GS + - GeForce-8400M-GT + - GeForce-8500-GT + - GeForce-8600-GS + - GeForce-8600-GT + - GeForce-8600-GT-Mac-Edition + - GeForce-8600-GTS + - GeForce-8600-GTS-Mac-Edition + - GeForce-8600M-GS + - GeForce-8600M-GT + - GeForce-8700M-GT + - GeForce-8800-GS + - GeForce-8800-GS-Mac-Edition + - GeForce-8800-GT + - GeForce-8800-GT-Mac-Edition + - GeForce-8800-GTS-320 + - GeForce-8800-GTS-512 + - GeForce-8800-GTS-640 + - GeForce-8800-GTS-Core-112 + - GeForce-8800-GTX + - GeForce-8800-Ultra + - GeForce-8800M-GTS + - GeForce-8800M-GTX + - GeForce-9100 + - GeForce-9100M-G-mGPU-AMD + - GeForce-9100M-G-mGPU-Intel + - GeForce-9200 + - GeForce-9200M-GS + - GeForce-9200M-GS-GDDR3 + - GeForce-9300-+-nForce-730i + - GeForce-9300-GE + - GeForce-9300-GS + - GeForce-9300-SE + - GeForce-9300M-G + - GeForce-9300M-GS + - GeForce-9300M-GS-GDDR3 + - GeForce-9400 + - GeForce-9400-GT + - GeForce-9400-GT-Rev.-2 + - GeForce-9400M + - GeForce-9500-GS + - GeForce-9500-GS-Rev.-2 + - GeForce-9500-GT + - GeForce-9500-GT-Mac-Edition + - GeForce-9500-GT-Rev.-2 + - GeForce-9500-GT-Rev.-3 + - GeForce-9500M-G + - GeForce-9500M-GS + - GeForce-9600-GSO + - GeForce-9600-GSO-512 + - GeForce-9600-GS-OEM + - GeForce-9600-GT + - GeForce-9600-GT-Green-Edition + - GeForce-9600-GT-Mac-Edition + - GeForce-9600-GT-Rev.-2 + - GeForce-9600-GTX + - GeForce-9600M-GS + - GeForce-9600M-GT + - GeForce-9600M-GT-Mac-Edition + - GeForce-9650M-GS + - GeForce-9650M-GT + - GeForce-9700M-GT + - GeForce-9700M-GTS + - GeForce-9800-GT + - GeForce-9800-GTX + - GeForce-9800-GTX+ + - GeForce-9800-GX2 + - GeForce-9800M-GS + - GeForce-9800M-GT + - GeForce-9800M-GTS + - GeForce-9800S + - GeForce-9200M + - GeForce-9400M-G + - GeForce-G100-OEM + - GeForce-G102M + - GeForce-G103M + - GeForce-G110M + - GeForce-G205M + - GeForce-G210-OEM + - GeForce-GT-120-Mac-Edition + - GeForce-GT-120-OEM + - GeForce-GT-120M + - GeForce-GT-120M-Mac-Edition + - GeForce-GT-130-Mac-Edition + - GeForce-GT-130-OEM + - GeForce-GT-130M + - GeForce-GT-140-OEM + - GeForce-GT-220M + - GeForce-GT-230 + - GeForce-GT-230-OEM + - GeForce-GT-240M-LE + - GeForce-GT-320M + - GeForce-8200 + - GeForce-9400-GT-PCI + - GeForce-9800-GT-Rebrand + - GeForce-GTS-150-OEM + - GeForce-GTS-150M + - GeForce-GTS-160M + - GeForce-GTS-240-OEM + - GeForce-GTS-250 + - GeForce-GTX-260M + - GeForce-GTX-275-PhysX-Edition + - GeForce-GTX-280M + - GeForce-GTX-285M + - ION + - ION-LE + - Quadro-FX-360M + - Quadro-FX-370 + - Quadro-FX-370-LP + - Quadro-FX-370M + - Quadro-FX-380 + - Quadro-FX-470 + - Quadro-FX-570 + - Quadro-FX-570M + - Quadro-FX-580 + - Quadro-FX-770M + - Quadro-FX-1600M + - Quadro-FX-1700 + - Quadro-FX-1700-Mac-Edition + - Quadro-FX-1700M + - Quadro-FX-1800 + - Quadro-FX-2700M + - Quadro-FX-2800M + - Quadro-FX-3600M + - Quadro-FX-3700M + - Quadro-FX-3800M + - Quadro-FX-4600 + - Quadro-FX-4600-SDI + - Quadro-FX-4700-X2 + - Quadro-FX-5600 + - Quadro-FX-5600-Mac-Edition + - Quadro-FX-3700 + - Quadro-NVS-130M + - Quadro-NVS-135M + - Quadro-NVS-140M + - Quadro-NVS-150M + - Quadro-NVS-160M + - Quadro-NVS-290 + - Quadro-NVS-295 + - Quadro-NVS-320M + - Quadro-NVS-420 + - Quadro-NVS-450 + - Quadro-Plex-1000-Model-IV + - Quadro-Plex-2100-D4 + - Quadro-Plex-2100-S4 + - Quadro-VX-200 + - Tesla-C870 + - Tesla-D870 + - Tesla-S870 diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml new file mode 100644 index 00000000..9db83841 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml @@ -0,0 +1,29 @@ +name: GeForce-8100-+-nForce-720a +humanName: GeForce 8100 + nForce 720a +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C78 + GPU Variant: GF-8100-720A-A2 + TDP: 40 W + FP32 Compute: 38.40 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml new file mode 100644 index 00000000..48073274 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml @@ -0,0 +1,28 @@ +name: GeForce-8200 +humanName: GeForce 8200 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C78 + TDP: 40 W + FP32 Compute: 38.40 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml new file mode 100644 index 00000000..d66e4167 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml @@ -0,0 +1,27 @@ +name: GeForce-8200M-G-mGPU-AMD +humanName: GeForce 8200M G mGPU AMD +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-03' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C77 + GPU Variant: MCP77MV-A2 + TDP: 12 W + FP32 Compute: 25.60 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml new file mode 100644 index 00000000..b5338e52 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml @@ -0,0 +1,27 @@ +name: GeForce-8200M-G-mGPU-Intel +humanName: GeForce 8200M G mGPU Intel +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-03' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MVL-B1 + TDP: 12 W + FP32 Compute: 25.60 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml new file mode 100644 index 00000000..4bd2bf41 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml @@ -0,0 +1,29 @@ +name: GeForce-8300-GS +humanName: GeForce 8300 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 8 + Die Size: 127 mm² + GPU: G86S + TDP: 40 W + FP32 Compute: 14.69 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml new file mode 100644 index 00000000..5cfd91a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml @@ -0,0 +1,28 @@ +name: GeForce-8300 +humanName: GeForce 8300 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C78 + TDP: 40 W + FP32 Compute: 48.00 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml new file mode 100644 index 00000000..a5f44604 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml @@ -0,0 +1,31 @@ +name: GeForce-8400-GS-PCI +humanName: GeForce 8400 GS PCI +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-12-04' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-400-U2 + TDP: 25 W + FP32 Compute: 22.40 GFLOPS + Slot Width: Single-slot + Outputs: 1x S-Video1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 70 mm + Height: 19 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml new file mode 100644 index 00000000..e0ea3bb7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml @@ -0,0 +1,31 @@ +name: GeForce-8400-GS-Rev.-2 +humanName: GeForce 8400 GS Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-12-04' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-409-U2 + TDP: 25 W + FP32 Compute: 22.40 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml new file mode 100644 index 00000000..374b0a17 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml @@ -0,0 +1,31 @@ +name: GeForce-8400-GS +humanName: GeForce 8400 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-213-A2 + TDP: 40 W + FP32 Compute: 29.38 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml new file mode 100644 index 00000000..8e6cf03c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml @@ -0,0 +1,30 @@ +name: GeForce-8400-SE +humanName: GeForce 8400 SE +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + TDP: 50 W + FP32 Compute: 29.38 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml new file mode 100644 index 00000000..818d809d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml @@ -0,0 +1,29 @@ +name: GeForce-8400 +humanName: GeForce 8400 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-12-04' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: 25 W + FP32 Compute: 20.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml new file mode 100644 index 00000000..c8b69150 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml @@ -0,0 +1,28 @@ +name: GeForce-8400M-G +humanName: GeForce 8400M G +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 8 + Die Size: 127 mm² + GPU: G86 + GPU Variant: G86-703-A2 + TDP: 10 W + FP32 Compute: 12.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml new file mode 100644 index 00000000..ce9309a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-8400M-GS +humanName: GeForce 8400M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-630-A2 + TDP: 11 W + FP32 Compute: 25.60 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml new file mode 100644 index 00000000..e6e2c313 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-8400M-GT +humanName: GeForce 8400M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 602 MHz + VRAM Bandwidth: 19.26 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-603-A2 + TDP: 14 W + FP32 Compute: 28.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml new file mode 100644 index 00000000..37b97267 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml @@ -0,0 +1,31 @@ +name: GeForce-8500-GT +humanName: GeForce 8500 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86 + GPU Variant: G86-300-A2 + TDP: 30 W + FP32 Compute: 29.38 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml new file mode 100644 index 00000000..266a9b0e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml @@ -0,0 +1,29 @@ +name: GeForce-8600-GS +humanName: GeForce 8600 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 169 mm² + GPU: G84 + TDP: 47 W + FP32 Compute: 38.08 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml new file mode 100644 index 00000000..6c222dea --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: GeForce-8600-GT-Mac-Edition +humanName: GeForce 8600 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 750 MHz + VRAM Bandwidth: 24.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: G84-303-A2 + TDP: 47 W + FP32 Compute: 92.80 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml new file mode 100644 index 00000000..524e6585 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml @@ -0,0 +1,31 @@ +name: GeForce-8600-GT +humanName: GeForce 8600 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: G84-303-A2 + TDP: 47 W + FP32 Compute: 76.16 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 170 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml new file mode 100644 index 00000000..9899273d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: GeForce-8600-GTS-Mac-Edition +humanName: GeForce 8600 GTS Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-09-21' + VRAM Frequency: 1008 MHz + VRAM Bandwidth: 32.26 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: G84-400-A2 + TDP: 75 W + FP32 Compute: 92.80 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml new file mode 100644 index 00000000..aafabb7c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml @@ -0,0 +1,31 @@ +name: GeForce-8600-GTS +humanName: GeForce 8600 GTS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-04-17' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: G84-400-A2 + TDP: 60 W + FP32 Compute: 92.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 198 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml new file mode 100644 index 00000000..d838eb33 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-8600M-GS +humanName: GeForce 8600M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86 + GPU Variant: G86-770-A2 + TDP: 20 W + FP32 Compute: 28.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml new file mode 100644 index 00000000..29ded2f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-8600M-GT +humanName: GeForce 8600M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB8P-GS + TDP: 20 W + FP32 Compute: 60.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml new file mode 100644 index 00000000..d0cf1945 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-8700M-GT +humanName: GeForce 8700M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-06-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB8E-SE + TDP: 29 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml new file mode 100644 index 00000000..4692534d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: GeForce-8800-GS-Mac-Edition +humanName: GeForce 8800 GS Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-01-31' + VRAM Frequency: 799 MHz + VRAM Bandwidth: 51.14 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 324 mm² + GPU: G92 + TDP: 105 W + FP32 Compute: 160.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml new file mode 100644 index 00000000..8bfccb13 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GS +humanName: GeForce 8800 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-01-31' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 384 MB + VRAM Type: GDDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-150-A2 + TDP: 105 W + FP32 Compute: 264.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml new file mode 100644 index 00000000..c00a1c00 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: GeForce-8800-GT-Mac-Edition +humanName: GeForce 8800 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-01' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-270-A2 + TDP: 125 W + FP32 Compute: 336.0 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml new file mode 100644 index 00000000..f5c69b2e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GT +humanName: GeForce 8800 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-10-29' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-270-A2 + TDP: 125 W + FP32 Compute: 336.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml new file mode 100644 index 00000000..bd1f87de --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GTS-320 +humanName: GeForce 8800 GTS 320 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-02-12' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 63.36 GB/s + VRAM Capacity: 320 MB + VRAM Type: GDDR3 + VRAM Bus Width: 320 bit + Render Output Unit Count: 20 + Texture Mapping Unit Count: 24 + Shader Processor Count: 96 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-100-K0-A2 + TDP: 143 W + FP32 Compute: 228.1 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml new file mode 100644 index 00000000..52b138a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GTS-512 +humanName: GeForce 8800 GTS 512 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-12-11' + VRAM Frequency: 820 MHz + VRAM Bandwidth: 52.48 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-400-A2 + TDP: 135 W + FP32 Compute: 416.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 254 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml new file mode 100644 index 00000000..df2fd9a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GTS-640 +humanName: GeForce 8800 GTS 640 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2006-11-08' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 63.36 GB/s + VRAM Capacity: 640 MB + VRAM Type: GDDR3 + VRAM Bus Width: 320 bit + Render Output Unit Count: 20 + Texture Mapping Unit Count: 24 + Shader Processor Count: 96 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-100-K0-A2 + TDP: 143 W + FP32 Compute: 228.1 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml new file mode 100644 index 00000000..1d1e1239 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GTS-Core-112 +humanName: GeForce 8800 GTS Core 112 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-11-19' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 640 MB + VRAM Type: GDDR3 + VRAM Bus Width: 320 bit + Render Output Unit Count: 20 + Texture Mapping Unit Count: 28 + Shader Processor Count: 112 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-100-K0-A2 + TDP: 150 W + FP32 Compute: 268.8 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml new file mode 100644 index 00000000..72930a4a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-GTX +humanName: GeForce 8800 GTX +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2006-11-08' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 86.40 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-300-A2 + TDP: 155 W + FP32 Compute: 345.6 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 270 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml new file mode 100644 index 00000000..3e9b4dec --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml @@ -0,0 +1,31 @@ +name: GeForce-8800-Ultra +humanName: GeForce 8800 Ultra +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-05-02' + VRAM Frequency: 1080 MHz + VRAM Bandwidth: 103.7 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-450-A3 + TDP: 171 W + FP32 Compute: 387.1 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 270 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml new file mode 100644 index 00000000..0bd8307e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml @@ -0,0 +1,28 @@ +name: GeForce-8800M-GTS +humanName: GeForce 8800M GTS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-11-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-700-A2 + TDP: 50 W + FP32 Compute: 160.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml new file mode 100644 index 00000000..1b651f99 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml @@ -0,0 +1,28 @@ +name: GeForce-8800M-GTX +humanName: GeForce 8800M GTX +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-11-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-720-A2 + TDP: 65 W + FP32 Compute: 240.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml new file mode 100644 index 00000000..fefee0a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml @@ -0,0 +1,28 @@ +name: GeForce-9100 +humanName: GeForce 9100 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C78 + TDP: 40 W + FP32 Compute: 38.40 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml new file mode 100644 index 00000000..1a645ada --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml @@ -0,0 +1,27 @@ +name: GeForce-9100M-G-mGPU-AMD +humanName: GeForce 9100M G mGPU AMD +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-07-29' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C77 + GPU Variant: MCP77MH-A2 + TDP: 12 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml new file mode 100644 index 00000000..6e4d46d7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml @@ -0,0 +1,27 @@ +name: GeForce-9100M-G-mGPU-Intel +humanName: GeForce 9100M G mGPU Intel +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-07-29' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 8 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MX-B2 + TDP: 12 W + FP32 Compute: 17.60 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml new file mode 100644 index 00000000..c134cd50 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml @@ -0,0 +1,28 @@ +name: GeForce-9200 +humanName: GeForce 9200 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: C78 + TDP: 40 W + FP32 Compute: 38.40 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml new file mode 100644 index 00000000..d3765978 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml @@ -0,0 +1,27 @@ +name: GeForce-9200M-GS-GDDR3 +humanName: GeForce 9200M GS GDDR3 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-03' + VRAM Frequency: 702 MHz + VRAM Bandwidth: 11.23 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 80 mm² + GPU: G98 + GPU Variant: G98-700-U2 + TDP: 13 W + FP32 Compute: 20.80 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml new file mode 100644 index 00000000..d160d54a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9200M-GS +humanName: GeForce 9200M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-03' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-630-U2 + TDP: 13 W + FP32 Compute: 20.80 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml new file mode 100644 index 00000000..8d0ae872 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml @@ -0,0 +1,27 @@ +name: GeForce-9200M +humanName: GeForce 9200M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-10-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MX + TDP: 12 W + FP32 Compute: 38.40 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml new file mode 100644 index 00000000..1d2d7f0f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml @@ -0,0 +1,29 @@ +name: GeForce-9300-+-nForce-730i +humanName: GeForce 9300 + nForce 730i +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: GF-9300-730I-B2 + TDP: 40 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml new file mode 100644 index 00000000..f49961e7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml @@ -0,0 +1,29 @@ +name: GeForce-9300-GE +humanName: GeForce 9300 GE +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: unknown + FP32 Compute: 20.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml new file mode 100644 index 00000000..d5de6501 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml @@ -0,0 +1,29 @@ +name: GeForce-9300-GS +humanName: GeForce 9300 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: unknown + FP32 Compute: 22.40 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml new file mode 100644 index 00000000..4fc6194a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml @@ -0,0 +1,29 @@ +name: GeForce-9300-SE +humanName: GeForce 9300 SE +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: unknown + FP32 Compute: 20.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml new file mode 100644 index 00000000..9ca094ca --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml @@ -0,0 +1,27 @@ +name: GeForce-9300M-G +humanName: GeForce 9300M G +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-635-A2 + TDP: 13 W + FP32 Compute: 25.60 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml new file mode 100644 index 00000000..103d6f51 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml @@ -0,0 +1,28 @@ +name: GeForce-9300M-GS-GDDR3 +humanName: GeForce 9300M GS GDDR3 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-04' + VRAM Frequency: 702 MHz + VRAM Bandwidth: 11.23 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 80 mm² + GPU: G98 + GPU Variant: G98-730-U2 + TDP: 13 W + FP32 Compute: 23.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml new file mode 100644 index 00000000..987a554e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-9300M-GS +humanName: GeForce 9300M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-04' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-630-U2 + TDP: 13 W + FP32 Compute: 23.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml new file mode 100644 index 00000000..de1bae1b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml @@ -0,0 +1,30 @@ +name: GeForce-9400-GT-PCI +humanName: GeForce 9400 GT PCI +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 121 mm² + GPU: G96C + TDP: 50 W + FP32 Compute: 44.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml new file mode 100644 index 00000000..754e678b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml @@ -0,0 +1,30 @@ +name: GeForce-9400-GT-Rev.-2 +humanName: GeForce 9400 GT Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 121 mm² + GPU: G96C + TDP: 50 W + FP32 Compute: 44.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml new file mode 100644 index 00000000..00dba1f7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml @@ -0,0 +1,31 @@ +name: GeForce-9400-GT +humanName: GeForce 9400 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 121 mm² + GPU: G96C + GPU Variant: G96-200-C1 + TDP: 50 W + FP32 Compute: 44.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml new file mode 100644 index 00000000..8da6ae13 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml @@ -0,0 +1,28 @@ +name: GeForce-9400 +humanName: GeForce 9400 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-04-17' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + TDP: 40 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml new file mode 100644 index 00000000..394f5dc4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml @@ -0,0 +1,27 @@ +name: GeForce-9400M-G +humanName: GeForce 9400M G +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-10-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MXT-B3 + TDP: 12 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml new file mode 100644 index 00000000..b5bfa787 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml @@ -0,0 +1,27 @@ +name: GeForce-9400M +humanName: GeForce 9400M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-10-15' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MX + TDP: 12 W + FP32 Compute: 44.80 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml new file mode 100644 index 00000000..8fd60b92 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml @@ -0,0 +1,29 @@ +name: GeForce-9500-GS-Rev.-2 +humanName: GeForce 9500 GS Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + TDP: 40 W + FP32 Compute: 80.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml new file mode 100644 index 00000000..a58a52d4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml @@ -0,0 +1,30 @@ +name: GeForce-9500-GS +humanName: GeForce 9500 GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 504 MHz + VRAM Bandwidth: 16.13 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 144 mm² + GPU: G96 + GPU Variant: G96-259-A1 + TDP: 40 W + FP32 Compute: 88.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml new file mode 100644 index 00000000..e73937f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml @@ -0,0 +1,30 @@ +name: GeForce-9500-GT-Mac-Edition +humanName: GeForce 9500 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-05-19' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + TDP: 50 W + FP32 Compute: 89.60 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml new file mode 100644 index 00000000..b289126c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml @@ -0,0 +1,31 @@ +name: GeForce-9500-GT-Rev.-2 +humanName: GeForce 9500 GT Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 28.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96B + GPU Variant: G96-309-B1 + TDP: 50 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml new file mode 100644 index 00000000..dff8191c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml @@ -0,0 +1,31 @@ +name: GeForce-9500-GT-Rev.-3 +humanName: GeForce 9500 GT Rev. 3 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: G96-300-C1 + TDP: 50 W + FP32 Compute: 89.60 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 175 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml new file mode 100644 index 00000000..2b15c1ac --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml @@ -0,0 +1,29 @@ +name: GeForce-9500-GT +humanName: GeForce 9500 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 144 mm² + GPU: G96 + TDP: 50 W + FP32 Compute: 96.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml new file mode 100644 index 00000000..64920cae --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml @@ -0,0 +1,27 @@ +name: GeForce-9500M-G +humanName: GeForce 9500M G +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: G96 + GPU Variant: NB9P-GE + TDP: 20 W + FP32 Compute: 40.00 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml new file mode 100644 index 00000000..97230c20 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9500M-GS +humanName: GeForce 9500M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB9P-GE1-A2 + TDP: 20 W + FP32 Compute: 60.80 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml new file mode 100644 index 00000000..7f3fa825 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-9600-GS-OEM +humanName: GeForce 9600 GS OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 48.00 GB/s + VRAM Capacity: 768 MB + VRAM Type: DDR2 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94-300-A1 + TDP: unknown + FP32 Compute: 120.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml new file mode 100644 index 00000000..abb617d0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml @@ -0,0 +1,31 @@ +name: GeForce-9600-GSO-512 +humanName: GeForce 9600 GSO 512 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-10-23' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94-300-A1 + TDP: 90 W + FP32 Compute: 156.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml new file mode 100644 index 00000000..7dcb257a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml @@ -0,0 +1,30 @@ +name: GeForce-9600-GSO +humanName: GeForce 9600 GSO +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-04-28' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 384 MB + VRAM Type: GDDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + TDP: 84 W + FP32 Compute: 264.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml new file mode 100644 index 00000000..3e5b0e4a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-9600-GT-Green-Edition +humanName: GeForce 9600 GT Green Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-21' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94-300-A1 + TDP: 95 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml new file mode 100644 index 00000000..583eee59 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: GeForce-9600-GT-Mac-Edition +humanName: GeForce 9600 GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-12-22' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 17.02 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94-300-A1 + TDP: 95 W + FP32 Compute: 192.0 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml new file mode 100644 index 00000000..969607f5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml @@ -0,0 +1,31 @@ +name: GeForce-9600-GT-Rev.-2 +humanName: GeForce 9600 GT Rev. 2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 196 mm² + GPU: G94B + GPU Variant: G94-358-B1 + TDP: 95 W + FP32 Compute: 208.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml new file mode 100644 index 00000000..9d2171c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml @@ -0,0 +1,32 @@ +name: GeForce-9600-GT +humanName: GeForce 9600 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94-300-A1 + TDP: 95 W + FP32 Compute: 208.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml new file mode 100644 index 00000000..f87ee51f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml @@ -0,0 +1,30 @@ +name: GeForce-9600-GTX +humanName: GeForce 9600 GTX +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-05-27' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + TDP: 140 W + FP32 Compute: 278.4 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml new file mode 100644 index 00000000..61b5a0c0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml @@ -0,0 +1,28 @@ +name: GeForce-9600M-GS +humanName: GeForce 9600M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: NB9P-GE2 + TDP: 20 W + FP32 Compute: 68.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml new file mode 100644 index 00000000..80361e84 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: GeForce-9600M-GT-Mac-Edition +humanName: GeForce 9600M GT Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-10-25' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 25.34 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: NB9P-GS + TDP: 23 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml new file mode 100644 index 00000000..ba84f18e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-9600M-GT +humanName: GeForce 9600M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-06-04' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 25.34 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: NB9P-GS + TDP: 23 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml new file mode 100644 index 00000000..498fd3a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9650M-GS +humanName: GeForce 9650M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-03-13' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB9P-GS1-A2 + TDP: 29 W + FP32 Compute: 80.00 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml new file mode 100644 index 00000000..b440dda4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-9650M-GT +humanName: GeForce 9650M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-19' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: G96-650-C1 + TDP: 23 W + FP32 Compute: 84.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml new file mode 100644 index 00000000..740e59ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-9700M-GT +humanName: GeForce 9700M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 144 mm² + GPU: G96 + GPU Variant: NB9E-GE + TDP: 45 W + FP32 Compute: 99.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml new file mode 100644 index 00000000..c0971a23 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9700M-GTS +humanName: GeForce 9700M GTS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 240 mm² + GPU: G94 + GPU Variant: NB9E-GS + TDP: 60 W + FP32 Compute: 127.2 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml new file mode 100644 index 00000000..8fc602c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml @@ -0,0 +1,31 @@ +name: GeForce-9800-GT-Rebrand +humanName: GeForce 9800 GT Rebrand +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-21' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-270-A2 + TDP: 125 W + FP32 Compute: 448.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml new file mode 100644 index 00000000..17d5a434 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml @@ -0,0 +1,32 @@ +name: GeForce-9800-GT +humanName: GeForce 9800 GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-21' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-270-A2 + TDP: 125 W + FP32 Compute: 336.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml new file mode 100644 index 00000000..645846fe --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml @@ -0,0 +1,33 @@ +name: GeForce-9800-GTX+ +humanName: GeForce 9800 GTX+ +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-16' + VRAM Frequency: 1100 MHz + VRAM Bandwidth: 70.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 260 mm² + GPU: G92B + GPU Variant: G92-420-B1 + TDP: 141 W + FP32 Compute: 470.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml new file mode 100644 index 00000000..1d377923 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml @@ -0,0 +1,33 @@ +name: GeForce-9800-GTX +humanName: GeForce 9800 GTX +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-03-28' + VRAM Frequency: 1100 MHz + VRAM Bandwidth: 70.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-420-A2 + TDP: 140 W + FP32 Compute: 432.1 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm + Width: 111 mm + Height: 38 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml new file mode 100644 index 00000000..adc6fa16 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml @@ -0,0 +1,31 @@ +name: GeForce-9800-GX2 +humanName: GeForce 9800 GX2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-03-18' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-450-A2 + TDP: 197 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x HDMI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml new file mode 100644 index 00000000..4e36c771 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9800M-GS +humanName: GeForce 9800M GS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: NB9E-GS1 + TDP: 60 W + FP32 Compute: 169.6 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml new file mode 100644 index 00000000..0763e650 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml @@ -0,0 +1,28 @@ +name: GeForce-9800M-GT +humanName: GeForce 9800M GT +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + GPU Variant: NB9E-GT2 + TDP: 65 W + FP32 Compute: 240.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml new file mode 100644 index 00000000..27b015ad --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml @@ -0,0 +1,27 @@ +name: GeForce-9800M-GTS +humanName: GeForce 9800M GTS +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-29' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: NB9E-GT + TDP: 75 W + FP32 Compute: 192.0 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml new file mode 100644 index 00000000..6d4b22dd --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml @@ -0,0 +1,28 @@ +name: GeForce-9800S +humanName: GeForce 9800S +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-15' + VRAM Frequency: 799 MHz + VRAM Bandwidth: 51.14 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: 9800S + TDP: 75 W + FP32 Compute: 192.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml new file mode 100644 index 00000000..87c7d768 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-G100-OEM +humanName: GeForce G100 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-10' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-309-U2 + TDP: 35 W + FP32 Compute: 20.80 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml new file mode 100644 index 00000000..5045c41d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G102M +humanName: GeForce G102M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-01-08' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MX + TDP: 14 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml new file mode 100644 index 00000000..ab001078 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G103M +humanName: GeForce G103M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-09-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: N10M-GE2-S + TDP: 14 W + FP32 Compute: 25.60 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml new file mode 100644 index 00000000..ba239962 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G110M +humanName: GeForce G110M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-08' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10M-GE1-B + TDP: 14 W + FP32 Compute: 32.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml new file mode 100644 index 00000000..edc192b0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml @@ -0,0 +1,28 @@ +name: GeForce-G205M +humanName: GeForce G205M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2009-01-08' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + GPU Variant: MCP79MX + TDP: 14 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml new file mode 100644 index 00000000..34f80628 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-G210-OEM +humanName: GeForce G210 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-05-26' + VRAM Frequency: 504 MHz + VRAM Bandwidth: 8.064 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 121 mm² + GPU: G96C + TDP: 31 W + FP32 Compute: 43.20 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x DisplayPort1x VGA + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml new file mode 100644 index 00000000..8b74538c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-120-Mac-Edition +humanName: GeForce GT 120 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-20' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + TDP: 50 W + FP32 Compute: 89.60 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x mini-DisplayPort + Power Connectors: None + Length: 145 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml new file mode 100644 index 00000000..eea520eb --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-120-OEM +humanName: GeForce GT 120 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-10' + VRAM Frequency: 504 MHz + VRAM Bandwidth: 16.13 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + TDP: 50 W + FP32 Compute: 117.5 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml new file mode 100644 index 00000000..b2fa8089 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml @@ -0,0 +1,27 @@ +name: GeForce-GT-120M-Mac-Edition +humanName: GeForce GT 120M Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-12-12' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 25.34 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + TDP: 14 W + FP32 Compute: 80.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml new file mode 100644 index 00000000..c86bb5d7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-120M +humanName: GeForce GT 120M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10P-GV1 + TDP: 14 W + FP32 Compute: 80.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml new file mode 100644 index 00000000..2b44f2ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-130-Mac-Edition +humanName: GeForce GT 130 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-12-12' + VRAM Frequency: 792 MHz + VRAM Bandwidth: 38.02 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 196 mm² + GPU: G94B + TDP: 75 W + FP32 Compute: 144.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml new file mode 100644 index 00000000..770bdd5e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-130-OEM +humanName: GeForce GT 130 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-10' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 24.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 196 mm² + GPU: G94B + TDP: 75 W + FP32 Compute: 120.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml new file mode 100644 index 00000000..ff961303 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-130M +humanName: GeForce GT 130M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-08' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10P-GE1 + TDP: 23 W + FP32 Compute: 96.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml new file mode 100644 index 00000000..8d350ed5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GT-140-OEM +humanName: GeForce GT 140 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-10' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 196 mm² + GPU: G94B + TDP: 105 W + FP32 Compute: 208.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml new file mode 100644 index 00000000..700fad47 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-220M +humanName: GeForce GT 220M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10P-GV2 + TDP: 14 W + FP32 Compute: 88.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml new file mode 100644 index 00000000..d27b7280 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-230-OEM +humanName: GeForce GT 230 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-27' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 24.00 GB/s + VRAM Capacity: 1536 MB + VRAM Type: DDR2 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 260 mm² + GPU: G92B + GPU Variant: G92-159-B1 + TDP: 75 W + FP32 Compute: 240.0 GFLOPS + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml new file mode 100644 index 00000000..341045d3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-230 +humanName: GeForce GT 230 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-10-12' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 196 mm² + GPU: G94B + GPU Variant: G94-300-B1 + TDP: 75 W + FP32 Compute: 156.0 GFLOPS + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml new file mode 100644 index 00000000..44bcc5d1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-240M-LE +humanName: GeForce GT 240M LE +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-01-15' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10P-GE1 + TDP: 23 W + FP32 Compute: 96.00 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml new file mode 100644 index 00000000..24832e6e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GT-320M +humanName: GeForce GT 320M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-06-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: N10P-GV2 + TDP: 14 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml new file mode 100644 index 00000000..059e7b70 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTS-150-OEM +humanName: GeForce GTS 150 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-10' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + TDP: 141 W + FP32 Compute: 470.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 267 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml new file mode 100644 index 00000000..6be730d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTS-150M +humanName: GeForce GTS 150M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: N10E-GE1 + TDP: 45 W + FP32 Compute: 128.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml new file mode 100644 index 00000000..d69d4e0a --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTS-160M +humanName: GeForce GTS 160M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: N10E-GS1 + TDP: 60 W + FP32 Compute: 192.0 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml new file mode 100644 index 00000000..9b42ac54 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTS-240-OEM +humanName: GeForce GTS 240 OEM +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-07-01' + VRAM Frequency: 1100 MHz + VRAM Bandwidth: 70.40 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 260 mm² + GPU: G92B + GPU Variant: G92-240-B1 + TDP: 120 W + FP32 Compute: 362.9 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml new file mode 100644 index 00000000..76ca60e9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTS-250 +humanName: GeForce GTS 250 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-04' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 260 mm² + GPU: G92B + GPU Variant: G92-428-B1 + TDP: 150 W + FP32 Compute: 387.1 GFLOPS + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml new file mode 100644 index 00000000..e64d5c9d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTX-260M +humanName: GeForce GTX 260M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 60.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + GPU Variant: N10E-GT + TDP: 65 W + FP32 Compute: 308.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml new file mode 100644 index 00000000..7fa3e40f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml @@ -0,0 +1,31 @@ +name: GeForce-GTX-275-PhysX-Edition +humanName: GeForce GTX 275 PhysX Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-16' + VRAM Frequency: 1134 MHz + VRAM Bandwidth: 127.0 GB/s + VRAM Capacity: 896 MB + VRAM Type: GDDR3 + VRAM Bus Width: 448 bit + Render Output Unit Count: 28 + Texture Mapping Unit Count: 80 + Shader Processor Count: 240 + Die Size: 260 mm² + GPU: G92B + GPU Variant: G92-421-B1 + TDP: 219 W + FP32 Compute: 622.1 GFLOPS + FP64 Compute: 77.76 GFLOPS (1:8) + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml new file mode 100644 index 00000000..6ef235ce --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTX-280M +humanName: GeForce GTX 280M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-03' + VRAM Frequency: 950 MHz + VRAM Bandwidth: 60.80 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: N10E-GTX + TDP: 75 W + FP32 Compute: 374.5 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml new file mode 100644 index 00000000..12b8d9a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml @@ -0,0 +1,28 @@ +name: GeForce-GTX-285M +humanName: GeForce GTX 285M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2010-02-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 260 mm² + GPU: G92B + GPU Variant: N10E-GTX1-B1 + TDP: 75 W + FP32 Compute: 384.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml b/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml new file mode 100644 index 00000000..d3fe0c89 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml @@ -0,0 +1,26 @@ +name: ION-LE +humanName: ION LE +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-03' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 162 mm² + GPU: ION + TDP: 20 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/ION.yaml b/specs/GPUs-CONSUMER/Tesla/ION.yaml new file mode 100644 index 00000000..65237efa --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/ION.yaml @@ -0,0 +1,26 @@ +name: ION +humanName: ION +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2008-06-03' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 162 mm² + GPU: ION + TDP: 20 W + FP32 Compute: 35.20 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml new file mode 100644 index 00000000..117fdc3d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-1600M +humanName: Quadro FX 1600M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-06-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB8P-GLM + TDP: 50 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml new file mode 100644 index 00000000..5206896e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml @@ -0,0 +1,31 @@ +name: Quadro-FX-1700-Mac-Edition +humanName: Quadro FX 1700 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-09-27' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 20.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + TDP: 42 W + FP32 Compute: 66.56 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml new file mode 100644 index 00000000..c99aef6d --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-1700 +humanName: Quadro FX 1700 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-09-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: G84-875-A2 + TDP: 42 W + FP32 Compute: 58.88 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None + Length: 168 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml new file mode 100644 index 00000000..8f630d14 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-1700M +humanName: Quadro FX 1700M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-10-01' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 144 mm² + GPU: G96 + GPU Variant: NB9P-GLM + TDP: 50 W + FP32 Compute: 99.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml new file mode 100644 index 00000000..487411c1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-1800 +humanName: Quadro FX 1800 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-30' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR3 + VRAM Bus Width: 192 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 32 + Shader Processor Count: 64 + Die Size: 240 mm² + GPU: G94 + GPU Variant: G94 GL-U + TDP: 59 W + FP32 Compute: 176.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml new file mode 100644 index 00000000..e819be9c --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-2700M +humanName: Quadro FX 2700M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-14' + VRAM Frequency: 799 MHz + VRAM Bandwidth: 51.14 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 48 + Die Size: 240 mm² + GPU: G94 + GPU Variant: NB9E-GLM2 + TDP: 65 W + FP32 Compute: 127.2 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml new file mode 100644 index 00000000..e58a94c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-2800M +humanName: Quadro FX 2800M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-12-01' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 260 mm² + GPU: G92B + GPU Variant: N10E-GLM-B2 + TDP: 75 W + FP32 Compute: 288.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml new file mode 100644 index 00000000..66ff9925 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-3600M +humanName: Quadro FX 3600M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-02-23' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 48 + Shader Processor Count: 96 + Die Size: 324 mm² + GPU: G92 + GPU Variant: NB8E-GLM3 + TDP: 70 W + FP32 Compute: 240.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml new file mode 100644 index 00000000..cc7a0835 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml @@ -0,0 +1,27 @@ +name: Quadro-FX-360M +humanName: Quadro FX 360M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: NB8M-GLM + TDP: 17 W + FP32 Compute: 25.60 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml new file mode 100644 index 00000000..7f8dcc0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-370-LP +humanName: Quadro FX 370 LP +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-06' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: 25 W + FP32 Compute: 17.28 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 198 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml new file mode 100644 index 00000000..78f5d3a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-370 +humanName: Quadro FX 370 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-09-12' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 169 mm² + GPU: G84 + TDP: 35 W + FP32 Compute: 23.04 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml new file mode 100644 index 00000000..db18fb05 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-3700 +humanName: Quadro FX 3700 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-01-08' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-875-A2 + TDP: 78 W + FP32 Compute: 280.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 267 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml new file mode 100644 index 00000000..c36ed42e --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-3700M +humanName: Quadro FX 3700M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-14' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-985-A2 + TDP: 75 W + FP32 Compute: 352.0 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml new file mode 100644 index 00000000..db91e094 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-370M +humanName: Quadro FX 370M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-15' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: NB9M-GLM + TDP: 20 W + FP32 Compute: 23.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml new file mode 100644 index 00000000..72d17755 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-380 +humanName: Quadro FX 380 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-03-30' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: G96 + TDP: 34 W + FP32 Compute: 35.20 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml new file mode 100644 index 00000000..c5666cbf --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-3800M +humanName: Quadro FX 3800M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-14' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 260 mm² + GPU: G92B + GPU Variant: N10E-GLM3-B2 + TDP: 100 W + FP32 Compute: 422.4 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml new file mode 100644 index 00000000..6e8f12b8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml @@ -0,0 +1,31 @@ +name: Quadro-FX-4600-SDI +humanName: Quadro FX 4600 SDI +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-03-05' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 67.20 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 96 + Die Size: 484 mm² + GPU: G80 + TDP: 154 W + FP32 Compute: 230.4 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml new file mode 100644 index 00000000..522759ed --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-4600 +humanName: Quadro FX 4600 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-03-05' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 67.20 GB/s + VRAM Capacity: 768 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 24 + Shader Processor Count: 96 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-850-A2 + TDP: 134 W + FP32 Compute: 230.4 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml new file mode 100644 index 00000000..80d1f5c8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml @@ -0,0 +1,26 @@ +name: Quadro-FX-470 +humanName: Quadro FX 470 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: 'N/A' + Release Date: '2007-09-12' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 144 mm² + GPU: C79 + TDP: 38 W + FP32 Compute: 44.80 GFLOPS + Slot Width: IGP + Outputs: 2x DVI diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml new file mode 100644 index 00000000..163e97b6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml @@ -0,0 +1,33 @@ +name: Quadro-FX-4700-X2 +humanName: Quadro FX 4700 X2 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-04-18' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + GPU Variant: G92-880-A2 + TDP: 226 W + FP32 Compute: 384.0 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Height: 39 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml new file mode 100644 index 00000000..f456c82b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-5600-Mac-Edition +humanName: Quadro FX 5600 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-03-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 171 W + FP32 Compute: 368.6 GFLOPS + Slot Width: Dual-slot + Outputs: 2x DVI + Power Connectors: 2x 6-pin + Length: 312 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml new file mode 100644 index 00000000..9eae8218 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-5600 +humanName: Quadro FX 5600 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-03-05' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + GPU Variant: G80-875-A2 + TDP: 171 W + FP32 Compute: 345.6 GFLOPS + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 254 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml new file mode 100644 index 00000000..b67e482b --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml @@ -0,0 +1,29 @@ +name: Quadro-FX-570 +humanName: Quadro FX 570 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-09-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 169 mm² + GPU: G84 + TDP: 38 W + FP32 Compute: 29.44 GFLOPS + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml new file mode 100644 index 00000000..a1742a5f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml @@ -0,0 +1,27 @@ +name: Quadro-FX-570M +humanName: Quadro FX 570M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-06-01' + VRAM Frequency: 702 MHz + VRAM Bandwidth: 22.46 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + GPU Variant: NB8P-GL + TDP: 45 W + FP32 Compute: 60.80 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml new file mode 100644 index 00000000..c71fc762 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml @@ -0,0 +1,32 @@ +name: Quadro-FX-580 +humanName: Quadro FX 580 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 55 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-04-09' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 121 mm² + GPU: G96C + GPU Variant: G96-875-C1 + TDP: 40 W + FP32 Compute: 72.00 GFLOPS + Slot Width: Single-slot + Outputs: + - 1x DVI + - 2x DisplayPort + Power Connectors: None + Length: 198 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml new file mode 100644 index 00000000..03bab8ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml @@ -0,0 +1,28 @@ +name: Quadro-FX-770M +humanName: Quadro FX 770M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-14' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 25.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 144 mm² + GPU: G96 + GPU Variant: G96-975-A1 + TDP: 35 W + FP32 Compute: 80.00 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml new file mode 100644 index 00000000..f48f33d6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-130M +humanName: Quadro NVS 130M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 8 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-613-A2 + TDP: 10 W + FP32 Compute: 12.80 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml new file mode 100644 index 00000000..541d2482 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-135M +humanName: Quadro NVS 135M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 594 MHz + VRAM Bandwidth: 9.504 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-621-A2 + TDP: 10 W + FP32 Compute: 25.60 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml new file mode 100644 index 00000000..bdd35eb5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-140M +humanName: Quadro NVS 140M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-05-09' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 9.600 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-740-A2 + TDP: 10 W + FP32 Compute: 25.60 GFLOPS + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml new file mode 100644 index 00000000..b77420ad --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml @@ -0,0 +1,28 @@ +name: Quadro-NVS-150M +humanName: Quadro NVS 150M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-15' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: G98-700-U2 + TDP: 10 W + FP32 Compute: 20.80 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml new file mode 100644 index 00000000..87f59304 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml @@ -0,0 +1,28 @@ +name: Quadro-NVS-160M +humanName: Quadro NVS 160M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-08-15' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + GPU Variant: NB9M-GS + TDP: 12 W + FP32 Compute: 23.20 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml new file mode 100644 index 00000000..9f771247 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml @@ -0,0 +1,29 @@ +name: Quadro-NVS-290 +humanName: Quadro NVS 290 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-10-04' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Shader Processor Count: 16 + Die Size: 127 mm² + GPU: G86S + GPU Variant: G86-827-A2 + TDP: 21 W + FP32 Compute: 29.38 GFLOPS + Slot Width: Single-slot + Outputs: 1x DMS-59 + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml new file mode 100644 index 00000000..76703fb5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml @@ -0,0 +1,28 @@ +name: Quadro-NVS-295 +humanName: Quadro NVS 295 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-05-07' + VRAM Frequency: 695 MHz + VRAM Bandwidth: 11.12 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: 23 W + FP32 Compute: 20.80 GFLOPS + Slot Width: Single-slot + Outputs: 2x DisplayPort + Power Connectors: None + Length: 168 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml new file mode 100644 index 00000000..47620461 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-320M +humanName: Quadro NVS 320M +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 80 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2007-06-09' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 16 + Shader Processor Count: 32 + Die Size: 169 mm² + GPU: G84 + TDP: 20 W + FP32 Compute: 73.60 GFLOPS + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml new file mode 100644 index 00000000..0616abb0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-420 +humanName: Quadro NVS 420 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2009-01-20' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: 40 W + FP32 Compute: 22.40 GFLOPS + Slot Width: Single-slot + Outputs: 1x VHDCI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml new file mode 100644 index 00000000..82cddc83 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml @@ -0,0 +1,27 @@ +name: Quadro-NVS-450 +humanName: Quadro NVS 450 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-11-11' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Shader Processor Count: 8 + Die Size: 86 mm² + GPU: G98S + TDP: 35 W + FP32 Compute: 19.20 GFLOPS + Slot Width: Single-slot + Outputs: 4x DisplayPort + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml new file mode 100644 index 00000000..3c095a56 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml @@ -0,0 +1,26 @@ +name: Quadro-Plex-1000-Model-IV +humanName: Quadro Plex 1000 Model IV +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2008-07-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 320 W + FP32 Compute: 345.6 GFLOPS + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml new file mode 100644 index 00000000..8e2c32df --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml @@ -0,0 +1,26 @@ +name: Quadro-Plex-2100-D4 +humanName: Quadro Plex 2100 D4 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-07-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 64 + Shader Processor Count: 128 + Die Size: 324 mm² + GPU: G92 + TDP: 640 W + FP32 Compute: 320.0 GFLOPS + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml new file mode 100644 index 00000000..8e3a3eb6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml @@ -0,0 +1,26 @@ +name: Quadro-Plex-2100-S4 +humanName: Quadro Plex 2100 S4 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2008-07-25' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 640 W + FP32 Compute: 345.6 GFLOPS + Outputs: No outputs + Length: 522 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml new file mode 100644 index 00000000..694953a2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml @@ -0,0 +1,30 @@ +name: Quadro-VX-200 +humanName: Quadro VX 200 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 65 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1' + Release Date: '2008-01-08' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 51.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 56 + Shader Processor Count: 112 + Die Size: 324 mm² + GPU: G92 + TDP: 75 W + FP32 Compute: 252.0 GFLOPS + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml new file mode 100644 index 00000000..e5cc2843 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml @@ -0,0 +1,27 @@ +name: Tesla-C870 +humanName: Tesla C870 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-05-02' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 171 W + FP32 Compute: 345.6 GFLOPS + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 6-pin diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml new file mode 100644 index 00000000..0b899b1f --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml @@ -0,0 +1,26 @@ +name: Tesla-D870 +humanName: Tesla D870 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-05-02' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 520 W + FP32 Compute: 345.6 GFLOPS + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml new file mode 100644 index 00000000..56103234 --- /dev/null +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml @@ -0,0 +1,26 @@ +name: Tesla-S870 +humanName: Tesla S870 +isPart: true +type: Graphics Card +data: + Architecture: Tesla + Lithography: 90 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + OpenGL Support: '3.3' + OpenCL Support: '1.1 (1.0)' + Release Date: '2007-05-02' + VRAM Frequency: 800 MHz + VRAM Bandwidth: 76.80 GB/s + VRAM Capacity: 1536 MB + VRAM Type: GDDR3 + VRAM Bus Width: 384 bit + Render Output Unit Count: 24 + Texture Mapping Unit Count: 32 + Shader Processor Count: 128 + Die Size: 484 mm² + GPU: G80 + TDP: 800 W + FP32 Compute: 345.6 GFLOPS + Slot Width: Dual-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Turing.yaml b/specs/GPUs-CONSUMER/Turing.yaml new file mode 100644 index 00000000..b0945688 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing.yaml @@ -0,0 +1,104 @@ +name: Turing +humanName: Turing +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2018-08-13' +sections: + - header: WHOLE RANGE + members: + - CMP-30HX + - CMP-40HX + - CMP-50HX + - GeForce-GTX-1630 + - GeForce-GTX-1650 + - GeForce-GTX-1650-GDDR6 + - GeForce-GTX-1650-Max-Q + - GeForce-GTX-1650-Mobile + - GeForce-GTX-1650-SUPER + - GeForce-GTX-1650-Ti-Max-Q + - GeForce-GTX-1650-Ti-Mobile + - GeForce-GTX-1650-TU116 + - GeForce-GTX-1660 + - GeForce-GTX-1660-SUPER + - GeForce-GTX-1660-Ti + - GeForce-GTX-1660-Ti-Max-Q + - GeForce-GTX-1660-Ti-Mobile + - GeForce-MX450-30.5W-8Gbps + - GeForce-MX450-30.5W-10Gbps + - GeForce-MX550 + - GeForce-RTX-2060 + - GeForce-RTX-2060-12-GB + - GeForce-RTX-2060-Max-Q + - GeForce-RTX-2060-Max-Q-Refresh + - GeForce-RTX-2060-Mobile + - GeForce-RTX-2060-Mobile-Refresh + - GeForce-RTX-2060-SUPER + - GeForce-RTX-2060-SUPER-Mobile + - GeForce-RTX-2060-TU104 + - GeForce-RTX-2070 + - GeForce-RTX-2070-Max-Q + - GeForce-RTX-2070-Max-Q-Refresh + - GeForce-RTX-2070-Mobile + - GeForce-RTX-2070-Mobile-Refresh + - GeForce-RTX-2070-SUPER + - GeForce-RTX-2070-SUPER-Max-Q + - GeForce-RTX-2070-SUPER-Mobile + - GeForce-RTX-2080 + - GeForce-RTX-2080-Engineering-Sample + - GeForce-RTX-2080-Max-Q + - GeForce-RTX-2080-Mobile + - GeForce-RTX-2080-SUPER + - GeForce-RTX-2080-SUPER-Max-Q + - GeForce-RTX-2080-SUPER-Mobile + - GeForce-RTX-2080-Ti + - GeForce-RTX-2080-Ti-12-GB + - GeForce-MX450-12W + - GeForce-GTX-1650-TU106 + - GRID-RTX-T10-2 + - GRID-RTX-T10-4 + - GRID-RTX-T10-8 + - GRID-RTX-T10-16 + - Quadro-RTX-3000-Max-Q + - Quadro-RTX-3000-Mobile + - Quadro-RTX-3000-Mobile-Refresh + - Quadro-RTX-3000-X2-Mobile + - Quadro-RTX-4000 + - Quadro-RTX-4000-Max-Q + - Quadro-RTX-4000-Mobile + - Quadro-RTX-5000 + - Quadro-RTX-5000-Max-Q + - Quadro-RTX-5000-Mobile + - Quadro-RTX-5000-Mobile-Refresh + - Quadro-RTX-5000-X2-Mobile + - Quadro-RTX-6000 + - Quadro-RTX-6000-Mobile + - Quadro-RTX-6000-Passive + - Quadro-RTX-8000 + - Quadro-RTX-8000-Passive + - Quadro-T1000-Max-Q + - Quadro-T1000-Mobile + - Quadro-T1000-Mobile-GDDR6 + - Quadro-T1200-Max-Q + - Quadro-T1200-Mobile + - Quadro-T2000-Max-Q + - Quadro-T2000-Mobile + - T400 + - T400-4-GB + - T500-Max-Q + - T500-Mobile + - T550-Mobile + - T600 + - T600-Max-Q + - T600-Mobile + - T1000 + - T1000-8-GB + - Tesla-T4 + - Tesla-T4G + - Tesla-T10-16-GB + - Tesla-T40-24-GB + - TITAN-RTX diff --git a/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml new file mode 100644 index 00000000..25f66ea8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml @@ -0,0 +1,34 @@ +name: CMP-30HX +humanName: CMP 30HX +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-02-25' + GPU Base Frequency: 1530 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-100-A1 + TDP: 125 W + FP32 Compute: 5.027 TFLOPS + FP64 Compute: 157.1 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml new file mode 100644 index 00000000..b0ee65e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml @@ -0,0 +1,37 @@ +name: CMP-40HX +humanName: CMP 40HX +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-02-25' + GPU Base Frequency: 1470 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-100-A1 + TDP: 185 W + FP32 Compute: 7.603 TFLOPS + FP64 Compute: 237.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml new file mode 100644 index 00000000..8e95850b --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml @@ -0,0 +1,37 @@ +name: CMP-50HX +humanName: CMP 50HX +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '448' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-06-24' + GPU Base Frequency: 1350 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 560.0 GB/s + VRAM Capacity: 10 GB + VRAM Type: GDDR6 + VRAM Bus Width: 320 bit + Render Output Unit Count: 80 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3584 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-100-A1 + TDP: 250 W + FP32 Compute: 11.07 TFLOPS + FP64 Compute: 346.1 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 56 + Tensor Cores: 448 diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml new file mode 100644 index 00000000..4b555df2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml @@ -0,0 +1,35 @@ +name: GRID-RTX-T10-16 +humanName: GRID RTX T10-16 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1575 MHz + VRAM Bandwidth: 604.8 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 12.86 TFLOPS + FP64 Compute: 401.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml new file mode 100644 index 00000000..6c57b8b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml @@ -0,0 +1,35 @@ +name: GRID-RTX-T10-2 +humanName: GRID RTX T10-2 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 12.86 TFLOPS + FP64 Compute: 401.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml new file mode 100644 index 00000000..88ebeb0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml @@ -0,0 +1,35 @@ +name: GRID-RTX-T10-4 +humanName: GRID RTX T10-4 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 12.86 TFLOPS + FP64 Compute: 401.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml new file mode 100644 index 00000000..0763fb31 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml @@ -0,0 +1,35 @@ +name: GRID-RTX-T10-8 +humanName: GRID RTX T10-8 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 12.86 TFLOPS + FP64 Compute: 401.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml new file mode 100644 index 00000000..636ce6e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1630 +humanName: GeForce GTX 1630 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-06-28' + GPU Base Frequency: 1740 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: TU117-150-KA-A1 + TDP: 75 W + FP32 Compute: 1.828 TFLOPS + FP64 Compute: 57.12 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 145 mm + Width: 69 mm + Height: 18 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml new file mode 100644 index 00000000..4b52b807 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1650-GDDR6 +humanName: GeForce GTX 1650 GDDR6 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-01' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: TU117-300-A1 + TDP: 75 W + FP32 Compute: 2.849 TFLOPS + FP64 Compute: 89.04 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml new file mode 100644 index 00000000..981aa891 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-1650-Max-Q +humanName: GeForce GTX 1650 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-04-23' + GPU Base Frequency: 1020 MHz + GPU Boost Frequency: 1245 MHz + VRAM Frequency: 1751 MHz + VRAM Bandwidth: 112.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 2.550 TFLOPS + FP64 Compute: 79.68 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml new file mode 100644 index 00000000..4825a267 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml @@ -0,0 +1,29 @@ +name: GeForce-GTX-1650-Mobile +humanName: GeForce GTX 1650 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-04-23' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 2001 MHz + VRAM Bandwidth: 128.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 3.195 TFLOPS + FP64 Compute: 99.84 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml new file mode 100644 index 00000000..2fe2d49d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1650-SUPER +humanName: GeForce GTX 1650 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-11-22' + GPU Base Frequency: 1530 MHz + GPU Boost Frequency: 1725 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 80 + Shader Processor Count: 1280 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-250-KA-A1 + TDP: 100 W + FP32 Compute: 4.416 TFLOPS + FP64 Compute: 138.0 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml new file mode 100644 index 00000000..9fec5529 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1650-TU106 +humanName: GeForce GTX 1650 TU106 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-06-18' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-125-KAB-A1 + TDP: 90 W + FP32 Compute: 2.849 TFLOPS + FP64 Compute: 89.04 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml new file mode 100644 index 00000000..c2ec740a --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1650-TU116 +humanName: GeForce GTX 1650 TU116 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-07-07' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-150-KA-A1 + TDP: 80 W + FP32 Compute: 2.849 TFLOPS + FP64 Compute: 89.04 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml new file mode 100644 index 00000000..e7017cde --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1650-Ti-Max-Q +humanName: GeForce GTX 1650 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: N18P-G62 + TDP: 50 W + FP32 Compute: 2.458 TFLOPS + FP64 Compute: 76.80 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml new file mode 100644 index 00000000..d2328d40 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1650-Ti-Mobile +humanName: GeForce GTX 1650 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 1350 MHz + GPU Boost Frequency: 1485 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: N18P-G62 + TDP: 50 W + FP32 Compute: 3.041 TFLOPS + FP64 Compute: 95.04 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml new file mode 100644 index 00000000..1d6cb670 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1650 +humanName: GeForce GTX 1650 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-04-23' + GPU Base Frequency: 1485 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 2001 MHz + VRAM Bandwidth: 128.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: TU117-300-A1 + TDP: 75 W + FP32 Compute: 2.984 TFLOPS + FP64 Compute: 93.24 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: None + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml new file mode 100644 index 00000000..5f42a3dd --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1660-SUPER +humanName: GeForce GTX 1660 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-10-29' + GPU Base Frequency: 1530 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-300-A1 + TDP: 125 W + FP32 Compute: 5.027 TFLOPS + FP64 Compute: 157.1 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml new file mode 100644 index 00000000..b3e859f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1660-Ti-Max-Q +humanName: GeForce GTX 1660 Ti Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-04-23' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1335 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 284 mm² + GPU: TU116 + TDP: unknown + FP32 Compute: 4.101 TFLOPS + FP64 Compute: 128.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml new file mode 100644 index 00000000..24d7df71 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml @@ -0,0 +1,30 @@ +name: GeForce-GTX-1660-Ti-Mobile +humanName: GeForce GTX 1660 Ti Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-04-23' + GPU Base Frequency: 1455 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 284 mm² + GPU: TU116 + TDP: unknown + FP32 Compute: 4.884 TFLOPS + FP64 Compute: 152.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml new file mode 100644 index 00000000..75a78d1c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1660-Ti +humanName: GeForce GTX 1660 Ti +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-02-22' + GPU Base Frequency: 1500 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 96 + Shader Processor Count: 1536 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-400-A1 + TDP: 120 W + FP32 Compute: 5.437 TFLOPS + FP64 Compute: 169.9 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml new file mode 100644 index 00000000..05d7beaa --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml @@ -0,0 +1,37 @@ +name: GeForce-GTX-1660 +humanName: GeForce GTX 1660 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-03-14' + GPU Base Frequency: 1530 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 2001 MHz + VRAM Bandwidth: 192.1 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR5 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 88 + Shader Processor Count: 1408 + Die Size: 284 mm² + GPU: TU116 + GPU Variant: TU116-300-A1 + TDP: 120 W + FP32 Compute: 5.027 TFLOPS + FP64 Compute: 157.1 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 1x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 111 mm + Height: 35 mm diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml new file mode 100644 index 00000000..5b16063d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml @@ -0,0 +1,30 @@ +name: GeForce-MX450-12W +humanName: GeForce MX450 12W +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-08-15' + GPU Base Frequency: 720 MHz + GPU Boost Frequency: 930 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117S + GPU Variant: N18S-LP + TDP: 12 W + FP32 Compute: 1.667 TFLOPS + FP64 Compute: 52.08 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml new file mode 100644 index 00000000..e6056627 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml @@ -0,0 +1,30 @@ +name: GeForce-MX450-30.5W-10Gbps +humanName: GeForce MX450 30.5W 10Gbps +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-08-25' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1575 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117S + GPU Variant: N18S-G5 + TDP: 31 W + FP32 Compute: 2.822 TFLOPS + FP64 Compute: 88.20 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml new file mode 100644 index 00000000..35b77705 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml @@ -0,0 +1,30 @@ +name: GeForce-MX450-30.5W-8Gbps +humanName: GeForce MX450 30.5W 8Gbps +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-08-25' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1275 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR5 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117S + GPU Variant: N18S-G5 + TDP: 31 W + FP32 Compute: 2.285 TFLOPS + FP64 Compute: 71.40 GFLOPS (1:32) + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml new file mode 100644 index 00000000..8d6212fb --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml @@ -0,0 +1,31 @@ +name: GeForce-MX550 +humanName: GeForce MX550 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-17' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1320 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117SB + GPU Variant: TU117-670-A1 + TDP: 25 W + FP32 Compute: 2.703 TFLOPS + FP64 Compute: 42.24 GFLOPS (1:64) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml new file mode 100644 index 00000000..ceaddd4a --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml @@ -0,0 +1,40 @@ +name: GeForce-RTX-2060-12-GB +humanName: GeForce RTX 2060 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '272' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-12-07' + GPU Base Frequency: 1470 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 136 + Shader Processor Count: 2176 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-300-KA-A1 + TDP: 184 W + FP32 Compute: 7.181 TFLOPS + FP64 Compute: 224.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 34 + Tensor Cores: 272 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml new file mode 100644 index 00000000..f981bf64 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-2060-Max-Q-Refresh +humanName: GeForce RTX 2060 Max-Q Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 960 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1353 MHz + VRAM Bandwidth: 259.8 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106B + TDP: 115 W + FP32 Compute: 4.608 TFLOPS + FP64 Compute: 144.0 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml new file mode 100644 index 00000000..500fc678 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2060-Max-Q +humanName: GeForce RTX 2060 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-01-29' + GPU Base Frequency: 975 MHz + GPU Boost Frequency: 1185 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N18E-G1 + TDP: 65 W + FP32 Compute: 4.550 TFLOPS + FP64 Compute: 142.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml new file mode 100644 index 00000000..3e1939a3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2060-Mobile-Refresh +humanName: GeForce RTX 2060 Mobile Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 1005 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 264.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106B + GPU Variant: N18E-G1-KD-A1 + TDP: 65 W + FP32 Compute: 5.990 TFLOPS + FP64 Compute: 187.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml new file mode 100644 index 00000000..87c9a6cf --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2060-Mobile +humanName: GeForce RTX 2060 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 960 MHz + GPU Boost Frequency: 1200 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N18E-G1-KD-A1 + TDP: 115 W + FP32 Compute: 4.608 TFLOPS + FP64 Compute: 144.0 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml new file mode 100644 index 00000000..17a43ced --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml @@ -0,0 +1,35 @@ +name: GeForce-RTX-2060-SUPER-Mobile +humanName: GeForce RTX 2060 SUPER Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '272' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-07-09' + GPU Base Frequency: 1470 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 136 + Shader Processor Count: 2176 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-410-A1 + TDP: 175 W + FP32 Compute: 6.659 TFLOPS + FP64 Compute: 208.1 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Length: 82 mm + Width: 115 mm + Ray Tracing Cores: 34 + Tensor Cores: 272 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml new file mode 100644 index 00000000..6c944a44 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml @@ -0,0 +1,40 @@ +name: GeForce-RTX-2060-SUPER +humanName: GeForce RTX 2060 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '272' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-07-09' + GPU Base Frequency: 1470 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 136 + Shader Processor Count: 2176 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-410-A1 + TDP: 175 W + FP32 Compute: 7.181 TFLOPS + FP64 Compute: 224.4 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 34 + Tensor Cores: 272 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml new file mode 100644 index 00000000..275613ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml @@ -0,0 +1,40 @@ +name: GeForce-RTX-2060-TU104 +humanName: GeForce RTX 2060 TU104 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-01-10' + GPU Base Frequency: 1365 MHz + GPU Boost Frequency: 1680 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-150-KC-A1 + TDP: 160 W + FP32 Compute: 6.451 TFLOPS + FP64 Compute: 201.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml new file mode 100644 index 00000000..e18f215f --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml @@ -0,0 +1,40 @@ +name: GeForce-RTX-2060 +humanName: GeForce RTX 2060 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-07' + GPU Base Frequency: 1365 MHz + GPU Boost Frequency: 1680 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 48 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-200A-KA-A1 + TDP: 160 W + FP32 Compute: 6.451 TFLOPS + FP64 Compute: 201.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml new file mode 100644 index 00000000..6457812d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-2070-Max-Q-Refresh +humanName: GeForce RTX 2070 Max-Q Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-03-04' + GPU Base Frequency: 900 MHz + GPU Boost Frequency: 1125 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106B + TDP: 115 W + FP32 Compute: 5.184 TFLOPS + FP64 Compute: 162.0 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml new file mode 100644 index 00000000..e41ef42f --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2070-Max-Q +humanName: GeForce RTX 2070 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 885 MHz + GPU Boost Frequency: 1185 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N18E-G2-A1 + TDP: 90 W + FP32 Compute: 5.460 TFLOPS + FP64 Compute: 170.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml new file mode 100644 index 00000000..1141a750 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-2070-Mobile-Refresh +humanName: GeForce RTX 2070 Mobile Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-03-04' + GPU Base Frequency: 1260 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106B + TDP: 115 W + FP32 Compute: 6.705 TFLOPS + FP64 Compute: 209.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml new file mode 100644 index 00000000..6392e714 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2070-Mobile +humanName: GeForce RTX 2070 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 1215 MHz + GPU Boost Frequency: 1440 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N18E-G2-A1 + TDP: 115 W + FP32 Compute: 6.636 TFLOPS + FP64 Compute: 207.4 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml new file mode 100644 index 00000000..c5ac0a6b --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml @@ -0,0 +1,33 @@ +name: GeForce-RTX-2070-SUPER-Max-Q +humanName: GeForce RTX 2070 SUPER Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1155 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + TDP: 80 W + FP32 Compute: 5.914 TFLOPS + FP64 Compute: 184.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml new file mode 100644 index 00000000..ffad7b35 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2070-SUPER-Mobile +humanName: GeForce RTX 2070 SUPER Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 1140 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N18E-G2R + TDP: 115 W + FP32 Compute: 7.066 TFLOPS + FP64 Compute: 220.8 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml new file mode 100644 index 00000000..c69a8c84 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2070-SUPER +humanName: GeForce RTX 2070 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-07-09' + GPU Base Frequency: 1605 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-410-A1 + TDP: 215 W + FP32 Compute: 9.062 TFLOPS + FP64 Compute: 283.2 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml new file mode 100644 index 00000000..e06a8e6d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml @@ -0,0 +1,40 @@ +name: GeForce-RTX-2070 +humanName: GeForce RTX 2070 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-10-17' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1620 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: TU106-400A-A1 + TDP: 175 W + FP32 Compute: 7.465 TFLOPS + FP64 Compute: 233.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x HDMI 2.0 + - 2x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 229 mm + Width: 113 mm + Height: 35 mm + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml new file mode 100644 index 00000000..6548245c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2080-Engineering-Sample +humanName: GeForce RTX 2080 Engineering Sample +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1515 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-400A-A1 + TDP: 215 W + FP32 Compute: 10.51 TFLOPS + FP64 Compute: 328.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml new file mode 100644 index 00000000..e80cf4c2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2080-Max-Q +humanName: GeForce RTX 2080 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '368' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1095 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 184 + Shader Processor Count: 2944 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N18E-G3-A1 + TDP: 80 W + FP32 Compute: 6.447 TFLOPS + FP64 Compute: 201.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 368 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml new file mode 100644 index 00000000..e50db2a9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2080-Mobile +humanName: GeForce RTX 2080 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '368' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-01-29' + GPU Base Frequency: 1380 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 184 + Shader Processor Count: 2944 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N18E-G3-A1 + TDP: 150 W + FP32 Compute: 9.362 TFLOPS + FP64 Compute: 292.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 46 + Tensor Cores: 368 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml new file mode 100644 index 00000000..7253f8a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2080-SUPER-Max-Q +humanName: GeForce RTX 2080 SUPER Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 975 MHz + VRAM Frequency: 1375 MHz + VRAM Bandwidth: 352.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N18E-G3R + TDP: 80 W + FP32 Compute: 5.990 TFLOPS + FP64 Compute: 187.2 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml new file mode 100644 index 00000000..7d25485f --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml @@ -0,0 +1,34 @@ +name: GeForce-RTX-2080-SUPER-Mobile +humanName: GeForce RTX 2080 SUPER Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-04-02' + GPU Base Frequency: 1365 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N18E-G3-A1 + TDP: 150 W + FP32 Compute: 9.585 TFLOPS + FP64 Compute: 299.5 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml new file mode 100644 index 00000000..507c63f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2080-SUPER +humanName: GeForce RTX 2080 SUPER +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-07-23' + GPU Base Frequency: 1650 MHz + GPU Boost Frequency: 1815 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 495.9 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-450-A1 + TDP: 250 W + FP32 Compute: 11.15 TFLOPS + FP64 Compute: 348.5 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml new file mode 100644 index 00000000..44e8fff3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2080-Ti-12-GB +humanName: GeForce RTX 2080 Ti 12 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Never Released' + GPU Base Frequency: 1410 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 2000 MHz + VRAM Bandwidth: 768.0 GB/s + VRAM Capacity: 12 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-350-A1 + TDP: 250 W + FP32 Compute: 15.21 TFLOPS + FP64 Compute: 475.2 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml new file mode 100644 index 00000000..a24a6b36 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2080-Ti +humanName: GeForce RTX 2080 Ti +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '544' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-09-20' + GPU Base Frequency: 1350 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 616.0 GB/s + VRAM Capacity: 11 GB + VRAM Type: GDDR6 + VRAM Bus Width: 352 bit + Render Output Unit Count: 88 + Texture Mapping Unit Count: 272 + Shader Processor Count: 4352 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-300A-K1-A1 + TDP: 250 W + FP32 Compute: 13.45 TFLOPS + FP64 Compute: 420.2 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 68 + Tensor Cores: 544 diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml new file mode 100644 index 00000000..24a038a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml @@ -0,0 +1,39 @@ +name: GeForce-RTX-2080 +humanName: GeForce RTX 2080 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '368' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-09-20' + GPU Base Frequency: 1515 MHz + GPU Boost Frequency: 1710 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 184 + Shader Processor Count: 2944 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-400A-A1 + TDP: 215 W + FP32 Compute: 10.07 TFLOPS + FP64 Compute: 314.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 46 + Tensor Cores: 368 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml new file mode 100644 index 00000000..3e1fd03c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml @@ -0,0 +1,33 @@ +name: Quadro-RTX-3000-Max-Q +humanName: Quadro RTX 3000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 600 MHz + GPU Boost Frequency: 1215 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 288.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + TDP: 60 W + FP32 Compute: 4.666 TFLOPS + FP64 Compute: 145.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml new file mode 100644 index 00000000..f06178b3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-3000-Mobile-Refresh +humanName: Quadro RTX 3000 Mobile Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 945 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N19E-Q1-KD-A1 + TDP: 80 W + FP32 Compute: 5.299 TFLOPS + FP64 Compute: 165.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml new file mode 100644 index 00000000..353ee42d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-3000-Mobile +humanName: Quadro RTX 3000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 945 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N19E-Q1-KA-K1 + TDP: 80 W + FP32 Compute: 5.299 TFLOPS + FP64 Compute: 165.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml new file mode 100644 index 00000000..03707871 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-3000-X2-Mobile +humanName: Quadro RTX 3000 X2 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '240' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 945 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 336.0 GB/s + VRAM Capacity: 6 GB + VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 120 + Shader Processor Count: 1920 + Die Size: 445 mm² + GPU: TU106 + GPU Variant: N19E-Q1-KD-A1 + TDP: 160 W + FP32 Compute: 5.299 TFLOPS + FP64 Compute: 165.6 GFLOPS (1:32) + Slot Width: MXM Module + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 30 + Tensor Cores: 240 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml new file mode 100644 index 00000000..d4b0d3f9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml @@ -0,0 +1,33 @@ +name: Quadro-RTX-4000-Max-Q +humanName: Quadro RTX 4000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + TDP: 80 W + FP32 Compute: 7.066 TFLOPS + FP64 Compute: 220.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml new file mode 100644 index 00000000..7fa46f91 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-4000-Mobile +humanName: Quadro RTX 4000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 1110 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N19E-Q3-A1 + TDP: 110 W + FP32 Compute: 7.987 TFLOPS + FP64 Compute: 249.6 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml new file mode 100644 index 00000000..2e38033c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-4000 +humanName: Quadro RTX 4000 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '288' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-11-13' + GPU Base Frequency: 1005 MHz + GPU Boost Frequency: 1545 MHz + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 416.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 144 + Shader Processor Count: 2304 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-850-A1 + TDP: 160 W + FP32 Compute: 7.119 TFLOPS + FP64 Compute: 222.5 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 8-pin + Length: 241 mm + Width: 111 mm + Ray Tracing Cores: 36 + Tensor Cores: 288 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml new file mode 100644 index 00000000..a0796545 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml @@ -0,0 +1,33 @@ +name: Quadro-RTX-5000-Max-Q +humanName: Quadro RTX 5000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 600 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 384.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + TDP: 80 W + FP32 Compute: 8.294 TFLOPS + FP64 Compute: 259.2 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml new file mode 100644 index 00000000..24612270 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml @@ -0,0 +1,33 @@ +name: Quadro-RTX-5000-Mobile-Refresh +humanName: Quadro RTX 5000 Mobile Refresh +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-06-08' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104B + TDP: 110 W + FP32 Compute: 9.400 TFLOPS + FP64 Compute: 293.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml new file mode 100644 index 00000000..23492641 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-5000-Mobile +humanName: Quadro RTX 5000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N19E-Q5-A1 + TDP: 110 W + FP32 Compute: 9.400 TFLOPS + FP64 Compute: 293.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml new file mode 100644 index 00000000..ccfb8492 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml @@ -0,0 +1,34 @@ +name: Quadro-RTX-5000-X2-Mobile +humanName: Quadro RTX 5000 X2 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-06-08' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: N19E-Q5-A1 + TDP: 110 W + FP32 Compute: 9.400 TFLOPS + FP64 Compute: 293.8 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml new file mode 100644 index 00000000..152e191b --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-5000 +humanName: Quadro RTX 5000 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-13' + GPU Base Frequency: 1620 MHz + GPU Boost Frequency: 1815 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 448.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-875-A1 + TDP: 230 W + FP32 Compute: 11.15 TFLOPS + FP64 Compute: 348.5 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml new file mode 100644 index 00000000..283123ab --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml @@ -0,0 +1,33 @@ +name: Quadro-RTX-6000-Mobile +humanName: Quadro RTX 6000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-09-04' + GPU Base Frequency: 1275 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + TDP: unknown + FP32 Compute: 13.41 TFLOPS + FP64 Compute: 419.0 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml new file mode 100644 index 00000000..60319333 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-6000-Passive +humanName: Quadro RTX 6000 Passive +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-13' + GPU Base Frequency: 1305 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 14.38 TFLOPS + FP64 Compute: 449.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml new file mode 100644 index 00000000..30b0c29a --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-6000 +humanName: Quadro RTX 6000 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-13' + GPU Base Frequency: 1440 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 16.31 TFLOPS + FP64 Compute: 509.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml new file mode 100644 index 00000000..99adbc98 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-8000-Passive +humanName: Quadro RTX 8000 Passive +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-13' + GPU Base Frequency: 1230 MHz + GPU Boost Frequency: 1620 MHz + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 624.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 14.93 TFLOPS + FP64 Compute: 466.6 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml new file mode 100644 index 00000000..ba2b610e --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml @@ -0,0 +1,36 @@ +name: Quadro-RTX-8000 +humanName: Quadro RTX 8000 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-08-13' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 48 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-875-A1 + TDP: 260 W + FP32 Compute: 16.31 TFLOPS + FP64 Compute: 509.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a1x USB Type-C + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml new file mode 100644 index 00000000..1b85fc86 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-T1000-Max-Q +humanName: Quadro T1000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 765 MHz + GPU Boost Frequency: 1350 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 2.419 TFLOPS + FP64 Compute: 75.60 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml new file mode 100644 index 00000000..2f3474b5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml @@ -0,0 +1,31 @@ +name: Quadro-T1000-Mobile-GDDR6 +humanName: Quadro T1000 Mobile GDDR6 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-06-08' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1650 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + GPU Variant: N19P-Q1-A1 + TDP: 50 W + FP32 Compute: 2.957 TFLOPS + FP64 Compute: 92.40 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml new file mode 100644 index 00000000..8d5272a9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-T1000-Mobile +humanName: Quadro T1000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 1395 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 2001 MHz + VRAM Bandwidth: 128.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 2.607 TFLOPS + FP64 Compute: 81.48 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml new file mode 100644 index 00000000..4287f777 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-T1200-Max-Q +humanName: Quadro T1200 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 855 MHz + GPU Boost Frequency: 1425 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 18 W + FP32 Compute: 2.918 TFLOPS + FP64 Compute: 91.20 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml new file mode 100644 index 00000000..03ee0812 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-T1200-Mobile +humanName: Quadro T1200 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 1515 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 18 W + FP32 Compute: 3.656 TFLOPS + FP64 Compute: 114.2 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml new file mode 100644 index 00000000..3859427c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml @@ -0,0 +1,30 @@ +name: Quadro-T2000-Max-Q +humanName: Quadro T2000 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 1035 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 40 W + FP32 Compute: 2.857 TFLOPS + FP64 Compute: 89.28 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml new file mode 100644 index 00000000..de95085c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml @@ -0,0 +1,30 @@ +name: Quadro-T2000-Mobile +humanName: Quadro T2000 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-05-27' + GPU Base Frequency: 1575 MHz + GPU Boost Frequency: 1785 MHz + VRAM Frequency: 2001 MHz + VRAM Bandwidth: 128.1 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR5 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 60 W + FP32 Compute: 3.656 TFLOPS + FP64 Compute: 114.2 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml b/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml new file mode 100644 index 00000000..9b4a997d --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml @@ -0,0 +1,30 @@ +name: T1000-8-GB +humanName: T1000 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-06' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 8 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 2.500 TFLOPS + FP64 Compute: 78.12 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T1000.yaml b/specs/GPUs-CONSUMER/Turing/T1000.yaml new file mode 100644 index 00000000..a875e643 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T1000.yaml @@ -0,0 +1,30 @@ +name: T1000 +humanName: T1000 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-06' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 50 W + FP32 Compute: 2.500 TFLOPS + FP64 Compute: 78.12 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml b/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml new file mode 100644 index 00000000..d913ef8f --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml @@ -0,0 +1,30 @@ +name: T400-4-GB +humanName: T400 4 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-06' + GPU Base Frequency: 420 MHz + GPU Boost Frequency: 1425 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 200 mm² + GPU: TU117 + TDP: 30 W + FP32 Compute: 1,094 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 3x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T400.yaml b/specs/GPUs-CONSUMER/Turing/T400.yaml new file mode 100644 index 00000000..2d184a38 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T400.yaml @@ -0,0 +1,30 @@ +name: T400 +humanName: T400 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-05-06' + GPU Base Frequency: 420 MHz + GPU Boost Frequency: 1425 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 2 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 200 mm² + GPU: TU117 + TDP: 30 W + FP32 Compute: 1,094 GFLOPS + FP64 Compute: 34.20 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 3x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml new file mode 100644 index 00000000..ef0031de --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml @@ -0,0 +1,30 @@ +name: T500-Max-Q +humanName: T500 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-12-02' + GPU Base Frequency: 795 MHz + GPU Boost Frequency: 1425 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 18 W + FP32 Compute: 2.554 TFLOPS + FP64 Compute: 79.80 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml new file mode 100644 index 00000000..eee093e0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml @@ -0,0 +1,30 @@ +name: T500-Mobile +humanName: T500 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020-12-02' + GPU Base Frequency: 1185 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 80.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 18 W + FP32 Compute: 2.796 TFLOPS + FP64 Compute: 87.36 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml new file mode 100644 index 00000000..241ef282 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml @@ -0,0 +1,30 @@ +name: T550-Mobile +humanName: T550 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'May 2022' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1665 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 96.00 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 64 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: 200 mm² + GPU: TU117 + TDP: 23 W + FP32 Compute: 3.410 TFLOPS + FP64 Compute: 106.6 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml new file mode 100644 index 00000000..75d358c5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml @@ -0,0 +1,30 @@ +name: T600-Max-Q +humanName: T600 Max-Q +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 930 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 40 W + FP32 Compute: 2.500 TFLOPS + FP64 Compute: 78.12 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml new file mode 100644 index 00000000..fea29e72 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml @@ -0,0 +1,30 @@ +name: T600-Mobile +humanName: T600 Mobile +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 780 MHz + GPU Boost Frequency: 1410 MHz + VRAM Frequency: 1500 MHz + VRAM Bandwidth: 192.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: 200 mm² + GPU: TU117 + TDP: 40 W + FP32 Compute: 2.527 TFLOPS + FP64 Compute: 78.96 GFLOPS (1:32) + Slot Width: IGP + Outputs: Portable Device Dependent + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/T600.yaml b/specs/GPUs-CONSUMER/Turing/T600.yaml new file mode 100644 index 00000000..343d2705 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/T600.yaml @@ -0,0 +1,30 @@ +name: T600 +humanName: T600 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2021-04-12' + GPU Base Frequency: 735 MHz + GPU Boost Frequency: 1335 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 160.0 GB/s + VRAM Capacity: 4 GB + VRAM Type: GDDR6 + VRAM Bus Width: 128 bit + Render Output Unit Count: 32 + Texture Mapping Unit Count: 40 + Shader Processor Count: 640 + Die Size: 200 mm² + GPU: TU117 + TDP: 40 W + FP32 Compute: 1.709 TFLOPS + FP64 Compute: 53.40 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 1.4a + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml b/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml new file mode 100644 index 00000000..30550145 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml @@ -0,0 +1,39 @@ +name: TITAN-RTX +humanName: TITAN RTX +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-12-18' + GPU Base Frequency: 1350 MHz + GPU Boost Frequency: 1770 MHz + VRAM Frequency: 1750 MHz + VRAM Bandwidth: 672.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-400-A1 + TDP: 280 W + FP32 Compute: 16.31 TFLOPS + FP64 Compute: 509.8 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a1x USB Type-C + Power Connectors: 2x 8-pin + Length: 267 mm + Width: 116 mm + Height: 35 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml new file mode 100644 index 00000000..4f49ab8f --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml @@ -0,0 +1,36 @@ +name: Tesla-T10-16-GB +humanName: Tesla T10 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '384' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2020' + GPU Base Frequency: 1065 MHz + GPU Boost Frequency: 1395 MHz + VRAM Frequency: 1575 MHz + VRAM Bandwidth: 403.2 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 192 + Shader Processor Count: 3072 + Die Size: 754 mm² + GPU: TU102 + GPU Variant: TU102-890-KCD-A1 + TDP: 150 W + FP32 Compute: 8.571 TFLOPS + FP64 Compute: 267.8 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm + Ray Tracing Cores: 48 + Tensor Cores: 384 diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml new file mode 100644 index 00000000..8eb6a75a --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml @@ -0,0 +1,35 @@ +name: Tesla-T4 +humanName: Tesla T4 +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-09-13' + GPU Base Frequency: 585 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + GPU Variant: TU104-895-A1 + TDP: 70 W + FP32 Compute: 8.141 TFLOPS + FP64 Compute: 254.4 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Length: 168 mm + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml new file mode 100644 index 00000000..de4f8a6c --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml @@ -0,0 +1,34 @@ +name: Tesla-T40-24-GB +humanName: Tesla T40 24 GB +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '576' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: 'Unknown' + GPU Base Frequency: 1305 MHz + GPU Boost Frequency: 1560 MHz + VRAM Frequency: 1625 MHz + VRAM Bandwidth: 624.0 GB/s + VRAM Capacity: 24 GB + VRAM Type: GDDR6 + VRAM Bus Width: 384 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 288 + Shader Processor Count: 4608 + Die Size: 754 mm² + GPU: TU102 + TDP: 260 W + FP32 Compute: 14.38 TFLOPS + FP64 Compute: 449.3 GFLOPS (1:32) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Ray Tracing Cores: 72 + Tensor Cores: 576 diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml new file mode 100644 index 00000000..d949c213 --- /dev/null +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml @@ -0,0 +1,34 @@ +name: Tesla-T4G +humanName: Tesla T4G +isPart: true +type: Graphics Card +data: + Architecture: Turing + Lithography: 12 nm + DirectX Support: '12.2' + HLSL Shader Model: '320' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-09-13' + GPU Base Frequency: 585 MHz + GPU Boost Frequency: 1590 MHz + VRAM Frequency: 1250 MHz + VRAM Bandwidth: 320.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: GDDR6 + VRAM Bus Width: 256 bit + Render Output Unit Count: 64 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 545 mm² + GPU: TU104 + TDP: 70 W + FP32 Compute: 8.141 TFLOPS + FP64 Compute: 254.4 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None + Length: 168 mm + Ray Tracing Cores: 40 + Tensor Cores: 320 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml new file mode 100644 index 00000000..81ebd27b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml @@ -0,0 +1,93 @@ +name: Ultra-Threaded-SE +humanName: Ultra-Threaded SE +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2005-10-01' +sections: + - header: WHOLE RANGE + members: + - All-In-Wonder-2006-PCIe-Edition + - All-In-Wonder-X1800-XL + - All-In-Wonder-X1900 + - FireGL-V3300 + - FireGL-V3350 + - FireGL-V3400 + - FireGL-V5200 + - FireGL-V7200 + - FireGL-V7300 + - FireGL-V7350 + - FireMV-2250 + - FireMV-2250-PCIe-x1 + - Mobility-FireGL-V5200 + - Mobility-FireGL-V5250 + - Mobility-Radeon-HD-2300 + - Mobility-Radeon-X1300 + - Mobility-Radeon-X1350 + - Mobility-Radeon-X1450 + - Mobility-Radeon-X1600 + - Mobility-Radeon-X1600-Mac-Edition + - Mobility-Radeon-X1700 + - Mobility-Radeon-X1800 + - Mobility-Radeon-X1800-XT + - Mobility-Radeon-X1900 + - Mobility-Radeon-X2300 + - Mobility-Radeon-X2500 + - Mobility-Radeon-X1400 + - Mobility-Radeon-X2300-HD + - Radeon-X1300 + - Radeon-X1300-CE + - Radeon-X1300-LE + - Radeon-X1300-PCI + - Radeon-X1300-PRO + - Radeon-X1300-PRO-AGP + - Radeon-X1300-XT + - Radeon-X1300-XT-AGP + - Radeon-X1550 + - Radeon-X1550-AGP + - Radeon-X1550-PCI + - Radeon-X1600 + - Radeon-X1600-PRO + - Radeon-X1600-PRO-AGP + - Radeon-X1600-SE + - Radeon-X1600-XT + - Radeon-X1600-XT-Dual + - Radeon-X1650 + - Radeon-X1650-GT + - Radeon-X1650-GTO + - Radeon-X1650-PRO + - Radeon-X1650-SE + - Radeon-X1650-XT-AGP + - Radeon-X1650-XT-Dual + - Radeon-X1700-FSC + - Radeon-X1700-SE + - Radeon-X1800-CrossFire-Edition + - Radeon-X1800-GTO + - Radeon-X1800-GTO2 + - Radeon-X1800-XL + - Radeon-X1800-XT + - Radeon-X1900-CrossFire-Edition + - Radeon-X1900-G5-Mac-Edition + - Radeon-X1900-GT + - Radeon-X1900-XT + - Radeon-X1900-XTX + - Radeon-X1950-CrossFire-Edition + - Radeon-X1950-GT + - Radeon-X1950-GT-AGP + - Radeon-X1950-PRO + - Radeon-X1950-PRO-AGP + - Radeon-X1950-PRO-DUAL + - Radeon-X1950-XT + - Radeon-X1950-XT-AGP + - Radeon-X1950-XTX + - Radeon-X1950-XTX-Uber-Edition + - Radeon-X1300-AGP + - Radeon-X1650-AGP + - Radeon-X1650-PRO-AGP + - Radeon-X1650-XT + - Stream-Processor + - Wii-GPU diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml new file mode 100644 index 00000000..82541ab7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml @@ -0,0 +1,27 @@ +name: All-In-Wonder-2006-PCIe-Edition +humanName: All-In-Wonder 2006 PCIe Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-12-22' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: None + Length: 249 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml new file mode 100644 index 00000000..8e9447e4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml @@ -0,0 +1,29 @@ +name: All-In-Wonder-X1800-XL +humanName: All-In-Wonder X1800 XL +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-27' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 AIW + TDP: 75 W + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + Length: 254 mm + Width: 111 mm + Height: 19 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml new file mode 100644 index 00000000..597954ef --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml @@ -0,0 +1,28 @@ +name: All-In-Wonder-X1900 +humanName: All-In-Wonder X1900 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-01-13' + VRAM Frequency: 477 MHz + VRAM Bandwidth: 30.53 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 AIW + TDP: unknown + Slot Width: Single-slot + Outputs: 1x DVI + Power Connectors: 1x 6-pin + Length: 248 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml new file mode 100644 index 00000000..d2d98590 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml @@ -0,0 +1,26 @@ +name: FireGL-V3300 +humanName: FireGL V3300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml new file mode 100644 index 00000000..4c76d00f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml @@ -0,0 +1,26 @@ +name: FireGL-V3350 +humanName: FireGL V3350 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml new file mode 100644 index 00000000..b226787a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml @@ -0,0 +1,26 @@ +name: FireGL-V3400 +humanName: FireGL V3400 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 GL + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml new file mode 100644 index 00000000..75f22c43 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml @@ -0,0 +1,26 @@ +name: FireGL-V5200 +humanName: FireGL V5200 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 GL + TDP: 35 W + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml new file mode 100644 index 00000000..661db713 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml @@ -0,0 +1,30 @@ +name: FireGL-V7200 +humanName: FireGL V7200 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 41.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 GL + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml new file mode 100644 index 00000000..bb953d84 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml @@ -0,0 +1,30 @@ +name: FireGL-V7300 +humanName: FireGL V7300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 648 MHz + VRAM Bandwidth: 41.47 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 GL + TDP: 97 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml new file mode 100644 index 00000000..5899e80f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml @@ -0,0 +1,30 @@ +name: FireGL-V7350 +humanName: FireGL V7350 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 650 MHz + VRAM Bandwidth: 41.60 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 GL + TDP: 111 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 229 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml new file mode 100644 index 00000000..febfb603 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml @@ -0,0 +1,27 @@ +name: FireMV-2250-PCIe-x1 +humanName: FireMV 2250 PCIe x1 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + TDP: 32 W + Slot Width: Single-slot + Outputs: 1x S-Video1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 69 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml new file mode 100644 index 00000000..693ea18a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml @@ -0,0 +1,28 @@ +name: FireMV-2250 +humanName: FireMV 2250 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + TDP: 32 W + Slot Width: Single-slot + Outputs: 1x S-Video1x DMS-59 + Power Connectors: None + Length: 170 mm + Width: 69 mm + Height: 23 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml new file mode 100644 index 00000000..926a39a0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-V5200 +humanName: Mobility FireGL V5200 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 475 MHz + VRAM Bandwidth: 15.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 150 mm² + GPU: M56 + GPU Variant: M56 GL + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml new file mode 100644 index 00000000..c58efd20 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml @@ -0,0 +1,24 @@ +name: Mobility-FireGL-V5250 +humanName: Mobility FireGL V5250 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 350 MHz + VRAM Bandwidth: 11.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 150 mm² + GPU: M66 + GPU Variant: M66-P + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml new file mode 100644 index 00000000..ea54cca5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-HD-2300 +humanName: Mobility Radeon HD 2300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-03-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M71 + GPU Variant: M71-S + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml new file mode 100644 index 00000000..0acdbae4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1300 +humanName: Mobility Radeon X1300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-19' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M52 + GPU Variant: M52-S + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml new file mode 100644 index 00000000..c9f72dcf --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1350 +humanName: Mobility Radeon X1350 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-18' + VRAM Frequency: 324 MHz + VRAM Bandwidth: 5.184 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M62 + GPU Variant: M62-CSP64 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml new file mode 100644 index 00000000..f4ec8ce7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-X1400 +humanName: Mobility Radeon X1400 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-01-19' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M54 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml new file mode 100644 index 00000000..7c878b99 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1450 +humanName: Mobility Radeon X1450 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-09-18' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M64 + GPU Variant: M64-CSP128 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml new file mode 100644 index 00000000..a18570ad --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-X1600-Mac-Edition +humanName: Mobility Radeon X1600 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-11-08' + VRAM Frequency: 396 MHz + VRAM Bandwidth: 12.67 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: M56 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml new file mode 100644 index 00000000..8e733447 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1600 +humanName: Mobility Radeon X1600 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 470 MHz + VRAM Bandwidth: 15.04 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: M56 + GPU Variant: M56 X1600 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml new file mode 100644 index 00000000..6d018c29 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1700 +humanName: Mobility Radeon X1700 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-02-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: M66 + GPU Variant: M66-P + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml new file mode 100644 index 00000000..a73344c5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1800-XT +humanName: Mobility Radeon X1800 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-01' + VRAM Frequency: 675 MHz + VRAM Bandwidth: 43.20 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: M58 + GPU Variant: M58 P + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml new file mode 100644 index 00000000..df8bbbc8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml @@ -0,0 +1,25 @@ +name: Mobility-Radeon-X1800 +humanName: Mobility Radeon X1800 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-01' + VRAM Frequency: 504 MHz + VRAM Bandwidth: 32.26 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 288 mm² + GPU: M58 + GPU Variant: M58 P + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml new file mode 100644 index 00000000..e6128c62 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X1900 +humanName: Mobility Radeon X1900 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-01-11' + VRAM Frequency: 470 MHz + VRAM Bandwidth: 30.08 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: M68 + TDP: unknown + Slot Width: MXM Module + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml new file mode 100644 index 00000000..372ade64 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X2300-HD +humanName: Mobility Radeon X2300 HD +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-03-01' + VRAM Frequency: 378 MHz + VRAM Bandwidth: 3.024 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 32 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M71 + GPU Variant: M71-S + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml new file mode 100644 index 00000000..7f765dd5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml @@ -0,0 +1,24 @@ +name: Mobility-Radeon-X2300 +humanName: Mobility Radeon X2300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-03-01' + VRAM Frequency: 392 MHz + VRAM Bandwidth: 6.272 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: M64 + GPU Variant: M64-M + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml new file mode 100644 index 00000000..13d50f1f --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml @@ -0,0 +1,23 @@ +name: Mobility-Radeon-X2500 +humanName: Mobility Radeon X2500 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-06-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: M66 + TDP: unknown + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml new file mode 100644 index 00000000..5f6f94a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300-AGP +humanName: Radeon X1300 AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-12-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml new file mode 100644 index 00000000..7bec02b4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300-CE +humanName: Radeon X1300 CE +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-27' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV505 + GPU Variant: RV505 CE + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml new file mode 100644 index 00000000..31800f13 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml @@ -0,0 +1,26 @@ +name: Radeon-X1300-LE +humanName: Radeon X1300 LE +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-05' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 4.000 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 LE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml new file mode 100644 index 00000000..f087f578 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml @@ -0,0 +1,27 @@ +name: Radeon-X1300-PCI +humanName: Radeon X1300 PCI +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-05' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml new file mode 100644 index 00000000..a5659f32 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300-PRO-AGP +humanName: Radeon X1300 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 PRO + TDP: 31 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml new file mode 100644 index 00000000..7d340f8e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml @@ -0,0 +1,26 @@ +name: Radeon-X1300-PRO +humanName: Radeon X1300 PRO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-11-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + GPU Variant: RV516 PRO + TDP: 31 W + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml new file mode 100644 index 00000000..4af86a38 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300-XT-AGP +humanName: Radeon X1300 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 PRO2 + TDP: 22 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml new file mode 100644 index 00000000..997b6dc0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300-XT +humanName: Radeon X1300 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-12' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 PRO2 + TDP: 22 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml new file mode 100644 index 00000000..aaa78daa --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1300 +humanName: Radeon X1300 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-12-01' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 LE + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml new file mode 100644 index 00000000..8e0baa75 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1550-AGP +humanName: Radeon X1550 AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 330 MHz + VRAM Bandwidth: 5.280 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV505 + GPU Variant: RV505 PRO + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml new file mode 100644 index 00000000..d55ffd5d --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1550-PCI +humanName: Radeon X1550 PCI +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 266 MHz + VRAM Bandwidth: 4.256 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + GPU Variant: RV516 PRO X1550 + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml new file mode 100644 index 00000000..091e37a8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1550 +humanName: Radeon X1550 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 333 MHz + VRAM Bandwidth: 5.328 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV505 + GPU Variant: RV505 PRO + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml new file mode 100644 index 00000000..d9f18685 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1600-PRO-AGP +humanName: Radeon X1600 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-10-01' + VRAM Frequency: 390 MHz + VRAM Bandwidth: 12.48 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 PRO + TDP: 41 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: Floppy diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml new file mode 100644 index 00000000..134ac1a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1600-PRO +humanName: Radeon X1600 PRO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 390 MHz + VRAM Bandwidth: 12.48 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 PRO + TDP: 41 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml new file mode 100644 index 00000000..9efebee6 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1600-SE +humanName: Radeon X1600 SE +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 250 MHz + VRAM Bandwidth: 8.000 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + GPU Variant: RV515 X1600SE + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml new file mode 100644 index 00000000..ed4ac5c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml @@ -0,0 +1,25 @@ +name: Radeon-X1600-XT-Dual +humanName: Radeon X1600 XT Dual +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 690 MHz + VRAM Bandwidth: 22.08 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml new file mode 100644 index 00000000..f61db98e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1600-XT +humanName: Radeon X1600 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 690 MHz + VRAM Bandwidth: 22.08 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 XT + TDP: 42 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml new file mode 100644 index 00000000..ceb32bd1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml @@ -0,0 +1,27 @@ +name: Radeon-X1600 +humanName: Radeon X1600 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml new file mode 100644 index 00000000..0ce74ef5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-AGP +humanName: Radeon X1650 AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-02-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 X1650 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml new file mode 100644 index 00000000..e409087a --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-GT +humanName: Radeon X1650 GT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-05-01' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 128 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 230 mm² + GPU: RV560 + GPU Variant: RV560 GT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml new file mode 100644 index 00000000..3e35b813 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml @@ -0,0 +1,26 @@ +name: Radeon-X1650-GTO +humanName: Radeon X1650 GTO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-12-02' + VRAM Frequency: 392 MHz + VRAM Bandwidth: 12.54 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 150 mm² + GPU: RV530 + GPU Variant: RV530 LE + TDP: unknown + Slot Width: Single-slot + Outputs: 1x HDMI1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml new file mode 100644 index 00000000..ab72eef8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-PRO-AGP +humanName: Radeon X1650 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-15' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 131 mm² + GPU: RV535 + GPU Variant: RV535 XT + TDP: 44 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml new file mode 100644 index 00000000..16aa5cd9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-PRO +humanName: Radeon X1650 PRO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-08-23' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 131 mm² + GPU: RV535 + GPU Variant: RV535 XT + TDP: 44 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml new file mode 100644 index 00000000..9a9c48de --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml @@ -0,0 +1,27 @@ +name: Radeon-X1650-SE +humanName: Radeon X1650 SE +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 12.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV515 + TDP: 27 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml new file mode 100644 index 00000000..f0722546 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-XT-AGP +humanName: Radeon X1650 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-30' + VRAM Frequency: 680 MHz + VRAM Bandwidth: 21.76 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 230 mm² + GPU: RV560 + GPU Variant: RV560 XT + TDP: 55 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml new file mode 100644 index 00000000..78a30d98 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml @@ -0,0 +1,26 @@ +name: Radeon-X1650-XT-Dual +humanName: Radeon X1650 XT Dual +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-30' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 230 mm² + GPU: RV560 + GPU Variant: RV560 XT + TDP: unknown + Slot Width: Single-slot + Outputs: 2x DVI + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml new file mode 100644 index 00000000..8800d64b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1650-XT +humanName: Radeon X1650 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-10-30' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 22.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 230 mm² + GPU: RV560 + GPU Variant: RV560 XT + TDP: 55 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml new file mode 100644 index 00000000..7464ce1b --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml @@ -0,0 +1,27 @@ +name: Radeon-X1650 +humanName: Radeon X1650 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-11-20' + VRAM Frequency: 400 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 100 mm² + GPU: RV516 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml new file mode 100644 index 00000000..c48d6fb3 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1700-FSC +humanName: Radeon X1700 FSC +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-11-05' + VRAM Frequency: 695 MHz + VRAM Bandwidth: 22.24 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 131 mm² + GPU: RV535 + GPU Variant: RV535 FSC + TDP: 44 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml new file mode 100644 index 00000000..1f84b869 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1700-SE +humanName: Radeon X1700 SE +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2007-11-30' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 230 mm² + GPU: RV560 + GPU Variant: RV560 SE + TDP: 50 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml new file mode 100644 index 00000000..72e6fe86 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1800-CrossFire-Edition +humanName: Radeon X1800 CrossFire Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-12-20' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 CE + TDP: 113 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml new file mode 100644 index 00000000..24e3a995 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml @@ -0,0 +1,31 @@ +name: Radeon-X1800-GTO +humanName: Radeon X1800 GTO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-01' + VRAM Frequency: 495 MHz + VRAM Bandwidth: 31.68 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 LE + TDP: 48 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 254 mm + Width: 111 mm + Height: 19 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml new file mode 100644 index 00000000..d115c261 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml @@ -0,0 +1,26 @@ +name: Radeon-X1800-GTO2 +humanName: Radeon X1800 GTO2 +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2006-03-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 288 mm² + GPU: R520 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml new file mode 100644 index 00000000..1ef619b1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml @@ -0,0 +1,31 @@ +name: Radeon-X1800-XL +humanName: Radeon X1800 XL +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 XL + TDP: 70 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 254 mm + Width: 111 mm + Height: 19 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml new file mode 100644 index 00000000..ecc4f596 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1800-XT +humanName: Radeon X1800 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-10-01' + VRAM Frequency: 700 MHz + VRAM Bandwidth: 44.80 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 288 mm² + GPU: R520 + GPU Variant: R520 XT + TDP: 113 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml new file mode 100644 index 00000000..4733fc31 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1900-CrossFire-Edition +humanName: Radeon X1900 CrossFire Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-01-24' + VRAM Frequency: 725 MHz + VRAM Bandwidth: 46.40 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 CF + TDP: 100 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml new file mode 100644 index 00000000..21f01864 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1900-G5-Mac-Edition +humanName: Radeon X1900 G5 Mac Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-11-06' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 XL + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml new file mode 100644 index 00000000..02c91e44 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1900-GT +humanName: Radeon X1900 GT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-05-01' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 XL + TDP: 75 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml new file mode 100644 index 00000000..94022e32 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml @@ -0,0 +1,29 @@ +name: Radeon-X1900-XT +humanName: Radeon X1900 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-01-24' + VRAM Frequency: 725 MHz + VRAM Bandwidth: 46.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 XT + TDP: 100 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 242 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml new file mode 100644 index 00000000..70e8f0f2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml @@ -0,0 +1,29 @@ +name: Radeon-X1900-XTX +humanName: Radeon X1900 XTX +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-01-24' + VRAM Frequency: 775 MHz + VRAM Bandwidth: 49.60 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 XT + TDP: 135 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 242 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml new file mode 100644 index 00000000..5d5a4347 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-CrossFire-Edition +humanName: Radeon X1950 CrossFire Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-09-10' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580+ + GPU Variant: R580+ XT + TDP: unknown + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VHDCI + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml new file mode 100644 index 00000000..0a5963d2 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-GT-AGP +humanName: Radeon X1950 GT AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-02-10' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: RV570 + GPU Variant: RV570 XL + TDP: 57 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x Molex diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml new file mode 100644 index 00000000..06b6db93 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-GT +humanName: Radeon X1950 GT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-01-29' + VRAM Frequency: 600 MHz + VRAM Bandwidth: 38.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: RV570 + GPU Variant: RV570 XL + TDP: 57 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml new file mode 100644 index 00000000..a0629257 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-PRO-AGP +humanName: Radeon X1950 PRO AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-10-25' + VRAM Frequency: 690 MHz + VRAM Bandwidth: 44.16 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: RV570 + GPU Variant: RV570 XT + TDP: 66 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x Molex diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml new file mode 100644 index 00000000..78f65429 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml @@ -0,0 +1,29 @@ +name: Radeon-X1950-PRO-DUAL +humanName: Radeon X1950 PRO DUAL +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-01-10' + VRAM Frequency: 690 MHz + VRAM Bandwidth: 44.16 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: RV570 + GPU Variant: RV570 XT + TDP: 130 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 2x 6-pin + Length: 300 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml new file mode 100644 index 00000000..77038023 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml @@ -0,0 +1,30 @@ +name: Radeon-X1950-PRO +humanName: Radeon X1950 PRO +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 80 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-10-01' + VRAM Frequency: 690 MHz + VRAM Bandwidth: 44.16 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 12 + Texture Mapping Unit Count: 12 + Die Size: 230 mm² + GPU: RV570 + GPU Variant: RV570 X1950 + TDP: 66 W + Slot Width: Single-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 228 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml new file mode 100644 index 00000000..981c05ce --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-XT-AGP +humanName: Radeon X1950 XT AGP +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-10-17' + VRAM Frequency: 703 MHz + VRAM Bandwidth: 44.99 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580+ + GPU Variant: R580+ XT + TDP: 96 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml new file mode 100644 index 00000000..f340667e --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml @@ -0,0 +1,28 @@ +name: Radeon-X1950-XT +humanName: Radeon X1950 XT +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-10-17' + VRAM Frequency: 900 MHz + VRAM Bandwidth: 57.60 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580+ + GPU Variant: R580+ XT + TDP: 96 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml new file mode 100644 index 00000000..ae5863f4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml @@ -0,0 +1,29 @@ +name: Radeon-X1950-XTX-Uber-Edition +humanName: Radeon X1950 XTX Uber Edition +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2007-01-19' + VRAM Frequency: 1050 MHz + VRAM Bandwidth: 67.20 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580+ + GPU Variant: R580+ XT + TDP: 125 W + Slot Width: Dual-slot + Outputs: + - 1x DVI + - 1x VHDCI + Power Connectors: 1x 6-pin + Length: 230 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml new file mode 100644 index 00000000..19951eeb --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml @@ -0,0 +1,29 @@ +name: Radeon-X1950-XTX +humanName: Radeon X1950 XTX +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006-10-17' + VRAM Frequency: 1000 MHz + VRAM Bandwidth: 64.00 GB/s + VRAM Capacity: 512 MB + VRAM Type: GDDR4 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580+ + GPU Variant: R580+ XT + TDP: 125 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 230 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml new file mode 100644 index 00000000..b62c42c9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml @@ -0,0 +1,30 @@ +name: Stream-Processor +humanName: Stream Processor +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + OpenGL Support: '2.1 (full)' + OpenCL Support: 'N/A' + Release Date: '2006' + VRAM Frequency: 648 MHz + VRAM Bandwidth: 41.47 GB/s + VRAM Capacity: 1024 MB + VRAM Type: GDDR3 + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 16 + Die Size: 352 mm² + GPU: R580 + GPU Variant: R580 XTX + TDP: 165 W + Slot Width: Dual-slot + Outputs: + - 2x DVI + - 1x S-Video + Power Connectors: 1x 6-pin + Length: 241 mm + Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml new file mode 100644 index 00000000..9dd4d980 --- /dev/null +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml @@ -0,0 +1,25 @@ +name: Wii-GPU +humanName: Wii GPU +isPart: true +type: Graphics Card +data: + Architecture: Ultra-Threaded SE + Lithography: 90 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '2006-11-19' + VRAM Frequency: 243 MHz + VRAM Bandwidth: 3.888 GB/s + VRAM Capacity: 64 MB + VRAM Type: GDDR3 + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 95 mm² + GPU: Hollywood + TDP: 45 W + Outputs: No outputs + Length: 157 mm + Width: 197 mm + Height: 60 mm diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4.yaml new file mode 100644 index 00000000..fb5fcb7b --- /dev/null +++ b/specs/GPUs-CONSUMER/VLIW-Vec4.yaml @@ -0,0 +1,17 @@ +name: VLIW-Vec4 +humanName: VLIW Vec4 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2010-06-03' +sections: + - header: WHOLE RANGE + members: + - Tegra-2-GPU + - Tegra-3-GPU + - Tegra-4-GPU + - Tegra-4i-GPU diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml new file mode 100644 index 00000000..b3fe5bbc --- /dev/null +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml @@ -0,0 +1,26 @@ +name: Tegra-2-GPU +humanName: Tegra 2 GPU +isPart: true +type: Graphics Card +data: + Architecture: VLIW Vec4 + Lithography: 40 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2010-06-03' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 400 MHz + VRAM Frequency: 333 MHz + VRAM Bandwidth: 2.664 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 32 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Tegra 2 + GPU Variant: T20MGS-SHP-A3 + TDP: 20 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml new file mode 100644 index 00000000..d50aa0e1 --- /dev/null +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml @@ -0,0 +1,26 @@ +name: Tegra-3-GPU +humanName: Tegra 3 GPU +isPart: true +type: Graphics Card +data: + Architecture: VLIW Vec4 + Lithography: 40 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 2.0' + OpenCL Support: 'N/A' + Release Date: '2011-11-09' + GPU Base Frequency: 416 MHz + GPU Boost Frequency: 520 MHz + VRAM Frequency: 667 MHz + VRAM Bandwidth: 5.336 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR3 + VRAM Bus Width: 32 bit + Render Output Unit Count: 8 + Texture Mapping Unit Count: 8 + Die Size: 80 mm² + GPU: Kal-El + GPU Variant: T30-P-A3 + TDP: 20 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml new file mode 100644 index 00000000..d3601fa6 --- /dev/null +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml @@ -0,0 +1,24 @@ +name: Tegra-4-GPU +humanName: Tegra 4 GPU +isPart: true +type: Graphics Card +data: + Architecture: VLIW Vec4 + Lithography: 28 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 3.0' + OpenCL Support: 'N/A' + Release Date: '2013-08-01' + VRAM Frequency: 933 MHz + VRAM Bandwidth: 7.464 GB/s + VRAM Capacity: 512 MB + VRAM Type: LPDDR3 + VRAM Bus Width: 32 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 85 mm² + GPU: Wayne + GPU Variant: Tegra 4 + TDP: 20 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml new file mode 100644 index 00000000..2da0e296 --- /dev/null +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml @@ -0,0 +1,24 @@ +name: Tegra-4i-GPU +humanName: Tegra 4i GPU +isPart: true +type: Graphics Card +data: + Architecture: VLIW Vec4 + Lithography: 28 nm + Vulkan Support: 'N/A' + OpenGL Support: 'ES 3.0' + OpenCL Support: 'N/A' + Release Date: '2013-02-19' + VRAM Frequency: 933 MHz + VRAM Bandwidth: 7.464 GB/s + VRAM Capacity: 512 MB + VRAM Type: LPDDR3 + VRAM Bus Width: 32 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 85 mm² + GPU: Wayne + GPU Variant: Tegra 4i + TDP: 20 W + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Volta.yaml b/specs/GPUs-CONSUMER/Volta.yaml new file mode 100644 index 00000000..8d816082 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta.yaml @@ -0,0 +1,31 @@ +name: Volta +humanName: Volta +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2017-06-21' +sections: + - header: WHOLE RANGE + members: + - Jetson-AGX-Xavier-16-GB + - Jetson-AGX-Xavier-32-GB + - Jetson-Xavier-NX-8-GB + - Jetson-Xavier-NX-16-GB + - Quadro-GV100 + - Tesla-PG500-216 + - Tesla-PG503-216 + - Tesla-V100-DGXS-16-GB + - Tesla-V100-DGXS-32-GB + - Tesla-V100-FHHL + - Tesla-V100-PCIe-16-GB + - Tesla-V100-PCIe-32-GB + - Tesla-V100-SXM2-16-GB + - Tesla-V100-SXM3-32-GB + - Tesla-V100S-PCIe-32-GB + - TITAN-V + - TITAN-V-CEO-Edition + - Tesla-V100-SXM2-32-GB diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml new file mode 100644 index 00000000..5dc32dde --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml @@ -0,0 +1,33 @@ +name: Jetson-AGX-Xavier-16-GB +humanName: Jetson AGX Xavier 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '64' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: 'Oct 2018' + GPU Base Frequency: 854 MHz + GPU Boost Frequency: 1377 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 136.5 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 350 mm² + GPU: GV10B + TDP: 30 W + FP32 Compute: 1,410 GFLOPS + FP64 Compute: 705.0 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 100 mm + Width: 87 mm + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml new file mode 100644 index 00000000..a5cacb4a --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml @@ -0,0 +1,33 @@ +name: Jetson-AGX-Xavier-32-GB +humanName: Jetson AGX Xavier 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '64' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: 'Oct 2018' + GPU Base Frequency: 854 MHz + GPU Boost Frequency: 1377 MHz + VRAM Frequency: 2133 MHz + VRAM Bandwidth: 136.5 GB/s + VRAM Capacity: 32 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 256 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: 350 mm² + GPU: GV10B + TDP: 30 W + FP32 Compute: 1,410 GFLOPS + FP64 Compute: 705.0 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 100 mm + Width: 87 mm + Tensor Cores: 64 diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml new file mode 100644 index 00000000..7152c953 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml @@ -0,0 +1,33 @@ +name: Jetson-Xavier-NX-16-GB +humanName: Jetson Xavier NX 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '48' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2020-05-14' + GPU Base Frequency: 854 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: 1866 MHz + VRAM Bandwidth: 59.71 GB/s + VRAM Capacity: 16 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 350 mm² + GPU: GV10B + TDP: 20 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 422.4 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 48 diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml new file mode 100644 index 00000000..3d7acb9f --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml @@ -0,0 +1,33 @@ +name: Jetson-Xavier-NX-8-GB +humanName: Jetson Xavier NX 8 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '48' + Vulkan Support: '1.2' + OpenGL Support: '4.6' + OpenCL Support: '1.2' + Release Date: '2020-05-14' + GPU Base Frequency: 854 MHz + GPU Boost Frequency: 1100 MHz + VRAM Frequency: 1866 MHz + VRAM Bandwidth: 59.71 GB/s + VRAM Capacity: 8 GB + VRAM Type: LPDDR4X + VRAM Bus Width: 128 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: 350 mm² + GPU: GV10B + TDP: 15 W + FP32 Compute: 844.8 GFLOPS + FP64 Compute: 422.4 GFLOPS (1:2) + Slot Width: IGP + Outputs: Portable Device Dependent + Length: 70 mm + Width: 45 mm + Tensor Cores: 48 diff --git a/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml new file mode 100644 index 00000000..435e7b74 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml @@ -0,0 +1,35 @@ +name: Quadro-GV100 +humanName: Quadro GV100 +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1132 MHz + GPU Boost Frequency: 1627 MHz + VRAM Frequency: 848 MHz + VRAM Bandwidth: 868.4 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + GPU Variant: GV100-875-A1 + TDP: 250 W + FP32 Compute: 16.66 TFLOPS + FP64 Compute: 8.330 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: 4x DisplayPort 1.4a + Power Connectors: 1x 8-pin + Length: 267 mm + Width: 111 mm + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml b/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml new file mode 100644 index 00000000..d4bb2278 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml @@ -0,0 +1,37 @@ +name: TITAN-V-CEO-Edition +humanName: TITAN V CEO Edition +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-06-21' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 848 MHz + VRAM Bandwidth: 868.4 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 14.90 TFLOPS + FP64 Compute: 7.450 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml b/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml new file mode 100644 index 00000000..ac3ef0ac --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml @@ -0,0 +1,38 @@ +name: TITAN-V +humanName: TITAN V +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-12-07' + GPU Base Frequency: 1200 MHz + GPU Boost Frequency: 1455 MHz + VRAM Frequency: 848 MHz + VRAM Bandwidth: 651.3 GB/s + VRAM Capacity: 12 GB + VRAM Type: HBM2 + VRAM Bus Width: 3072 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + GPU Variant: GV100-400-A1 + TDP: 250 W + FP32 Compute: 14.90 TFLOPS + FP64 Compute: 7.450 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: + - 1x HDMI 2.0 + - 3x DisplayPort 1.4a + Power Connectors: 1x 6-pin + 1x 8-pin + Length: 267 mm + Width: 112 mm + Height: 40 mm + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml new file mode 100644 index 00000000..29d6f2f0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml @@ -0,0 +1,32 @@ +name: Tesla-PG500-216 +humanName: Tesla PG500-216 +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-11-26' + GPU Base Frequency: 1260 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 1106 MHz + VRAM Bandwidth: 1,133 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 14.13 TFLOPS + FP64 Compute: 7.066 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml new file mode 100644 index 00000000..dba9287b --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml @@ -0,0 +1,32 @@ +name: Tesla-PG503-216 +humanName: Tesla PG503-216 +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-11-26' + GPU Base Frequency: 1312 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 1106 MHz + VRAM Bandwidth: 1,133 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 15.67 TFLOPS + FP64 Compute: 7.834 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml new file mode 100644 index 00000000..3927405d --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-DGXS-16-GB +humanName: Tesla V100 DGXS 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1354 MHz + GPU Boost Frequency: 1582 MHz + VRAM Frequency: 876 MHz + VRAM Bandwidth: 897.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 16.20 TFLOPS + FP64 Compute: 8.100 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml new file mode 100644 index 00000000..a39fdca8 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-DGXS-32-GB +humanName: Tesla V100 DGXS 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1297 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 876 MHz + VRAM Bandwidth: 897.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 15.67 TFLOPS + FP64 Compute: 7.834 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml new file mode 100644 index 00000000..8b5e1983 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-FHHL +humanName: Tesla V100 FHHL +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 937 MHz + GPU Boost Frequency: 1290 MHz + VRAM Frequency: 808 MHz + VRAM Bandwidth: 827.4 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 13.21 TFLOPS + FP64 Compute: 6.605 TFLOPS (1:2) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml new file mode 100644 index 00000000..1dd15e0a --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-PCIe-16-GB +humanName: Tesla V100 PCIe 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2017-06-21' + GPU Base Frequency: 1245 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 876 MHz + VRAM Bandwidth: 897.0 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 300 W + FP32 Compute: 14.13 TFLOPS + FP64 Compute: 7.066 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml new file mode 100644 index 00000000..9ad7f3a4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-PCIe-32-GB +humanName: Tesla V100 PCIe 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1230 MHz + GPU Boost Frequency: 1380 MHz + VRAM Frequency: 876 MHz + VRAM Bandwidth: 897.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 14.13 TFLOPS + FP64 Compute: 7.066 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml new file mode 100644 index 00000000..4ce4101d --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-SXM2-16-GB +humanName: Tesla V100 SXM2 16 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-11-26' + GPU Base Frequency: 1245 MHz + GPU Boost Frequency: 1597 MHz + VRAM Frequency: 1106 MHz + VRAM Bandwidth: 1,133 GB/s + VRAM Capacity: 16 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 16.35 TFLOPS + FP64 Compute: 8.177 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml new file mode 100644 index 00000000..dc29cc0e --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-SXM2-32-GB +humanName: Tesla V100 SXM2 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1290 MHz + GPU Boost Frequency: 1530 MHz + VRAM Frequency: 877 MHz + VRAM Bandwidth: 898.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 15.67 TFLOPS + FP64 Compute: 7.834 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml new file mode 100644 index 00000000..3da5c02e --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100-SXM3-32-GB +humanName: Tesla V100 SXM3 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2018-03-27' + GPU Base Frequency: 1380 MHz + GPU Boost Frequency: 1597 MHz + VRAM Frequency: 958 MHz + VRAM Bandwidth: 981.0 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 16.35 TFLOPS + FP64 Compute: 8.177 TFLOPS (1:2) + Slot Width: SXM Module + Outputs: No outputs + Power Connectors: None + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml new file mode 100644 index 00000000..ea7ba0b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml @@ -0,0 +1,32 @@ +name: Tesla-V100S-PCIe-32-GB +humanName: Tesla V100S PCIe 32 GB +isPart: true +type: Graphics Card +data: + Architecture: Volta + Lithography: 12 nm + DirectX Support: '12.1' + HLSL Shader Model: '640' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2019-11-26' + GPU Base Frequency: 1245 MHz + GPU Boost Frequency: 1597 MHz + VRAM Frequency: 1107 MHz + VRAM Bandwidth: 1,134 GB/s + VRAM Capacity: 32 GB + VRAM Type: HBM2 + VRAM Bus Width: 4096 bit + Render Output Unit Count: 128 + Texture Mapping Unit Count: 320 + Shader Processor Count: 5120 + Die Size: 815 mm² + GPU: GV100 + TDP: 250 W + FP32 Compute: 16.35 TFLOPS + FP64 Compute: 8.177 TFLOPS (1:2) + Slot Width: Dual-slot + Outputs: No outputs + Power Connectors: 2x 8-pin + Tensor Cores: 640 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml new file mode 100644 index 00000000..8baad877 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml @@ -0,0 +1,30 @@ +name: Voodoo-Scalable +humanName: Voodoo Scalable +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + Release Date: '2000-06-22' +sections: + - header: WHOLE RANGE + members: + - Spectre-1000 + - Spectre-2000 + - Spectre-3000 + - Voodoo4-4000-AGP + - Voodoo4-4500-AGP + - Voodoo4-4500-PCI + - Voodoo4-4800-AGP + - Voodoo4-2-4000-AGP + - Voodoo4-2-4200-AGP + - Voodoo4-2-4200-PCI-16-MB + - Voodoo4-2-4200-PCI-32-MB + - Voodoo4-2-4800-AGP + - Voodoo5-5000-AGP + - Voodoo5-5000-PCI + - Voodoo5-5500-AGP + - Voodoo5-5500-PCI + - Voodoo5-6000 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml new file mode 100644 index 00000000..bb5ff741 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml @@ -0,0 +1,25 @@ +name: Spectre-1000 +humanName: Spectre 1000 +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: 131 mm² + GPU: Rampage + TDP: 30 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml new file mode 100644 index 00000000..ed912a95 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml @@ -0,0 +1,27 @@ +name: Spectre-2000 +humanName: Spectre 2000 +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Sage + TDP: 30 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml new file mode 100644 index 00000000..21a97a0b --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml @@ -0,0 +1,27 @@ +name: Spectre-3000 +humanName: Spectre 3000 +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '8.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 64 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: Sage + TDP: 60 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml new file mode 100644 index 00000000..c23cb352 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo4-2-4000-AGP +humanName: Voodoo4-2 4000 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-101 + GPU Variant: Daytona + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml new file mode 100644 index 00000000..122df6cc --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml @@ -0,0 +1,28 @@ +name: Voodoo4-2-4200-AGP +humanName: Voodoo4-2 4200 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 143 MHz + VRAM Bandwidth: 2.288 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-101 + GPU Variant: Daytona + TDP: 15 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml new file mode 100644 index 00000000..31fb76cd --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml @@ -0,0 +1,28 @@ +name: Voodoo4-2-4200-PCI-16-MB +humanName: Voodoo4-2 4200 PCI 16 MB +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-101 + GPU Variant: Daytona + TDP: 15 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml new file mode 100644 index 00000000..1df20e7e --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml @@ -0,0 +1,28 @@ +name: Voodoo4-2-4200-PCI-32-MB +humanName: Voodoo4-2 4200 PCI 32 MB +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-101 + GPU Variant: Daytona + TDP: 15 W + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml new file mode 100644 index 00000000..3f5333b7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo4-2-4800-AGP +humanName: Voodoo4-2 4800 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 180 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-101 + GPU Variant: Napalm 2 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml new file mode 100644 index 00000000..e68da2eb --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml @@ -0,0 +1,25 @@ +name: Voodoo4-4000-AGP +humanName: Voodoo4 4000 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml new file mode 100644 index 00000000..71896eff --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo4-4500-AGP +humanName: Voodoo4 4500 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '2000-10-13' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-220 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml new file mode 100644 index 00000000..819e3cfc --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml @@ -0,0 +1,26 @@ +name: Voodoo4-4500-PCI +humanName: Voodoo4 4500 PCI +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '2000-10-13' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-220 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml new file mode 100644 index 00000000..a348cea0 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo4-4800-AGP +humanName: Voodoo4 4800 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 64 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-220 + TDP: 15 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml new file mode 100644 index 00000000..d045a2a5 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo5-5000-AGP +humanName: Voodoo5 5000 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-220 + TDP: 30 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml new file mode 100644 index 00000000..6a3d72ee --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml @@ -0,0 +1,26 @@ +name: Voodoo5-5000-PCI +humanName: Voodoo5 5000 PCI +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 16 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-220 + TDP: 30 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml new file mode 100644 index 00000000..4c2cfd61 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml @@ -0,0 +1,26 @@ +name: Voodoo5-5500-AGP +humanName: Voodoo5 5500 AGP +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '2000-06-22' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-320 + TDP: 30 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml new file mode 100644 index 00000000..214119c7 --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml @@ -0,0 +1,26 @@ +name: Voodoo5-5500-PCI +humanName: Voodoo5 5500 PCI +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '2000-06-22' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 26-320 + TDP: 30 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: 1x Molex diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml new file mode 100644 index 00000000..af74c4ad --- /dev/null +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml @@ -0,0 +1,26 @@ +name: Voodoo5-6000 +humanName: Voodoo5 6000 +isPart: true +type: Graphics Card +data: + Architecture: Voodoo Scalable + Lithography: 250 nm + DirectX Support: '6.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 166 MHz + VRAM Bandwidth: 2.656 GB/s + VRAM Capacity: 32 MB + VRAM Type: SDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 2 + Die Size: 112 mm² + GPU: VSA-100 + GPU Variant: Napalm 30 + TDP: 60 W + Slot Width: Single-slot + Outputs: 1x VGA + Power Connectors: None diff --git a/specs/GPUs-CONSUMER/Wonder.yaml b/specs/GPUs-CONSUMER/Wonder.yaml new file mode 100644 index 00000000..5f67ba32 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder.yaml @@ -0,0 +1,23 @@ +name: Wonder +humanName: Wonder +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '1986-08-04' +sections: + - header: WHOLE RANGE + members: + - Color-Emulation-Card + - EGA-Wonder-480 + - EGA-Wonder-800 + - EGA-Wonder-800+ + - Graphics-Solution + - Graphics-Solution-Plus + - VGA-Improved-Performance + - VGA-Wonder + - VGA-Wonder+ + - VGA-Wonder-XL24 diff --git a/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml new file mode 100644 index 00000000..a5548b2c --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml @@ -0,0 +1,23 @@ +name: Color-Emulation-Card +humanName: Color Emulation Card +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1986-08-04' + VRAM Frequency: 5 MHz + VRAM Bandwidth: 20.00 MB/s + VRAM Capacity: 32 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: CW16800-A + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml new file mode 100644 index 00000000..cc79080a --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml @@ -0,0 +1,23 @@ +name: EGA-Wonder-480 +humanName: EGA Wonder 480 +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1988-12-26' + VRAM Frequency: 8 MHz + VRAM Bandwidth: 32.00 MB/s + VRAM Capacity: 256 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: unknown + GPU: CHIPS P82C435 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml new file mode 100644 index 00000000..527f366b --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml @@ -0,0 +1,23 @@ +name: EGA-Wonder-800+ +humanName: EGA Wonder 800+ +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1988' + VRAM Frequency: 8 MHz + VRAM Bandwidth: 32.00 MB/s + VRAM Capacity: 256 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: 18800-1 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml new file mode 100644 index 00000000..c1349242 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml @@ -0,0 +1,23 @@ +name: EGA-Wonder-800 +humanName: EGA Wonder 800 +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1987-11-16' + VRAM Frequency: 8 MHz + VRAM Bandwidth: 32.00 MB/s + VRAM Capacity: 256 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: unknown + GPU: CHIPS P82C435 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml new file mode 100644 index 00000000..409bced1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml @@ -0,0 +1,23 @@ +name: Graphics-Solution-Plus +humanName: Graphics Solution Plus +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1987-03-23' + VRAM Frequency: 5 MHz + VRAM Bandwidth: 20.00 MB/s + VRAM Capacity: 64 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: CW16800-B + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml new file mode 100644 index 00000000..45e1cb1f --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml @@ -0,0 +1,23 @@ +name: Graphics-Solution +humanName: Graphics Solution +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1986-09-22' + VRAM Frequency: 5 MHz + VRAM Bandwidth: 20.00 MB/s + VRAM Capacity: 64 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 0 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: CW16800-A + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml new file mode 100644 index 00000000..322a2c03 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml @@ -0,0 +1,24 @@ +name: VGA-Improved-Performance +humanName: VGA Improved Performance +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1987-09-28' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 256 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: unknown + GPU: CHIPS P82C441 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA + Length: 178 mm diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml new file mode 100644 index 00000000..61130842 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml @@ -0,0 +1,23 @@ +name: VGA-Wonder+ +humanName: VGA Wonder+ +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1990-11-01' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 512 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: 28800-5 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml new file mode 100644 index 00000000..e8c17e89 --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml @@ -0,0 +1,23 @@ +name: VGA-Wonder-XL24 +humanName: VGA Wonder XL24 +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1992-03-16' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 1 MB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: 28800-6 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml new file mode 100644 index 00000000..55b9d12b --- /dev/null +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml @@ -0,0 +1,23 @@ +name: VGA-Wonder +humanName: VGA Wonder +isPart: true +type: Graphics Card +data: + Architecture: Wonder + Lithography: 800 nm + Vulkan Support: 'N/A' + OpenGL Support: 'N/A' + OpenCL Support: 'N/A' + Release Date: '1990-02-05' + VRAM Frequency: 10 MHz + VRAM Bandwidth: 40.00 MB/s + VRAM Capacity: 256 KB + VRAM Type: DRAM + VRAM Bus Width: 32 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 0 + Die Size: 90 mm² + GPU: 18800-1 + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/XG4.yaml b/specs/GPUs-CONSUMER/XG4.yaml new file mode 100644 index 00000000..edbca9d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4.yaml @@ -0,0 +1,23 @@ +name: XG4 +humanName: XG4 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + Release Date: '2003-09-15' +sections: + - header: WHOLE RANGE + members: + - Volari-8300 + - Volari-8600-XT + - Volari-Duo-V5-Ultra + - Volari-Duo-V8-Ultra + - Volari-V3 + - Volari-V3-XT + - Volari-V5 + - Volari-V5-Ultra + - Volari-V8 + - Volari-V8-Ultra diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml new file mode 100644 index 00000000..6f60fb1c --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml @@ -0,0 +1,26 @@ +name: Volari-8300 +humanName: Volari 8300 +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: '2005-11-01' + VRAM Frequency: 300 MHz + VRAM Bandwidth: 4.800 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: XG47 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml new file mode 100644 index 00000000..61eb1a06 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml @@ -0,0 +1,26 @@ +name: Volari-8600-XT +humanName: Volari 8600 XT +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 110 nm + DirectX Support: '9.0c' + Vulkan Support: 'N/A' + OpenGL Support: '2.1' + OpenCL Support: 'N/A' + Release Date: 'Never Released' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: GDDR3 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: XG45 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml new file mode 100644 index 00000000..32c6f080 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml @@ -0,0 +1,24 @@ +name: Volari-Duo-V5-Ultra +humanName: Volari Duo V5 Ultra +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 32.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 256 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: XG41 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml new file mode 100644 index 00000000..59690985 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml @@ -0,0 +1,28 @@ +name: Volari-Duo-V8-Ultra +humanName: Volari Duo V8 Ultra +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: XG40 + GPU Variant: Volari V8 Ultra + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video + Power Connectors: 2x Molex diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml new file mode 100644 index 00000000..e581fa17 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml @@ -0,0 +1,27 @@ +name: Volari-V3-XT +humanName: Volari V3 XT +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 207 MHz + VRAM Bandwidth: 6.624 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: XG42 + GPU Variant: XG42 V3XT + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml new file mode 100644 index 00000000..bcd1273e --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml @@ -0,0 +1,26 @@ +name: Volari-V3 +humanName: Volari V3 +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + OpenGL Support: '1.3' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 200 MHz + VRAM Bandwidth: 6.400 GB/s + VRAM Capacity: 128 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: XG42 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml new file mode 100644 index 00000000..ba4d90eb --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml @@ -0,0 +1,24 @@ +name: Volari-V5-Ultra +humanName: Volari V5 Ultra +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 375 MHz + VRAM Bandwidth: 12.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: XG41 + TDP: unknown + Slot Width: Single-slot + Outputs: No outputs diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml new file mode 100644 index 00000000..2b7a1aeb --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml @@ -0,0 +1,26 @@ +name: Volari-V5 +humanName: Volari V5 +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.4' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 450 MHz + VRAM Bandwidth: 14.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 2 + Texture Mapping Unit Count: 4 + Die Size: unknown + GPU: XG41 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml new file mode 100644 index 00000000..4a1738a7 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml @@ -0,0 +1,26 @@ +name: Volari-V8-Ultra +humanName: Volari V8 Ultra +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 500 MHz + VRAM Bandwidth: 16.00 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR2 + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: XG40 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml new file mode 100644 index 00000000..a752b7d5 --- /dev/null +++ b/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml @@ -0,0 +1,26 @@ +name: Volari-V8 +humanName: Volari V8 +isPart: true +type: Graphics Card +data: + Architecture: XG4 + Lithography: 130 nm + DirectX Support: '9.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.5' + OpenCL Support: 'N/A' + Release Date: '2003-09-15' + VRAM Frequency: 325 MHz + VRAM Bandwidth: 10.40 GB/s + VRAM Capacity: 256 MB + VRAM Type: DDR + VRAM Bus Width: 128 bit + Render Output Unit Count: 4 + Texture Mapping Unit Count: 8 + Die Size: unknown + GPU: XG40 + TDP: unknown + Slot Width: Single-slot + Outputs: + - 1x DVI + - 1x VGA1x S-Video diff --git a/specs/GPUs-CONSUMER/Xe-LPG.yaml b/specs/GPUs-CONSUMER/Xe-LPG.yaml new file mode 100644 index 00000000..82ec0568 --- /dev/null +++ b/specs/GPUs-CONSUMER/Xe-LPG.yaml @@ -0,0 +1,17 @@ +name: Xe-LPG +humanName: Xe-LPG +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2023-12-14' +sections: + - header: WHOLE RANGE + members: + - Arc-Graphics-48EU-Mobile + - Arc-Graphics-64EU-Mobile + - Arc-Graphics-112EU-Mobile + - Arc-Graphics-128EU-Mobile diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml new file mode 100644 index 00000000..0e3f0be4 --- /dev/null +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: Arc-Graphics-112EU-Mobile +humanName: Arc Graphics 112EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Xe-LPG + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 2200 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 24 + Texture Mapping Unit Count: 56 + Shader Processor Count: 896 + Die Size: unknown + GPU: Meteor Lake GT1 + TDP: 65 W + FP32 Compute: 3.942 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml new file mode 100644 index 00000000..47808c08 --- /dev/null +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: Arc-Graphics-128EU-Mobile +humanName: Arc Graphics 128EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Xe-LPG + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 2250 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 32 + Texture Mapping Unit Count: 64 + Shader Processor Count: 1024 + Die Size: unknown + GPU: Meteor Lake GT1 + TDP: 28 W + FP32 Compute: 4.608 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml new file mode 100644 index 00000000..2b3b8258 --- /dev/null +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: Arc-Graphics-48EU-Mobile +humanName: Arc Graphics 48EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Xe-LPG + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1800 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 8 + Texture Mapping Unit Count: 24 + Shader Processor Count: 384 + Die Size: unknown + GPU: Meteor Lake GT1 + TDP: 28 W + FP32 Compute: 1,382 GFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml new file mode 100644 index 00000000..586540d9 --- /dev/null +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml @@ -0,0 +1,28 @@ +name: Arc-Graphics-64EU-Mobile +humanName: Arc Graphics 64EU Mobile +isPart: true +type: Graphics Card +data: + Architecture: Xe-LPG + Lithography: 10 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2023-12-14' + GPU Base Frequency: 300 MHz + GPU Boost Frequency: 1750 MHz + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 16 + Texture Mapping Unit Count: 32 + Shader Processor Count: 512 + Die Size: unknown + GPU: Meteor Lake GT1 + TDP: 65 W + FP32 Compute: 1.792 TFLOPS + Slot Width: IGP + Outputs: Portable Device Dependent diff --git a/specs/GPUs-CONSUMER/i740.yaml b/specs/GPUs-CONSUMER/i740.yaml new file mode 100644 index 00000000..8a0dea53 --- /dev/null +++ b/specs/GPUs-CONSUMER/i740.yaml @@ -0,0 +1,16 @@ +name: i740 +humanName: i740 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + Release Date: '1998' +sections: + - header: WHOLE RANGE + members: + - i740 + - i740-8-MB + - i740-Graphics diff --git a/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml new file mode 100644 index 00000000..12b8dbfe --- /dev/null +++ b/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml @@ -0,0 +1,24 @@ +name: i740-8-MB +humanName: i740 8 MB +isPart: true +type: Graphics Card +data: + Architecture: i740 + Lithography: 150 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1998-02-12' + VRAM Frequency: 100 MHz + VRAM Bandwidth: 800.0 MB/s + VRAM Capacity: 8 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Auburn + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml b/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml new file mode 100644 index 00000000..eed76a05 --- /dev/null +++ b/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml @@ -0,0 +1,24 @@ +name: i740-Graphics +humanName: i740 Graphics +isPart: true +type: Graphics Card +data: + Architecture: i740 + Lithography: 150 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1998' + VRAM Frequency: System Shared + VRAM Bandwidth: System Dependent + VRAM Capacity: System Shared + VRAM Type: System Shared + VRAM Bus Width: System Shared + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Auburn + TDP: unknown + Slot Width: IGP + Outputs: Motherboard Dependent diff --git a/specs/GPUs-CONSUMER/i740/i740.yaml b/specs/GPUs-CONSUMER/i740/i740.yaml new file mode 100644 index 00000000..8a84fdfb --- /dev/null +++ b/specs/GPUs-CONSUMER/i740/i740.yaml @@ -0,0 +1,24 @@ +name: i740 +humanName: i740 +isPart: true +type: Graphics Card +data: + Architecture: i740 + Lithography: 150 nm + DirectX Support: '5.0' + Vulkan Support: 'N/A' + OpenGL Support: '1.1' + OpenCL Support: 'N/A' + Release Date: '1998-02-12' + VRAM Frequency: 100 MHz + VRAM Bandwidth: 800.0 MB/s + VRAM Capacity: 4 MB + VRAM Type: SDR + VRAM Bus Width: 64 bit + Render Output Unit Count: 1 + Texture Mapping Unit Count: 1 + Die Size: unknown + GPU: Auburn + TDP: unknown + Slot Width: Single-slot + Outputs: 1x VGA diff --git a/specs/Intel/Core/k-unlocked.yaml b/specs/Intel/Core/k-unlocked.yaml deleted file mode 100755 index af1d5d91..00000000 --- a/specs/Intel/Core/k-unlocked.yaml +++ /dev/null @@ -1,4 +0,0 @@ -name: Core-i?-????K -matcher: yes -data: - Unlocked: yes diff --git a/specs/Intel/Haswell/G3258.yaml b/specs/Intel/Haswell/G3258.yaml deleted file mode 100755 index f26399bb..00000000 --- a/specs/Intel/Haswell/G3258.yaml +++ /dev/null @@ -1,3 +0,0 @@ -name: Pentium-G3258 -data: - Unlocked: yes diff --git a/specs/Intel/Intel.yaml b/specs/Intel/Intel.yaml deleted file mode 100755 index 7ddb8269..00000000 --- a/specs/Intel/Intel.yaml +++ /dev/null @@ -1,4 +0,0 @@ -name: Intel -hidden: true -data: - Manufacturer: Intel diff --git a/specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml b/specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml deleted file mode 100755 index c60888aa..00000000 --- a/specs/Intel/Kaby-Lake-G/Fix-Missing-TDP.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: - - Core-i5-8305G - - Core-i7-8705G - - Core-i7-8706G -data: - TDP: 65 W ---- -name: - - Core-i7-8709G - - Core-i7-8809G -data: - TDP: 100 W diff --git a/src/js/pure.js b/src/js/pure.js index a1c0a695..3c9a6921 100755 --- a/src/js/pure.js +++ b/src/js/pure.js @@ -40,10 +40,10 @@ module.exports.genSubtext = (data, passedSpecData) => { } if (part.isPart) { t++; - } else { - part.sections.forEach(sec => - sec.members.forEach(m => tallyChildren(specData[m])) - ); + //} else { + //part.sections.forEach(//sec => + //sec.members.forEach(m => tallyChildren(specData[m])) + //); } } tallyChildren(d); diff --git a/src/toSQL/converter.py b/src/toSQL/converter.py new file mode 100644 index 00000000..20bc92c3 --- /dev/null +++ b/src/toSQL/converter.py @@ -0,0 +1,14 @@ +import json +import sqlite3 + +# Load JSON data +with open('specs.js', 'r') as file: + data = json.load(file) + +# Initialize SQLite database connection +conn = sqlite3.connect('specs.db') +cursor = conn.cursor() + +for section in data['sections']: + print(section) + exit() \ No newline at end of file diff --git a/src/toSQL/specs.js b/src/toSQL/specs.js new file mode 100755 index 00000000..9d5ce73e --- /dev/null +++ b/src/toSQL/specs.js @@ -0,0 +1 @@ +{"130":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"Q2 2011","L2 Cache (Total)":"1 MiB"},"humanName":"130","isPart":true,"type":"CPU"},"140":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2009-06","L2 Cache (Total)":"2 MiB"},"humanName":"140","isPart":true,"type":"CPU"},"145":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2010-09","L2 Cache (Total)":"2 MiB"},"humanName":"145","isPart":true,"type":"CPU"},"150":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2010-10-07","L2 Cache (Total)":"2 MiB"},"humanName":"150","isPart":true,"type":"CPU"},"180":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"Q3 2010"},"humanName":"180","isPart":true,"type":"CPU"},"190":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"Q3 2011"},"humanName":"190","isPart":true,"type":"CPU"},"215":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2009-10-20"},"humanName":"X2 215","isPart":true,"type":"CPU"},"220":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2010-09-21"},"humanName":"X2 220","isPart":true,"type":"CPU"},"240":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Core Count":2,"Thread Count":2,"Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2013-06","Boost Frequency":"3.6 GHz"},"humanName":"240","isPart":true,"type":"CPU"},"245":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-07-23"},"humanName":"X2 245","isPart":true,"type":"CPU"},"250":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Core Count":2,"Thread Count":2,"Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2013-06","Boost Frequency":"3.6 GHz"},"humanName":"250","isPart":true,"type":"CPU"},"255":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-01-25"},"humanName":"X2 255","isPart":true,"type":"CPU"},"260":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 260","isPart":true,"type":"CPU"},"265":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 265","isPart":true,"type":"CPU"},"270":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2011-06"},"humanName":"X2 270","isPart":true,"type":"CPU"},"280":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2013-02-01"},"humanName":"X2 280","isPart":true,"type":"CPU"},"350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","TDP":"65 W","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz"},"humanName":"X2 350","isPart":true,"type":"CPU"},"425":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"95 W","Release Date":"2009-10-20"},"humanName":"X3 425","isPart":true,"type":"CPU"},"435":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"95 W","Release Date":"2009-10-20"},"humanName":"X3 435","isPart":true,"type":"CPU"},"440":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"95 W","Release Date":"2010-01-25"},"humanName":"X3 440","isPart":true,"type":"CPU"},"445":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X3 445","isPart":true,"type":"CPU"},"450":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"95 W","Release Date":"2010-09-21"},"humanName":"X3 450","isPart":true,"type":"CPU"},"455":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","TDP":"95 W","Release Date":"2010-12-07"},"humanName":"X3 455","isPart":true,"type":"CPU"},"460":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"95 W","Release Date":"2011-05-03"},"humanName":"X3 460","isPart":true,"type":"CPU"},"511":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","TDP":"65 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Release Date":"2011-01"},"humanName":"X2 511","isPart":true,"type":"CPU"},"521":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","TDP":"65 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Release Date":"Q2 2011"},"humanName":"X2 521","isPart":true,"type":"CPU"},"545":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2009-06-01"},"humanName":"X2 545","isPart":true,"type":"CPU"},"550":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Release Date":"2009-11-04"},"humanName":"X2 550","isPart":true,"type":"CPU"},"620":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"95 W","Release Date":"2009-09-16"},"humanName":"X4 620","isPart":true,"type":"CPU"},"630":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"95 W","Release Date":"2009-09-16"},"humanName":"X4 630","isPart":true,"type":"CPU"},"635":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"95 W","Release Date":"2010-1-25"},"humanName":"X4 635","isPart":true,"type":"CPU"},"640":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X4 640","isPart":true,"type":"CPU"},"645":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-9-21"},"humanName":"X4 645","isPart":true,"type":"CPU"},"650":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"95 W","Release Date":"Q2 2011"},"humanName":"X4 650","isPart":true,"type":"CPU"},"710":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X3 710","isPart":true,"type":"CPU"},"720":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W"},"humanName":"X3 720","isPart":true,"type":"CPU"},"750":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":4,"Thread Count":4,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W"},"humanName":"X4 750","isPart":true,"type":"CPU"},"805":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 805","isPart":true,"type":"CPU"},"810":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 810","isPart":true,"type":"CPU"},"820":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"Q3 2009"},"humanName":"X4 820","isPart":true,"type":"CPU"},"830":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"Q3 2010"},"humanName":"X4 830","isPart":true,"type":"CPU"},"840":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","TDP":"95 W","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2011-01-04"},"humanName":"X4 840","isPart":true,"type":"CPU"},"850":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","TDP":"95 W","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"Q2 2011"},"humanName":"X4 850","isPart":true,"type":"CPU"},"910":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 910","isPart":true,"type":"CPU"},"920":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Release Date":"2009-01-08"},"humanName":"X4 920","isPart":true,"type":"CPU"},"925":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-05-11"},"humanName":"X4 925","isPart":true,"type":"CPU"},"945":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-04-23"},"humanName":"X4 945","isPart":true,"type":"CPU"},"955":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-04"},"humanName":"X4 955","isPart":true,"type":"CPU"},"1352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz"},"isPart":true,"type":"CPU","humanName":"1352"},"1354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"isPart":true,"type":"CPU","humanName":"1354"},"1356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz"},"isPart":true,"type":"CPU","humanName":"1356"},"1381":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz"},"isPart":true,"type":"CPU","humanName":"1381"},"1385":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz"},"isPart":true,"type":"CPU","humanName":"1385"},"1389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz"},"isPart":true,"type":"CPU","humanName":"1389"},"2347":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2347"},"2350":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2350"},"2352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2352"},"2354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2354"},"2356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2356"},"2378":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2378"},"2380":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2380"},"2382":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2382"},"2384":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.7 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2384"},"2387":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2387"},"2389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.9 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2389"},"2419":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2419"},"2427":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2427"},"2431":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2431"},"2435":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2435"},"3280":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.4 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2012-03-20","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"3280"},"3365":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"3365"},"3380":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"3380"},"4122":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4122"},"4130":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4130"},"4133":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4133"},"4180":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4180"},"4184":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4184"},"4226":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.7 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4226"},"4234":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4234"},"4238":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL","X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100","SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2012-05-01","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4238"},"4280":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4280"},"4284":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4284"},"4334":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4334"},"4340":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4340"},"4386":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4386"},"6128":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6128"},"6134":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6134"},"6136":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6136"},"6140":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6140"},"6168":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.9 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6168"},"6172":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6172"},"6174":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6174"},"6176":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6176"},"6204":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"6204"},"6212":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6212"},"6220":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"3.0 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6220"},"6234":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.4 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6234"},"6238":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6238"},"6272":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.1 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6272"},"6274":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6274"},"6276":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6276"},"6278":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2012-05-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6278"},"6308":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"6308"},"6320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6320"},"6328":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6328"},"6344":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6344"},"6348":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6348"},"6376":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6376"},"6378":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6378"},"6380":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6380"},"7450":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2008-12-15"},"humanName":"X2 7450","isPart":true,"type":"CPU"},"7550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-12-15"},"humanName":"X2 7550","isPart":true,"type":"CPU"},"8347":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8347"},"8350":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8350"},"8352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8352"},"8354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8354"},"8356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8356"},"8378":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8378"},"8380":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8380"},"8382":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8382"},"8384":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.7 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8384"},"8387":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8387"},"8389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.9 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8389"},"8400":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X3 8400","isPart":true,"type":"CPU"},"8419":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8419"},"8423":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8423"},"8431":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8431"},"8435":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8435"},"8450":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8450","isPart":true,"type":"CPU"},"8550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8550","isPart":true,"type":"CPU"},"8600":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X3 8600","isPart":true,"type":"CPU"},"8650":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8650","isPart":true,"type":"CPU"},"8750":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8750","isPart":true,"type":"CPU"},"8850":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"95 W","Release Date":"2008-10-21"},"humanName":"X3 8850","isPart":true,"type":"CPU"},"9500":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9500","isPart":true,"type":"CPU"},"9550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X4 9550","isPart":true,"type":"CPU"},"9600":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9600","isPart":true,"type":"CPU"},"9650":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X4 9650","isPart":true,"type":"CPU"},"9750":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9750","isPart":true,"type":"CPU"},"9850":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"125 W","Release Date":"2008-06-01"},"humanName":"X4 9850","isPart":true,"type":"CPU"},"Core-i9-13900KS":{"data":{"Geekbench Single-Core Score":3094,"Geekbench Multi-Core Score":21711,"3DMark Fire Strike Physics Score":16764,"UserBenchmark CPU Score":"131","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900KS","isPart":true,"type":"CPU"},"Core-i9-13900KF":{"data":{"Geekbench Single-Core Score":2973,"Geekbench Multi-Core Score":20156,"3DMark Fire Strike Physics Score":16449,"UserBenchmark CPU Score":"129","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900KF","isPart":true,"type":"CPU"},"Core-i9-13900K":{"data":{"Geekbench Single-Core Score":2967,"Geekbench Multi-Core Score":20066,"3DMark Fire Strike Physics Score":16453,"UserBenchmark CPU Score":"129","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900K","isPart":true,"type":"CPU"},"Core-i7-13700KF":{"data":{"Geekbench Single-Core Score":2862,"Geekbench Multi-Core Score":17569,"3DMark Fire Strike Physics Score":12656,"UserBenchmark CPU Score":"126","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700KF","isPart":true,"type":"CPU"},"Core-i7-13700K":{"data":{"Geekbench Single-Core Score":2827,"Geekbench Multi-Core Score":17471,"3DMark Fire Strike Physics Score":12665,"UserBenchmark CPU Score":"126","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700K","isPart":true,"type":"CPU"},"Core-i9-13900F":{"data":{"Geekbench Single-Core Score":2700,"Geekbench Multi-Core Score":16965,"UserBenchmark CPU Score":"124","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900F","isPart":true,"type":"CPU"},"Core-i9-13900":{"data":{"Geekbench Single-Core Score":2710,"Geekbench Multi-Core Score":15882,"UserBenchmark CPU Score":"124","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900","isPart":true,"type":"CPU"},"Ryzen-9-7950X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2909,"Geekbench Multi-Core Score":19660,"UserBenchmark CPU Score":"122","Release Date":"2023-02-28","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","TDP":"120 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.2 GHz","Boost Frequency":"5.7 GHz"},"humanName":"Ryzen 9 7950X3D","isPart":true,"type":"CPU"},"Core-i5-13600K":{"data":{"Geekbench Single-Core Score":2657,"Geekbench Multi-Core Score":14805,"3DMark Fire Strike Physics Score":10332,"UserBenchmark CPU Score":"122","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600K","isPart":true,"type":"CPU"},"Core-i5-13600KF":{"data":{"Geekbench Single-Core Score":2702,"Geekbench Multi-Core Score":15168,"3DMark Fire Strike Physics Score":10328,"UserBenchmark CPU Score":"122","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600KF","isPart":true,"type":"CPU"},"Core-i7-13700F":{"data":{"Geekbench Single-Core Score":2655,"Geekbench Multi-Core Score":15351,"3DMark Fire Strike Physics Score":11921,"UserBenchmark CPU Score":"121","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700F","isPart":true,"type":"CPU"},"Core-i7-13700":{"data":{"Geekbench Single-Core Score":2638,"Geekbench Multi-Core Score":14803,"3DMark Fire Strike Physics Score":12013,"UserBenchmark CPU Score":"121","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700","isPart":true,"type":"CPU"},"Core-i9-12900KS":{"data":{"Geekbench Single-Core Score":2701,"Geekbench Multi-Core Score":16312,"3DMark Fire Strike Physics Score":12236,"UserBenchmark CPU Score":"119","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900KS","isPart":true,"type":"CPU"},"Ryzen-7-7800X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2716,"Geekbench Multi-Core Score":15207,"3DMark Fire Strike Physics Score":8016,"UserBenchmark CPU Score":"117","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"96 MiB","TDP":"120 W","Core Count":8,"Thread Count":16,"Base Frequency":"4.2 GHz","Boost Frequency":"5.0 GHz"},"humanName":"Ryzen 7 7800X3D","isPart":true,"type":"CPU"},"Core-i9-12900KF":{"data":{"Geekbench Single-Core Score":2522,"Geekbench Multi-Core Score":14849,"3DMark Fire Strike Physics Score":11718,"UserBenchmark CPU Score":"117","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900KF","isPart":true,"type":"CPU"},"Ryzen-9-7900X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2796,"Geekbench Multi-Core Score":17376,"UserBenchmark CPU Score":"117","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","TDP":"120 W","Core Count":12,"Thread Count":24,"Base Frequency":"4.4 GHz","Boost Frequency":"5.6 GHz"},"humanName":"Ryzen 9 7900X3D","isPart":true,"type":"CPU"},"Core-i9-12900K":{"data":{"Geekbench Single-Core Score":2608,"Geekbench Multi-Core Score":15419,"3DMark Fire Strike Physics Score":11746,"UserBenchmark CPU Score":"117","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900K","isPart":true,"type":"CPU"},"Core-i5-13600":{"data":{"Geekbench Single-Core Score":2406,"Geekbench Multi-Core Score":12381,"UserBenchmark CPU Score":"116","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600","isPart":true,"type":"CPU"},"Core-i7-12700K":{"data":{"Geekbench Single-Core Score":2509,"Geekbench Multi-Core Score":13564,"3DMark Fire Strike Physics Score":10080,"UserBenchmark CPU Score":"114","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700K","isPart":true,"type":"CPU"},"Ryzen-9-7950X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2926,"Geekbench Multi-Core Score":19214,"3DMark Fire Strike Physics Score":16025,"UserBenchmark CPU Score":"114","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"170 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.5 GHz","Boost Frequency":"5.7 GHz"},"humanName":"Ryzen 9 7950X","isPart":true,"type":"CPU"},"Core-i7-12700KF":{"data":{"Geekbench Single-Core Score":2506,"Geekbench Multi-Core Score":13465,"3DMark Fire Strike Physics Score":10074,"UserBenchmark CPU Score":"114","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700KF","isPart":true,"type":"CPU"},"Core-i9-12900F":{"data":{"Geekbench Single-Core Score":2543,"Geekbench Multi-Core Score":13851,"UserBenchmark CPU Score":"113","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900F","isPart":true,"type":"CPU"},"Ryzen-9-7900X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2901,"Geekbench Multi-Core Score":17674,"3DMark Fire Strike Physics Score":12861,"UserBenchmark CPU Score":"113","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"170 W","Core Count":12,"Thread Count":24,"Base Frequency":"4.7 GHz","Boost Frequency":"5.6 GHz"},"humanName":"Ryzen 9 7900X","isPart":true,"type":"CPU"},"Core-i5-13500":{"data":{"Geekbench Single-Core Score":2400,"Geekbench Multi-Core Score":12289,"3DMark Fire Strike Physics Score":9107,"UserBenchmark CPU Score":"113","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13500","isPart":true,"type":"CPU"},"Ryzen-7-7700X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2897,"Geekbench Multi-Core Score":15202,"3DMark Fire Strike Physics Score":9056,"UserBenchmark CPU Score":"112","Release Date":"2022-09-27","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"4.5 GHz","Boost Frequency":"5.4 GHz"},"humanName":"Ryzen 7 7700X","isPart":true,"type":"CPU"},"Core-i9-12900":{"data":{"Geekbench Single-Core Score":2468,"Geekbench Multi-Core Score":12958,"3DMark Fire Strike Physics Score":10757,"UserBenchmark CPU Score":"111","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900","isPart":true,"type":"CPU"},"Ryzen-5-7600X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2847,"Geekbench Multi-Core Score":12710,"3DMark Fire Strike Physics Score":7048,"UserBenchmark CPU Score":"110","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.7 GHz","Boost Frequency":"5.3 GHz"},"humanName":"Ryzen 5 7600X","isPart":true,"type":"CPU"},"Core-i5-12600K":{"data":{"Geekbench Single-Core Score":2436,"Geekbench Multi-Core Score":11733,"3DMark Fire Strike Physics Score":8033,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600K","isPart":true,"type":"CPU"},"Ryzen-7-7700":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2812,"Geekbench Multi-Core Score":14384,"3DMark Fire Strike Physics Score":8541,"UserBenchmark CPU Score":"109","Release Date":"2023-01-10","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"5.3 GHz"},"humanName":"Ryzen 7 7700","isPart":true,"type":"CPU"},"Core-i5-12600KF":{"data":{"Geekbench Single-Core Score":2453,"Geekbench Multi-Core Score":11940,"3DMark Fire Strike Physics Score":8005,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600KF","isPart":true,"type":"CPU"},"Ryzen-9-7900":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2826,"Geekbench Multi-Core Score":16823,"3DMark Fire Strike Physics Score":11186,"UserBenchmark CPU Score":"109","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"65 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.6 GHz","Boost Frequency":"5.4 GHz"},"humanName":"Ryzen 9 7900","isPart":true,"type":"CPU"},"Core-i7-12700F":{"data":{"Geekbench Single-Core Score":2333,"Geekbench Multi-Core Score":11425,"3DMark Fire Strike Physics Score":9543,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700F","isPart":true,"type":"CPU"},"Core-i7-12700":{"data":{"Geekbench Single-Core Score":2220,"Geekbench Multi-Core Score":10328,"3DMark Fire Strike Physics Score":9536,"UserBenchmark CPU Score":"108","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700","isPart":true,"type":"CPU"},"Ryzen-5-7600":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2728,"Geekbench Multi-Core Score":12238,"3DMark Fire Strike Physics Score":6633,"UserBenchmark CPU Score":"106","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz"},"humanName":"Ryzen 5 7600","isPart":true,"type":"CPU"},"Core-i5-13400":{"data":{"Geekbench Single-Core Score":2277,"Geekbench Multi-Core Score":10443,"3DMark Fire Strike Physics Score":7354,"UserBenchmark CPU Score":"106","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400","isPart":true,"type":"CPU"},"Core-i5-13400F":{"data":{"Geekbench Single-Core Score":2279,"Geekbench Multi-Core Score":10635,"3DMark Fire Strike Physics Score":7360,"UserBenchmark CPU Score":"106","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400F","isPart":true,"type":"CPU"},"Ryzen-7-5800X3D":{"data":{"Release Date":"2022-04-20","Lithography":"7 nm","Socket":"AM4","Unlocked":false,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2084,"Geekbench Multi-Core Score":10931,"3DMark Fire Strike Physics Score":7290,"UserBenchmark CPU Score":"104","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"96 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.4 GHz","Boost Frequency":"4.5 GHz"},"humanName":"Ryzen 7 5800X3D","isPart":true,"type":"CPU"},"Core-i9-11900KF":{"data":{"Geekbench Single-Core Score":2302,"Geekbench Multi-Core Score":10147,"3DMark Fire Strike Physics Score":8377,"UserBenchmark CPU Score":"104","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900KF","isPart":true,"type":"CPU"},"Core-i9-11900K":{"data":{"Geekbench Single-Core Score":2370,"Geekbench Multi-Core Score":10998,"3DMark Fire Strike Physics Score":8419,"UserBenchmark CPU Score":"103","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900K","isPart":true,"type":"CPU"},"Core-i5-12600":{"data":{"Geekbench Single-Core Score":2363,"Geekbench Multi-Core Score":9805,"3DMark Fire Strike Physics Score":6527,"UserBenchmark CPU Score":"102","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600","isPart":true,"type":"CPU"},"Core-i7-11700KF":{"data":{"Geekbench Single-Core Score":2246,"Geekbench Multi-Core Score":10177,"3DMark Fire Strike Physics Score":8127,"UserBenchmark CPU Score":"102","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700KF","isPart":true,"type":"CPU"},"Core-i7-11700K":{"data":{"Geekbench Single-Core Score":2213,"Geekbench Multi-Core Score":9793,"3DMark Fire Strike Physics Score":8157,"UserBenchmark CPU Score":"101","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700K","isPart":true,"type":"CPU"},"Ryzen-5-5600X3D":{"data":{"Release Date":"2023-07-07","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2066,"Geekbench Multi-Core Score":9323,"UserBenchmark CPU Score":"100","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"96 MiB","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","cTDP Support":false},"humanName":"Ryzen 5 5600X3D","isPart":true,"type":"CPU"},"Ryzen-9-5950X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2179,"Geekbench Multi-Core Score":12231,"3DMark Fire Strike Physics Score":11900,"UserBenchmark CPU Score":"100","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"105 W","Core Count":16,"Thread Count":32,"Base Frequency":"3.4 GHz","Boost Frequency":"4.9 GHz"},"humanName":"Ryzen 9 5950X","isPart":true,"type":"CPU"},"Core-i9-11900F":{"data":{"Geekbench Single-Core Score":2182,"Geekbench Multi-Core Score":9280,"UserBenchmark CPU Score":"100","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900F","isPart":true,"type":"CPU"},"Core-i9-11900":{"data":{"Geekbench Single-Core Score":2121,"Geekbench Multi-Core Score":8739,"UserBenchmark CPU Score":"99.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900","isPart":true,"type":"CPU"},"Core-i9-10900K":{"data":{"Geekbench Single-Core Score":1752,"Geekbench Multi-Core Score":9290,"3DMark Fire Strike Physics Score":9008,"UserBenchmark CPU Score":"99.6","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900K","isPart":true,"type":"CPU"},"Core-i9-10900KF":{"data":{"Geekbench Single-Core Score":1763,"Geekbench Multi-Core Score":9244,"3DMark Fire Strike Physics Score":8972,"UserBenchmark CPU Score":"99.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900KF","isPart":true,"type":"CPU"},"Core-i5-11600K":{"data":{"Geekbench Single-Core Score":2170,"Geekbench Multi-Core Score":8546,"3DMark Fire Strike Physics Score":6326,"UserBenchmark CPU Score":"99.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600K","isPart":true,"type":"CPU"},"Core-i5-11600KF":{"data":{"Geekbench Single-Core Score":2177,"Geekbench Multi-Core Score":8687,"3DMark Fire Strike Physics Score":6311,"UserBenchmark CPU Score":"99.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600KF","isPart":true,"type":"CPU"},"Core-i5-12500":{"data":{"Geekbench Single-Core Score":2279,"Geekbench Multi-Core Score":9109,"3DMark Fire Strike Physics Score":6086,"UserBenchmark CPU Score":"98.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12500","isPart":true,"type":"CPU"},"Core-i9-10850K":{"data":{"Geekbench Single-Core Score":1738,"Geekbench Multi-Core Score":9098,"3DMark Fire Strike Physics Score":8824,"UserBenchmark CPU Score":"98.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10850K","isPart":true,"type":"CPU"},"Core-i9-9900KS":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"127 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-10-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1750,"Geekbench Multi-Core Score":8622,"3DMark Fire Strike Physics Score":7344,"UserBenchmark CPU Score":"98.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9900KS"},"Ryzen-9-5900X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2171,"Geekbench Multi-Core Score":11890,"3DMark Fire Strike Physics Score":10233,"UserBenchmark CPU Score":"98.8","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","TDP":"105 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.7 GHz","Boost Frequency":"4.8 GHz"},"humanName":"Ryzen 9 5900X","isPart":true,"type":"CPU"},"Core-i7-11700F":{"data":{"Geekbench Single-Core Score":2095,"Geekbench Multi-Core Score":8801,"3DMark Fire Strike Physics Score":7661,"UserBenchmark CPU Score":"98.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700F","isPart":true,"type":"CPU"},"Core-i5-12400":{"data":{"Geekbench Single-Core Score":2168,"Geekbench Multi-Core Score":8808,"3DMark Fire Strike Physics Score":5950,"UserBenchmark CPU Score":"98.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400","isPart":true,"type":"CPU"},"Core-i7-11700":{"data":{"Geekbench Single-Core Score":2086,"Geekbench Multi-Core Score":8530,"3DMark Fire Strike Physics Score":7708,"UserBenchmark CPU Score":"98.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700","isPart":true,"type":"CPU"},"Core-i5-12400F":{"data":{"Geekbench Single-Core Score":2184,"Geekbench Multi-Core Score":8862,"3DMark Fire Strike Physics Score":5957,"UserBenchmark CPU Score":"98","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400F","isPart":true,"type":"CPU"},"Ryzen-7-5800X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2171,"Geekbench Multi-Core Score":10298,"3DMark Fire Strike Physics Score":7642,"UserBenchmark CPU Score":"98","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz"},"humanName":"Ryzen 7 5800X","isPart":true,"type":"CPU"},"Core-i9-9900K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1659,"Geekbench Multi-Core Score":7962,"3DMark Fire Strike Physics Score":7060,"UserBenchmark CPU Score":"97.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9900K"},"Core-i9-9900KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1687,"Geekbench Multi-Core Score":8052,"3DMark Fire Strike Physics Score":7084,"UserBenchmark CPU Score":"97.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9900KF"},"Core-i7-9700KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1660,"Geekbench Multi-Core Score":7100,"3DMark Fire Strike Physics Score":5893,"UserBenchmark CPU Score":"97.1"},"isPart":true,"type":"CPU","humanName":"Core i7-9700KF"},"Ryzen-9-5900":{"data":{"Release Date":"2021-01-12","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2049,"Geekbench Multi-Core Score":9801,"UserBenchmark CPU Score":"97.1","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","TDP":"65 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.0 GHz","Boost Frequency":"4.7 GHz"},"humanName":"Ryzen 9 5900","isPart":true,"type":"CPU"},"Core-i5-11600":{"data":{"Geekbench Single-Core Score":2132,"Geekbench Multi-Core Score":8211,"UserBenchmark CPU Score":"97","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600","isPart":true,"type":"CPU"},"Core-i7-9700K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1660,"Geekbench Multi-Core Score":7085,"3DMark Fire Strike Physics Score":5876,"UserBenchmark CPU Score":"96.9"},"isPart":true,"type":"CPU","humanName":"Core i7-9700K"},"Core-i7-10700K":{"data":{"Geekbench Single-Core Score":1704,"Geekbench Multi-Core Score":8167,"3DMark Fire Strike Physics Score":7298,"UserBenchmark CPU Score":"96.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700K","isPart":true,"type":"CPU"},"Core-i7-10700KF":{"data":{"Geekbench Single-Core Score":1695,"Geekbench Multi-Core Score":8150,"3DMark Fire Strike Physics Score":7286,"UserBenchmark CPU Score":"96.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700KF","isPart":true,"type":"CPU"},"Core-i5-11500":{"data":{"Geekbench Single-Core Score":1987,"Geekbench Multi-Core Score":7415,"UserBenchmark CPU Score":"96.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500","isPart":true,"type":"CPU"},"Core-i3-13100":{"data":{"Geekbench Single-Core Score":2245,"Geekbench Multi-Core Score":7336,"UserBenchmark CPU Score":"96.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100","isPart":true,"type":"CPU"},"Core-i3-13100F":{"data":{"Geekbench Single-Core Score":2275,"Geekbench Multi-Core Score":7763,"UserBenchmark CPU Score":"96","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100F","isPart":true,"type":"CPU"},"Core-i3-12300":{"data":{"Geekbench Single-Core Score":2258,"Geekbench Multi-Core Score":7918,"UserBenchmark CPU Score":"95.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12300","isPart":true,"type":"CPU"},"Ryzen-7-5800":{"data":{"Release Date":"2021-01-12","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2046,"Geekbench Multi-Core Score":8712,"3DMark Fire Strike Physics Score":6943,"UserBenchmark CPU Score":"95.9","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz"},"humanName":"Ryzen 7 5800","isPart":true,"type":"CPU"},"Ryzen-5-5600X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2082,"Geekbench Multi-Core Score":8639,"3DMark Fire Strike Physics Score":5676,"UserBenchmark CPU Score":"95.9","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz"},"humanName":"Ryzen 5 5600X","isPart":true,"type":"CPU"},"Core-i9-10900F":{"data":{"Geekbench Single-Core Score":1673,"Geekbench Multi-Core Score":8369,"3DMark Fire Strike Physics Score":8359,"UserBenchmark CPU Score":"95.4","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900F","isPart":true,"type":"CPU"},"Core-i5-11400":{"data":{"Geekbench Single-Core Score":1937,"Geekbench Multi-Core Score":7301,"3DMark Fire Strike Physics Score":5717,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400","isPart":true,"type":"CPU"},"Core-i5-11400F":{"data":{"Geekbench Single-Core Score":1955,"Geekbench Multi-Core Score":7594,"3DMark Fire Strike Physics Score":5715,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400F","isPart":true,"type":"CPU"},"Core-i3-12100":{"data":{"Geekbench Single-Core Score":2138,"Geekbench Multi-Core Score":6878,"3DMark Fire Strike Physics Score":4040,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100","isPart":true,"type":"CPU"},"Core-i3-12100F":{"data":{"Geekbench Single-Core Score":2216,"Geekbench Multi-Core Score":7438,"3DMark Fire Strike Physics Score":4044,"UserBenchmark CPU Score":"94.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100F","isPart":true,"type":"CPU"},"Core-i9-10900":{"data":{"Geekbench Single-Core Score":1684,"Geekbench Multi-Core Score":8353,"UserBenchmark CPU Score":"94","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900","isPart":true,"type":"CPU"},"Core-i5-9600K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1691,"Geekbench Multi-Core Score":6345,"3DMark Fire Strike Physics Score":4264,"UserBenchmark CPU Score":"93.2"},"isPart":true,"type":"CPU","humanName":"Core i5-9600K"},"Core-i7-10700F":{"data":{"Geekbench Single-Core Score":1604,"Geekbench Multi-Core Score":7218,"3DMark Fire Strike Physics Score":6997,"UserBenchmark CPU Score":"93.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700F","isPart":true,"type":"CPU"},"Core-i5-9600KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1581,"Geekbench Multi-Core Score":5730,"3DMark Fire Strike Physics Score":4296,"UserBenchmark CPU Score":"93.2"},"isPart":true,"type":"CPU","humanName":"Core i5-9600KF"},"Core-i7-10700":{"data":{"Geekbench Single-Core Score":1562,"Geekbench Multi-Core Score":6927,"3DMark Fire Strike Physics Score":6976,"UserBenchmark CPU Score":"92.6","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700","isPart":true,"type":"CPU"},"Core-i5-9600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1444,"Geekbench Multi-Core Score":4947,"UserBenchmark CPU Score":"92.3"},"isPart":true,"type":"CPU","humanName":"Core i5-9600"},"Core-i5-10600K":{"data":{"Geekbench Single-Core Score":1645,"Geekbench Multi-Core Score":6803,"3DMark Fire Strike Physics Score":5413,"UserBenchmark CPU Score":"92.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600K","isPart":true,"type":"CPU"},"Core-i7-9700":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1542,"Geekbench Multi-Core Score":6143,"3DMark Fire Strike Physics Score":5240,"UserBenchmark CPU Score":"92"},"isPart":true,"type":"CPU","humanName":"Core i7-9700"},"Core-i7-9700F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1540,"Geekbench Multi-Core Score":6263,"3DMark Fire Strike Physics Score":5322,"UserBenchmark CPU Score":"92"},"isPart":true,"type":"CPU","humanName":"Core i7-9700F"},"Core-i5-10600KF":{"data":{"Geekbench Single-Core Score":1677,"Geekbench Multi-Core Score":6873,"3DMark Fire Strike Physics Score":5403,"UserBenchmark CPU Score":"91.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600KF","isPart":true,"type":"CPU"},"Core-i9-9900":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1608,"Geekbench Multi-Core Score":7167,"UserBenchmark CPU Score":"91.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9900"},"Ryzen-7-4700G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"UserBenchmark CPU Score":"90.9","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 4700G","isPart":true,"type":"CPU"},"Ryzen-7-5700G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1980,"Geekbench Multi-Core Score":8781,"3DMark Fire Strike Physics Score":6708,"UserBenchmark CPU Score":"90.9","Release Date":"2021-04-13","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5700G","isPart":true,"type":"CPU"},"Core-i7-8086K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-06-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1675,"Geekbench Multi-Core Score":7032,"3DMark Fire Strike Physics Score":5114,"UserBenchmark CPU Score":"90.8"},"isPart":true,"type":"CPU","humanName":"Core i7-8086K"},"Core-i5-8600K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1515,"Geekbench Multi-Core Score":5520,"3DMark Fire Strike Physics Score":4137,"UserBenchmark CPU Score":"90.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8600K"},"Core-i5-10600":{"data":{"Geekbench Single-Core Score":1580,"Geekbench Multi-Core Score":6162,"UserBenchmark CPU Score":"90.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600","isPart":true,"type":"CPU"},"Ryzen-9-3950X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-11-25","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1701,"Geekbench Multi-Core Score":10679,"3DMark Fire Strike Physics Score":10822,"UserBenchmark CPU Score":"89.3","Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 9 3950X","isPart":true,"type":"CPU"},"Core-i3-9350KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1544,"Geekbench Multi-Core Score":4112,"UserBenchmark CPU Score":"89.3"},"isPart":true,"type":"CPU","humanName":"Core i3-9350KF"},"Core-i7-11850H":{"data":{"Geekbench Single-Core Score":1967,"Geekbench Multi-Core Score":8115,"UserBenchmark CPU Score":"88.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11850H","isPart":true,"type":"CPU"},"Ryzen-9-3900XT":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2020-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1715,"Geekbench Multi-Core Score":9910,"3DMark Fire Strike Physics Score":8607,"UserBenchmark CPU Score":"88.7","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 9 3900XT","isPart":true,"type":"CPU"},"Core-i7-8700K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1572,"Geekbench Multi-Core Score":6423,"3DMark Fire Strike Physics Score":5104,"UserBenchmark CPU Score":"88.4"},"isPart":true,"type":"CPU","humanName":"Core i7-8700K"},"Core-i5-8600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1413,"Geekbench Multi-Core Score":4944,"UserBenchmark CPU Score":"88.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8600"},"Ryzen-7-3800XT":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2020-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1758,"Geekbench Multi-Core Score":8475,"3DMark Fire Strike Physics Score":6350,"UserBenchmark CPU Score":"88.1","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.9 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3800XT","isPart":true,"type":"CPU"},"Ryzen-5-5600G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1913,"Geekbench Multi-Core Score":7649,"3DMark Fire Strike Physics Score":5523,"UserBenchmark CPU Score":"88","Release Date":"2021-04-13","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.9 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 5600G","isPart":true,"type":"CPU"},"Core-i7-11800H":{"data":{"Geekbench Single-Core Score":1892,"Geekbench Multi-Core Score":7863,"3DMark Fire Strike Physics Score":6820,"UserBenchmark CPU Score":"88","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11800H","isPart":true,"type":"CPU"},"Ryzen-9-3900X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1687,"Geekbench Multi-Core Score":9917,"3DMark Fire Strike Physics Score":8608,"UserBenchmark CPU Score":"87.9","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","TDP":"105 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 3900X","isPart":true,"type":"CPU"},"3960X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"87.2","Release Date":"2019-11-25","Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.5 GHz","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"3960x","isPart":true,"type":"CPU"},"Core-i9-10920X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1580,"Geekbench Multi-Core Score":10567,"UserBenchmark CPU Score":"87.2"},"isPart":true,"type":"CPU","humanName":"Core i9-10920X"},"Ryzen-7-3800X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1696,"Geekbench Multi-Core Score":8593,"3DMark Fire Strike Physics Score":6223,"UserBenchmark CPU Score":"87","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.9 GHz","Boost Frequency":"4.5 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3800X","isPart":true,"type":"CPU"},"Core-i7-7740X":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"112 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1637,"Geekbench Multi-Core Score":5325,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i7-7740X"},"Core-i7-8700":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1508,"Geekbench Multi-Core Score":5902,"3DMark Fire Strike Physics Score":4877,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i7-8700"},"Core-i5-9500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1470,"Geekbench Multi-Core Score":4990,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i5-9500"},"Core-i7-6950X":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1279,"Geekbench Multi-Core Score":8331,"3DMark Fire Strike Physics Score":6158,"UserBenchmark CPU Score":"86.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6950X"},"Core-i5-9400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1381,"Geekbench Multi-Core Score":4803,"UserBenchmark CPU Score":"86.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9400"},"Core-i9-9920X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1392,"Geekbench Multi-Core Score":9865,"UserBenchmark CPU Score":"86.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9920X"},"Ryzen-9-7940HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2485,"Geekbench Multi-Core Score":11817,"3DMark Fire Strike Physics Score":7776,"UserBenchmark CPU Score":"86.1","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"4 GHz","Boost Frequency":"5.2 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2800 MHz"},"humanName":"Ryzen 9 7940HS","isPart":true,"type":"CPU"},"3970X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"86.1","Release Date":"2019-11-25","Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"3970x","isPart":true,"type":"CPU"},"Ryzen-7-3700X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1645,"Geekbench Multi-Core Score":8088,"3DMark Fire Strike Physics Score":6058,"UserBenchmark CPU Score":"85.9","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3700X","isPart":true,"type":"CPU"},"Core-i7-6900K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1232,"Geekbench Multi-Core Score":7134,"UserBenchmark CPU Score":"85.9"},"isPart":true,"type":"CPU","humanName":"Core i7-6900K"},"3990X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"85.8","Release Date":"2020-02-07","Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.3 GHz","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"3990x","isPart":true,"type":"CPU"},"Core-i9-10940X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1571,"Geekbench Multi-Core Score":10835,"UserBenchmark CPU Score":"85.7"},"isPart":true,"type":"CPU","humanName":"Core i9-10940X"},"Core-i9-10900T":{"data":{"Geekbench Single-Core Score":1410,"Geekbench Multi-Core Score":6493,"UserBenchmark CPU Score":"85.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900T","isPart":true,"type":"CPU"},"Core-i9-9940X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1437,"Geekbench Multi-Core Score":10544,"UserBenchmark CPU Score":"85.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9940X"},"Core-i5-10600T":{"data":{"Geekbench Single-Core Score":1352,"Geekbench Multi-Core Score":4563,"UserBenchmark CPU Score":"85.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600T","isPart":true,"type":"CPU"},"Core-i5-10400F":{"data":{"Geekbench Single-Core Score":1428,"Geekbench Multi-Core Score":5736,"3DMark Fire Strike Physics Score":4776,"UserBenchmark CPU Score":"85.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400F","isPart":true,"type":"CPU"},"Core-i7-10700T":{"data":{"Geekbench Single-Core Score":1396,"Geekbench Multi-Core Score":5335,"UserBenchmark CPU Score":"85.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700T","isPart":true,"type":"CPU"},"Core-i9-10900X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1572,"Geekbench Multi-Core Score":9267,"UserBenchmark CPU Score":"85.1"},"isPart":true,"type":"CPU","humanName":"Core i9-10900X"},"Core-i7-5775C":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1401,"Geekbench Multi-Core Score":4800,"UserBenchmark CPU Score":"84.9"},"isPart":true,"type":"CPU","humanName":"Core i7-5775C"},"Core-i9-9960X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":10126,"UserBenchmark CPU Score":"84.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9960X"},"Core-i5-9400F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1368,"Geekbench Multi-Core Score":4816,"3DMark Fire Strike Physics Score":3766,"UserBenchmark CPU Score":"84.8"},"isPart":true,"type":"CPU","humanName":"Core i5-9400F"},"Core-i5-10400":{"data":{"Geekbench Single-Core Score":1418,"Geekbench Multi-Core Score":5452,"3DMark Fire Strike Physics Score":4755,"UserBenchmark CPU Score":"84.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400","isPart":true,"type":"CPU"},"Ryzen-7-7840HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2397,"Geekbench Multi-Core Score":11102,"UserBenchmark CPU Score":"84.2","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz"},"humanName":"Ryzen 7 7840HS","isPart":true,"type":"CPU"},"Core-i5-10500":{"data":{"Geekbench Single-Core Score":1517,"Geekbench Multi-Core Score":5441,"UserBenchmark CPU Score":"84.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500","isPart":true,"type":"CPU"},"Core-i9-10980XE":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1560,"Geekbench Multi-Core Score":11918,"UserBenchmark CPU Score":"84.2"},"isPart":true,"type":"CPU","humanName":"Core i9-10980XE"},"Core-i5-7640X":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"112 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1761,"Geekbench Multi-Core Score":5275,"UserBenchmark CPU Score":"84.1"},"isPart":true,"type":"CPU","humanName":"Core i5-7640X"},"Ryzen-5-3600X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1632,"Geekbench Multi-Core Score":6954,"3DMark Fire Strike Physics Score":4735,"UserBenchmark CPU Score":"84.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.4 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3600X","isPart":true,"type":"CPU"},"Core-i7-7700K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.2 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1561,"Geekbench Multi-Core Score":5093,"3DMark Fire Strike Physics Score":3480,"UserBenchmark CPU Score":"84"},"isPart":true,"type":"CPU","humanName":"Core i7-7700K"},"Core-i9-9900X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1441,"Geekbench Multi-Core Score":9109,"UserBenchmark CPU Score":"83.7"},"isPart":true,"type":"CPU","humanName":"Core i9-9900X"},"Core-i7-6850K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1266,"Geekbench Multi-Core Score":5839,"UserBenchmark CPU Score":"83.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6850K"},"Core-i9-7940X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1361,"Geekbench Multi-Core Score":9892,"UserBenchmark CPU Score":"83.3"},"isPart":true,"type":"CPU","humanName":"Core i9-7940X"},"Core-i9-7960X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1389,"Geekbench Multi-Core Score":10468,"UserBenchmark CPU Score":"83.2"},"isPart":true,"type":"CPU","humanName":"Core i9-7960X"},"Ryzen-5-3600":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX","X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450","X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1587,"Geekbench Multi-Core Score":6848,"3DMark Fire Strike Physics Score":4634,"UserBenchmark CPU Score":"83.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3600","isPart":true,"type":"CPU"},"Core-i9-9980XE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1398,"Geekbench Multi-Core Score":11043,"UserBenchmark CPU Score":"83"},"isPart":true,"type":"CPU","humanName":"Core i9-9980XE"},"Ryzen-7-PRO-4750G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1621,"Geekbench Multi-Core Score":7532,"UserBenchmark CPU Score":"83","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 PRO 4750G","isPart":true,"type":"CPU"},"Core-i7-9800X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1387,"Geekbench Multi-Core Score":7628,"UserBenchmark CPU Score":"82.9"},"isPart":true,"type":"CPU","humanName":"Core i7-9800X"},"Core-i5-8600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1256,"Geekbench Multi-Core Score":4734,"UserBenchmark CPU Score":"82.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8600T"},"Core-i5-8500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1384,"Geekbench Multi-Core Score":4842,"3DMark Fire Strike Physics Score":3771,"UserBenchmark CPU Score":"82.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8500"},"Core-i9-7900X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1433,"Geekbench Multi-Core Score":8960,"3DMark Fire Strike Physics Score":7045,"UserBenchmark CPU Score":"81.9"},"isPart":true,"type":"CPU","humanName":"Core i9-7900X"},"Core-i9-9820X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","UserBenchmark CPU Score":"81.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9820X"},"Core-i9-9980HK":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1422,"Geekbench Multi-Core Score":6278,"UserBenchmark CPU Score":"81.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9980HK"},"Core-i5-8400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4737,"3DMark Fire Strike Physics Score":3667,"UserBenchmark CPU Score":"81.8"},"isPart":true,"type":"CPU","humanName":"Core i5-8400"},"Core-i3-8350K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1452,"Geekbench Multi-Core Score":4231,"UserBenchmark CPU Score":"81.7"},"isPart":true,"type":"CPU","humanName":"Core i3-8350K"},"Core-i9-7920X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-08-07","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1339,"Geekbench Multi-Core Score":8876,"UserBenchmark CPU Score":"81.6"},"isPart":true,"type":"CPU","humanName":"Core i9-7920X"},"Core-i5-5675C":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":3945,"UserBenchmark CPU Score":"81.5"},"isPart":true,"type":"CPU","humanName":"Core i5-5675C"},"2950X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"81.1","Release Date":"2018-08-31","Core Count":16,"Thread Count":32,"Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"180 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"2950X","isPart":true,"type":"CPU"},"Core-i7-6700K":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-08-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1474,"Geekbench Multi-Core Score":4895,"3DMark Fire Strike Physics Score":3231,"UserBenchmark CPU Score":"80.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6700K"},"2920X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"80.7","Release Date":"2018-10-29","Core Count":12,"Thread Count":24,"Base Frequency":"3.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"180 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"2920X","isPart":true,"type":"CPU"},"Core-i7-6800K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":5685,"UserBenchmark CPU Score":"80.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6800K"},"Core-i7-5775R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1071,"Geekbench Multi-Core Score":3513,"UserBenchmark CPU Score":"80.5"},"isPart":true,"type":"CPU","humanName":"Core i7-5775R"},"Core-i7-8809G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":1382,"Geekbench Multi-Core Score":4547,"UserBenchmark CPU Score":"80.5","TDP":"100 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8809G"},"Core-i7-5960X":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":7450,"3DMark Fire Strike Physics Score":5203,"UserBenchmark CPU Score":"80.5"},"isPart":true,"type":"CPU","humanName":"Core i7-5960X"},"Core-i7-5950HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"80.4"},"isPart":true,"type":"CPU","humanName":"Core i7-5950HQ"},"Core-i3-10100F":{"data":{"Geekbench Single-Core Score":1423,"Geekbench Multi-Core Score":4401,"3DMark Fire Strike Physics Score":3199,"UserBenchmark CPU Score":"80.4","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100F","isPart":true,"type":"CPU"},"Core-i5-10500H":{"data":{"Geekbench Single-Core Score":1433,"Geekbench Multi-Core Score":4961,"UserBenchmark CPU Score":"80.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500H","isPart":true,"type":"CPU"},"Ryzen-5-PRO-4650G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1548,"Geekbench Multi-Core Score":6167,"UserBenchmark CPU Score":"80.2","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 4650G","isPart":true,"type":"CPU"},"Core-i7-7820X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1407,"Geekbench Multi-Core Score":7815,"3DMark Fire Strike Physics Score":5989,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i7-7820X"},"Core-i9-7980XE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1519,"Geekbench Multi-Core Score":11659,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i9-7980XE"},"Core-i5-11400H":{"data":{"Geekbench Single-Core Score":1811,"Geekbench Multi-Core Score":6299,"3DMark Fire Strike Physics Score":5485,"UserBenchmark CPU Score":"80.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400H","isPart":true,"type":"CPU"},"Core-i3-9100F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1370,"Geekbench Multi-Core Score":3671,"3DMark Fire Strike Physics Score":2568,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i3-9100F"},"Ryzen-7-4800U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":5553,"UserBenchmark CPU Score":"80.1","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"1.8 GHz","Boost Frequency":"4.2 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 7 4800U","isPart":true,"type":"APU"},"Core-i3-8300":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1277,"Geekbench Multi-Core Score":3772,"UserBenchmark CPU Score":"79.9"},"isPart":true,"type":"CPU","humanName":"Core i3-8300"},"Core-i3-10100":{"data":{"Geekbench Single-Core Score":1421,"Geekbench Multi-Core Score":4221,"UserBenchmark CPU Score":"79.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100","isPart":true,"type":"CPU"},"Core-i7-5930K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1146,"Geekbench Multi-Core Score":5447,"3DMark Fire Strike Physics Score":3949,"UserBenchmark CPU Score":"79.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5930K"},"Core-i3-9100":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":3544,"UserBenchmark CPU Score":"79.7"},"isPart":true,"type":"CPU","humanName":"Core i3-9100"},"Core-i7-10850H":{"data":{"Geekbench Single-Core Score":1463,"Geekbench Multi-Core Score":5379,"UserBenchmark CPU Score":"79.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10850H","isPart":true,"type":"CPU"},"Core-i7-8700T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1321,"Geekbench Multi-Core Score":4615,"UserBenchmark CPU Score":"79.4"},"isPart":true,"type":"CPU","humanName":"Core i7-8700T"},"Core-i5-10400H":{"data":{"Geekbench Single-Core Score":1358,"Geekbench Multi-Core Score":4000,"UserBenchmark CPU Score":"79.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400H","isPart":true,"type":"CPU"},"Core-i7-10870H":{"data":{"Geekbench Single-Core Score":1444,"Geekbench Multi-Core Score":6111,"3DMark Fire Strike Physics Score":5625,"UserBenchmark CPU Score":"79.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10870H","isPart":true,"type":"CPU"},"2970WX":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"79","Release Date":"2018-10-29","Core Count":24,"Thread Count":48,"Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"250 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"2970WX","isPart":true,"type":"CPU"},"Core-i7-4790K":{"data":{"Manufacturer":"Intel","Architecture":"Devil's Canyon","Market":"Desktop","Lithography":"22 nm","TDP":"88 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"4 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1382,"Geekbench Multi-Core Score":4402,"3DMark Fire Strike Physics Score":2803,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4790K"},"Core-i9-9880H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1351,"Geekbench Multi-Core Score":6031,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9880H"},"2990WX":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"78.9","Release Date":"2018-08-13","Core Count":32,"Thread Count":64,"Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"250 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"2990WX","isPart":true,"type":"CPU"},"Core-i5-9400H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1375,"Geekbench Multi-Core Score":4147,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i5-9400H"},"Core-i7-4960X":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":678,"Geekbench Multi-Core Score":3379,"UserBenchmark CPU Score":"78.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4960X"},"Ryzen-5-4600G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1568,"Geekbench Multi-Core Score":6113,"UserBenchmark CPU Score":"78.2","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.2 GHz","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 4600G","isPart":true,"type":"CPU"},"Core-i5-10500T":{"data":{"Geekbench Single-Core Score":1264,"Geekbench Multi-Core Score":4500,"UserBenchmark CPU Score":"78.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500T","isPart":true,"type":"CPU"},"Core-i5-10400T":{"data":{"Geekbench Single-Core Score":1132,"Geekbench Multi-Core Score":4132,"UserBenchmark CPU Score":"78.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400T","isPart":true,"type":"CPU"},"Ryzen-9-5980HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"UserBenchmark CPU Score":"78","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.0 GHz","Boost Frequency":"4.8 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5980HS","isPart":true,"type":"CPU"},"Core-i7-3970X":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"150 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-11-12","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":644,"Geekbench Multi-Core Score":3303,"UserBenchmark CPU Score":"77.9"},"isPart":true,"type":"CPU","humanName":"Core i7-3970X"},"Core-i7-7800X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1325,"Geekbench Multi-Core Score":6044,"UserBenchmark CPU Score":"77.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7800X"},"Ryzen-9-5900HX":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1835,"Geekbench Multi-Core Score":7471,"3DMark Fire Strike Physics Score":6592,"UserBenchmark CPU Score":"77.8","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5900HX","isPart":true,"type":"CPU"},"Core-i7-5850HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"77.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5850HQ"},"Core-i7-8706G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-08-21","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"77.7","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8706G"},"Core-i7-3960X":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2011-11-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":667,"Geekbench Multi-Core Score":3271,"UserBenchmark CPU Score":"77.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3960X"},"1920X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"77.6","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"1920X","isPart":true,"type":"CPU"},"Core-i7-8559U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1338,"Geekbench Multi-Core Score":4138,"UserBenchmark CPU Score":"77.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8559U"},"Core-i3-10100T":{"data":{"Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":3849,"UserBenchmark CPU Score":"77.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100T","isPart":true,"type":"CPU"},"Xeon-E3-1275-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":1177,"Geekbench Multi-Core Score":3712,"UserBenchmark CPU Score":"77.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275 v3"},"Core-i7-9850H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1363,"Geekbench Multi-Core Score":4992,"UserBenchmark CPU Score":"77.1"},"isPart":true,"type":"CPU","humanName":"Core i7-9850H"},"Ryzen-3-5300G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1688,"Geekbench Multi-Core Score":5431,"UserBenchmark CPU Score":"77","Release Date":"2021-04-13","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 5300G","isPart":true,"type":"CPU"},"Core-i7-4930K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":662,"Geekbench Multi-Core Score":3299,"UserBenchmark CPU Score":"76.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4930K"},"Xeon-W3690":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":559,"Geekbench Multi-Core Score":2681,"UserBenchmark CPU Score":"76.9"},"isPart":true,"type":"CPU","humanName":"Xeon W3690"},"Core-i7-5820K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1150,"Geekbench Multi-Core Score":5394,"3DMark Fire Strike Physics Score":3703,"UserBenchmark CPU Score":"76.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5820K"},"Core-i7-10750H":{"data":{"Geekbench Single-Core Score":1438,"Geekbench Multi-Core Score":5385,"3DMark Fire Strike Physics Score":4302,"UserBenchmark CPU Score":"76.8","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10750H","isPart":true,"type":"CPU"},"1950X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"76.7","Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"1950X","isPart":true,"type":"CPU"},"Core-i5-8400H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1283,"Geekbench Multi-Core Score":3561,"UserBenchmark CPU Score":"76.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8400H"},"1900X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"76.3","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"1900X","isPart":true,"type":"CPU"},"Core-i7-7700":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":4453,"3DMark Fire Strike Physics Score":3066,"UserBenchmark CPU Score":"76.2"},"isPart":true,"type":"CPU","humanName":"Core i7-7700"},"Ryzen-9-5900HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"3DMark Fire Strike Physics Score":6272,"UserBenchmark CPU Score":"75.9","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.0 GHz","Boost Frequency":"4.6 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5900HS","isPart":true,"type":"CPU"},"Core-i5-7600K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1498,"Geekbench Multi-Core Score":4199,"3DMark Fire Strike Physics Score":2726,"UserBenchmark CPU Score":"75.8"},"isPart":true,"type":"CPU","humanName":"Core i5-7600K"},"Ryzen-7-2700X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1241,"Geekbench Multi-Core Score":6104,"3DMark Fire Strike Physics Score":4803,"UserBenchmark CPU Score":"75.7","Release Date":"2018-04-19","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700X","isPart":true,"type":"CPU"},"Xeon-W3680":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":2581,"UserBenchmark CPU Score":"75.3"},"isPart":true,"type":"CPU","humanName":"Xeon W3680"},"Xeon-E3-1270-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1183,"Geekbench Multi-Core Score":3861,"UserBenchmark CPU Score":"75.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270 v3"},"Core-i7-980":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-06-26","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"75.2"},"isPart":true,"type":"CPU","humanName":"Core i7-980"},"Ryzen-7-4700U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":4885,"UserBenchmark CPU Score":"75.2","Core Count":8,"Thread Count":8,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2 GHz","Boost Frequency":"4.1 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4700U","isPart":true,"type":"APU"},"Core-i5-7600T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1199,"Geekbench Multi-Core Score":3364,"UserBenchmark CPU Score":"75.1"},"isPart":true,"type":"CPU","humanName":"Core i5-7600T"},"Ryzen-7-5800H":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1742,"Geekbench Multi-Core Score":7071,"3DMark Fire Strike Physics Score":6277,"UserBenchmark CPU Score":"75.1","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800H","isPart":true,"type":"CPU"},"Xeon-X5690":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":2566,"UserBenchmark CPU Score":"74.7"},"isPart":true,"type":"CPU","humanName":"Xeon X5690"},"Ryzen-5-4600U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1342,"Geekbench Multi-Core Score":4616,"UserBenchmark CPU Score":"74.7","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600U","isPart":true,"type":"APU"},"Core-i5-8400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1097,"Geekbench Multi-Core Score":3903,"UserBenchmark CPU Score":"74.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8400T"},"Core-i9-8950HK":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1367,"Geekbench Multi-Core Score":4905,"UserBenchmark CPU Score":"74.5"},"isPart":true,"type":"CPU","humanName":"Core i9-8950HK"},"Core-i7-3930K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-11-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":605,"Geekbench Multi-Core Score":2986,"UserBenchmark CPU Score":"74.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3930K"},"Core-i5-10300H":{"data":{"Geekbench Single-Core Score":1358,"Geekbench Multi-Core Score":3976,"3DMark Fire Strike Physics Score":2981,"UserBenchmark CPU Score":"74.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10300H","isPart":true,"type":"CPU"},"Ryzen-9-4900H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1552,"Geekbench Multi-Core Score":6833,"UserBenchmark CPU Score":"74.3","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 9 4900H","isPart":true,"type":"APU"},"Core-i5-8279U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-05-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1224,"Geekbench Multi-Core Score":3772,"UserBenchmark CPU Score":"74.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8279U"},"Ryzen-5-2600X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":5239,"3DMark Fire Strike Physics Score":3665,"UserBenchmark CPU Score":"74","Release Date":"2018-04-19","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.25 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600X","isPart":true,"type":"CPU"},"Core-i7-11370H":{"data":{"Geekbench Single-Core Score":1734,"Geekbench Multi-Core Score":5454,"3DMark Fire Strike Physics Score":3621,"UserBenchmark CPU Score":"74","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11370H","isPart":true,"type":"CPU"},"Ryzen-7-4800H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1451,"Geekbench Multi-Core Score":5872,"3DMark Fire Strike Physics Score":5763,"UserBenchmark CPU Score":"73.9","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.2 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4800H","isPart":true,"type":"APU"},"Core-i5-2550K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":687,"Geekbench Multi-Core Score":2060,"UserBenchmark CPU Score":"73.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2550K"},"Ryzen-7-2700":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1106,"Geekbench Multi-Core Score":5446,"3DMark Fire Strike Physics Score":4149,"UserBenchmark CPU Score":"73.8","Release Date":"2018-04-19","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700","isPart":true,"type":"CPU"},"Ryzen-5-1600X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1126,"Geekbench Multi-Core Score":4757,"3DMark Fire Strike Physics Score":3461,"UserBenchmark CPU Score":"73.7","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.1 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 1600X","isPart":true,"type":"CPU"},"Core-i7-4770K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1262,"Geekbench Multi-Core Score":4057,"3DMark Fire Strike Physics Score":2568,"UserBenchmark CPU Score":"73.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4770K"},"Core-i7-4771":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1189,"Geekbench Multi-Core Score":3845,"UserBenchmark CPU Score":"73.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4771"},"Core-i7-970":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"Q3 2010","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":495,"Geekbench Multi-Core Score":2337,"UserBenchmark CPU Score":"73.4"},"isPart":true,"type":"CPU","humanName":"Core i7-970"},"Ryzen-5-2600":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":4823,"3DMark Fire Strike Physics Score":3468,"UserBenchmark CPU Score":"73.3","Release Date":"2018-04-19","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600","isPart":true,"type":"CPU"},"Core-i7-9750H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1345,"Geekbench Multi-Core Score":4911,"3DMark Fire Strike Physics Score":3778,"UserBenchmark CPU Score":"73.3"},"isPart":true,"type":"CPU","humanName":"Core i7-9750H"},"Core-i3-7320":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1393,"Geekbench Multi-Core Score":2798,"UserBenchmark CPU Score":"73.2"},"isPart":true,"type":"CPU","humanName":"Core i3-7320"},"Core-i5-8259U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1220,"Geekbench Multi-Core Score":4031,"UserBenchmark CPU Score":"73.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8259U"},"Core-i5-10200H":{"data":{"Geekbench Single-Core Score":1319,"Geekbench Multi-Core Score":3869,"UserBenchmark CPU Score":"73.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10200H","isPart":true,"type":"CPU"},"Core-i7-2700K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-10-24","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":661,"Geekbench Multi-Core Score":2281,"UserBenchmark CPU Score":"73"},"isPart":true,"type":"CPU","humanName":"Core i7-2700K"},"Ryzen-5-5600H":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1595,"Geekbench Multi-Core Score":5706,"3DMark Fire Strike Physics Score":5005,"UserBenchmark CPU Score":"73","Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600H","isPart":true,"type":"CPU"},"Core-i5-8500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1166,"Geekbench Multi-Core Score":4036,"UserBenchmark CPU Score":"73"},"isPart":true,"type":"CPU","humanName":"Core i5-8500T"},"Core-i5-8305G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-08-21","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"72.9","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i5-8305G"},"Ryzen-7-5800HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"UserBenchmark CPU Score":"72.9","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"2.8 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800HS","isPart":true,"type":"CPU"},"Core-i5-6600T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1173,"Geekbench Multi-Core Score":3224,"UserBenchmark CPU Score":"72.9"},"isPart":true,"type":"CPU","humanName":"Core i5-6600T"},"Xeon-E3-1230-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1137,"Geekbench Multi-Core Score":3727,"UserBenchmark CPU Score":"72.8"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230 v3"},"Xeon-W3570":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"72.7"},"isPart":true,"type":"CPU","humanName":"Xeon W3570"},"Ryzen-5-2500X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"8 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1022,"Geekbench Multi-Core Score":3570,"UserBenchmark CPU Score":"72.6","Release Date":"2018-09-10","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 2500X","isPart":true,"type":"CPU"},"Core-i7-8705G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":1248,"Geekbench Multi-Core Score":3949,"UserBenchmark CPU Score":"72.5","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8705G"},"Core-i5-4670S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1119,"Geekbench Multi-Core Score":3190,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4670S"},"Core-i7-3770K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":709,"Geekbench Multi-Core Score":2479,"3DMark Fire Strike Physics Score":2122,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3770K"},"Core-i7-975":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-06-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":545,"Geekbench Multi-Core Score":1902,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i7-975"},"Core-i5-6600K":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-08-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1407,"Geekbench Multi-Core Score":3987,"3DMark Fire Strike Physics Score":2632,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i5-6600K"},"Core-i7-6700":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1285,"Geekbench Multi-Core Score":4111,"3DMark Fire Strike Physics Score":2832,"UserBenchmark CPU Score":"72.3"},"isPart":true,"type":"CPU","humanName":"Core i7-6700"},"Xeon-E3-1240-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1149,"Geekbench Multi-Core Score":3730,"UserBenchmark CPU Score":"72.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240 v3"},"Core-i5-7600":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":3789,"UserBenchmark CPU Score":"72"},"isPart":true,"type":"CPU","humanName":"Core i5-7600"},"Ryzen-7-4800HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1434,"Geekbench Multi-Core Score":5979,"UserBenchmark CPU Score":"72","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.2 GHz","TDP":"35 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4800HS","isPart":true,"type":"APU"},"Core-i7-4820K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":655,"Geekbench Multi-Core Score":2414,"UserBenchmark CPU Score":"71.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4820K"},"Ryzen-7-1800X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1135,"Geekbench Multi-Core Score":5833,"3DMark Fire Strike Physics Score":4496,"UserBenchmark CPU Score":"71.8","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.1 GHz","TDP":"95 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1800X","isPart":true,"type":"CPU"},"Core-i7-4790S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1178,"Geekbench Multi-Core Score":3664,"UserBenchmark CPU Score":"71.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4790S"},"Core-i7-7820HK":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1306,"Geekbench Multi-Core Score":4136,"UserBenchmark CPU Score":"71.7"},"isPart":true,"type":"CPU","humanName":"Core i7-7820HK"},"Core-i7-7700T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1201,"Geekbench Multi-Core Score":3608,"UserBenchmark CPU Score":"71.7"},"isPart":true,"type":"CPU","humanName":"Core i7-7700T"},"Ryzen-9-4900HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1450,"Geekbench Multi-Core Score":6423,"UserBenchmark CPU Score":"71.5","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4.3 GHz","TDP":"35 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 9 4900HS","isPart":true,"type":"APU"},"Core-i3-7350K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"60 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1420,"Geekbench Multi-Core Score":2803,"UserBenchmark CPU Score":"71.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7350K"},"Xeon-E3-1245-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":1181,"Geekbench Multi-Core Score":3801,"UserBenchmark CPU Score":"71.5"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245 v3"},"Ryzen-5-4500U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","UserBenchmark CPU Score":"71.4","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4500U","isPart":true,"type":"APU"},"Core-i7-4790":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1209,"Geekbench Multi-Core Score":3830,"3DMark Fire Strike Physics Score":2439,"UserBenchmark CPU Score":"71.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4790"},"Core-i7-7920HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1261,"Geekbench Multi-Core Score":4156,"UserBenchmark CPU Score":"71.4"},"isPart":true,"type":"CPU","humanName":"Core i7-7920HQ"},"Xeon-X5660":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":2077,"UserBenchmark CPU Score":"71.3"},"isPart":true,"type":"CPU","humanName":"Xeon X5660"},"Core-i7-4770S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1131,"Geekbench Multi-Core Score":3567,"UserBenchmark CPU Score":"71.2"},"isPart":true,"type":"CPU","humanName":"Core i7-4770S"},"Core-i3-8100T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1068,"Geekbench Multi-Core Score":3020,"UserBenchmark CPU Score":"71.1"},"isPart":true,"type":"CPU","humanName":"Core i3-8100T"},"Ryzen-7-1700X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1077,"Geekbench Multi-Core Score":5527,"3DMark Fire Strike Physics Score":4253,"UserBenchmark CPU Score":"71","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","XFR Frequency":"3.9 GHz","TDP":"95 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1700X","isPart":true,"type":"CPU"},"Core-i7-4790T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1137,"Geekbench Multi-Core Score":3376,"UserBenchmark CPU Score":"70.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4790T"},"Core-i5-2450P":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"70.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2450P"},"Core-i5-11300H":{"data":{"Geekbench Single-Core Score":1685,"Geekbench Multi-Core Score":4942,"UserBenchmark CPU Score":"70.8","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11300H","isPart":true,"type":"CPU"},"Xeon-X5667":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"70.8"},"isPart":true,"type":"CPU","humanName":"Xeon X5667"},"Core-i7-8850H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1307,"Geekbench Multi-Core Score":4592,"UserBenchmark CPU Score":"70.7"},"isPart":true,"type":"CPU","humanName":"Core i7-8850H"},"Core-i3-8100":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1235,"Geekbench Multi-Core Score":3381,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i3-8100"},"Core-i7-880":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":518,"Geekbench Multi-Core Score":1651,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i7-880"},"Core-i7-2600K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":670,"Geekbench Multi-Core Score":2338,"3DMark Fire Strike Physics Score":1868,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i7-2600K"},"Core-i7-4770":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1180,"Geekbench Multi-Core Score":3769,"3DMark Fire Strike Physics Score":2368,"UserBenchmark CPU Score":"70.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4770"},"Xeon-E3-1240":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":565,"Geekbench Multi-Core Score":2037,"UserBenchmark CPU Score":"70.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240"},"Core-i7-4770T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1119,"Geekbench Multi-Core Score":3201,"UserBenchmark CPU Score":"70.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770T"},"Ryzen-5-1600":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1065,"Geekbench Multi-Core Score":4567,"3DMark Fire Strike Physics Score":3190,"UserBenchmark CPU Score":"70.2","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","XFR Frequency":"3.7 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 1600","isPart":true,"type":"CPU"},"Core-i7-8750H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1289,"Geekbench Multi-Core Score":4553,"3DMark Fire Strike Physics Score":3441,"UserBenchmark CPU Score":"70.1"},"isPart":true,"type":"CPU","humanName":"Core i7-8750H"},"Ryzen-5-4600H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1349,"Geekbench Multi-Core Score":4995,"3DMark Fire Strike Physics Score":4414,"UserBenchmark CPU Score":"70.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","TDP":"45 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600H","isPart":true,"type":"APU"},"Xeon-X5650":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":2243,"UserBenchmark CPU Score":"70.1"},"isPart":true,"type":"CPU","humanName":"Xeon X5650"},"Core-i3-7300":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"70"},"isPart":true,"type":"CPU","humanName":"Core i3-7300"},"Core-i7-6700T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1188,"Geekbench Multi-Core Score":3625,"UserBenchmark CPU Score":"69.9"},"isPart":true,"type":"CPU","humanName":"Core i7-6700T"},"Core-i7-3940XM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":629,"Geekbench Multi-Core Score":2159,"UserBenchmark CPU Score":"69.6"},"isPart":true,"type":"CPU","humanName":"Core i7-3940XM"},"Ryzen-5-4600HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1298,"Geekbench Multi-Core Score":5213,"UserBenchmark CPU Score":"69.6","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","TDP":"35 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600HS","isPart":true,"type":"APU"},"Core-i5-4690K":{"data":{"Manufacturer":"Intel","Architecture":"Devil's Canyon","Market":"Desktop","Lithography":"22 nm","TDP":"88 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1285,"Geekbench Multi-Core Score":3649,"3DMark Fire Strike Physics Score":2157,"UserBenchmark CPU Score":"69.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4690K"},"Core-i7-3820":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-02-13","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":614,"Geekbench Multi-Core Score":2297,"UserBenchmark CPU Score":"69.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3820"},"Core-i7-6920HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1154,"Geekbench Multi-Core Score":3758,"UserBenchmark CPU Score":"69.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6920HQ"},"Core-i3-6320":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1298,"Geekbench Multi-Core Score":2618,"UserBenchmark CPU Score":"69.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6320"},"Xeon-E3-1220-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":3218,"UserBenchmark CPU Score":"69.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220 v3"},"Core-i7-4940MX":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"57 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.35 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","Geekbench Single-Core Score":1209,"Geekbench Multi-Core Score":3733,"UserBenchmark CPU Score":"69.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4940MX"},"Core-i7-3770S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":672,"Geekbench Multi-Core Score":2237,"UserBenchmark CPU Score":"69.3"},"isPart":true,"type":"CPU","humanName":"Core i7-3770S"},"Xeon-X5570":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.333 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":487,"Geekbench Multi-Core Score":1874,"UserBenchmark CPU Score":"69.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5570"},"Core-i7-4930MX":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"57 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.35 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3412,"UserBenchmark CPU Score":"69.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4930MX"},"Ryzen-7-1700":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1004,"Geekbench Multi-Core Score":5071,"3DMark Fire Strike Physics Score":3902,"UserBenchmark CPU Score":"69","Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.75 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1700","isPart":true,"type":"CPU"},"Core-i7-3770":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":669,"Geekbench Multi-Core Score":2296,"3DMark Fire Strike Physics Score":1986,"UserBenchmark CPU Score":"69"},"isPart":true,"type":"CPU","humanName":"Core i7-3770"},"Core-i5-3450S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":583,"Geekbench Multi-Core Score":1668,"UserBenchmark CPU Score":"68.9"},"isPart":true,"type":"CPU","humanName":"Core i5-3450S"},"Core-i7-5700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1084,"Geekbench Multi-Core Score":3209,"UserBenchmark CPU Score":"68.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5700HQ"},"Core-i7-6820HK":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1102,"Geekbench Multi-Core Score":3680,"UserBenchmark CPU Score":"68.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6820HK"},"Xeon-X3470":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"68.7"},"isPart":true,"type":"CPU","humanName":"Xeon X3470"},"Core-i5-3550":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":637,"Geekbench Multi-Core Score":1884,"UserBenchmark CPU Score":"68.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3550"},"Core-i3-7101E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"3.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"68.6"},"isPart":true,"type":"CPU","humanName":"Core i3-7101E"},"Core-i5-3475S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":586,"Geekbench Multi-Core Score":1622,"UserBenchmark CPU Score":"68.5"},"isPart":true,"type":"CPU","humanName":"Core i5-3475S"},"Core-i7-3920XM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","UserBenchmark CPU Score":"68.2"},"isPart":true,"type":"CPU","humanName":"Core i7-3920XM"},"Ryzen-7-5800U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1638,"Geekbench Multi-Core Score":6459,"UserBenchmark CPU Score":"68.1","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.9 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800U","isPart":true,"type":"CPU"},"Xeon-X5560":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"68.1"},"isPart":true,"type":"CPU","humanName":"Xeon X5560"},"Core-i7-10710U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.1 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i7-10710U"},"Ryzen-3-4300U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1240,"Geekbench Multi-Core Score":3364,"UserBenchmark CPU Score":"68","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","TDP":"15 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","GPU Model":"RX Vega 5","Max Displays":4,"Shader Processor Count":320,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1400 MHz","FP32 Compute":"0.896 TFLOPS","FP64 Compute":"56 GFLOPS"},"humanName":"Ryzen 3 4300U","isPart":true,"type":"APU"},"Core-i7-4960HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1112,"Geekbench Multi-Core Score":3733,"UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i7-4960HQ"},"Core-i5-4670K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1245,"Geekbench Multi-Core Score":3508,"UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i5-4670K"},"Xeon-X3460":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":449,"Geekbench Multi-Core Score":1501,"UserBenchmark CPU Score":"67.7"},"isPart":true,"type":"CPU","humanName":"Xeon X3460"},"Core-i7-960":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-10-19","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":493,"Geekbench Multi-Core Score":1666,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i7-960"},"Core-i7-4900MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":992,"Geekbench Multi-Core Score":3018,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4900MQ"},"Core-i5-3570K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":689,"Geekbench Multi-Core Score":2080,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3570K"},"Core-i5-6600":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1289,"Geekbench Multi-Core Score":3568,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i5-6600"},"Xeon-E5-2670":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":506,"Geekbench Multi-Core Score":3032,"UserBenchmark CPU Score":"67.3"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670"},"Core-i7-4910MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1082,"Geekbench Multi-Core Score":3332,"UserBenchmark CPU Score":"67.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4910MQ"},"Core-i5-4590S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1086,"Geekbench Multi-Core Score":2933,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4590S"},"Core-i7-2600":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":611,"Geekbench Multi-Core Score":2048,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i7-2600"},"Core-i5-4690":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":3256,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4690"},"Xeon-W3565":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-11-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":488,"Geekbench Multi-Core Score":1685,"UserBenchmark CPU Score":"67"},"isPart":true,"type":"CPU","humanName":"Xeon W3565"},"Core-i7-2600S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":580,"Geekbench Multi-Core Score":1782,"UserBenchmark CPU Score":"67"},"isPart":true,"type":"CPU","humanName":"Core i7-2600S"},"Core-i3-7300T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"66.8"},"isPart":true,"type":"CPU","humanName":"Core i3-7300T"},"Core-i5-7500":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1265,"Geekbench Multi-Core Score":3460,"3DMark Fire Strike Physics Score":2295,"UserBenchmark CPU Score":"66.8"},"isPart":true,"type":"CPU","humanName":"Core i5-7500"},"Pentium-G4620":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":736,"Geekbench Multi-Core Score":1603,"UserBenchmark CPU Score":"66.7"},"isPart":true,"type":"CPU","humanName":"Pentium G4620"},"Core-i3-6300":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1230,"Geekbench Multi-Core Score":2494,"UserBenchmark CPU Score":"66.7"},"isPart":true,"type":"CPU","humanName":"Core i3-6300"},"Core-i5-4670":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1171,"Geekbench Multi-Core Score":3231,"UserBenchmark CPU Score":"66.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4670"},"Ryzen-5-1500X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1103,"Geekbench Multi-Core Score":3663,"UserBenchmark CPU Score":"66.4","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 1500X","isPart":true,"type":"CPU"},"Core-i5-7500T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1121,"Geekbench Multi-Core Score":3096,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i5-7500T"},"Core-i7-3820QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":623,"Geekbench Multi-Core Score":2122,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i7-3820QM"},"Core-i7-4722HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-01-12","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4722HQ"},"Core-i5-3450":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":609,"Geekbench Multi-Core Score":1800,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3450"},"Core-i5-4570S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1042,"Geekbench Multi-Core Score":2826,"UserBenchmark CPU Score":"66.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4570S"},"Core-i5-4460S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1003,"Geekbench Multi-Core Score":2812,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4460S"},"Core-i5-3340":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":1596,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3340"},"Core-i7-870":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":481,"Geekbench Multi-Core Score":1570,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i7-870"},"Core-i7-3840QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":604,"Geekbench Multi-Core Score":2048,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i7-3840QM"},"Core-i7-4850HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1040,"Geekbench Multi-Core Score":3301,"UserBenchmark CPU Score":"66"},"isPart":true,"type":"CPU","humanName":"Core i7-4850HQ"},"Xeon-X3450":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"66"},"isPart":true,"type":"CPU","humanName":"Xeon X3450"},"Core-i3-4350":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":864,"Geekbench Multi-Core Score":2046,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4350"},"Core-i5-2500K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":639,"Geekbench Multi-Core Score":1902,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2500K"},"Core-i7-950":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-06-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":458,"Geekbench Multi-Core Score":1560,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i7-950"},"Ryzen-5-5600U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1617,"Geekbench Multi-Core Score":5725,"UserBenchmark CPU Score":"65.8","Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":6,"Thread Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600U","isPart":true,"type":"CPU"},"Core-i3-4370":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1217,"Geekbench Multi-Core Score":2415,"UserBenchmark CPU Score":"65.8"},"isPart":true,"type":"CPU","humanName":"Core i3-4370"},"Xeon-W3550":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":483,"Geekbench Multi-Core Score":1600,"UserBenchmark CPU Score":"65.8"},"isPart":true,"type":"CPU","humanName":"Xeon W3550"},"Core-i7-940":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":1491,"UserBenchmark CPU Score":"65.5"},"isPart":true,"type":"CPU","humanName":"Core i7-940"},"Ryzen-3-1300X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-07-27","XFR Support":true,"Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3156,"UserBenchmark CPU Score":"65.4","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.8 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 1300X","isPart":true,"type":"CPU"},"Core-i5-3470S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":607,"Geekbench Multi-Core Score":1733,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3470S"},"Core-i5-7400T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1020,"Geekbench Multi-Core Score":2808,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-7400T"},"Core-i5-3350P":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":571,"Geekbench Multi-Core Score":1688,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3350P"},"Core-i3-6300T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1084,"Geekbench Multi-Core Score":2311,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i3-6300T"},"Xeon-X3440":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":368,"Geekbench Multi-Core Score":1226,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Xeon X3440"},"Core-i5-4570R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":884,"Geekbench Multi-Core Score":2695,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4570R"},"Core-i5-4430":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1003,"Geekbench Multi-Core Score":2846,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4430"},"Core-i5-3570":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":656,"Geekbench Multi-Core Score":1921,"UserBenchmark CPU Score":"65.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3570"},"Core-i3-8109U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1164,"Geekbench Multi-Core Score":2407,"UserBenchmark CPU Score":"65"},"isPart":true,"type":"CPU","humanName":"Core i3-8109U"},"Core-i5-9300H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1268,"Geekbench Multi-Core Score":3664,"3DMark Fire Strike Physics Score":2593,"UserBenchmark CPU Score":"65"},"isPart":true,"type":"CPU","humanName":"Core i5-9300H"},"Core-i7-3720QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":594,"Geekbench Multi-Core Score":2002,"UserBenchmark CPU Score":"64.8"},"isPart":true,"type":"CPU","humanName":"Core i7-3720QM"},"Core-i5-2310":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-05-22","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":520,"Geekbench Multi-Core Score":1493,"UserBenchmark CPU Score":"64.8"},"isPart":true,"type":"CPU","humanName":"Core i5-2310"},"Core-i5-8300H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1270,"Geekbench Multi-Core Score":3752,"3DMark Fire Strike Physics Score":2475,"UserBenchmark CPU Score":"64.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8300H"},"Core-i3-4360":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":2318,"UserBenchmark CPU Score":"64.7"},"isPart":true,"type":"CPU","humanName":"Core i3-4360"},"Core-i7-2960XM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-09-04","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":523,"Geekbench Multi-Core Score":1682,"UserBenchmark CPU Score":"64.6"},"isPart":true,"type":"CPU","humanName":"Core i7-2960XM"},"Xeon-W3530":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":429,"Geekbench Multi-Core Score":1500,"UserBenchmark CPU Score":"64.6"},"isPart":true,"type":"CPU","humanName":"Xeon W3530"},"Core-i3-4340":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"64.5"},"isPart":true,"type":"CPU","humanName":"Core i3-4340"},"Core-i7-3740QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":585,"Geekbench Multi-Core Score":1939,"UserBenchmark CPU Score":"64.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3740QM"},"Core-i5-2500S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":1458,"UserBenchmark CPU Score":"64.3"},"isPart":true,"type":"CPU","humanName":"Core i5-2500S"},"Core-i7-860":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":444,"Geekbench Multi-Core Score":1452,"UserBenchmark CPU Score":"64.2"},"isPart":true,"type":"CPU","humanName":"Core i7-860"},"Core-i5-3330S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":549,"Geekbench Multi-Core Score":1630,"UserBenchmark CPU Score":"64.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3330S"},"Core-i5-2300":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":510,"Geekbench Multi-Core Score":1492,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i5-2300"},"Core-i7-4770HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":996,"Geekbench Multi-Core Score":3347,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i7-4770HQ"},"Core-i7-930":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":1440,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i7-930"},"Core-i5-2320":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-09-04","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":534,"Geekbench Multi-Core Score":1535,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2320"},"Core-i5-2405S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-05-22","Socket":"FCLGA1155, LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":527,"Geekbench Multi-Core Score":1414,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2405S"},"Core-i7-7567U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1300,"Geekbench Multi-Core Score":2595,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7567U"},"Core-i5-760":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-07-18","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":1285,"UserBenchmark CPU Score":"63.6"},"isPart":true,"type":"CPU","humanName":"Core i5-760"},"Core-i5-6500":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":3199,"3DMark Fire Strike Physics Score":2120,"UserBenchmark CPU Score":"63.6"},"isPart":true,"type":"CPU","humanName":"Core i5-6500"},"Core-i5-7400":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1166,"Geekbench Multi-Core Score":3203,"3DMark Fire Strike Physics Score":2085,"UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7400"},"Pentium-G5400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5400T"},"Core-i5-4590":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":3134,"UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4590"},"Core-i7-4750HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":982,"Geekbench Multi-Core Score":3208,"UserBenchmark CPU Score":"63.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4750HQ"},"Core-i7-4800MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1026,"Geekbench Multi-Core Score":3000,"UserBenchmark CPU Score":"63.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4800MQ"},"Xeon-E5540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":1553,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5540"},"Core-i5-3470":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":622,"Geekbench Multi-Core Score":1841,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3470"},"Xeon-W3520":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":411,"Geekbench Multi-Core Score":1388,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Xeon W3520"},"FX-9590":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":541,"Geekbench Multi-Core Score":2175,"UserBenchmark CPU Score":"63.1","Thread Count":8,"Core Count":8,"Base Frequency":"4.7 GHz","Boost Frequency":"5.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"220 W","Release Date":"2013-07-06"},"isPart":true,"type":"CPU","humanName":"FX 9590"},"Core-i7-7820HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1179,"Geekbench Multi-Core Score":3519,"UserBenchmark CPU Score":"63"},"isPart":true,"type":"CPU","humanName":"Core i7-7820HQ"},"Pentium-G4600":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":734,"Geekbench Multi-Core Score":1526,"UserBenchmark CPU Score":"62.9"},"isPart":true,"type":"CPU","humanName":"Pentium G4600"},"Core-i5-2500":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":589,"Geekbench Multi-Core Score":1710,"UserBenchmark CPU Score":"62.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2500"},"Pentium-G5500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"62.6"},"isPart":true,"type":"CPU","humanName":"Pentium G5500T"},"Ryzen-5-2400G":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Geekbench Single-Core Score":1058,"Geekbench Multi-Core Score":3292,"UserBenchmark CPU Score":"62.5","Socket":"AM4","Release Date":"2018-02-12","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"RX Vega 11","Shader Processor Count":704,"Texture Mapping Unit Count":44,"Render Output Unit Count":16,"GPU Base Frequency":"1250 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"Ryzen 5 2400G","type":"APU"},"FX-9370":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":2073,"UserBenchmark CPU Score":"62.5","Thread Count":8,"Core Count":8,"Base Frequency":"4.4 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"220 W","Release Date":"2013-07-06","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 9370"},"Core-i5-4570":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1083,"Geekbench Multi-Core Score":3045,"UserBenchmark CPU Score":"62.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4570"},"Core-i7-3615QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":1835,"UserBenchmark CPU Score":"62.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3615QM"},"Core-i7-2920XM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":384,"Geekbench Multi-Core Score":1269,"UserBenchmark CPU Score":"62.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2920XM"},"Core-i5-4460":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1043,"Geekbench Multi-Core Score":2916,"3DMark Fire Strike Physics Score":1748,"UserBenchmark CPU Score":"62.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4460"},"FX-8370":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":494,"Geekbench Multi-Core Score":2013,"UserBenchmark CPU Score":"62.1","Thread Count":8,"Core Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8370"},"Core-i7-3635QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":528,"Geekbench Multi-Core Score":1733,"UserBenchmark CPU Score":"62.1"},"isPart":true,"type":"CPU","humanName":"Core i7-3635QM"},"Core-i7-7700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1141,"Geekbench Multi-Core Score":3561,"3DMark Fire Strike Physics Score":2505,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i7-7700HQ"},"Core-i7-3610QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":516,"Geekbench Multi-Core Score":1772,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i7-3610QM"},"Core-i3-6098P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1114,"Geekbench Multi-Core Score":2193,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i3-6098P"},"Core-i7-4700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":962,"Geekbench Multi-Core Score":3008,"UserBenchmark CPU Score":"61.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4700HQ"},"Core-i3-4330":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1049,"Geekbench Multi-Core Score":2135,"UserBenchmark CPU Score":"61.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4330"},"Core-i7-4702HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":929,"Geekbench Multi-Core Score":2939,"UserBenchmark CPU Score":"61.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4702HQ"},"Core-i7-2860QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-09-04","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":554,"Geekbench Multi-Core Score":1686,"UserBenchmark CPU Score":"61.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2860QM"},"Core-i7-4810MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1073,"Geekbench Multi-Core Score":3158,"UserBenchmark CPU Score":"61.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4810MQ"},"Core-i7-920":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":1446,"UserBenchmark CPU Score":"61.6"},"isPart":true,"type":"CPU","humanName":"Core i7-920"},"Core-i5-7260U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1109,"Geekbench Multi-Core Score":2337,"UserBenchmark CPU Score":"61.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7260U"},"Core-i5-750":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":433,"Geekbench Multi-Core Score":1211,"UserBenchmark CPU Score":"61.5"},"isPart":true,"type":"CPU","humanName":"Core i5-750"},"Core-i5-4440":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1018,"Geekbench Multi-Core Score":2853,"UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4440"},"Xeon-X3430":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Xeon X3430"},"Core-i5-3330":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":1643,"UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3330"},"Xeon-E5530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":343,"Geekbench Multi-Core Score":1384,"UserBenchmark CPU Score":"61.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5530"},"Ryzen-5-1400":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":946,"Geekbench Multi-Core Score":3102,"UserBenchmark CPU Score":"61","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","XFR Frequency":"3.45 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 1400","isPart":true,"type":"CPU"},"Ryzen-3-5400U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1502,"Geekbench Multi-Core Score":4544,"UserBenchmark CPU Score":"61","Release Date":"2021-01-12","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"15 W","Core Count":4,"Thread Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"4.0 GHz","GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1600 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.229 TFLOPS","FP64 Compute":"76.8 GFLOPS"},"humanName":"Ryzen 3 5400U","isPart":true,"type":"CPU"},"Core-i7-4702MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":914,"Geekbench Multi-Core Score":2798,"UserBenchmark CPU Score":"61"},"isPart":true,"type":"CPU","humanName":"Core i7-4702MQ"},"Core-i5-6400":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1107,"Geekbench Multi-Core Score":3019,"UserBenchmark CPU Score":"60.8"},"isPart":true,"type":"CPU","humanName":"Core i5-6400"},"Core-i7-3630QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":548,"Geekbench Multi-Core Score":1823,"UserBenchmark CPU Score":"60.8"},"isPart":true,"type":"CPU","humanName":"Core i7-3630QM"},"FX-8350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":487,"Geekbench Multi-Core Score":1992,"3DMark Fire Strike Physics Score":1341,"UserBenchmark CPU Score":"60.8","Thread Count":8,"Core Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2012-10-23","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8350"},"Core-i7-4712HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":857,"Geekbench Multi-Core Score":2559,"UserBenchmark CPU Score":"60.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4712HQ"},"Core-i7-3632QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":503,"Geekbench Multi-Core Score":1694,"UserBenchmark CPU Score":"60.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3632QM"},"Core-i7-5557U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1029,"Geekbench Multi-Core Score":2021,"UserBenchmark CPU Score":"60.6"},"isPart":true,"type":"CPU","humanName":"Core i7-5557U"},"Core-i5-2400":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":554,"Geekbench Multi-Core Score":1609,"UserBenchmark CPU Score":"60.6"},"isPart":true,"type":"CPU","humanName":"Core i5-2400"},"Core-i3-7100T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1115,"Geekbench Multi-Core Score":2259,"UserBenchmark CPU Score":"60.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100T"},"Ryzen-3-2200G":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Geekbench Single-Core Score":988,"Geekbench Multi-Core Score":2853,"UserBenchmark CPU Score":"60.5","Socket":"AM4","Release Date":"2018-02-12","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"Ryzen 3 2200G","type":"APU"},"Core-i7-3612QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":508,"Geekbench Multi-Core Score":1685,"UserBenchmark CPU Score":"60.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3612QM"},"Core-i5-2400S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":498,"Geekbench Multi-Core Score":1346,"UserBenchmark CPU Score":"60.4"},"isPart":true,"type":"CPU","humanName":"Core i5-2400S"},"Core-i3-2125":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"60.3"},"isPart":true,"type":"CPU","humanName":"Core i3-2125"},"Pentium-G4560T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":621,"Geekbench Multi-Core Score":1286,"UserBenchmark CPU Score":"60.2"},"isPart":true,"type":"CPU","humanName":"Pentium G4560T"},"Pentium-G4520":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"60.1"},"isPart":true,"type":"CPU","humanName":"Pentium G4520"},"Core-i7-6820HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1099,"Geekbench Multi-Core Score":3459,"UserBenchmark CPU Score":"60.1"},"isPart":true,"type":"CPU","humanName":"Core i7-6820HQ"},"Core-i7-2760QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-09-04","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":535,"Geekbench Multi-Core Score":1701,"UserBenchmark CPU Score":"59.9"},"isPart":true,"type":"CPU","humanName":"Core i7-2760QM"},"Core-i7-4710MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1015,"Geekbench Multi-Core Score":3111,"UserBenchmark CPU Score":"59.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4710MQ"},"Core-i7-5550U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"59.7"},"isPart":true,"type":"CPU","humanName":"Core i7-5550U"},"FX-8310":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","UserBenchmark CPU Score":"59.6","Thread Count":8,"Core Count":8,"Base Frequency":"3.4 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8310"},"Core-i7-8665U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"59.6"},"isPart":true,"type":"CPU","humanName":"Core i7-8665U"},"Xeon-L5520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.48 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"59.5"},"isPart":true,"type":"CPU","humanName":"Xeon L5520"},"Xeon-E5620":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":386,"Geekbench Multi-Core Score":1443,"UserBenchmark CPU Score":"59.4"},"isPart":true,"type":"CPU","humanName":"Xeon E5620"},"Core-i3-7167U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"59.2"},"isPart":true,"type":"CPU","humanName":"Core i3-7167U"},"Xeon-E5520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"59.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5520"},"Pentium-G3470":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"59.1"},"isPart":true,"type":"CPU","humanName":"Pentium G3470"},"Core-i3-3250":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":500,"Geekbench Multi-Core Score":1078,"UserBenchmark CPU Score":"58.7"},"isPart":true,"type":"CPU","humanName":"Core i3-3250"},"Core-i7-6700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1080,"Geekbench Multi-Core Score":3396,"3DMark Fire Strike Physics Score":2341,"UserBenchmark CPU Score":"58.7"},"isPart":true,"type":"CPU","humanName":"Core i7-6700HQ"},"1100TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"58.6","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-11-07"},"humanName":"X6 1100T Black Edition","isPart":true,"type":"CPU"},"Core-i7-4700MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":997,"Geekbench Multi-Core Score":3017,"UserBenchmark CPU Score":"58.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4700MQ"},"FX-8150":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":1698,"UserBenchmark CPU Score":"58.6","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"125 W","Release Date":"2011-10-12"},"humanName":"FX 8150","isPart":true,"type":"CPU"},"Core-i3-3225":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":527,"Geekbench Multi-Core Score":1105,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i3-3225"},"Core-i7-2820QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":517,"Geekbench Multi-Core Score":1446,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i7-2820QM"},"FX-8320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":1828,"UserBenchmark CPU Score":"58.5","Thread Count":8,"Core Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2012-10-23","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8320"},"Core-i3-2105":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":480,"Geekbench Multi-Core Score":968,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2105"},"Core-i7-4610M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1064,"Geekbench Multi-Core Score":2011,"UserBenchmark CPU Score":"58.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4610M"},"Core-i7-2675QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-10-02","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":1362,"UserBenchmark CPU Score":"58"},"isPart":true,"type":"CPU","humanName":"Core i7-2675QM"},"Core-i5-5287U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1022,"Geekbench Multi-Core Score":2000,"UserBenchmark CPU Score":"58"},"isPart":true,"type":"CPU","humanName":"Core i5-5287U"},"Core-i7-4710HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":986,"Geekbench Multi-Core Score":2978,"UserBenchmark CPU Score":"57.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4710HQ"},"Core-i7-4720HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-01-12","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":991,"Geekbench Multi-Core Score":2983,"UserBenchmark CPU Score":"57.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4720HQ"},"Core-i7-4558U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1017,"Geekbench Multi-Core Score":1878,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4558U"},"Core-i5-1035G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G7"},"Core-i5-4570T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1031,"Geekbench Multi-Core Score":1993,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-4570T"},"Core-i7-2720QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":467,"Geekbench Multi-Core Score":1380,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2720QM"},"Core-i5-10210Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-10210Y"},"Core-i3-6100T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1037,"Geekbench Multi-Core Score":2065,"UserBenchmark CPU Score":"57.6"},"isPart":true,"type":"CPU","humanName":"Core i3-6100T"},"FX-8300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":453,"Geekbench Multi-Core Score":1729,"UserBenchmark CPU Score":"57.6","Thread Count":8,"Core Count":8,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2012-12-29","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8300"},"Pentium-G3460":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"57.6"},"isPart":true,"type":"CPU","humanName":"Pentium G3460"},"Core-i3-2130":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":1057,"UserBenchmark CPU Score":"57.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2130"},"Core-i7-2635QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":430,"Geekbench Multi-Core Score":1344,"UserBenchmark CPU Score":"57.4"},"isPart":true,"type":"CPU","humanName":"Core i7-2635QM"},"Core-i7-6567U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-07-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1147,"Geekbench Multi-Core Score":2387,"UserBenchmark CPU Score":"57.4"},"isPart":true,"type":"CPU","humanName":"Core i7-6567U"},"Core-i5-8365U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.3"},"isPart":true,"type":"CPU","humanName":"Core i5-8365U"},"Pentium-G4560":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":702,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"57.3"},"isPart":true,"type":"CPU","humanName":"Pentium G4560"},"FX-4350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":466,"Geekbench Multi-Core Score":1211,"UserBenchmark CPU Score":"57.3","Thread Count":4,"Core Count":4,"Base Frequency":"4.2 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2013-04-30","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"FX 4350"},"Core-i3-3210":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":510,"Geekbench Multi-Core Score":1047,"UserBenchmark CPU Score":"57.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3210"},"Pentium-G3440":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"57.1"},"isPart":true,"type":"CPU","humanName":"Pentium G3440"},"1090TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"57","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-04-27"},"humanName":"X6 1090T Black Edition","isPart":true,"type":"CPU"},"Core-i3-7100":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":2408,"UserBenchmark CPU Score":"57"},"isPart":true,"type":"CPU","humanName":"Core i3-7100"},"Ryzen-3-1200":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-07-27","XFR Support":true,"Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":2838,"UserBenchmark CPU Score":"57","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","XFR Frequency":"3.45 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 1200","isPart":true,"type":"CPU"},"Core-i5-4200H":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":932,"Geekbench Multi-Core Score":1840,"UserBenchmark CPU Score":"57"},"isPart":true,"type":"CPU","humanName":"Core i5-4200H"},"Core-i3-4170":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1094,"Geekbench Multi-Core Score":2118,"UserBenchmark CPU Score":"56.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4170"},"Core-i7-10510Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i7-10510Y"},"Pentium-G3430":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Pentium G3430"},"Core-i5-7300HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1076,"Geekbench Multi-Core Score":2922,"UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7300HQ"},"Core-i3-6167U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6167U"},"Core-i7-10510U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1103,"Geekbench Multi-Core Score":2914,"UserBenchmark CPU Score":"56.4"},"isPart":true,"type":"CPU","humanName":"Core i7-10510U"},"FX-8120":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":1573,"UserBenchmark CPU Score":"56.4","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"125 W","Release Date":"2011-10-12"},"humanName":"FX 8120","isPart":true,"type":"CPU"},"X4-970":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"UserBenchmark CPU Score":"56.3","Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W"},"humanName":"X4 970","isPart":true,"type":"CPU"},"Core-i7-2670QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-10-02","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":460,"Geekbench Multi-Core Score":1447,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Core i7-2670QM"},"Pentium-G4500":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":717,"Geekbench Multi-Core Score":1193,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Pentium G4500"},"Core-i5-4258U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":828,"Geekbench Multi-Core Score":1646,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4258U"},"Core-i3-4130T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":909,"Geekbench Multi-Core Score":1810,"UserBenchmark CPU Score":"56.2"},"isPart":true,"type":"CPU","humanName":"Core i3-4130T"},"Core-i7-5650U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":973,"Geekbench Multi-Core Score":1838,"UserBenchmark CPU Score":"56.1"},"isPart":true,"type":"CPU","humanName":"Core i7-5650U"},"Pentium-G3450":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":963,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Pentium G3450"},"Core-i7-4600M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1032,"Geekbench Multi-Core Score":1964,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Core i7-4600M"},"Core-i7-3540M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":1108,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Core i7-3540M"},"Core-i5-6260U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":944,"Geekbench Multi-Core Score":1961,"UserBenchmark CPU Score":"55.9"},"isPart":true,"type":"CPU","humanName":"Core i5-6260U"},"1075T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"55.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","TDP":"125 W","Release Date":"2010-09-21"},"humanName":"X6 1075T","isPart":true,"type":"CPU"},"1075TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"55.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-04"},"humanName":"X6 1075T Black Edition","isPart":true,"type":"CPU"},"Core-i5-3470T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":548,"Geekbench Multi-Core Score":1106,"UserBenchmark CPU Score":"55.8"},"isPart":true,"type":"CPU","humanName":"Core i5-3470T"},"Core-i5-1035G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"55.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G4"},"Core-i5-3380M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":507,"Geekbench Multi-Core Score":1008,"UserBenchmark CPU Score":"55.4"},"isPart":true,"type":"CPU","humanName":"Core i5-3380M"},"Core-i3-6100":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1184,"Geekbench Multi-Core Score":2311,"UserBenchmark CPU Score":"55.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6100"},"Core-i3-4150":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1034,"Geekbench Multi-Core Score":2040,"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Core i3-4150"},"Core-i7-2630QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":1349,"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2630QM"},"FX-6300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":466,"Geekbench Multi-Core Score":1465,"UserBenchmark CPU Score":"55.2","Release Date":"2012-10-23","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","Core Count":6,"Thread Count":6,"L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W"},"humanName":"FX 6300","isPart":true,"type":"CPU"},"Xeon-E5507":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5507"},"Core-i3-3240":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":552,"Geekbench Multi-Core Score":1135,"UserBenchmark CPU Score":"55.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3240"},"Core-i3-4160":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1039,"Geekbench Multi-Core Score":2010,"UserBenchmark CPU Score":"55.1"},"isPart":true,"type":"CPU","humanName":"Core i3-4160"},"Ryzen-3-2300U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":751,"Geekbench Multi-Core Score":2067,"UserBenchmark CPU Score":"55","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 6","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 2300U","type":"APU"},"Core-i7-7560U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":2147,"UserBenchmark CPU Score":"54.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7560U"},"Core-i3-7130U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-06-06","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":845,"Geekbench Multi-Core Score":1718,"UserBenchmark CPU Score":"54.9"},"isPart":true,"type":"CPU","humanName":"Core i3-7130U"},"Core-i7-8565U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"54.7"},"isPart":true,"type":"CPU","humanName":"Core i7-8565U"},"Core-i5-5257U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":897,"Geekbench Multi-Core Score":1688,"UserBenchmark CPU Score":"54.6"},"isPart":true,"type":"CPU","humanName":"Core i5-5257U"},"Core-i3-3220T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":946,"UserBenchmark CPU Score":"54.6"},"isPart":true,"type":"CPU","humanName":"Core i3-3220T"},"Xeon-X5470":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"54.5"},"isPart":true,"type":"CPU","humanName":"Xeon X5470"},"Core-i3-6157U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":771,"Geekbench Multi-Core Score":1676,"UserBenchmark CPU Score":"54.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6157U"},"Xeon-E5506":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"54.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5506"},"Core-i7-7660U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1150,"Geekbench Multi-Core Score":2267,"UserBenchmark CPU Score":"54.2"},"isPart":true,"type":"CPU","humanName":"Core i7-7660U"},"1055T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"54","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","TDP":"95 W","Release Date":"2010-04-27"},"humanName":"X6 1055T","isPart":true,"type":"CPU"},"960T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"6 MiB","TDP":"125 W","Release Date":"Q4 2010"},"humanName":"X4 960T","isPart":true,"type":"CPU"},"960TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"Q4 2010"},"humanName":"X4 960T Black Edition","isPart":true,"type":"CPU"},"Core-i5-3360M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":1114,"UserBenchmark CPU Score":"53.9"},"isPart":true,"type":"CPU","humanName":"Core i5-3360M"},"Core-i5-6300HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":980,"Geekbench Multi-Core Score":2700,"UserBenchmark CPU Score":"53.7"},"isPart":true,"type":"CPU","humanName":"Core i5-6300HQ"},"Core-i7-2640M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-09-04","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":512,"Geekbench Multi-Core Score":994,"UserBenchmark CPU Score":"53.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2640M"},"Pentium-G2130":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":959,"UserBenchmark CPU Score":"53.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2130"},"FX-6100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Geekbench Single-Core Score":385,"Geekbench Multi-Core Score":1220,"UserBenchmark CPU Score":"53.5","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","TDP":"95 W","Release Date":"2011-10-12"},"humanName":"FX 6100","isPart":true,"type":"CPU"},"Pentium-G3420":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":904,"UserBenchmark CPU Score":"53.5"},"isPart":true,"type":"CPU","humanName":"Pentium G3420"},"1045T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.5","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","TDP":"95 W","Release Date":"2010-09"},"humanName":"X6 1045T","isPart":true,"type":"CPU"},"Core-i5-10210U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1046,"Geekbench Multi-Core Score":2940,"UserBenchmark CPU Score":"53.4"},"isPart":true,"type":"CPU","humanName":"Core i5-10210U"},"Core-i3-2120T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":799,"UserBenchmark CPU Score":"53.3"},"isPart":true,"type":"CPU","humanName":"Core i3-2120T"},"Core-i7-3520M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":569,"Geekbench Multi-Core Score":1159,"UserBenchmark CPU Score":"53.2"},"isPart":true,"type":"CPU","humanName":"Core i7-3520M"},"Core-i7-1065G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"53.2"},"isPart":true,"type":"CPU","humanName":"Core i7-1065G7"},"Core-i5-8250U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"53.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8250U"},"Core-i7-6650U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1001,"Geekbench Multi-Core Score":2054,"UserBenchmark CPU Score":"53.1"},"isPart":true,"type":"CPU","humanName":"Core i7-6650U"},"Core-i7-8550U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"53"},"isPart":true,"type":"CPU","humanName":"Core i7-8550U"},"Core-i5-2435M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":469,"Geekbench Multi-Core Score":865,"UserBenchmark CPU Score":"52.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2435M"},"1035T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"52.9","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-05"},"humanName":"X6 1035T","isPart":true,"type":"CPU"},"840T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"52.9","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"Q4 2010"},"humanName":"X4 840T","isPart":true,"type":"CPU"},"Core-i3-8145U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"52.8"},"isPart":true,"type":"CPU","humanName":"Core i3-8145U"},"Core-i5-8265U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"52.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8265U"},"Core-i7-3687U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":493,"Geekbench Multi-Core Score":977,"UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Core i7-3687U"},"Pentium-G2120":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2120"},"Pentium-G3258":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":630,"Geekbench Multi-Core Score":1106,"UserBenchmark CPU Score":"52.6","Unlocked":"yes"},"isPart":true,"type":"CPU","humanName":"Pentium G3258"},"Core-i5-3340M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":523,"Geekbench Multi-Core Score":1044,"UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3340M"},"Pentium-G870":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"52.4"},"isPart":true,"type":"CPU","humanName":"Pentium G870"},"Core-i3-4130":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":1938,"UserBenchmark CPU Score":"52.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4130"},"Core-i7-8650U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"52.3"},"isPart":true,"type":"CPU","humanName":"Core i7-8650U"},"Core-i7-2620M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":501,"Geekbench Multi-Core Score":1014,"UserBenchmark CPU Score":"52.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2620M"},"Core-i3-3220":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":520,"Geekbench Multi-Core Score":1082,"UserBenchmark CPU Score":"52.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3220"},"Ryzen-7-2700U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":808,"Geekbench Multi-Core Score":2432,"UserBenchmark CPU Score":"52.1","Core Count":4,"Thread Count":8,"Base Frequency":"2.2 GHz","Boost Frequency":"3.8 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 10","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1300 MHz"},"isPart":true,"humanName":"Ryzen 7 2700U","type":"APU"},"Xeon-E5504":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"51.9"},"isPart":true,"type":"CPU","humanName":"Xeon E5504"},"Pentium-G3260":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":593,"Geekbench Multi-Core Score":1016,"UserBenchmark CPU Score":"51.8"},"isPart":true,"type":"CPU","humanName":"Pentium G3260"},"Core-i5-680":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","UserBenchmark CPU Score":"51.8"},"isPart":true,"type":"CPU","humanName":"Core i5-680"},"FX-4300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":447,"Geekbench Multi-Core Score":1078,"UserBenchmark CPU Score":"51.6","Thread Count":4,"Core Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2012-10-23","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"FX 4300"},"Core-i5-8350U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"51.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8350U"},"Xeon-X5460":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":421,"Geekbench Multi-Core Score":1158,"UserBenchmark CPU Score":"51.6"},"isPart":true,"type":"CPU","humanName":"Xeon X5460"},"Core-i5-2540M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":498,"Geekbench Multi-Core Score":997,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i5-2540M"},"Core-i7-3537U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":470,"Geekbench Multi-Core Score":932,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3537U"},"Core-i5-4300M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":939,"Geekbench Multi-Core Score":1837,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4300M"},"Core-i7-2677M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","UserBenchmark CPU Score":"51.4"},"isPart":true,"type":"CPU","humanName":"Core i7-2677M"},"Pentium-G860":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":440,"Geekbench Multi-Core Score":726,"UserBenchmark CPU Score":"51.4"},"isPart":true,"type":"CPU","humanName":"Pentium G860"},"FX-4100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Geekbench Single-Core Score":414,"Geekbench Multi-Core Score":1047,"UserBenchmark CPU Score":"51.4","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","TDP":"95 W","L3 Cache (Total)":"8 MiB","Release Date":"2011-10-12"},"humanName":"FX 4100","isPart":true,"type":"CPU"},"Pentium-G840":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":447,"Geekbench Multi-Core Score":748,"UserBenchmark CPU Score":"51.3"},"isPart":true,"type":"CPU","humanName":"Pentium G840"},"Core-i5-4210M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":888,"Geekbench Multi-Core Score":1760,"UserBenchmark CPU Score":"51.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4210M"},"Pentium-G3250":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":984,"UserBenchmark CPU Score":"51.2"},"isPart":true,"type":"CPU","humanName":"Pentium G3250"},"Core-i7-4650U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":799,"Geekbench Multi-Core Score":1432,"UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4650U"},"Core-i7-2637M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i7-2637M"},"Core-i5-1035G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1000 MHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G1"},"Core-i3-4000M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":712,"Geekbench Multi-Core Score":1421,"UserBenchmark CPU Score":"51"},"isPart":true,"type":"CPU","humanName":"Core i3-4000M"},"Pentium-G850":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":779,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Pentium G850"},"Core-i7-3667U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":975,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Core i7-3667U"},"Core-i3-2100":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":470,"Geekbench Multi-Core Score":961,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Core i3-2100"},"Xeon-X5472":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"50.8"},"isPart":true,"type":"CPU","humanName":"Xeon X5472"},"Core-i3-2120":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":502,"Geekbench Multi-Core Score":1031,"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Core i3-2120"},"Core-i7-3517U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":449,"Geekbench Multi-Core Score":931,"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3517U"},"Xeon-E5472":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Xeon E5472"},"Pentium-G2010":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":471,"Geekbench Multi-Core Score":695,"UserBenchmark CPU Score":"50.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2010"},"Xeon-E5450":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":380,"Geekbench Multi-Core Score":1092,"UserBenchmark CPU Score":"50.5"},"isPart":true,"type":"CPU","humanName":"Xeon E5450"},"Core-i7-4550U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"50.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4550U"},"Core-i5-4250U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":754,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"50.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4250U"},"Pentium-G3240":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":513,"Geekbench Multi-Core Score":897,"UserBenchmark CPU Score":"50.2"},"isPart":true,"type":"CPU","humanName":"Pentium G3240"},"Core-i7-8500Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i7-8500Y"},"Core-i7-4500U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":756,"Geekbench Multi-Core Score":1428,"UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4500U"},"Core-i3-3120M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":385,"Geekbench Multi-Core Score":827,"UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3120M"},"Pentium-G645":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":789,"UserBenchmark CPU Score":"49.9"},"isPart":true,"type":"CPU","humanName":"Pentium G645"},"Core-i5-661":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"87 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"900 MHz","Geekbench Single-Core Score":488,"Geekbench Multi-Core Score":929,"UserBenchmark CPU Score":"49.8"},"isPart":true,"type":"CPU","humanName":"Core i5-661"},"Pentium-5405U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"49.8"},"isPart":true,"type":"CPU","humanName":"Pentium 5405U"},"Core-i5-2557M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":381,"Geekbench Multi-Core Score":742,"UserBenchmark CPU Score":"49.7"},"isPart":true,"type":"CPU","humanName":"Core i5-2557M"},"Core-i5-4200M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":854,"Geekbench Multi-Core Score":1684,"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4200M"},"Core-i7-7600U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i7-7600U"},"X4-651":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Geekbench Single-Core Score":332,"Geekbench Multi-Core Score":1113,"UserBenchmark CPU Score":"49.6","Base Frequency":"3.0 GHz","TDP":"100 W","Release Date":"2011-11-14"},"isPart":true,"type":"CPU","humanName":"X4 651"},"Core-i7-5600U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":908,"Geekbench Multi-Core Score":1724,"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i7-5600U"},"Xeon-X5450":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Xeon X5450"},"Core-i5-2430M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":448,"Geekbench Multi-Core Score":903,"UserBenchmark CPU Score":"49.5"},"isPart":true,"type":"CPU","humanName":"Core i5-2430M"},"Core-i7-3689Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz","UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3689Y"},"Core-i5-5250U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":800,"Geekbench Multi-Core Score":1554,"UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i5-5250U"},"Core-i5-4310U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":779,"Geekbench Multi-Core Score":1498,"UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4310U"},"Core-i7-4600U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":849,"Geekbench Multi-Core Score":1581,"UserBenchmark CPU Score":"49.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4600U"},"Pentium-3550M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"49.1"},"isPart":true,"type":"CPU","humanName":"Pentium 3550M"},"X4-940":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"UserBenchmark CPU Score":"49","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","TDP":"65 W"},"humanName":"X4 940","isPart":true,"type":"CPU"},"Core-i5-3437U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":438,"Geekbench Multi-Core Score":879,"UserBenchmark CPU Score":"49"},"isPart":true,"type":"CPU","humanName":"Core i5-3437U"},"Xeon-E5440":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":358,"Geekbench Multi-Core Score":1044,"UserBenchmark CPU Score":"49"},"isPart":true,"type":"CPU","humanName":"Xeon E5440"},"Pentium-G2020":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":486,"Geekbench Multi-Core Score":837,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Pentium G2020"},"Ryzen-5-2500U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":810,"Geekbench Multi-Core Score":2306,"UserBenchmark CPU Score":"48.9","Core Count":4,"Thread Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"3.6 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 5 2500U","type":"APU"},"Core-i3-2370M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-01-15","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":363,"Geekbench Multi-Core Score":698,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Core i3-2370M"},"Core-i5-2450M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-01-15","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":462,"Geekbench Multi-Core Score":890,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2450M"},"Pentium-G2030":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":753,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Pentium G2030"},"Core-i3-2348M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":335,"Geekbench Multi-Core Score":635,"UserBenchmark CPU Score":"48.8"},"isPart":true,"type":"CPU","humanName":"Core i3-2348M"},"Core-i5-660":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":480,"Geekbench Multi-Core Score":982,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-660"},"Core-i5-3427U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":885,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-3427U"},"Core-i5-3230M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":506,"Geekbench Multi-Core Score":1020,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-3230M"},"Pentium-4415U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":880,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Pentium 4415U"},"Core-i5-8200Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"48.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8200Y"},"Core-i5-8210Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-31","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":949,"Geekbench Multi-Core Score":1641,"UserBenchmark CPU Score":"48.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8210Y"},"Pentium-4417U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"48.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4417U"},"Pentium-G640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":439,"Geekbench Multi-Core Score":732,"UserBenchmark CPU Score":"48.3"},"isPart":true,"type":"CPU","humanName":"Pentium G640"},"Pentium-G3220":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":532,"Geekbench Multi-Core Score":903,"UserBenchmark CPU Score":"48.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3220"},"Core-i3-3110M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":391,"Geekbench Multi-Core Score":801,"UserBenchmark CPU Score":"48.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3110M"},"Core-i7-7500U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"48.1"},"isPart":true,"type":"CPU","humanName":"Core i7-7500U"},"Xeon-E5430":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Xeon E5430"},"Pentium-4405U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":400,"Geekbench Multi-Core Score":828,"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Pentium 4405U"},"Core-i5-3320M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":513,"Geekbench Multi-Core Score":1046,"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Core i5-3320M"},"X4-641":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"UserBenchmark CPU Score":"47.9","Base Frequency":"2.8 GHz","TDP":"100 W","Release Date":"2012-02-08"},"isPart":true,"type":"CPU","humanName":"X4 641"},"Core-i5-2410M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":434,"Geekbench Multi-Core Score":850,"UserBenchmark CPU Score":"47.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2410M"},"Core-i5-3210M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":489,"Geekbench Multi-Core Score":991,"UserBenchmark CPU Score":"47.8"},"isPart":true,"type":"CPU","humanName":"Core i5-3210M"},"Core-i3-5015U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":699,"Geekbench Multi-Core Score":1401,"UserBenchmark CPU Score":"47.8"},"isPart":true,"type":"CPU","humanName":"Core i3-5015U"},"Core-i3-5010U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":662,"Geekbench Multi-Core Score":1339,"UserBenchmark CPU Score":"47.7"},"isPart":true,"type":"CPU","humanName":"Core i3-5010U"},"Xeon-E5462":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Xeon E5462"},"Core-i5-2520M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":469,"Geekbench Multi-Core Score":926,"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Core i5-2520M"},"Core-i3-8130U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-02-12","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":1832,"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Core i3-8130U"},"Core-i3-2328M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-01","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":315,"Geekbench Multi-Core Score":639,"UserBenchmark CPU Score":"47.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2328M"},"Pentium-G4400":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":693,"Geekbench Multi-Core Score":1179,"UserBenchmark CPU Score":"47.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4400"},"Core-m3-8100Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"47.4"},"isPart":true,"type":"CPU","humanName":"Core m3-8100Y"},"Pentium-G630":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":389,"Geekbench Multi-Core Score":683,"UserBenchmark CPU Score":"47.3"},"isPart":true,"type":"CPU","humanName":"Pentium G630"},"Core-i5-3317U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.7 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":396,"Geekbench Multi-Core Score":795,"UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-3317U"},"Core-i5-7Y54":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-7Y54"},"Core-i5-3337U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":412,"Geekbench Multi-Core Score":840,"UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-3337U"},"Core-i7-4510U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":859,"Geekbench Multi-Core Score":1628,"UserBenchmark CPU Score":"47.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4510U"},"Core-i3-2330M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":341,"Geekbench Multi-Core Score":700,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-2330M"},"Core-i3-550":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-06-01","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":414,"Geekbench Multi-Core Score":869,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-550"},"Core-i3-2350M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":342,"Geekbench Multi-Core Score":697,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-2350M"},"Core-i3-10110U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1130,"Geekbench Multi-Core Score":2045,"UserBenchmark CPU Score":"46.9"},"isPart":true,"type":"CPU","humanName":"Core i3-10110U"},"Xeon-L5420":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":332,"Geekbench Multi-Core Score":914,"UserBenchmark CPU Score":"46.7"},"isPart":true,"type":"CPU","humanName":"Xeon L5420"},"Pentium-2020M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":399,"Geekbench Multi-Core Score":674,"UserBenchmark CPU Score":"46.7"},"isPart":true,"type":"CPU","humanName":"Pentium 2020M"},"Core-i3-2310M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":330,"Geekbench Multi-Core Score":665,"UserBenchmark CPU Score":"46.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2310M"},"X4-631":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"UserBenchmark CPU Score":"46.4","Base Frequency":"2.6 GHz","L3 Cache (Total)":"0 Mib","TDP":"100 W","Release Date":"2012-08-15"},"isPart":true,"type":"CPU","humanName":"X4 631"},"Pentium-G620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":392,"Geekbench Multi-Core Score":692,"UserBenchmark CPU Score":"46.4"},"isPart":true,"type":"CPU","humanName":"Pentium G620"},"Core-i5-650":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":448,"Geekbench Multi-Core Score":917,"UserBenchmark CPU Score":"46.3"},"isPart":true,"type":"CPU","humanName":"Core i5-650"},"Core-i7-5500U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":874,"Geekbench Multi-Core Score":1668,"UserBenchmark CPU Score":"46.2"},"isPart":true,"type":"CPU","humanName":"Core i7-5500U"},"Pentium-B980":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":351,"Geekbench Multi-Core Score":595,"UserBenchmark CPU Score":"46.1"},"isPart":true,"type":"CPU","humanName":"Pentium B980"},"Core-i3-540":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":406,"Geekbench Multi-Core Score":859,"UserBenchmark CPU Score":"45.9"},"isPart":true,"type":"CPU","humanName":"Core i3-540"},"Core-i7-6500U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6500U"},"Pentium-B970":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":372,"Geekbench Multi-Core Score":586,"UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Pentium B970"},"Core-i3-530":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":360,"Geekbench Multi-Core Score":768,"UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Core i3-530"},"Core-i5-7200U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45.4"},"isPart":true,"type":"CPU","humanName":"Core i5-7200U"},"Core-i3-3227U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":291,"Geekbench Multi-Core Score":633,"UserBenchmark CPU Score":"45.4"},"isPart":true,"type":"CPU","humanName":"Core i3-3227U"},"Core-i5-2467M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":340,"Geekbench Multi-Core Score":659,"UserBenchmark CPU Score":"45.3"},"isPart":true,"type":"CPU","humanName":"Core i5-2467M"},"Xeon-E5420":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"45.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5420"},"Ryzen-3-2200U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":769,"Geekbench Multi-Core Score":1518,"UserBenchmark CPU Score":"45.1","Core Count":2,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","GPU Model":"RX Vega 3","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 2200U","type":"APU"},"X4-845":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-02-02","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Geekbench Single-Core Score":671,"Geekbench Multi-Core Score":1721,"UserBenchmark CPU Score":"45","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz"},"humanName":"X4 845","isPart":true,"type":"CPU"},"Core-i5-7300U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45"},"isPart":true,"type":"CPU","humanName":"Core i5-7300U"},"Core-i3-4030U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":566,"Geekbench Multi-Core Score":1158,"UserBenchmark CPU Score":"44.6"},"isPart":true,"type":"CPU","humanName":"Core i3-4030U"},"Core-i7-6600U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"44.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6600U"},"Core-i5-4210Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":525,"Geekbench Multi-Core Score":949,"UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4210Y"},"Pentium-2127U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":315,"Geekbench Multi-Core Score":572,"UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Pentium 2127U"},"Core-i5-3339Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz","UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Core i5-3339Y"},"Core-i5-4300Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":530,"Geekbench Multi-Core Score":821,"UserBenchmark CPU Score":"44.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4300Y"},"Pentium-3805U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12","Geekbench Single-Core Score":307,"Geekbench Multi-Core Score":553,"UserBenchmark CPU Score":"44.1"},"isPart":true,"type":"CPU","humanName":"Pentium 3805U"},"Core-i5-2537M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","Geekbench Single-Core Score":298,"Geekbench Multi-Core Score":602,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Core i5-2537M"},"Core-i3-4010U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":514,"Geekbench Multi-Core Score":1073,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Core i3-4010U"},"Pentium-B940":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":299,"Geekbench Multi-Core Score":515,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Pentium B940"},"Core-i3-1005G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":2351,"UserBenchmark CPU Score":"43.8"},"isPart":true,"type":"CPU","humanName":"Core i3-1005G1"},"Pentium-B960":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-10-02","Socket":"FCPGA988, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":321,"Geekbench Multi-Core Score":535,"UserBenchmark CPU Score":"43.7"},"isPart":true,"type":"CPU","humanName":"Pentium B960"},"Core-i5-4300U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":783,"Geekbench Multi-Core Score":1453,"UserBenchmark CPU Score":"43.7"},"isPart":true,"type":"CPU","humanName":"Core i5-4300U"},"Core-i7-7Y75":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"43.6"},"isPart":true,"type":"CPU","humanName":"Core i7-7Y75"},"Core-i3-6100U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":747,"Geekbench Multi-Core Score":1529,"UserBenchmark CPU Score":"43.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6100U"},"Core-i3-7100U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":768,"Geekbench Multi-Core Score":1574,"UserBenchmark CPU Score":"43.4"},"isPart":true,"type":"CPU","humanName":"Core i3-7100U"},"Pentium-B950":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":308,"Geekbench Multi-Core Score":511,"UserBenchmark CPU Score":"43.3"},"isPart":true,"type":"CPU","humanName":"Pentium B950"},"Pentium-2117U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":303,"Geekbench Multi-Core Score":517,"UserBenchmark CPU Score":"43.2"},"isPart":true,"type":"CPU","humanName":"Pentium 2117U"},"Xeon-X3220":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"43.1"},"isPart":true,"type":"CPU","humanName":"Xeon X3220"},"Core-i3-3217U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":286,"Geekbench Multi-Core Score":599,"UserBenchmark CPU Score":"43"},"isPart":true,"type":"CPU","humanName":"Core i3-3217U"},"Core-i5-4202Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":946,"UserBenchmark CPU Score":"42.9"},"isPart":true,"type":"CPU","humanName":"Core i5-4202Y"},"Core-i3-2375M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i3-2375M"},"Core-i3-4012Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i3-4012Y"},"Core-i5-4200U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":711,"Geekbench Multi-Core Score":1372,"UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4200U"},"Xeon-E3110":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-14","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":388,"Geekbench Multi-Core Score":648,"UserBenchmark CPU Score":"42.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3110"},"Core-i3-2367M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":219,"Geekbench Multi-Core Score":480,"UserBenchmark CPU Score":"42.2"},"isPart":true,"type":"CPU","humanName":"Core i3-2367M"},"Xeon-E5405":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"41.9"},"isPart":true,"type":"CPU","humanName":"Xeon E5405"},"Core-i5-5200U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":776,"Geekbench Multi-Core Score":1486,"UserBenchmark CPU Score":"41.7"},"isPart":true,"type":"CPU","humanName":"Core i5-5200U"},"Core-i5-5300U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":815,"Geekbench Multi-Core Score":1574,"UserBenchmark CPU Score":"41.6"},"isPart":true,"type":"CPU","humanName":"Core i5-5300U"},"Core-i5-4210U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":745,"Geekbench Multi-Core Score":1432,"UserBenchmark CPU Score":"41.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4210U"},"Core-i5-6200U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"41.3"},"isPart":true,"type":"CPU","humanName":"Core i5-6200U"},"Core-i3-2365M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":196,"Geekbench Multi-Core Score":427,"UserBenchmark CPU Score":"41.2"},"isPart":true,"type":"CPU","humanName":"Core i3-2365M"},"Pentium-G6950":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz","UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Pentium G6950"},"Xeon-E5345":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Xeon E5345"},"Pentium-E6800":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Pentium E6800"},"Core-i3-7020U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2018-04-01","Socket":"FC-BGA1356, FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":728,"Geekbench Multi-Core Score":1469,"UserBenchmark CPU Score":"40.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7020U"},"Core-i5-6300U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"40.4"},"isPart":true,"type":"CPU","humanName":"Core i5-6300U"},"Pentium-987":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":224,"Geekbench Multi-Core Score":372,"UserBenchmark CPU Score":"39.9"},"isPart":true,"type":"CPU","humanName":"Pentium 987"},"Core-i3-2357M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","UserBenchmark CPU Score":"39.8"},"isPart":true,"type":"CPU","humanName":"Core i3-2357M"},"Pentium-E6700":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2010-06-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":384,"Geekbench Multi-Core Score":637,"UserBenchmark CPU Score":"39.6"},"isPart":true,"type":"CPU","humanName":"Pentium E6700"},"Xeon-E5335":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"39.5"},"isPart":true,"type":"CPU","humanName":"Xeon E5335"},"Pentium-E6500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":324,"Geekbench Multi-Core Score":541,"UserBenchmark CPU Score":"39.2"},"isPart":true,"type":"CPU","humanName":"Pentium E6500"},"Pentium-E6600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q1 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":353,"Geekbench Multi-Core Score":572,"UserBenchmark CPU Score":"39"},"isPart":true,"type":"CPU","humanName":"Pentium E6600"},"Pentium-4410Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"38.9"},"isPart":true,"type":"CPU","humanName":"Pentium 4410Y"},"Core-i3-4005U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":505,"Geekbench Multi-Core Score":1031,"UserBenchmark CPU Score":"38.5"},"isPart":true,"type":"CPU","humanName":"Core i3-4005U"},"Pentium-E6300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-05-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":294,"Geekbench Multi-Core Score":468,"UserBenchmark CPU Score":"37.8"},"isPart":true,"type":"CPU","humanName":"Pentium E6300"},"Pentium-4405Y":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"37.7"},"isPart":true,"type":"CPU","humanName":"Pentium 4405Y"},"Pentium-967":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-10-02","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","UserBenchmark CPU Score":"37.6"},"isPart":true,"type":"CPU","humanName":"Pentium 967"},"Core-i3-5005U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":616,"Geekbench Multi-Core Score":1226,"UserBenchmark CPU Score":"37.5"},"isPart":true,"type":"CPU","humanName":"Core i3-5005U"},"Pentium-E5800":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q4 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":369,"Geekbench Multi-Core Score":584,"UserBenchmark CPU Score":"37.5"},"isPart":true,"type":"CPU","humanName":"Pentium E5800"},"Pentium-E5500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q2 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":279,"Geekbench Multi-Core Score":456,"UserBenchmark CPU Score":"36.6"},"isPart":true,"type":"CPU","humanName":"Pentium E5500"},"Pentium-E5700":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":340,"Geekbench Multi-Core Score":553,"UserBenchmark CPU Score":"36.5"},"isPart":true,"type":"CPU","humanName":"Pentium E5700"},"Pentium-P6200":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":280,"Geekbench Multi-Core Score":470,"UserBenchmark CPU Score":"36.2"},"isPart":true,"type":"CPU","humanName":"Pentium P6200"},"Pentium-E5400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":287,"Geekbench Multi-Core Score":466,"UserBenchmark CPU Score":"36.2"},"isPart":true,"type":"CPU","humanName":"Pentium E5400"},"Core-i3-6006U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-11-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":639,"Geekbench Multi-Core Score":1318,"UserBenchmark CPU Score":"36.1"},"isPart":true,"type":"CPU","humanName":"Core i3-6006U"},"Pentium-E5200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2008-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":286,"Geekbench Multi-Core Score":469,"UserBenchmark CPU Score":"36"},"isPart":true,"type":"CPU","humanName":"Pentium E5200"},"Pentium-E5300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":291,"Geekbench Multi-Core Score":473,"UserBenchmark CPU Score":"35.9"},"isPart":true,"type":"CPU","humanName":"Pentium E5300"},"Xeon-E5320":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"35.8"},"isPart":true,"type":"CPU","humanName":"Xeon E5320"},"Pentium-J2900":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2","UserBenchmark CPU Score":"35.2"},"isPart":true,"type":"CPU","humanName":"Pentium J2900"},"Pentium-P6100":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":281,"Geekbench Multi-Core Score":431,"UserBenchmark CPU Score":"35.2"},"isPart":true,"type":"CPU","humanName":"Pentium P6100"},"Pentium-N3530":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"896 MHz","Geekbench Single-Core Score":189,"Geekbench Multi-Core Score":549,"UserBenchmark CPU Score":"34.7"},"isPart":true,"type":"CPU","humanName":"Pentium N3530"},"Pentium-N3520":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.166 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz","Geekbench Single-Core Score":170,"Geekbench Multi-Core Score":484,"UserBenchmark CPU Score":"34.4"},"isPart":true,"type":"CPU","humanName":"Pentium N3520"},"Xeon-E5310":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"34.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5310"},"Pentium-T4400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q4 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":252,"Geekbench Multi-Core Score":410,"UserBenchmark CPU Score":"34"},"isPart":true,"type":"CPU","humanName":"Pentium T4400"},"Pentium-T4500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2010","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":244,"Geekbench Multi-Core Score":360,"UserBenchmark CPU Score":"33.9"},"isPart":true,"type":"CPU","humanName":"Pentium T4500"},"Pentium-T4200":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":216,"Geekbench Multi-Core Score":368,"UserBenchmark CPU Score":"33.9"},"isPart":true,"type":"CPU","humanName":"Pentium T4200"},"Pentium-T4300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":204,"Geekbench Multi-Core Score":339,"UserBenchmark CPU Score":"33.7"},"isPart":true,"type":"CPU","humanName":"Pentium T4300"},"Pentium-N3540":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2","Geekbench Single-Core Score":193,"Geekbench Multi-Core Score":560,"UserBenchmark CPU Score":"33.5"},"isPart":true,"type":"CPU","humanName":"Pentium N3540"},"Pentium-J4205":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":261,"Geekbench Multi-Core Score":715,"UserBenchmark CPU Score":"32.9"},"isPart":true,"type":"CPU","humanName":"Pentium J4205"},"Pentium-N3510":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz","UserBenchmark CPU Score":"32.3"},"isPart":true,"type":"CPU","humanName":"Pentium N3510"},"Core-T2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"32.2"},"isPart":true,"type":"CPU","humanName":"Core T2500"},"Core-T2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.9"},"isPart":true,"type":"CPU","humanName":"Core T2400"},"Core-T2600":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.9"},"isPart":true,"type":"CPU","humanName":"Core T2600"},"Core-T2300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.5"},"isPart":true,"type":"CPU","humanName":"Core T2300"},"Core-T2250":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"30"},"isPart":true,"type":"CPU","humanName":"Core T2250"},"Pentium-N4200":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":269,"Geekbench Multi-Core Score":685,"UserBenchmark CPU Score":"29.8"},"isPart":true,"type":"CPU","humanName":"Pentium N4200"},"Atom-D2700":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz","UserBenchmark CPU Score":"26.4"},"isPart":true,"type":"CPU","humanName":"Atom D2700"},"Pentium-N3700":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":179,"Geekbench Multi-Core Score":511,"UserBenchmark CPU Score":"26.2"},"isPart":true,"type":"CPU","humanName":"Pentium N3700"},"Atom-N2800":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Mobile","Lithography":"32 nm","TDP":"6.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-28","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz","UserBenchmark CPU Score":"26"},"isPart":true,"type":"CPU","humanName":"Atom N2800"},"Pentium-N3710":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","UserBenchmark CPU Score":"25.1"},"isPart":true,"type":"CPU","humanName":"Pentium N3710"},"Atom-D525":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3, DDR2","Base Frequency":"1.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2010-06-26","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":76,"Geekbench Multi-Core Score":190,"UserBenchmark CPU Score":"22.9"},"isPart":true,"type":"CPU","humanName":"Atom D525"},"Atom-N2600":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Mobile","Lithography":"32 nm","TDP":"3.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-28","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz","UserBenchmark CPU Score":"21.9"},"isPart":true,"type":"CPU","humanName":"Atom N2600"},"Atom-N570":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2011-03-01","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","UserBenchmark CPU Score":"21.5"},"isPart":true,"type":"CPU","humanName":"Atom N570"},"Atom-N550":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q3 2010","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","Geekbench Single-Core Score":64,"Geekbench Multi-Core Score":141,"UserBenchmark CPU Score":"20.7"},"isPart":true,"type":"CPU","humanName":"Atom N550"},"Atom-N455":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Memory Type":"DDR2/3","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-01","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","UserBenchmark CPU Score":"20.7"},"isPart":true,"type":"CPU","humanName":"Atom N455"},"Atom-330":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Desktop","Lithography":"45 nm","TDP":"8 W","Core Count":2,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"52 mm","Release Date":"2008-09-21","Socket":"PBGA437","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.6"},"isPart":true,"type":"CPU","humanName":"Atom 330"},"Atom-N450":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"667 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.4"},"isPart":true,"type":"CPU","humanName":"Atom N450"},"Atom-D410":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.3"},"isPart":true,"type":"CPU","humanName":"Atom D410"},"Atom-N280":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"Q1 2009","Socket":"PBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.3"},"isPart":true,"type":"CPU","humanName":"Atom N280"},"Atom-N270":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-06-03","Socket":"PBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.1"},"isPart":true,"type":"CPU","humanName":"Atom N270"},"Atom-D510":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q1 2010","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20"},"isPart":true,"type":"CPU","humanName":"Atom D510"},"Atom-230":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Desktop","Lithography":"45 nm","TDP":"4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-06-03","Socket":"PBGA437","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"19.2"},"isPart":true,"type":"CPU","humanName":"Atom 230"},"Atom-Z520":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"17.3"},"isPart":true,"type":"CPU","humanName":"Atom Z520"},"Radeon-VII":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":9291,"UserBenchmark GPU Score":"101","Release Date":"2019-02-07","Shader Processor Count":3840,"Texture Mapping Unit Count":240,"Render Output Unit Count":64,"GPU Base Frequency":"1400 MHz","GPU Boost Frequency":"1750 MHz","VRAM Frequency":"2000 MT/s","VRAM Capacity":"16 GiB","VRAM Bandwidth":"1 TiB/s","VRAM Type":"HBM2","VRAM Bus Width":"4096 Bits","Die Size":"331 mm","GPU":"Vega 20","TDP":"300 W"},"isPart":true,"type":"Graphics Card","humanName":"Radeon VII"},"RX-570-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3874,"UserBenchmark GPU Score":"44.7","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1168 MHz","GPU Boost Frequency":"1244 MHz","VRAM Frequency":"7000 MT/s","VRAM Capacity":"4 GiB","VRAM Bandwidth":"224 GB/s","TDP":"150 W","Codename":"Ellesmere Xl","FP32 Compute":"4.784 GFLOPS","FP64 Compute":"299 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 570 (4GiB)"},"RX-570-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3874,"UserBenchmark GPU Score":"44.7","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1168 MHz","GPU Boost Frequency":"1244 MHz","VRAM Frequency":"7000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"224 GB/s","Codename":"Ellesmere Xl","TDP":"150 W","FP32 Compute":"4.784 TFLOPS","FP64 Compute":"299 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 570 (8GiB)"},"RX-Vega-64-Liquid":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","UserBenchmark GPU Score":"93.8","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1406 MHz","GPU Boost Frequency":"1677 MHz","VRAM Frequency":"1890 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"483.8 GB/s","TDP":"345 W","Codename":"Vega 64 Liquid"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 64 Liquid"},"RX-Vega-64":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","3DMark Fire Strike Graphics Score":7542,"UserBenchmark GPU Score":"86.6","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1247 MHz","GPU Boost Frequency":"1546 MHz","VRAM Frequency":"1890 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"483.8 GB/s","TDP":"295 W","Codename":"Vega 64"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 64"},"RX-560-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1823,"UserBenchmark GPU Score":"19.7","Release Date":"2017-04-20","GPU Base Frequency":"1175 MHz","GPU Boost Frequency":"1275 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":64,"Shader Processor Count":1024,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin XT","TDP":"80 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"2.406 TFLOPS","FP64 Compute":"150 GFLOPS"},"humanName":"RX 560 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-560-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1823,"UserBenchmark GPU Score":"19.7","Release Date":"2017-04-20","GPU Base Frequency":"1175 MHz","GPU Boost Frequency":"1275 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"4 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":64,"Shader Processor Count":1024,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin XT","TDP":"80 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"2.406 TFLOPS","FP64 Compute":"150 GFLOPS"},"humanName":"RX 560 (4GiB)","isPart":true,"type":"Graphics Card"},"RX-Vega-56":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","3DMark Fire Strike Graphics Score":6906,"UserBenchmark GPU Score":"78","Shader Processor Count":3584,"Texture Mapping Unit Count":224,"Render Output Unit Count":64,"GPU Base Frequency":"1156 MHz","GPU Boost Frequency":"1471 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"410 GB/s","TDP":"210 W","Codename":"Vega 56"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 56"},"R9-390X":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":4242,"UserBenchmark GPU Score":"53.5","GPU":"Hawaii","Codename":"Hawaii XT","Release Date":"2015-06-18","Die Size":"438 mm","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"8 GiB","VRAM Bus Width":"512 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"384 GB/s","TDP":"275 W","FP32 Compute":"5.914 TFLOPS","FP64 Compute":"739 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 390X"},"RX-580-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3831,"UserBenchmark GPU Score":"51.6","Shader Processor Count":2304,"Texture Mapping Unit Count":144,"Render Output Unit Count":32,"GPU Base Frequency":"1257 MHz","GPU Boost Frequency":"1340 MHz","VRAM Frequency":"8000 MT/s","VRAM Capacity":"4 GB","VRAM Bandwidth":"256 GB/s","TDP":"185 W","Codename":"Ellesmere XTX","FP32 Compute":"5.792 TFLOPS","FP64 Compute":"362 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 580 (4GiB)"},"RX-580-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3831,"UserBenchmark GPU Score":"51.6","Shader Processor Count":2304,"Texture Mapping Unit Count":144,"Render Output Unit Count":32,"GPU Base Frequency":"1257 MHz","GPU Boost Frequency":"1340 MHz","VRAM Frequency":"8000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"256 GB/s","TDP":"185 W","Codename":"Ellesmere XTX","FP32 Compute":"5.792 TFLOPS","FP64 Compute":"362 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 580 (8GiB)"},"R9-290X-4GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2013-10-24","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii XT","FP32 Compute":"5.632 TFLOPS","FP64 Compute":"704 GFLOPS","3DMark Fire Strike Graphics Score":3989,"UserBenchmark GPU Score":"51","VRAM Capacity":"4 GiB"},"humanName":"R9 290X (4GiB)","isPart":true,"type":"Graphics Card"},"R9-290X-8GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2013-10-24","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii XT","FP32 Compute":"5.632 TFLOPS","FP64 Compute":"704 GFLOPS","3DMark Fire Strike Graphics Score":3989,"UserBenchmark GPU Score":"51","VRAM Capacity":"8 GiB"},"humanName":"R9 290X (8GiB)","isPart":true,"type":"Graphics Card"},"RX-550-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1195,"UserBenchmark GPU Score":"14.1","Release Date":"2017-04-18","GPU Base Frequency":"1100 MHz","GPU Boost Frequency":"1183 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"101 mm","GPU":"Polaris 12","Codename":"Lexa Pro","TDP":"50 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.126 TFLOPS","FP64 Compute":"70 GFLOPS"},"humanName":"RX 550 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-550-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1195,"UserBenchmark GPU Score":"14.1","Release Date":"2017-04-18","GPU Base Frequency":"1100 MHz","GPU Boost Frequency":"1183 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"4 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"101 mm","GPU":"Polaris 12","Codename":"Lexa Pro","TDP":"50 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.126 TFLOPS","FP64 Compute":"70 GFLOPS"},"humanName":"RX 550 (4GiB)","isPart":true,"type":"Graphics Card"},"R9-390":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":3965,"UserBenchmark GPU Score":"49.7","GPU":"Hawaii","Codename":"Hawaii Pro","Release Date":"2015-06-18","Die Size":"438 mm","Shader Processor Count":2560,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"8 GiB","VRAM Bus Width":"512 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"384 GB/s","TDP":"275 W","FP32 Compute":"5.120 TFLOPS","FP64 Compute":"640 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 390"},"R9-290":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","3DMark Fire Strike Graphics Score":3693,"UserBenchmark GPU Score":"46.4","Release Date":"2013-11-05","Shader Processor Count":2560,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"947 MHz","VRAM Capacity":"4 GiB","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii Pro","FP32 Compute":"4.849 TFLOPS","FP64 Compute":"606 GFLOPS"},"humanName":"R9 290","isPart":true,"type":"Graphics Card"},"RX-480-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-29","GPU Base Frequency":"1120 MHz","GPU Boost Frequency":"1266 MHz","Render Output Unit Count":32,"Texture Mapping Unit Count":144,"Shader Processor Count":2304,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere XT","TDP":"150 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"5.161 TFLOPS","FP64 Compute":"323 GFLOPS","3DMark Fire Strike Graphics Score":4167,"UserBenchmark GPU Score":"45.7","VRAM Frequency":"7000 MT/s","VRAM Capacity":"4 GiB","VRAM Bandwidth":"209 GiB/s"},"humanName":"RX 480 (4 GiB)","isPart":true,"type":"Graphics Card"},"RX-480-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-29","GPU Base Frequency":"1120 MHz","GPU Boost Frequency":"1266 MHz","Render Output Unit Count":32,"Texture Mapping Unit Count":144,"Shader Processor Count":2304,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere XT","TDP":"150 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"5.161 TFLOPS","FP64 Compute":"323 GFLOPS","3DMark Fire Strike Graphics Score":4167,"UserBenchmark GPU Score":"45.7","VRAM Frequency":"8000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"256 GiB/s"},"humanName":"RX 480 (8 GiB)","isPart":true,"type":"Graphics Card"},"RX-470-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-04","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"6600 MT/s","VRAM Bandwidth":"211 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":128,"Shader Processor Count":2048,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere Pro","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.793 TFLOPS","FP64 Compute":"237 GFLOPS","3DMark Fire Strike Graphics Score":3707,"UserBenchmark GPU Score":"39.5","VRAM Capacity":"4 GiB"},"humanName":"RX 470 (4 GiB)","isPart":true,"type":"Graphics Card"},"RX-470-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-04","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"6600 MT/s","VRAM Bandwidth":"211 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":128,"Shader Processor Count":2048,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere Pro","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.793 TFLOPS","FP64 Compute":"237 GFLOPS","3DMark Fire Strike Graphics Score":3707,"UserBenchmark GPU Score":"39.5","VRAM Capacity":"8 GiB"},"humanName":"RX 470 (8 GiB)","isPart":true,"type":"Graphics Card"},"R9-380X":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"37.7","GPU":"Tonga","Codename":"Tonga XT","Release Date":"2015-11-19","Die Size":"359 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.973 TFLOPS","FP64 Compute":"248 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380X"},"HD-7970-3GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"36.4","GPU":"Tahiti","Codename":"Tahiti XT","Release Date":"2012-01-09","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"264 GB/s","TDP":"250 W","FP32 Compute":"3.789 TFLOPS","FP64 Compute":"947 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 (3GiB)"},"HD-7970-6GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"36.4","GPU":"Tahiti","Codename":"Tahiti XT","Release Date":"2012-01-09","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"6 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"264 GB/s","TDP":"250 W","FP32 Compute":"3.789 TFLOPS","FP64 Compute":"947 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 (6GiB)"},"R9-280X":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":2350,"UserBenchmark GPU Score":"35.1","GPU":"Tahiti","Codename":"Tahiti XTL","Release Date":"2013-08-08","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"3.482 TFLOPS","FP64 Compute":"870 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 280X"},"HD-7990":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"34.4","GPU":"Tahiti","Codename":"New Zealand","Release Date":"2013-04-24","Die Size":"352 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"950 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB (per GPU)","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"375 W","FP32 Compute":"8.200 TFLOPS","FP64 Compute":"1.894 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7990"},"R9-380-2GiB":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":2788,"UserBenchmark GPU Score":"33.4","GPU":"Tonga","Codename":"Tonga Pro","Release Date":"2015-06-18","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.477 TFLOPS","FP64 Compute":"217 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380 (2GiB)"},"R9-380-4GiB":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":2788,"UserBenchmark GPU Score":"33.4","GPU":"Tonga","Codename":"Tonga Pro","Release Date":"2015-06-18","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.477 TFLOPS","FP64 Compute":"217 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380 (4GiB)"},"R9-285":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"32.1","Release Date":"2014-09-02","GPU":"Tonga","Codename":"Tonga Pro","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"918 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Bandwidth":"176 GB/s","TDP":"190 W","FP32 Compute":"3.290 TFLOPS","FP64 Compute":"207 GFLOPS"},"humanName":"R9 285","isPart":true,"type":"Graphics Card"},"R9-280":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"30","GPU":"Tahiti","Codename":"Tahiti Pro","Release Date":"2014-03-04","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"827 MHz","GPU Boost Frequency":"933 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"250 W","FP32 Compute":"2.964 TFLOPS","FP64 Compute":"741 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 280"},"HD-7950":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"28.6","GPU":"Tahiti","Codename":"Tahiti Pro","Release Date":"2012-01-31","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"200 W","FP32 Compute":"2.867 TFLOPS","FP64 Compute":"717 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7950"},"R9-270X-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":1770,"UserBenchmark GPU Score":"26.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013-08-08","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"167 GB/s","TDP":"180 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270X (2GiB)"},"R9-270X-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":1770,"UserBenchmark GPU Score":"26.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013-08-08","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"167 GB/s","TDP":"180 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270X (4GiB)"},"HD-7870":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"25.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"175 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7870"},"R9-270":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"24.1","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2013-11-13","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"150 W","FP32 Compute":"2.304 TFLOPS","FP64 Compute":"144 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270"},"R7-370-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2015-06-18","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"975 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"110 W","FP32 Compute":"1.997 TFLOPS","FP64 Compute":"125 GFLOPS","UserBenchmark GPU Score":"21.2","VRAM Capacity":"2 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R7 370 (2GiB)"},"R7-370-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2015-06-18","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"975 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"110 W","FP32 Compute":"1.997 TFLOPS","FP64 Compute":"125 GFLOPS","UserBenchmark GPU Score":"21.2","VRAM Capacity":"4 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R7 370 (4GiB)"},"HD-6990":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"20.8","GPU":"Cayman","Codename":"Antilles XT","Release Date":"2011-03-08","Die Size":"389 mm","Shader Processor Count":3072,"Texture Mapping Unit Count":192,"Render Output Unit Count":64,"GPU Base Frequency":"830 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"2 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"375 W","FP32 Compute":"5.099 TFLOPS","FP64 Compute":"1.277 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6990"},"HD-6970":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"20","GPU":"Cayman","Codename":"Cayman XT","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1536,"Texture Mapping Unit Count":96,"Render Output Unit Count":32,"GPU Base Frequency":"880 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"176 GB/s","TDP":"250 W","FP32 Compute":"2.703 TFLOPS","FP64 Compute":"673 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6970"},"HD-7790-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2012-03-22","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7790 (1GiB)"},"HD-7790-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2012-03-22","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7790 (2GiB)"},"R7-260X-1GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XTX","Release Date":"2013-08-08","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"115 W","FP32 Compute":"1.971 TFLOPS","FP64 Compute":"123 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260X (1GiB)"},"R7-260X-2GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XTX","Release Date":"2013-08-08","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"115 W","FP32 Compute":"1.971 TFLOPS","FP64 Compute":"123 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260X (2GiB)"},"RX-460-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-08","GPU Base Frequency":"1090 MHz","GPU Boost Frequency":"1200 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","Render Output Unit Count":16,"Texture Mapping Unit Count":56,"Shader Processor Count":896,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin Pro","TDP":"75 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.953 TFLOPS","FP64 Compute":"122 GFLOPS","3DMark Fire Strike Graphics Score":1734,"UserBenchmark GPU Score":"19.7","VRAM Capacity":"2 GiB"},"humanName":"RX 460 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-460-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-08","GPU Base Frequency":"1090 MHz","GPU Boost Frequency":"1200 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","Render Output Unit Count":16,"Texture Mapping Unit Count":56,"Shader Processor Count":896,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin Pro","TDP":"75 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.953 TFLOPS","FP64 Compute":"122 GFLOPS","3DMark Fire Strike Graphics Score":1734,"UserBenchmark GPU Score":"19.7","VRAM Capacity":"4 GiB"},"humanName":"RX 460 (4 GiB)","isPart":true,"type":"Graphics Card"},"HD-7850-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.3","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"860 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"130 W","FP32 Compute":"1.761 TFLOPS","FP64 Compute":"110 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7850 (1GiB)"},"HD-7850-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.3","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"860 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"130 W","FP32 Compute":"1.761 TFLOPS","FP64 Compute":"110 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7850 (2GiB)"},"HD-6950-1GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19","GPU":"Cayman","Codename":"Cayman Pro","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1408,"Texture Mapping Unit Count":88,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"200 W","FP32 Compute":"2.253 TFLOPS","FP64 Compute":"563 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6950 1GiB"},"HD-6950-2GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19","GPU":"Cayman","Codename":"Cayman Pro","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1408,"Texture Mapping Unit Count":88,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"200 W","FP32 Compute":"2.253 TFLOPS","FP64 Compute":"563 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6950 2GiB"},"HD-5870-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2009-11-23","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"188 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 1GiB"},"HD-5870-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2009-11-23","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"188 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 2GiB"},"HD-5870-Eyefinity-6":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2010-04-11","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"228 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 Eyefinity 6"},"R7-360":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"17.9","GPU":"Bonaire","Codename":"Bonaire Pro","Release Date":"2015-06-18","Die Size":"160 mm","Shader Processor Count":768,"Texture Mapping Unit Count":48,"Render Output Unit Count":16,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"100 W","FP32 Compute":"1.536 TFLOPS","FP64 Compute":"96 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 360"},"HD-8950":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"17.8","GPU":"Tahiti","Codename":"Tahiti PRO","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"225 W","FP32 Compute":"3.046 TFLOPS","FP64 Compute":"762 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8950"},"HD-5970-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"16.7","GPU":"Cypress","Codename":"Hemlock XT","Release Date":"2009-11-18","Die Size":"334 mm","Shader Processor Count":3200,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"294 W","FP32 Compute":"4.640 TFLOPS","FP64 Compute":"928 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5970 1GiB"},"HD-5970-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"16.7","GPU":"Cypress","Codename":"Hemlock XT","Release Date":"2009-11-18","Die Size":"334 mm","Shader Processor Count":3200,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"294 W","FP32 Compute":"4.640 TFLOPS","FP64 Compute":"928 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5970 2GiB"},"HD-6870-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"15.4","GPU":"Barts","Codename":"Barts XT","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"151 W","FP32 Compute":"2.016 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6870 1GiB"},"HD-6870-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"15.4","GPU":"Barts","Codename":"Barts XT","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"151 W","FP32 Compute":"2.016 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6870 2GiB"},"HD-5850-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.08","GPU":"Cypress","Codename":"Cypress PRO","Release Date":"2009-11-30","Die Size":"334 mm","Shader Processor Count":1440,"Texture Mapping Unit Count":72,"Render Output Unit Count":32,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"151 W","FP32 Compute":"2.088 TFLOPS","FP64 Compute":"418 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5850 1GiB"},"HD-5850-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.08","GPU":"Cypress","Codename":"Cypress PRO","Release Date":"2009-11-30","Die Size":"334 mm","Shader Processor Count":1440,"Texture Mapping Unit Count":72,"Render Output Unit Count":32,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"151 W","FP32 Compute":"2.088 TFLOPS","FP64 Compute":"418 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5850 2GiB"},"HD-5830":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.9","GPU":"Cypress","Codename":"Cypress LE","Release Date":"2010-02-25","Die Size":"334 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"175 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"358 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5830"},"HD-8760":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.7","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2013","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8760"},"HD-7770-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7770 (1GiB)"},"HD-7770-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7770 (2GiB)"},"HD-6850":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Barts","Codename":"Barts Pro","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":960,"Texture Mapping Unit Count":48,"Render Output Unit Count":32,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"127 W","FP32 Compute":"1.488 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6850"},"HD-6790":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.7","GPU":"Barts","Codename":"Barts LE","Release Date":"2011-04-04","Die Size":"255 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"840 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"150 W","FP32 Compute":"1.344 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6790"},"HD-5770-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 1GiB"},"HD-5770-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 512MiB"},"HD-6770-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2011-04-19","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"67.2 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6770 1GiB"},"HD-6770-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2011-04-19","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6770 512MiB"},"HD-5750-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.36","GPU":"Juniper","Codename":"Juniper PRO","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":720,"Texture Mapping Unit Count":36,"Render Output Unit Count":16,"GPU Base Frequency":"700 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"73.6 GB/s","TDP":"86 W","FP32 Compute":"1.008 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5750 1GiB"},"HD-5750-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.36","GPU":"Juniper","Codename":"Juniper PRO","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":720,"Texture Mapping Unit Count":36,"Render Output Unit Count":16,"GPU Base Frequency":"700 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"73.6 GB/s","TDP":"86 W","FP32 Compute":"1.008 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5750 512MiB"},"HD-7750-1GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (1GiB DDR3)"},"HD-7750-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (1GiB)"},"HD-7750-2GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (2GiB DDR3)"},"HD-7750-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (2GiB)"},"HD-7750-4GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (4GiB DDR3)"},"HD-7730-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.43","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-04","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"38.4 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7730 (DDR3)"},"HD-7730":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.43","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-04","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"38.4 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7730"},"HD-8570-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.25","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"730 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"28.8 GB/s","TDP":"66 W","FP32 Compute":"560 GFLOPS","FP64 Compute":"35 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8570 (DDR3)"},"HD-8570":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.25","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"730 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"66 W","FP32 Compute":"560 GFLOPS","FP64 Compute":"35 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8570"},"HD-6670-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 1GiB"},"HD-6670-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 2GiB"},"HD-6670-512MiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"21.3 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 512MiB (DDR3)"},"HD-5670-1GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 1GiB (GDDR3)"},"HD-5670-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 1GiB"},"HD-5670-2GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5710 2GiB (GDDR3)"},"HD-5670-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 2GiB"},"HD-5670-512MiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 512MiB (GDDR3)"},"HD-5670-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 512MiB"},"HD-6570-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.76","GPU":"Turks","Codename":"Turks PRO","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1334 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"21.3 GB/s","TDP":"60 W","FP32 Compute":"624 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6570 DDR3"},"HD-6570":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.76","GPU":"Turks","Codename":"Turks PRO","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"60 W","FP32 Compute":"624 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6570"},"HD-5570-2GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 2GiB (GDDR3)"},"HD-5570-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 512MiB"},"HD-5570-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 GDDR3"},"HD-5570-Turks":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Turks","Codename":"Turks LE","Release Date":"2010-10","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"16 GB/s","TDP":"39 W","FP32 Compute":"416 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 Turks"},"HD-5570":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.6 GB/s","TDP":"39 W"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570"},"HD-5730":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2011-02","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5730"},"HD-6450-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"14.4 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (1GiB)"},"HD-6450-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"14.4 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (2GiB)"},"HD-6450-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (512MiB)"},"HD-6350":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.06","GPU":"Cedar","Codename":"Cedar","Release Date":"2011-04-07","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6350"},"HD-5450-1GiB-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 1 GiB (DDR2)"},"HD-5450-1GiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"900 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"7.2 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 1GiB (DDR3)"},"HD-5450-2GiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 2GiB (DDR3)"},"HD-5450-512MiB-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 512MiB (DDR2)"},"HD-5450-512MiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 512MiB (DDR3)"},"Ryzen-9-3900":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-10-08","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1657,"Geekbench Multi-Core Score":9592,"3DMark Fire Strike Physics Score":7961,"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","TDP":"65 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 3900","isPart":true,"type":"CPU"},"Core-i7-13700T":{"data":{"Geekbench Single-Core Score":2409,"Geekbench Multi-Core Score":11468,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700T","isPart":true,"type":"CPU"},"Core-i5-13600T":{"data":{"Geekbench Single-Core Score":2386,"Geekbench Multi-Core Score":12528,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600T","isPart":true,"type":"CPU"},"Ryzen-5-7640HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2320,"Geekbench Multi-Core Score":8890,"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.3 GHz","Boost Frequency":"5 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz"},"humanName":"Ryzen 7 7640HS","isPart":true,"type":"CPU"},"Core-i9-12900T":{"data":{"Geekbench Single-Core Score":2312,"Geekbench Multi-Core Score":11882,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900T","isPart":true,"type":"CPU"},"Core-i7-12700T":{"data":{"Geekbench Single-Core Score":2252,"Geekbench Multi-Core Score":9934,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700T","isPart":true,"type":"CPU"},"Core-i5-13500T":{"data":{"Geekbench Single-Core Score":2232,"Geekbench Multi-Core Score":9831,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13500T","isPart":true,"type":"CPU"},"Core-i5-13400T":{"data":{"Geekbench Single-Core Score":2213,"Geekbench Multi-Core Score":9521,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400T","isPart":true,"type":"CPU"},"Core-i5-12600T":{"data":{"Geekbench Single-Core Score":2189,"Geekbench Multi-Core Score":7719,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600T","isPart":true,"type":"CPU"},"Core-i5-12500T":{"data":{"Geekbench Single-Core Score":2175,"Geekbench Multi-Core Score":7475,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12500T","isPart":true,"type":"CPU"},"Ryzen-7-7840U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2078,"Geekbench Multi-Core Score":8589,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz"},"humanName":"Ryzen 7 7840U","isPart":true,"type":"CPU"},"Core-i5-12400T":{"data":{"Geekbench Single-Core Score":2076,"Geekbench Multi-Core Score":7445,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400T","isPart":true,"type":"CPU"},"Core-i9-11900T":{"data":{"Geekbench Single-Core Score":2059,"Geekbench Multi-Core Score":8586,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900T","isPart":true,"type":"CPU"},"Core-i3-13100T":{"data":{"Geekbench Single-Core Score":2043,"Geekbench Multi-Core Score":6308,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100T","isPart":true,"type":"CPU"},"Core-i7-11390H":{"data":{"Geekbench Single-Core Score":1997,"Geekbench Multi-Core Score":5482,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11390H","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5750G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1943,"Geekbench Multi-Core Score":8058,"Release Date":"2021-06-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5750G","isPart":true,"type":"CPU"},"Core-i3-12100T":{"data":{"Geekbench Single-Core Score":1938,"Geekbench Multi-Core Score":5829,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100T","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5750GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1930,"Geekbench Multi-Core Score":7298,"Release Date":"2021-06-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5750GE","isPart":true,"type":"CPU"},"Ryzen-9-5980HX":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1922,"Geekbench Multi-Core Score":7718,"Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"4.8 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5980HX","isPart":true,"type":"CPU"},"Ryzen-5-PRO-5650GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1903,"Geekbench Multi-Core Score":6862,"Release Date":"2021-06-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.4 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 5650GE","isPart":true,"type":"CPU"},"Core-i5-11500H":{"data":{"Geekbench Single-Core Score":1898,"Geekbench Multi-Core Score":6350,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500H","isPart":true,"type":"CPU"},"Ryzen-5-PRO-5650G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1890,"Geekbench Multi-Core Score":6911,"Release Date":"2021-06-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.9 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 5650G","isPart":true,"type":"CPU"},"Core-i7-11600H":{"data":{"Geekbench Single-Core Score":1841,"Geekbench Multi-Core Score":6741,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11600H","isPart":true,"type":"CPU"},"Core-i5-11320H":{"data":{"Geekbench Single-Core Score":1840,"Geekbench Multi-Core Score":5394,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11320H","isPart":true,"type":"CPU"},"Ryzen-3-PRO-5350G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1766,"Geekbench Multi-Core Score":5094,"Release Date":"2021-06-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 PRO 5350G","isPart":true,"type":"CPU"},"Core-i5-11260H":{"data":{"Geekbench Single-Core Score":1741,"Geekbench Multi-Core Score":6181,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11260H","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5850U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1707,"Geekbench Multi-Core Score":6201,"Release Date":"2021-03-16","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.9 GHz","Boost Frequency":"4.4 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5850U","isPart":true,"type":"CPU"},"Core-i7-11700T":{"data":{"Geekbench Single-Core Score":1706,"Geekbench Multi-Core Score":6440,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700T","isPart":true,"type":"CPU"},"Core-i5-11500T":{"data":{"Geekbench Single-Core Score":1692,"Geekbench Multi-Core Score":5609,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500T","isPart":true,"type":"CPU"},"Ryzen-7-PRO-3700":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1665,"Geekbench Multi-Core Score":8173,"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 PRO 3700","isPart":true,"type":"CPU"},"Ryzen-9-PRO-3900":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1650,"Geekbench Multi-Core Score":8827,"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","TDP":"65 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 PRO 3900","isPart":true,"type":"CPU"},"Xeon-E-2286G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1648,"Geekbench Multi-Core Score":6855},"isPart":true,"type":"CPU","humanName":"Xeon E-2286G"},"Ryzen-5-PRO-3600":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1637,"Geekbench Multi-Core Score":6520,"Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 PRO 3600","isPart":true,"type":"CPU"},"Core-i9-10910":{"data":{"Geekbench Single-Core Score":1626,"Geekbench Multi-Core Score":8204,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10910","isPart":true,"type":"CPU"},"Xeon-E-2236":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A","Geekbench Single-Core Score":1602,"Geekbench Multi-Core Score":6532},"isPart":true,"type":"CPU","humanName":"Xeon E-2236"},"Ryzen-5-PRO-5650U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1593,"Geekbench Multi-Core Score":5379,"Release Date":"2021-03-16","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":6,"Thread Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 PRO 5650U","isPart":true,"type":"CPU"},"Core-i5-11400T":{"data":{"Geekbench Single-Core Score":1583,"Geekbench Multi-Core Score":5472,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400T","isPart":true,"type":"CPU"},"Xeon-W-2245":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"155 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.9 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1568,"Geekbench Multi-Core Score":8627},"isPart":true,"type":"CPU","humanName":"Xeon W-2245"},"Xeon-E-2176G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1563,"Geekbench Multi-Core Score":6298},"isPart":true,"type":"CPU","humanName":"Xeon E-2176G"},"Xeon-E-2136":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1560,"Geekbench Multi-Core Score":6379},"isPart":true,"type":"CPU","humanName":"Xeon E-2136"},"Xeon-E-2274G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"83 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1554,"Geekbench Multi-Core Score":5128},"isPart":true,"type":"CPU","humanName":"Xeon E-2274G"},"Xeon-W-2235":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1547,"Geekbench Multi-Core Score":6996},"isPart":true,"type":"CPU","humanName":"Xeon W-2235"},"Xeon-W-2265":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1541,"Geekbench Multi-Core Score":10097},"isPart":true,"type":"CPU","humanName":"Xeon W-2265"},"Core-i7-8700B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1537,"Geekbench Multi-Core Score":5891},"isPart":true,"type":"CPU","humanName":"Core i7-8700B"},"Xeon-W-2255":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1534,"Geekbench Multi-Core Score":9337},"isPart":true,"type":"CPU","humanName":"Xeon W-2255"},"Core-i5-10505":{"data":{"Geekbench Single-Core Score":1527,"Geekbench Multi-Core Score":5202,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10505","isPart":true,"type":"CPU"},"Xeon-E-2286M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCBGA1440","AES":true,"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1525,"Geekbench Multi-Core Score":6730},"isPart":true,"type":"CPU","humanName":"Xeon E-2286M"},"Ryzen-3-PRO-5450U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1514,"Geekbench Multi-Core Score":4814,"Release Date":"2021-03-16","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"15 W","Core Count":4,"Thread Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1600 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.229 TFLOPS","FP64 Compute":"76.8 GFLOPS"},"humanName":"Ryzen 3 PRO 5450U","isPart":true,"type":"CPU"},"Xeon-E-2224G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1505,"Geekbench Multi-Core Score":4251},"isPart":true,"type":"CPU","humanName":"Xeon E-2224G"},"Ryzen-7-PRO-4750GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1503,"Geekbench Multi-Core Score":6296,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 PRO 4750GE","isPart":true,"type":"CPU"},"Xeon-W-2275":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1497,"Geekbench Multi-Core Score":10472},"isPart":true,"type":"CPU","humanName":"Xeon W-2275"},"Ryzen-5-PRO-4650GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1495,"Geekbench Multi-Core Score":5637,"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 4650GE","isPart":true,"type":"CPU"},"Xeon-W-2295":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1492,"Geekbench Multi-Core Score":10405},"isPart":true,"type":"CPU","humanName":"Xeon W-2295"},"Core-i3-10105":{"data":{"Geekbench Single-Core Score":1490,"Geekbench Multi-Core Score":4689,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10105","isPart":true,"type":"CPU"},"Core-i5-9500F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1477,"Geekbench Multi-Core Score":5180},"isPart":true,"type":"CPU","humanName":"Core i5-9500F"},"Xeon-E-2224":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A","Geekbench Single-Core Score":1474,"Geekbench Multi-Core Score":4258},"isPart":true,"type":"CPU","humanName":"Xeon E-2224"},"Xeon-W-3175X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"255 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-01-30","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1470,"Geekbench Multi-Core Score":13557},"isPart":true,"type":"CPU","humanName":"Xeon W-3175X"},"Xeon-E-2146G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1464,"Geekbench Multi-Core Score":5537},"isPart":true,"type":"CPU","humanName":"Xeon E-2146G"},"Core-i7-8569U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1463,"Geekbench Multi-Core Score":4469},"isPart":true,"type":"CPU","humanName":"Core i7-8569U"},"Xeon-E-2144G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1453,"Geekbench Multi-Core Score":4590},"isPart":true,"type":"CPU","humanName":"Xeon E-2144G"},"Xeon-E-2276M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1442,"Geekbench Multi-Core Score":5435},"isPart":true,"type":"CPU","humanName":"Xeon E-2276M"},"Xeon-E-2124G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1439,"Geekbench Multi-Core Score":3868},"isPart":true,"type":"CPU","humanName":"Xeon E-2124G"},"Ryzen-3-PRO-4350G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1434,"Geekbench Multi-Core Score":4624,"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 PRO 4350G","isPart":true,"type":"CPU"},"Core-i9-9900T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1431,"Geekbench Multi-Core Score":6042},"isPart":true,"type":"CPU","humanName":"Core i9-9900T"},"Xeon-W-3235":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"180 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1413,"Geekbench Multi-Core Score":10180},"isPart":true,"type":"CPU","humanName":"Xeon W-3235"},"Xeon-W-2225":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"4.1 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1409,"Geekbench Multi-Core Score":5248},"isPart":true,"type":"CPU","humanName":"Xeon W-2225"},"Xeon-W-2145":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1408,"Geekbench Multi-Core Score":8055},"isPart":true,"type":"CPU","humanName":"Xeon W-2145"},"Xeon-W-2135":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1395,"Geekbench Multi-Core Score":6509},"isPart":true,"type":"CPU","humanName":"Xeon W-2135"},"Xeon-W-3245":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1388,"Geekbench Multi-Core Score":11767},"isPart":true,"type":"CPU","humanName":"Xeon W-3245"},"Xeon-E-2176M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1386,"Geekbench Multi-Core Score":4978},"isPart":true,"type":"CPU","humanName":"Xeon E-2176M"},"Xeon-W-3223":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"160 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1386,"Geekbench Multi-Core Score":7982},"isPart":true,"type":"CPU","humanName":"Xeon W-3223"},"Core-i7-9700T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1375,"Geekbench Multi-Core Score":5191},"isPart":true,"type":"CPU","humanName":"Core i7-9700T"},"Core-i5-8500B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1374,"Geekbench Multi-Core Score":4982},"isPart":true,"type":"CPU","humanName":"Core i5-8500B"},"Ryzen-7-PRO-4750U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1353,"Geekbench Multi-Core Score":5210,"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"1.7 GHz","Boost Frequency":"4.1 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 PRO 4750U","isPart":true,"type":"APU"},"Core-i7-9750HF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4496},"isPart":true,"type":"CPU","humanName":"Core i7-9750HF"},"Core-i5-9600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4635},"isPart":true,"type":"CPU","humanName":"Core i5-9600T"},"Xeon-W-2155":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1339,"Geekbench Multi-Core Score":8515},"isPart":true,"type":"CPU","humanName":"Xeon W-2155"},"Xeon-W-2125":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1338,"Geekbench Multi-Core Score":4944},"isPart":true,"type":"CPU","humanName":"Xeon W-2125"},"Core-i5-9300HF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q2 2019","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":1322,"Geekbench Multi-Core Score":4147},"isPart":true,"type":"CPU","humanName":"Core i5-9300HF"},"Xeon-E-2186M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1315,"Geekbench Multi-Core Score":5138},"isPart":true,"type":"CPU","humanName":"Xeon E-2186M"},"Ryzen-5-PRO-4650U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1302,"Geekbench Multi-Core Score":4608,"Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 PRO 4650U","isPart":true,"type":"APU"},"Xeon-W-2223":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1264,"Geekbench Multi-Core Score":4647},"isPart":true,"type":"CPU","humanName":"Xeon W-2223"},"Xeon-W-2195":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1248,"Geekbench Multi-Core Score":10002},"isPart":true,"type":"CPU","humanName":"Xeon W-2195"},"Core-i5-9500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1236,"Geekbench Multi-Core Score":4204},"isPart":true,"type":"CPU","humanName":"Core i5-9500T"},"Xeon-W-2133":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1223,"Geekbench Multi-Core Score":5775},"isPart":true,"type":"CPU","humanName":"Xeon W-2133"},"Core-i3-8100B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-09-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1216,"Geekbench Multi-Core Score":3539},"isPart":true,"type":"CPU","humanName":"Core i3-8100B"},"Xeon-W-2175":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2017-12-07","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1210,"Geekbench Multi-Core Score":8334},"isPart":true,"type":"CPU","humanName":"Xeon W-2175"},"Core-i5-5675R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1208,"Geekbench Multi-Core Score":3636},"isPart":true,"type":"CPU","humanName":"Core i5-5675R"},"Core-i3-9100T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1207,"Geekbench Multi-Core Score":3193},"isPart":true,"type":"CPU","humanName":"Core i3-9100T"},"Ryzen-3-PRO-4450U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1204,"Geekbench Multi-Core Score":3618,"Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","TDP":"15 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","GPU Model":"RX Vega 5","Max Displays":4,"Shader Processor Count":320,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1400 MHz","FP32 Compute":"0.896 TFLOPS","FP64 Compute":"56 GFLOPS"},"humanName":"Ryzen 3 PRO 4450U","isPart":true,"type":"APU"},"Xeon-W-3275M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1203,"Geekbench Multi-Core Score":11736},"isPart":true,"type":"CPU","humanName":"Xeon W-3275M"},"Core-i5-8257U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-07-09","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1200,"Geekbench Multi-Core Score":3864},"isPart":true,"type":"CPU","humanName":"Core i5-8257U"},"Core-i5-7440HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1198,"Geekbench Multi-Core Score":3080},"isPart":true,"type":"CPU","humanName":"Core i5-7440HQ"},"Core-i7-4980HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1191,"Geekbench Multi-Core Score":3726},"isPart":true,"type":"CPU","humanName":"Core i7-4980HQ"},"Xeon-W-2123":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1188,"Geekbench Multi-Core Score":4265},"isPart":true,"type":"CPU","humanName":"Xeon W-2123"},"Ryzen-3-2300X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"8 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1187,"Geekbench Multi-Core Score":3321,"Release Date":"2018-09-10","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 2300X","isPart":true,"type":"CPU"},"Xeon-E3-1280-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1179,"Geekbench Multi-Core Score":3812},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280 v3"},"Core-i7-6770HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1155,"Geekbench Multi-Core Score":3920},"isPart":true,"type":"CPU","humanName":"Core i7-6770HQ"},"Core-i5-7360U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":2369},"isPart":true,"type":"CPU","humanName":"Core i5-7360U"},"Core-i5-9400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":3953},"isPart":true,"type":"CPU","humanName":"Core i5-9400T"},"Core-i5-4690S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1124,"Geekbench Multi-Core Score":3335},"isPart":true,"type":"CPU","humanName":"Core i5-4690S"},"Core-i5-6500TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1114,"Geekbench Multi-Core Score":3223},"isPart":true,"type":"CPU","humanName":"Core i5-6500TE"},"Core-i5-6402P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1101,"Geekbench Multi-Core Score":3004},"isPart":true,"type":"CPU","humanName":"Core i5-6402P"},"Core-i5-5575R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3333},"isPart":true,"type":"CPU","humanName":"Core i5-5575R"},"Core-i7-4870HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1088,"Geekbench Multi-Core Score":3544},"isPart":true,"type":"CPU","humanName":"Core i7-4870HQ"},"Core-i5-6440HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1078,"Geekbench Multi-Core Score":2861},"isPart":true,"type":"CPU","humanName":"Core i5-6440HQ"},"Core-i7-6660U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-03-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1071,"Geekbench Multi-Core Score":2129},"isPart":true,"type":"CPU","humanName":"Core i7-6660U"},"Core-i5-6500T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1035,"Geekbench Multi-Core Score":2836},"isPart":true,"type":"CPU","humanName":"Core i5-6500T"},"Core-i5-4308U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1021,"Geekbench Multi-Core Score":2043},"isPart":true,"type":"CPU","humanName":"Core i5-4308U"},"Core-i5-6267U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1018,"Geekbench Multi-Core Score":2143},"isPart":true,"type":"CPU","humanName":"Core i5-6267U"},"Core-i5-4310M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1010,"Geekbench Multi-Core Score":1912},"isPart":true,"type":"CPU","humanName":"Core i5-4310M"},"Core-i5-4670T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1002,"Geekbench Multi-Core Score":2646},"isPart":true,"type":"CPU","humanName":"Core i5-4670T"},"Xeon-W-3265M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":997,"Geekbench Multi-Core Score":7681},"isPart":true,"type":"CPU","humanName":"Xeon W-3265M"},"Core-i4-4690T":{"data":{"Geekbench Single-Core Score":995,"Geekbench Multi-Core Score":2767,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i4 4690T","isPart":true,"type":"CPU"},"Core-i3-4170T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":974,"Geekbench Multi-Core Score":1915},"isPart":true,"type":"CPU","humanName":"Core i3-4170T"},"Core-i5-4210H":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":956,"Geekbench Multi-Core Score":1851},"isPart":true,"type":"CPU","humanName":"Core i5-4210H"},"Core-i7-4712MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":952,"Geekbench Multi-Core Score":2634},"isPart":true,"type":"CPU","humanName":"Core i7-4712MQ"},"Core-i5-4430S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":948,"Geekbench Multi-Core Score":2668},"isPart":true,"type":"CPU","humanName":"Core i5-4430S"},"Core-i5-4340M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":938,"Geekbench Multi-Core Score":1837},"isPart":true,"type":"CPU","humanName":"Core i5-4340M"},"Core-i7-4785T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":937,"Geekbench Multi-Core Score":3054},"isPart":true,"type":"CPU","humanName":"Core i7-4785T"},"Core-i5-6360U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":935,"Geekbench Multi-Core Score":1878},"isPart":true,"type":"CPU","humanName":"Core i5-6360U"},"Core-i3-4160T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":933,"Geekbench Multi-Core Score":1804},"isPart":true,"type":"CPU","humanName":"Core i3-4160T"},"Core-i5-7267U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":926,"Geekbench Multi-Core Score":1879},"isPart":true,"type":"CPU","humanName":"Core i5-7267U"},"Core-i5-4278U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":922,"Geekbench Multi-Core Score":1865},"isPart":true,"type":"CPU","humanName":"Core i5-4278U"},"Core-i7-6560U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":922,"Geekbench Multi-Core Score":1998},"isPart":true,"type":"CPU","humanName":"Core i7-6560U"},"Ryzen-5-PRO-2500U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":920,"Geekbench Multi-Core Score":2605,"Core Count":4,"Thread Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"3.6 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 5 PRO 2500U","type":"APU"},"Core-i5-6400T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":914,"Geekbench Multi-Core Score":2506},"isPart":true,"type":"CPU","humanName":"Core i5-6400T"},"Core-i7-4765T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":910,"Geekbench Multi-Core Score":2924},"isPart":true,"type":"CPU","humanName":"Core i7-4765T"},"Core-i5-4590T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":894,"Geekbench Multi-Core Score":2501},"isPart":true,"type":"CPU","humanName":"Core i5-4590T"},"Core-i5-5350U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":893,"Geekbench Multi-Core Score":1734},"isPart":true,"type":"CPU","humanName":"Core i5-5350U"},"Core-i5-4288U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":862,"Geekbench Multi-Core Score":1623},"isPart":true,"type":"CPU","humanName":"Core i5-4288U"},"Core-i3-4150T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":845,"Geekbench Multi-Core Score":1725},"isPart":true,"type":"CPU","humanName":"Core i3-4150T"},"Xeon-D-1541":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":821,"Geekbench Multi-Core Score":4543},"isPart":true,"type":"CPU","humanName":"Xeon D-1541"},"Ryzen-7-PRO-2700U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":800,"Geekbench Multi-Core Score":2318,"Core Count":4,"Thread Count":8,"Base Frequency":"2.2 GHz","Boost Frequency":"3.8 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 10","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1300 MHz"},"isPart":true,"humanName":"Ryzen 7 PRO 2700U","type":"APU"},"Core-i5-4460T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"1.9 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":793,"Geekbench Multi-Core Score":2192},"isPart":true,"type":"CPU","humanName":"Core i5-4460T"},"Core-i7-4578U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":780,"Geekbench Multi-Core Score":1408},"isPart":true,"type":"CPU","humanName":"Core i7-4578U"},"Core-i3-4100M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":776,"Geekbench Multi-Core Score":1555},"isPart":true,"type":"CPU","humanName":"Core i3-4100M"},"Core-i7-7820EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":746,"Geekbench Multi-Core Score":1922},"isPart":true,"type":"CPU","humanName":"Core i7-7820EQ"},"Core-i5-4260U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":737,"Geekbench Multi-Core Score":1430},"isPart":true,"type":"CPU","humanName":"Core i5-4260U"},"Core-i3-5020U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":670,"Geekbench Multi-Core Score":1333},"isPart":true,"type":"CPU","humanName":"Core i3-5020U"},"X4-950":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"Geekbench Single-Core Score":656,"Geekbench Multi-Core Score":1632,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 950","isPart":true,"type":"CPU"},"Core-i5-3570S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":636,"Geekbench Multi-Core Score":1769},"isPart":true,"type":"CPU","humanName":"Core i5-3570S"},"Core-i7-3770T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":622,"Geekbench Multi-Core Score":2017},"isPart":true,"type":"CPU","humanName":"Core i7-3770T"},"Xeon-E3-1230V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":619,"Geekbench Multi-Core Score":2167},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V2"},"Xeon-E5-1660":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":618,"Geekbench Multi-Core Score":3025},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660"},"Xeon-E3-1270":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":616,"Geekbench Multi-Core Score":2104},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270"},"Xeon-E5-1650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":602,"Geekbench Multi-Core Score":2962},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650"},"Core-i3-4025U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":601,"Geekbench Multi-Core Score":1170},"isPart":true,"type":"CPU","humanName":"Core i3-4025U"},"Xeon-E5-1620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":599,"Geekbench Multi-Core Score":2239},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620"},"Core-i5-3550S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":599,"Geekbench Multi-Core Score":1717},"isPart":true,"type":"CPU","humanName":"Core i5-3550S"},"Xeon-E3-1245":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":598,"Geekbench Multi-Core Score":2059},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245"},"Pentium-G4400T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":598,"Geekbench Multi-Core Score":1064},"isPart":true,"type":"CPU","humanName":"Pentium G4400T"},"Xeon-E3-1230":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":589,"Geekbench Multi-Core Score":1959},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230"},"Xeon-E5-2687W":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":588,"Geekbench Multi-Core Score":3342},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687W"},"Xeon-E5-2643":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":580,"Geekbench Multi-Core Score":2037},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643"},"Core-i5-3340S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":1635},"isPart":true,"type":"CPU","humanName":"Core i5-3340S"},"Xeon-E3-1225":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":568,"Geekbench Multi-Core Score":1693},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225"},"Core-i7-990X":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-02-13","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":2593},"isPart":true,"type":"CPU","humanName":"Core i7-990X"},"Xeon-E5-2690":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":3329},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690"},"Xeon-E3-1220":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":1625},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220"},"Xeon-E5-2680":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":557,"Geekbench Multi-Core Score":3261},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680"},"Core-i7-980X":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":542,"Geekbench Multi-Core Score":2579},"isPart":true,"type":"CPU","humanName":"Core i7-980X"},"Xeon-X5680":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":528,"Geekbench Multi-Core Score":2454},"isPart":true,"type":"CPU","humanName":"Xeon X5680"},"Pentium-G3250T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":524,"Geekbench Multi-Core Score":909},"isPart":true,"type":"CPU","humanName":"Pentium G3250T"},"Core-i7-3610QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":522,"Geekbench Multi-Core Score":1829},"isPart":true,"type":"CPU","humanName":"Core i7-3610QE"},"Xeon-W3670":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q3 2010","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":521,"Geekbench Multi-Core Score":2347},"isPart":true,"type":"CPU","humanName":"Xeon W3670"},"Xeon-X5677":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":509,"Geekbench Multi-Core Score":2015},"isPart":true,"type":"CPU","humanName":"Xeon X5677"},"Core-i7-875K":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":509,"Geekbench Multi-Core Score":1761},"isPart":true,"type":"CPU","humanName":"Core i7-875K"},"Xeon-X5675":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":502,"Geekbench Multi-Core Score":2440},"isPart":true,"type":"CPU","humanName":"Xeon X5675"},"FX-6350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"OR-C0","Geekbench Single-Core Score":486,"Geekbench Multi-Core Score":1574,"Release Date":"2013-04-30","Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","Core Count":6,"Thread Count":6,"L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W"},"isPart":true,"humanName":"FX 6350","type":"CPU"},"Pentium-G3220T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":478,"Geekbench Multi-Core Score":835},"isPart":true,"type":"CPU","humanName":"Pentium G3220T"},"Xeon-E5-2665":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":477,"Geekbench Multi-Core Score":2902},"isPart":true,"type":"CPU","humanName":"Xeon E5-2665"},"Xeon-X5670":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":472,"Geekbench Multi-Core Score":2281},"isPart":true,"type":"CPU","humanName":"Xeon X5670"},"Xeon-E3-1260L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":472,"Geekbench Multi-Core Score":1564},"isPart":true,"type":"CPU","humanName":"Xeon E3-1260L"},"Core-i3-3240T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":1011},"isPart":true,"type":"CPU","humanName":"Core i3-3240T"},"Core-i3-4020Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":897},"isPart":true,"type":"CPU","humanName":"Core i3-4020Y"},"Core-i7-620M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.333 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":836},"isPart":true,"type":"CPU","humanName":"Core i7-620M"},"Xeon-X5550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":1838},"isPart":true,"type":"CPU","humanName":"Xeon X5550"},"Core-i5-580M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":443,"Geekbench Multi-Core Score":783},"isPart":true,"type":"CPU","humanName":"Core i5-580M"},"Xeon-E5-2660":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":441,"Geekbench Multi-Core Score":2564},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660"},"FX-4130":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Geekbench Single-Core Score":427,"Geekbench Multi-Core Score":1118,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","TDP":"125 W","L3 Cache (Total)":"4 MiB","Release Date":"2012-08-27"},"humanName":"FX 4130","isPart":true,"type":"CPU"},"FX-6200":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Geekbench Single-Core Score":427,"Geekbench Multi-Core Score":1344,"Base Frequency":"3.8 GHz","Boost Frequency":"4.1 GHz","TDP":"125 W","Release Date":"2012-02-25"},"humanName":"FX 6200","isPart":true,"type":"CPU"},"Xeon-E5-2630":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":2242},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630"},"Xeon-E5-2640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":423,"Geekbench Multi-Core Score":2273},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640"},"Core-i7-640M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":796},"isPart":true,"type":"CPU","humanName":"Core i7-640M"},"Core-i7-920XM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":1118},"isPart":true,"type":"CPU","humanName":"Core i7-920XM"},"Xeon-E5-2430":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":415,"Geekbench Multi-Core Score":1865},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430"},"Pentium-G2020T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":410,"Geekbench Multi-Core Score":689},"isPart":true,"type":"CPU","humanName":"Pentium G2020T"},"Core-i5-560M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":406,"Geekbench Multi-Core Score":764},"isPart":true,"type":"CPU","humanName":"Core i5-560M"},"Xeon-E5-2620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":394,"Geekbench Multi-Core Score":1941},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620"},"Core-i7-840QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":391,"Geekbench Multi-Core Score":901},"isPart":true,"type":"CPU","humanName":"Core i7-840QM"},"Xeon-E5-2650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":378,"Geekbench Multi-Core Score":2320},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650"},"Core-i7-640LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz","Geekbench Single-Core Score":373,"Geekbench Multi-Core Score":673},"isPart":true,"type":"CPU","humanName":"Core i7-640LM"},"Xeon-E5-2420":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":1802},"isPart":true,"type":"CPU","humanName":"Xeon E5-2420"},"Core-i7-820QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":993},"isPart":true,"type":"CPU","humanName":"Core i7-820QM"},"Core-i5-540M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.066 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":367,"Geekbench Multi-Core Score":716},"isPart":true,"type":"CPU","humanName":"Core i5-540M"},"Core-i5-520M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":365,"Geekbench Multi-Core Score":724},"isPart":true,"type":"CPU","humanName":"Core i5-520M"},"Core-i5-480M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":363,"Geekbench Multi-Core Score":690},"isPart":true,"type":"CPU","humanName":"Core i5-480M"},"Core-i5-460M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":359,"Geekbench Multi-Core Score":700},"isPart":true,"type":"CPU","humanName":"Core i5-460M"},"Core-i7-740QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"6 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":357,"Geekbench Multi-Core Score":990},"isPart":true,"type":"CPU","humanName":"Core i7-740QM"},"Core-i5-450M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":341,"Geekbench Multi-Core Score":676},"isPart":true,"type":"CPU","humanName":"Core i5-450M"},"Core-i7-720QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":337,"Geekbench Multi-Core Score":903},"isPart":true,"type":"CPU","humanName":"Core i7-720QM"},"Core-i3-380M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":325,"Geekbench Multi-Core Score":610},"isPart":true,"type":"CPU","humanName":"Core i3-380M"},"Core-i3-370M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":320,"Geekbench Multi-Core Score":643},"isPart":true,"type":"CPU","humanName":"Core i3-370M"},"Pentium-3556U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":318,"Geekbench Multi-Core Score":520},"isPart":true,"type":"CPU","humanName":"Pentium 3556U"},"Core-i5-430M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":314,"Geekbench Multi-Core Score":642},"isPart":true,"type":"CPU","humanName":"Core i5-430M"},"FX-7500":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Geekbench Single-Core Score":314,"Geekbench Multi-Core Score":698,"Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","TDP":"20 W","GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"498 MHz","GPU Boost Frequency":"553 MHz"},"isPart":true,"humanName":"FX-7500","type":"APU"},"Pentium-4415Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-29","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":306,"Geekbench Multi-Core Score":661},"isPart":true,"type":"CPU","humanName":"Pentium 4415Y"},"Core-i3-350M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":287,"Geekbench Multi-Core Score":590},"isPart":true,"type":"CPU","humanName":"Core i3-350M"},"Pentium-3825U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12","Geekbench Single-Core Score":285,"Geekbench Multi-Core Score":572},"isPart":true,"type":"CPU","humanName":"Pentium 3825U"},"Core-i3-330M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":273,"Geekbench Multi-Core Score":584},"isPart":true,"type":"CPU","humanName":"Core i3-330M"},"Core-i3-2377M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":247,"Geekbench Multi-Core Score":494},"isPart":true,"type":"CPU","humanName":"Core i3-2377M"},"Pentium-J3710":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-11","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":200,"Geekbench Multi-Core Score":579},"isPart":true,"type":"CPU","humanName":"Pentium J3710"},"Pentium-E2140":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q2 2007","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":167,"Geekbench Multi-Core Score":276},"isPart":true,"type":"CPU","humanName":"Pentium E2140"},"APUs-CUSTOM":{"humanName":"CUSTOM APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"CUSTOM APUS","members":["Liverpool (PS4)","Durango (XB1)","Neo (PS4PRO)","Scorpio (XB1X)"]}]},"A10-9700":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"729 MHz","GPU Boost Frequency":"1029 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A10-9700","type":"APU"},"A10-9700E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","GPU Boost Frequency":"847 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A10-9700E","type":"APU"},"A12-9800":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","GPU Boost Frequency":"1108 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A12-9800","type":"APU"},"A12-9800E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"655 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A12-9800E","type":"APU"},"A6-9500":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","GPU Boost Frequency":"1029 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9500","type":"APU"},"A6-9500E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"576 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9500E","type":"APU"},"A6-9550":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"578 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9550","type":"APU"},"A8-9600":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"655 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A8-9600","type":"APU"},"Bristol-Ridge-APUs":{"humanName":"Bristol Ridge","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2016-09-05","Sockets":["AM4","FM2+"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["A6-9500","A6-9550","A8-9600","A10-9700","A12-9800"]},{"header":"Low Power SKUs","members":["A6-9500E","A10-9700E","A12-9800E"]}]},"Ryzen-3-5300GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 5300GE","isPart":true,"type":"CPU"},"Ryzen-3-PRO-5350GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-06-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 PRO 5350GE","isPart":true,"type":"CPU"},"Ryzen-5-5600GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.4 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 5600GE","isPart":true,"type":"CPU"},"Ryzen-7-5700GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5700GE","isPart":true,"type":"CPU"},"Cezanne":{"humanName":"Cezanne","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"7nm","Release Date":"2021-01-12","Sockets":["AM4"]},"sections":[{"header":"Ryzen 7","members":["Ryzen-7-5700G","Ryzen-7-5700GE","Ryzen-7-PRO-5750G","Ryzen-7-PRO-5750GE"]},{"header":"Ryzen 5","members":["Ryzen-5-5600G","Ryzen-5-5600GE","Ryzen-5-PRO-5650G","Ryzen-5-PRO-5650GE"]},{"header":"Ryzen 3","members":["Ryzen-3-5300G","Ryzen-3-5300GE","Ryzen-3-PRO-5350G","Ryzen-3-PRO-5350GE"]}]},"Athlon-5150":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5150","type":"APU"},"Athlon-5350":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"2.05 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5350","type":"APU"},"Athlon-5370":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2016-02","Core Count":4,"Thread Count":4,"Base Frequency":"2.20 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5370","type":"APU"},"Sempron-2650":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":2,"Thread Count":2,"Base Frequency":"1.45 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"64 KiB","TDP":"25 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8240","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Sempron 2650","type":"APU"},"Sempron-3850":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8280","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"450 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Sempron 3850","type":"APU"},"Kabini-APUs":{"humanName":"Kabini","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-04-09","Sockets":["AM1"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["Sempron-2650","Sempron-3850","Athlon-5150","Athlon-5350","Athlon-5370"]}]},"A10-7700K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-14","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7700K","type":"APU"},"A10-7800":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7800","type":"APU"},"A10-7850K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-14","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7850K","type":"APU"},"A10-7860K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-02-02","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"757 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7860K","type":"APU"},"A10-7870K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-05-28","Core Count":4,"Thread Count":4,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"866 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7870K","type":"APU"},"A10-7890K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-03-01","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"866 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7890K","type":"APU"},"A10-PRO-7800B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10 PRO 7800B","type":"APU"},"A10-PRO-7850B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10 PRO 7850B","type":"APU"},"A6-7400K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"756 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-7400K","type":"APU"},"A6-7470K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-02-02","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-7470K","type":"APU"},"A6-PRO-7350B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":8,"GPU Base Frequency":"514 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6 PRO 7350B","type":"APU"},"A6-PRO-7400B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"756 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6 PRO 7400B","type":"APU"},"A8-7600":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-01-07","Core Count":4,"Thread Count":4,"Base Frequency":"3.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58","A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3","Unlocked":true},"isPart":true,"humanName":"A8-7600","type":"APU"},"A8-7670K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-07-20","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"757 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-7670K","type":"APU"},"A8-PRO-7600B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8 PRO 7600B","type":"APU"},"Kaveri-APUs":{"humanName":"Kaveri","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-01-14","Sockets":["FM2+"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["A6-7400K","A6-7470K","A8-7600","A8-7650K","A8-7670K","A10-7700K","A10-7800","A10-7850K","A10-7860K","A10-7870K","A10-7890K"]},{"header":"Business SKUs","members":["A6-PRO-7350B","A6-PRO-7400B","A8-PRO-7600B","A10-PRO-7800B","A10-PRO-7850B"]}]},"A4-3300":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3300","type":"APU"},"A4-3400":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3400","type":"APU"},"A4-3420":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3420","type":"APU"},"A6-3500":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":3,"Thread Count":3,"Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"192 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3500","type":"APU"},"A6-3600":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3600","type":"APU"},"A6-3620":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3620","type":"APU"},"A6-3650":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-06-30","Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3650","type":"APU"},"A6-3670K":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3670K","type":"APU"},"A8-3800":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3800","type":"APU"},"A8-3820":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3820","type":"APU"},"A8-3850":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-06-30","Core Count":4,"Thread Count":4,"Base Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3850","type":"APU"},"A8-3870K":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3870K","type":"APU"},"E2-3200":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6370D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"E2-3200","type":"APU"},"Llano-APUs":{"humanName":"Llano","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2011-06-30","Sockets":["FM1"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["E2-3200","A4-3300","A4-3400","A4-3420","A6-3500","A6-3600","A6-3620","A6-3650","A6-3670K","A8-3800","A8-3820","A8-3850","A8-3870K"]}]},"Raven-Ridge-APUs":{"humanName":"Raven Ridge","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"14nm","Release Date":"2018-02-12","Sockets":["AM4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["Ryzen-3-2200G","Ryzen-5-2400G"]}]},"Ryzen-3-4300G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 4300G","isPart":true,"type":"CPU"},"Ryzen-3-4300GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 4300GE","isPart":true,"type":"CPU"},"Ryzen-3-PRO-4350GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 PRO 4350GE","isPart":true,"type":"CPU"},"Ryzen-5-4600GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 4600GE","isPart":true,"type":"CPU"},"Ryzen-7-4700GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 4700GE","isPart":true,"type":"CPU"},"Renoir":{"humanName":"Renoir","type":"CPU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"7nm","Release Date":"2020-07-21","Sockets":["AM4"],"DirectX Support":"12.1","Vulkan Support":"1.3"},"sections":[{"header":"Ryzen 7","members":["Ryzen-7-4700G","Ryzen-7-4700GE","Ryzen-7-PRO-4750G","Ryzen-7-PRO-4750GE"]},{"header":"Ryzen 5","members":["Ryzen-5-4600G","Ryzen-5-4600GE","Ryzen-5-PRO-4650G","Ryzen-5-PRO-4650GE"]},{"header":"Ryzen 3","members":["Ryzen-3-4300G","Ryzen-3-4300GE","Ryzen-3-PRO-4350G","Ryzen-3-PRO-4350GE"]}]},"A10-6700":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6700","type":"APU"},"A10-6700T":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"45 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8650D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6700T","type":"APU"},"A10-6790B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-10-29","Core Count":4,"Thread Count":4,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6790B","type":"APU"},"A10-6790K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-10-29","Core Count":4,"Thread Count":4,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6790K","type":"APU"},"A10-6800B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6800B","type":"APU"},"A10-6800K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6800K","type":"APU"},"A4-4000":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.0 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-4000","type":"APU"},"A4-4020":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-4020","type":"APU"},"A4-6300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6300","type":"APU"},"A4-6300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6300B","type":"APU"},"A4-6320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-12","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6320","type":"APU"},"A4-6320B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-12","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6320B","type":"APU"},"A4-7300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-07","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-7300","type":"APU"},"A4-7300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-07","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-7300B","type":"APU"},"A6-6400B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":2,"Thread Count":2,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6400B","type":"APU"},"A6-6400K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":2,"Thread Count":2,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6400K","type":"APU"},"A6-6420B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6420B","type":"APU"},"A6-6420K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6420K","type":"APU"},"A8-6500":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500","type":"APU"},"A8-6500B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500B","type":"APU"},"A8-6500T":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-09-18","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"45 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8550D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"744 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500T","type":"APU"},"A8-6600K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6600k","type":"APU"},"Richland-APUs":{"humanName":"Richland","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2013-06-04","Sockets":["FM2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-4000","A4-4020","A4-6300","A4-6300B","A4-6320","A4-6320B","A4-7300","A4-7300B","A6-6400B","A6-6400K","A6-6420B","A6-6420K","A8-6500T","A8-6500","A8-6500B","A8-6600K","A10-6700T","A10-6700","A10-6790B","A10-6790K","A10-6800K","A10-6800B"]}]},"A10-5700":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5700","type":"APU"},"A10-5800B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5800B","type":"APU"},"A10-5800K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5800K","type":"APU"},"A4-5300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-5300","type":"APU"},"A4-5300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-5300B","type":"APU"},"A6-5400B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7540D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-5400B","type":"APU"},"A6-5400K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7540D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-5400K","type":"APU"},"A8-5500":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5500","type":"APU"},"A8-5500B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5500B","type":"APU"},"A8-5600K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5600K","type":"APU"},"Trinity-APUs":{"humanName":"Trinity","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2012-10-01","Sockets":["FM2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-5300","A4-5300B","A6-5400K","A6-5400B","A8-5500","A8-5500B","A8-5600K","A10-5700","A10-5800K","A10-5800B"]}]},"APUs-DESKTOP":{"humanName":"Desktop APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN APUs","members":["Cezanne","Renoir","Raven-Ridge-APUs"]},{"header":"A-SERIES APUs","members":["Bristol-Ridge-APUs","Kaveri-APUs","Kabini-APUs","Richland-APUs","Trinity-APUs","Llano-APUs"]}]},"APUs-EMBEDDED":{"humanName":"EMBEDDED APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"G-SERIES APUs","members":["LX-Family","Prairie Falcon","Brown Falcon","Crowned Eagle","Steppe Eagle","Kabini-E","Ontario-E","Zacate-E"]},{"header":"R-SERIES APUs","members":["Trinity-E","Bald Eagle","Merlin Falcon"]}]},"A10-9600P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A10-9600P","type":"APU"},"A10-9620P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A10-9620P","type":"APU"},"A10-9630P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-9630P","type":"APU"},"A10-9700B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A10-9700B","type":"APU"},"A12-9700P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9700P","type":"APU"},"A12-9720P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9720P","type":"APU"},"A12-9730B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9730B","type":"APU"},"A12-9730P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9730P","type":"APU"},"A12-9800B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9800B","type":"APU"},"A12-9830B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9830B","type":"APU"},"A6-9500B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-9500B","type":"APU"},"A8-9600B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-9600B","type":"APU"},"A8-9630B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A8-9630B","type":"APU"},"FX-9800P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"FX-9800P","type":"APU"},"FX-9830P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"FX-9830P","type":"APU"},"Bristol-Ridge-M":{"humanName":"Bristol Ridge Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2016-06","Sockets":["FP4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A10-9600P","A10-9620P","A10-9630P","A12-9700P","A12-9720P","A12-9730P"]},{"header":"FX SKUs","members":["FX-9800P","FX-9830P"]},{"header":"Pro SKUs","members":["A6-9500B","A8-9600B","A8-9630B","A10-9700B","A12-9730B","A12-9800B","A12-9830B"]}]},"Bristol-Ridge":{"humanName":"Bristol Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"28 nm","Sockets":["AM4","FM2+"],"Foundry":"Global Foundries","Release Date":"2016-09-05"},"sections":[{"header":"7th GEN. QUAD CORE","members":["X4-970","X4-950","X4-940"]}]},"A10-8700B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8700B","type":"APU"},"A10-8700P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8700P","type":"APU"},"A10-8730B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A10-8730B","type":"APU"},"A10-8780P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-12","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.3 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8780P","type":"APU"},"A12-8800B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A12-8800B","type":"APU"},"A12-8830B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A12-8830B","type":"APU"},"A6-8500B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8500B","type":"APU"},"A6-8500P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1600 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8500P","type":"APU"},"A6-8530B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8530B","type":"APU"},"A8-8600B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-8600B","type":"APU"},"A8-8600P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-8600P","type":"APU"},"FX-8800P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"FX-8800P","type":"APU"},"Carrizo-M":{"humanName":"Carrizo Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2015-06","Sockets":["FP4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A6-8500P","A8-8600P","A10-8700P","A10-8780P"]},{"header":"FX SKUs","members":["FX-8800P"]},{"header":"Pro SKUs","members":["A6-8500B","A6-8530B","A8-8600B","A10-8700B","A10-8730B","A12-8800B","A12-8830B"]}]},"Carrizo":{"humanName":"Carrizo","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"28 nm","Sockets":["FM2+"],"Foundry":"Global Foundries","Release Date":"2016-02"},"sections":[{"header":"NSTS QUAD CORE","members":["X4-845","X4-835"]}]},"Ryzen-5-5600HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.0 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600HS","isPart":true,"type":"CPU"},"Cezanne-M":{"humanName":"Cezanne Mobile","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"7nm","Release Date":"2021-01-12","Sockets":["FP6"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-5900HS","Ryzen-9-5900HX","Ryzen-9-5980HS","Ryzen-9-5980HX"]},{"header":"Ryzen 7","members":["Ryzen-7-5800H","Ryzen-7-5800HS","Ryzen-7-5800U","Ryzen-7-PRO-5850U"]},{"header":"Ryzen 5","members":["Ryzen-5-5600H","Ryzen-5-5600HS","Ryzen-5-5600U","Ryzen-5-PRO-5650U"]},{"header":"Ryzen 3","members":["Ryzen-3-5300G","Ryzen-3-5300GE","Ryzen-3-5400U","Ryzen-3-PRO-5450U"]}]},"A10-7300":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","TDP":"20 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"464 MHz","GPU Boost Frequency":"533 MHz"},"isPart":true,"humanName":"A10-7300","type":"APU"},"A10-7350B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","TDP":"20 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"553 MHz"},"isPart":true,"humanName":"A10-7350B","type":"APU"},"A10-7400P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","TDP":"35 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"576 MHz","GPU Boost Frequency":"654 MHz"},"isPart":true,"humanName":"A10-7400P","type":"APU"},"A6-7000":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Max Memory Frequency":"1333 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","TDP":"17 W","GPU Model":"Radeon R4 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":3,"GPU Base Frequency":"494 MHz","GPU Boost Frequency":"533 MHz"},"isPart":true,"humanName":"A6-7000","type":"APU"},"A6-7050B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","TDP":"17 W","GPU Model":"Radeon R4 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":3,"GPU Base Frequency":"533 MHz"},"isPart":true,"humanName":"A6-7050B","type":"APU"},"A8-7100":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.8 GHz","Boost Frequency":"3.0 GHz","TDP":"20 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"450 MHz","GPU Boost Frequency":"514 MHz"},"isPart":true,"humanName":"A8-7100","type":"APU"},"A8-7150B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.8 GHz","Boost Frequency":"3.0 GHz","TDP":"20 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"553 MHz"},"isPart":true,"humanName":"A8-7150B","type":"APU"},"A8-7200P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","TDP":"35 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"553 MHz","GPU Boost Frequency":"626 MHz"},"isPart":true,"humanName":"A8-7200P","type":"APU"},"FX-7600P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"2133 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","TDP":"35 W","GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","GPU Boost Frequency":"686 MHz"},"isPart":true,"humanName":"FX-7600P","type":"APU"},"Kaveri-M":{"humanName":"Kaveri Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-06","Sockets":["FP3"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A6-7000","A8-7100","A8-7200P","A10-7300","A10-7400P"]},{"header":"FX SKUs","members":["FX-7500","FX-7600P"]},{"header":"Pro SKUs","members":["A6-7050B","A8-7150B","A10-7350B"]}]},"Kaveri":{"humanName":"Kaveri","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2016-03-01","Lithography":"28 nm","Sockets":["FM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":["840R","860K","870K","880K","450s"]}]},"Ryzen-3-7440U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"15-30 W","Core Count":4,"Thread Count":8,"Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","GPU Model":"Radeon 740M","GPU Base Frequency":"2500 MHz"},"humanName":"Ryzen 3 7440U","isPart":true,"type":"CPU"},"Ryzen-5-7540U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.2 GHz","Boost Frequency":"4.9 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2500 MHz"},"humanName":"Ryzen 7 7540U","isPart":true,"type":"CPU"},"Ryzen-5-7640H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.3 GHz","Boost Frequency":"5 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz","FreeSync Support":false},"humanName":"Ryzen 7 7640H","isPart":true,"type":"CPU"},"Ryzen-5-7640U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.5 GHz","Boost Frequency":"4.9 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz"},"humanName":"Ryzen 7 7640U","isPart":true,"type":"CPU"},"Ryzen-7-7840H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz","FreeSync Support":false},"humanName":"Ryzen 7 7840H","isPart":true,"type":"CPU"},"Ryzen-9-7940H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"4 GHz","Boost Frequency":"5.2 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2800 MHz","FreeSync Support":false},"humanName":"Ryzen 9 7940H","isPart":true,"type":"CPU"},"Phoenix":{"humanName":"Phoenix","type":"APU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"4nm","Release Date":"2023-05","Sockets":["FP7","FP7r2","FP8"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-7940HS","Ryzen-9-7940H"]},{"header":"Ryzen 7","members":["Ryzen-7-7840HS","Ryzen-7-7840H","Ryzen-7-7840U"]},{"header":"Ryzen 5","members":["Ryzen-5-7640HS","Ryzen-5-7640H","Ryzen-5-7640U","Ryzen-5-7540U"]},{"header":"Ryzen 3","members":["Ryzen-3-7440U"]}]},"Ryzen-3-PRO-2300U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 6","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 PRO 2300U","type":"APU"},"Raven-Ridge-M":{"humanName":"Raven Ridge Mobile","type":"APU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-02-12","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Sockets":["FP5"]},"sections":[{"header":"Standard SKUs","members":["Ryzen-3-2200U","Ryzen-3-2300U","Ryzen-5-2500U","Ryzen-7-2700U"]},{"header":"Pro SKUs","members":["Ryzen-3-PRO-2300U","Ryzen-5-PRO-2500U","Ryzen-7-PRO-2700U"]}]},"Ryzen-7-4680U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-04-13","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1500 MHz","GPU Base Frequency":"400 MHz"},"humanName":"Ryzen 7 4680U","isPart":true,"type":"APU"},"Ryzen-7-4980U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-04-13","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2 GHz","Boost Frequency":"4.4 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1950 MHz","GPU Base Frequency":"400 MHz"},"humanName":"Ryzen 7 4980U","isPart":true,"type":"APU"},"Renoir-M":{"humanName":"Renoir Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"7nm","Release Date":"2020-01-06","Sockets":["FP6"],"DirectX Support":"12.1","Vulkan Support":"1.3"},"sections":[{"header":"RYZEN 9","members":["Ryzen-9-4900H","Ryzen-9-4900HS"]},{"header":"RYZEN 7","members":["Ryzen-7-4700U","Ryzen-7-4800H","Ryzen-7-4800HS","Ryzen-7-4800U","Ryzen-7-PRO-4750U"]},{"header":"RYZEN 5","members":["Ryzen-5-4500U","Ryzen-5-4600H","Ryzen-5-4600HS","Ryzen-5-4600U","Ryzen-5-PRO-4650U"]},{"header":"RYZEN 3","members":["Ryzen-3-4300U","Ryzen-3-PRO-4450U"]}]},"Richland-M":{"humanName":"Richland Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2013-05","Sockets":["FP2","FS1r2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-5150M","A6-5350M","A6-5357M","A8-5550M","A8-5557M","A10-5750M","A10-5757M"]},{"header":"Low Power SKUs","members":["A4-5145M","A6-5345M","A8-5545M","A10-5745M"]}]},"Trinity-M":{"humanName":"Trinity Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2012-05-12","Sockets":["FP2","FS1r2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-4300M","A6-4400M","A8-4500M","A10-4600M"]},{"header":"Low Power SKUs","members":["A4-4355M","A6-4455M","A8-4555M","A10-4655M"]}]},"APUs-MOBILE":{"humanName":"Mobile APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN APUs","members":["Phoenix","Cezanne-M","Renoir-M","Raven-Ridge-M"]},{"header":"A-SERIES APUs","members":["Bristol-Ridge-M","Carrizo-M","Kaveri-M"]}]},"APUs-SERVER":{"humanName":"SERVER APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"OPTERON FAMILIES","members":["Kyoto","X3000 Series"]}]},"APUs-UlTRA-MOBILE":{"humanName":"UlTRA MOBILE APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"ULTRA MOBILE PLATFORMS","members":["Desna","Ontario","Zacate","Hondo","Kabini","Temash","Beema","Mullins","Carrizo-L","Stoney Ridge"]}]},"K5-PR120":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.090 GHz","TDP":"12.36W","Release Date":"1996-10-07"},"humanName":"K5 PR 120","isPart":true,"type":"CPU"},"K5-PR133":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.100 GHz","TDP":"13.73W","Release Date":"1996-10-07"},"humanName":"K5 PR 133","isPart":true,"type":"CPU"},"K5-PR166":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.116 GHz","TDP":"16.02W","Release Date":"1997-01-06"},"humanName":"K5 PR 166","isPart":true,"type":"CPU"},"5K86":{"humanName":"5K86","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1996-10-07","Lithography":"350 nm","Sockets":[5,7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K5-PR120","K5-PR133","K5-PR150","K5-PR166","K5-PR200"]}]},"9100e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"65 W","Release Date":"2008-03-27"},"humanName":"X4 9100e","isPart":true,"type":"CPU"},"9150e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"65 W","Release Date":"2008-06-01"},"humanName":"X4 9150e","isPart":true,"type":"CPU"},"9350e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","TDP":"65 W","Release Date":"2008-06-01"},"humanName":"X4 9350e","isPart":true,"type":"CPU"},"9450e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"65 W","Release Date":"2008-10"},"humanName":"X4 9450e","isPart":true,"type":"CPU"},"9600B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-28"},"humanName":"X4 9600B","isPart":true,"type":"CPU"},"9600BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-11-19","Unlocked":true},"humanName":"X4 9600 Black Edition","isPart":true,"type":"CPU"},"9750B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-08-15"},"humanName":"X4 9750B","isPart":true,"type":"CPU"},"9850B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"95 W","Release Date":"2008-08-15"},"humanName":"X4 9850B","isPart":true,"type":"CPU"},"9850BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"125 W","Release Date":"2008-03-27","Unlocked":true},"humanName":"X4 9850 Black Edition","isPart":true,"type":"CPU"},"9950BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"125 W","Release Date":"2008-06-01","Unlocked":true},"humanName":"X4 9950 Black Edition","isPart":true,"type":"CPU"},"Agena":{"humanName":"Agena","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-11-19","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["9600BE","9850BE","9950BE"]},{"header":"Standard SKUs","members":[9500,9550,9600,9650,9750,9850]},{"header":"Low Power SKUs","members":["9100e","9150e","9350e","9450e"]},{"header":"Buisness Class SKUs","members":["9600B","9750B","9850B"]}]},"500(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.5 GHz","TDP":"42W","Release Date":"1999-06-23"},"humanName":"Athlon 500 Argon","isPart":true,"type":"CPU"},"550(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.55 GHz","TDP":"46W","Release Date":"1999-06-23"},"humanName":"Athlon 550 Argon","isPart":true,"type":"CPU"},"600(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.6 GHz","TDP":"50W","Release Date":"1999-06-23"},"humanName":"Athlon 600 Argon","isPart":true,"type":"CPU"},"650(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.65 GHz","TDP":"54W","Release Date":"1999-08-09"},"humanName":"Athlon 650 Argon","isPart":true,"type":"CPU"},"700(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.70 GHz","TDP":"50W","Release Date":"1999-10-04"},"humanName":"Athlon 700 Argon","isPart":true,"type":"CPU"},"Argon":{"humanName":"Argon","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1999-06-23","Lithography":"250 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["500(A)","550(A)","600(A)","650(A)","700(A)"]}]},"XP-2500-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.833 GHz","TDP":"68.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 2500+ (Barton)","isPart":true,"type":"CPU"},"XP-2600-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.917 GHz","TDP":"68.3 W","Release Date":"2003-09-21"},"humanName":"Athlon XP 2600+ (Barton)","isPart":true,"type":"CPU"},"XP-2800-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.083 GHz","TDP":"68.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 2800+ (Barton)","isPart":true,"type":"CPU"},"XP-3000-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.167 GHz","TDP":"74.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 3000+ (Barton)","isPart":true,"type":"CPU"},"XP-3200-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"200 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.200 GHz","TDP":"76.8 W","Release Date":"2003-05-13"},"humanName":"Athlon XP 3200+ (Barton)","isPart":true,"type":"CPU"},"Barton":{"humanName":"Barton","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-02-10","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-2500-BAR","XP-2600-BAR","XP-2800-BAR","XP-3000-BAR","XP-3200-BAR"]}]},"X2-3250E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"22 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-Q4"},"humanName":"X2 3250E Brisbane","isPart":true,"type":"CPU"},"X2-3600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","Release Date":"2007-01"},"humanName":"X2 3600+ Brisbane","isPart":true,"type":"CPU"},"X2-4000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2006-12-5"},"humanName":"X2 4000+ Brisbane","isPart":true,"type":"CPU"},"X2-4200+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2007"},"humanName":"X2 4200+ Brisbane","isPart":true,"type":"CPU"},"X2-4400+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2006-12-05"},"humanName":"X2 4400+ Brisbane","isPart":true,"type":"CPU"},"X2-4450B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-04-28"},"humanName":"X2 4450B Brisbane","isPart":true,"type":"CPU"},"X2-4450E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-04-21"},"humanName":"X2 4450E Brisbane","isPart":true,"type":"CPU"},"X2-4600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz"},"humanName":"X2 4600+ Brisbane","isPart":true,"type":"CPU"},"X2-4800+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2006-12-05"},"humanName":"X2 4800+ Brisbane","isPart":true,"type":"CPU"},"X2-4850B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-08-18"},"humanName":"X2 4850B Brisbane","isPart":true,"type":"CPU"},"X2-4850E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-03-05"},"humanName":"X2 4850E Brisbane","isPart":true,"type":"CPU"},"X2-5000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-12-05"},"humanName":"X2 5000+ Brisbane","isPart":true,"type":"CPU"},"X2-5000+BE-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2007-09-05","Unlocked":true},"humanName":"X2 5000+ Black Edition Brisbane","isPart":true,"type":"CPU"},"X2-5000B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2008-04-28"},"humanName":"X2 5000B Brisbane","isPart":true,"type":"CPU"},"X2-5050E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2008-10-21"},"humanName":"X2 5050E Brisbane","isPart":true,"type":"CPU"},"X2-5200+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2007-10-08"},"humanName":"X2 5200+ Brisbane","isPart":true,"type":"CPU"},"X2-5200B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"X2 5200B Brisbane","isPart":true,"type":"CPU"},"X2-5400+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-01"},"humanName":"X2 5400+ Brisbane","isPart":true,"type":"CPU"},"X2-5400+BE-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-06","Unlocked":true},"humanName":"X2 5400+ Black Edition Brisbane","isPart":true,"type":"CPU"},"X2-5400B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-04-28"},"humanName":"X2 5400B Brisbane","isPart":true,"type":"CPU"},"X2-5600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2008-02"},"humanName":"X2 5600+ Brisbane","isPart":true,"type":"CPU"},"X2-5600B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2008-08-18"},"humanName":"X2 5600B Brisbane","isPart":true,"type":"CPU"},"X2-5800+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2008-04"},"humanName":"X2 5800+ Brisbane","isPart":true,"type":"CPU"},"X2-6000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Release Date":"2008-06"},"humanName":"X2 6000+ Brisbane","isPart":true,"type":"CPU"},"X2-BE-2300-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","Release Date":"2007-06-05"},"humanName":"X2 BE 2300 Brisbane","isPart":true,"type":"CPU"},"X2-BE-2350-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2007-06-05"},"humanName":"X2 BE 2350 Brisbane","isPart":true,"type":"CPU"},"X2-BE-2400-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-10-08"},"humanName":"X2 BE 2400 Brisbane","isPart":true,"type":"CPU"},"Brisbane":{"humanName":"Brisbane","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2006-12-05","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Black Edition SKUs","members":["X2-5000+BE(B)","X2-5400+BE(B)"]},{"header":"Standard SKUs","members":["X2-3600+(B)","X2-4000+(B)","X2-4200+(B)","X2-4400+(B)","X2-4600+(B)","X2-4800+(B)","X2-5000+(B)","X2-5200+(B)","X2-5400+(B)","X2-5600+(B)","X2-5800+(B)","X2-6000+(B)"]},{"header":"Low Power SKUs","members":["X2-BE-2300(B)","X2-BE-2350(B)","X2-BE-2400(B)","X2-3250E(B)","X2-4050E(B)","X2-4450E(B)","X2-4850E(B)","X2-5050E(B)"]},{"header":"Businesss Class SKUs","members":["X2-4450B(B)","X2-4850B(B)","X2-5000B(B)","X2-5200B(B)","X2-5400B(B)","X2-5600B(B)"]}]},"FX-4170":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Base Frequency":"4.2 GHz","Boost Frequency":"4.3 GHz","TDP":"125 W","L3 Cache (Total)":"8 MiB","Release Date":"2012-02-25"},"humanName":"FX 4170","isPart":true,"type":"CPU"},"FX-6120":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","TDP":"95 W","Release Date":"2012"},"humanName":"FX 6120","isPart":true,"type":"CPU"},"FX-8100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"95 W","Release Date":"2011-10-30"},"humanName":"FX 8100","isPart":true,"type":"CPU"},"Bulldozer":{"humanName":"Bulldozer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-10-12","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"OCTACORE","members":["FX-8150","FX-8120","FX-8100"]},{"header":"HEXACORE","members":["FX-6200","FX-6120","FX-6100"]},{"header":"QUAD CORE","members":["FX-4170","FX-4130","FX-4100"]}]},"550BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Unlocked":true,"Release Date":"2009-06-01"},"humanName":"X2 550 Black Edition","isPart":true,"type":"CPU"},"555BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Unlocked":true,"Release Date":"2010-01-25"},"humanName":"X2 555 Black Edition","isPart":true,"type":"CPU"},"560BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","Unlocked":true,"Release Date":"2010-09-21"},"humanName":"X2 560 Black Edition","isPart":true,"type":"CPU"},"565BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Unlocked":true,"Release Date":"2010-12-07"},"humanName":"X2 565 Black Edition","isPart":true,"type":"CPU"},"570BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Unlocked":true,"Release Date":"2011-05-03"},"humanName":"X2 570 Black Edition","isPart":true,"type":"CPU"},"B53":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2009-10"},"humanName":"X2 B53","isPart":true,"type":"CPU"},"B55":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2009-10"},"humanName":"X2 B55","isPart":true,"type":"CPU"},"B57":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2010-05-11"},"humanName":"X2 B57","isPart":true,"type":"CPU"},"B59":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Release Date":"2011"},"humanName":"X2 B59","isPart":true,"type":"CPU"},"B60":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Release Date":"2011"},"humanName":"X2 B60","isPart":true,"type":"CPU"},"Callisto":{"humanName":"Callisto","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["550BE","555BE","560BE","565BE","570BE"]},{"header":"Standard SKUs","members":[545,550]},{"header":"Business Class SKUs","members":["B53","B55","B57","B59","B60"]}]},"X4-835":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-02-02","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz"},"humanName":"X4 835","isPart":true,"type":"CPU"},"Castle-Peak":{"humanName":"Castle Peak","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-11-25","Lithography":"7 nm","Sockets":["sTRX4"]},"sections":[{"header":"THREADRIPPER","members":["3960X","3970X","3990X"]}]},"K6-2-266(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.266 GHz","TDP":"14.70W","Release Date":"1998-06-04"},"humanName":"K6-2 266 Chomper","isPart":true,"type":"CPU"},"K6-2-300(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.300 GHz","TDP":"17.20W","Release Date":"1998-06-04"},"humanName":"K6-2 300 Chomper","isPart":true,"type":"CPU"},"K6-2-333(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.333 GHz","TDP":"19W","Release Date":"1998-06-04"},"humanName":"K6-2 333 Chomper","isPart":true,"type":"CPU"},"K6-2-350(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.350 GHz","TDP":"19.95W","Release Date":"1998-10-15"},"humanName":"K6-2 350 Chomper","isPart":true,"type":"CPU"},"K6-2-366(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.366 GHz","TDP":"20.80W","Release Date":"1998-10-15"},"humanName":"K6-2 366 Chomper","isPart":true,"type":"CPU"},"K6-2-380(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.380 GHz","TDP":"20.80W","Release Date":"1998-10-15"},"humanName":"K6-2 380 Chomper","isPart":true,"type":"CPU"},"K6-2-400(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.400 GHz","TDP":"22.70W","Release Date":"1998-10-15"},"humanName":"K6-2 400 Chomper","isPart":true,"type":"CPU"},"K6-2-450(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.450 GHz","TDP":"28.40W","Release Date":"1999-03-11"},"humanName":"K6-2 450 Chomper","isPart":true,"type":"CPU"},"K6-2-475(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.475 GHz","TDP":"29.60W","Release Date":"1999-04-15"},"humanName":"K6-2 475 Chomper","isPart":true,"type":"CPU"},"K6-2-500(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.500 GHz","TDP":"20.7W","Release Date":"1999-03-11"},"humanName":"K6-2 500 Chomper","isPart":true,"type":"CPU"},"K6-2-533(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.533 GHz","TDP":"20.7W","Release Date":"1999-03-11"},"humanName":"K6-2 533 Chomper","isPart":true,"type":"CPU"},"K6-2-550(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.550 GHz","TDP":"25.0W","Release Date":"2000-02-22"},"humanName":"K6-2 550 Chomper","isPart":true,"type":"CPU"},"Chomper":{"humanName":"Chomper","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1998-06-04","Lithography":"250 nm","Sockets":["Super 7"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-2-200(C)","K6-2-233(C)","K6-2-266(C)","K6-2-300(C)","K6-2-333(C)","K6-2-350(C)","K6-2-366(C)","K6-2-380(C)","K6-2-400(C)","K6-2-427(C)","K6-2-450(C)","K6-2-475(C)","K6-2-500(C)","K6-2-533(C)","K6-2-550(C)"]}]},"2800+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"2800+ ClawHammer","isPart":true,"type":"CPU"},"3000+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3000+ ClawHammer","isPart":true,"type":"CPU"},"3200+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3200+ ClawHammer","isPart":true,"type":"CPU"},"3200+(C-1Mib)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ ClawHammer 1Mib L2","isPart":true,"type":"CPU"},"3400+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ ClawHammer","isPart":true,"type":"CPU"},"3400+(C-1Mib)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ ClawHammer 1Mib L2","isPart":true,"type":"CPU"},"3500+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ ClawHammer","isPart":true,"type":"CPU"},"3600+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3600+ ClawHammer","isPart":true,"type":"CPU"},"3700+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3700+ ClawHammer","isPart":true,"type":"CPU"},"3800+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ ClawHammer","isPart":true,"type":"CPU"},"4000+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"4000+ ClawHammer","isPart":true,"type":"CPU"},"FX-53(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!","X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz"},"humanName":"FX-53 ClawHammer","isPart":true,"type":"CPU"},"ClawHammer":{"humanName":"ClawHammer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-23","Lithography":"130 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["2800+(C)","3000+(C)","3200+(C)","3200+(C-1MiB)","3400+(C)","3400+(C-1MiB)","3600+(C)","3700+(C)"]},{"header":"Socket 939 SKUs","members":["3500+(C-939)","3800+(C-939)","4000+(C-939)"]},{"header":"FX SKUs","members":["FX-53(C)","FX-55(C)"]}]},"Colfax":{"humanName":"Colfax","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-08-13","Lithography":"12 nm","Sockets":["TR4"]},"sections":[{"header":"THREADRIPPER","members":["2990WX","2970WX","2950X","2920X"]}]},"900e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X2 900e","isPart":true,"type":"CPU"},"905e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X4 905e","isPart":true,"type":"CPU"},"910e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2010-01-25"},"humanName":"X4 910e","isPart":true,"type":"CPU"},"940BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-01-08"},"humanName":"X4 940 Black Edition","isPart":true,"type":"CPU"},"955BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-04-23"},"humanName":"X4 955 Black Edition","isPart":true,"type":"CPU"},"965BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-08-13"},"humanName":"X4 965 Black Edition","isPart":true,"type":"CPU"},"970BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2010-09-21"},"humanName":"X4 970 Black Edition","isPart":true,"type":"CPU"},"975BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2011-01-04"},"humanName":"X4 975 Black Edition","isPart":true,"type":"CPU"},"980BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.7 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2011-05-03"},"humanName":"X4 980 Black Edition","isPart":true,"type":"CPU"},"B93":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-10"},"humanName":"X4 B93","isPart":true,"type":"CPU"},"B95":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-10"},"humanName":"X4 B95","isPart":true,"type":"CPU"},"B97":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X4 B97","isPart":true,"type":"CPU"},"B99":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011 "},"humanName":"X4 B99","isPart":true,"type":"CPU"},"Deneb":{"humanName":"Deneb","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-01-08","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["940BE","955BE","965BE","970BE","975BE","980BE"]},{"header":"Standard SKUs","members":[805,810,820,830,910,920,925,945,955]},{"header":"Low Power SKUs","members":["900e","905e","910e"]},{"header":"Business Class SKUs","members":["B93","B95","B97","B99"]}]},"700e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Socket":"AM3,AM2+","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X3 700e","isPart":true,"type":"CPU"},"705e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X3 705e","isPart":true,"type":"CPU"},"715BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM2+","TDP":"95 W","Unlocked":true},"humanName":"X3 715 Black Edition","isPart":true,"type":"CPU"},"720BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W","Unlocked":true},"humanName":"X3 720 Black Edition","isPart":true,"type":"CPU"},"740BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","TDP":"95 W","Unlocked":true,"Release Date":"2009-09"},"humanName":"X3 740 Black Edition","isPart":true,"type":"CPU"},"B73":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-10"},"humanName":"X3 B73","isPart":true,"type":"CPU"},"B75":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-10"},"humanName":"X3 B75","isPart":true,"type":"CPU"},"B77":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X3 B77","isPart":true,"type":"CPU"},"Heka":{"humanName":"Heka","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-02-09","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["715BE","720BE","740BE"]},{"header":"Standard SKUs","members":[710,720]},{"header":"Low Power SKUs","members":["700e","705e"]},{"header":"Business Class SKUs","members":["B73","B75","B77"]}]},"450s":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Core Count":2,"Thread Count":2,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"1 MiB","Release Date":"2016-03-01","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W"},"humanName":"X2 450","isPart":true,"type":"CPU"},"840P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":false,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 840 (2016)","isPart":true,"type":"CPU"},"840R":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":false,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 840 (Piledriver)","isPart":true,"type":"CPU"},"860K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","TDP":"95 W"},"humanName":"X4 860K","isPart":true,"type":"CPU"},"870K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","TDP":"95 W"},"humanName":"X4 870K","isPart":true,"type":"CPU"},"880K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"2133 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","TDP":"95 W"},"humanName":"X4 880K","isPart":true,"type":"CPU"},"6500BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2009-09-08","Unlocked":true},"humanName":"X2 6500 Black Edition","isPart":true,"type":"CPU"},"7750BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-12-15","Unlocked":true},"humanName":"X2 7750 Black Edition","isPart":true,"type":"CPU"},"7850BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2009-04-28","Unlocked":true},"humanName":"X2 7850 Black Edition","isPart":true,"type":"CPU"},"Kuma":{"humanName":"Kuma","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-09-08","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["6500BE","7750BE","7850BE"]},{"header":"Standard SKUs","members":[7450,7550]}]},"2650E":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"15 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.6 GHz","Release Date":"2008-Q4"},"humanName":"2650E","isPart":true,"type":"CPU"},"2850E":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"22 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2008-Q4"},"humanName":"2850E","isPart":true,"type":"CPU"},"3500+-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2007-02-20"},"humanName":"3500+ Lima","isPart":true,"type":"CPU"},"3800+-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2007-02-20"},"humanName":"3800+ Lima","isPart":true,"type":"CPU"},"LE-1640-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"LE-1640 Lima","isPart":true,"type":"CPU"},"LE-1640B-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"LE-1640B Lima","isPart":true,"type":"CPU"},"LE-1660-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008"},"humanName":"LE-1660 Lima","isPart":true,"type":"CPU"},"Lima":{"humanName":"Lima","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-02-20","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["2650E","2850E","3500+(L)","3800+(L)","LE-1640(L)","LE-1640B(L)","LE-1660(L)"]}]},"K6-266(L)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1998-03-05","Base Frequency":"0.266 GHz","TDP":"14.55W"},"humanName":"K6 266 Little Foot","isPart":true,"type":"CPU"},"K6-300(L)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1998-03-05","Base Frequency":"0.300 GHz","TDP":"15.4W"},"humanName":"K6 300 Little Foot","isPart":true,"type":"CPU"},"Little-Foot":{"humanName":"Little Foot","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1998-03-05","Lithography":"250 nm","Sockets":[7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-266(L)","K6-300(L)"]}]},"X2-221":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"2.8 GHz","TDP":"65 W","Release Date":"2012-Q1"},"isPart":true,"type":"CPU","humanName":"X2 221"},"X4-638":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"2.7 GHz","TDP":"65 W","Release Date":"2012-02-08"},"isPart":true,"type":"CPU","humanName":"X4 638"},"X4-651K":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"3.0 GHz","TDP":"100 W","Release Date":"2012-Q1","Unlocked":true},"isPart":true,"type":"CPU","humanName":"X4 651K"},"Llano":{"humanName":"Llano","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-Q2 | 2012-Q1","Lithography":"32 nm","Sockets":["FM1"],"Foundry":"Global Foundries"},"sections":[{"header":"3rd GEN. QUAD CORE","members":["X4-651K","X4-651","X4-641","X4-638","X4-631","X2-221"]}]},"3200+(M)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"3200+ Manchester","isPart":true,"type":"CPU"},"3500+(M)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-08-01"},"humanName":"3500+ Manchester","isPart":true,"type":"CPU"},"X2-3800+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!","X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"X2 3800+ Manchester","isPart":true,"type":"CPU"},"X2-4200+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4200+ Manchester","isPart":true,"type":"CPU"},"X2-4600+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"110 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4600+ Manchester","isPart":true,"type":"CPU"},"Manchester":{"humanName":"Manchester","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-05-31","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3600+(M)","X2-3800+(M)","X2-4200+(M)","X2-4600+(M)"]}]},"Ryzen-5-3500x":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3500x","isPart":true,"type":"CPU"},"Matisse":{"humanName":"Matisse","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-07-07","Lithography":"7 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 9","members":["Ryzen-9-3950X","Ryzen-9-3900X","Ryzen-9-PRO-3900","Ryzen-9-3900XT","Ryzen-9-3900"]},{"header":"RYZEN 7","members":["Ryzen-7-3800X","Ryzen-7-3700X","Ryzen-7-3800XT","Ryzen-7-PRO-3700"]},{"header":"RYZEN 5","members":["Ryzen-5-3600X","Ryzen-5-3600","Ryzen-5-3500","Ryzen-5-3500x","Ryzen-5-PRO-3600"]}]},"K6-166(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.166 GHz","TDP":"17.2W"},"humanName":"K6 166 Model-6","isPart":true,"type":"CPU"},"K6-200(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.200 GHz","TDP":"20.0W"},"humanName":"K6 200 Model-6","isPart":true,"type":"CPU"},"K6-233(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.233 GHz","TDP":"28.3W"},"humanName":"K6 233 Model-6","isPart":true,"type":"CPU"},"Model-6":{"humanName":"Model 6","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1997-04-02","Lithography":"350 nm","Sockets":[7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-166(M6)","K6-200(M6)","K6-233(M6)"]}]},"2800+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"2800+ Newcastle","isPart":true,"type":"CPU"},"3000+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Newcastle","isPart":true,"type":"CPU"},"3000+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3000+ Newcastle","isPart":true,"type":"CPU"},"3200+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Newcastle","isPart":true,"type":"CPU"},"3200+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3200+ Newcastle","isPart":true,"type":"CPU"},"3300+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"256 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3300+ Newcastle","isPart":true,"type":"CPU"},"3400+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ Newcastle","isPart":true,"type":"CPU"},"3400+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ Newcastle","isPart":true,"type":"CPU"},"3500+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Newcastle","isPart":true,"type":"CPU"},"3800+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ Newcastle","isPart":true,"type":"CPU"},"Newcastle":{"humanName":"Newcastle","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-12-15","Lithography":"130 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["2800+(N)","3000+(N)","3200+(N)","3300+(N)","3400+(N)"]},{"header":"Socket 939 SKUs","members":["3000+(N-939)","3200+(N-939)","3400+(N-939)","3500+(N-939)","3800+(N-939)"]}]},"1000(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"1.0 GHz","TDP":"65W","Release Date":"2000-03-06"},"humanName":"Athlon 1000 Orion","isPart":true,"type":"CPU"},"900(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.9 GHz","TDP":"60W","Release Date":"2000-03-06"},"humanName":"Athlon 900 Orion","isPart":true,"type":"CPU"},"950(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.95 GHz","TDP":"62W","Release Date":"2000-03-06"},"humanName":"Athlon 950 Orion","isPart":true,"type":"CPU"},"Orion":{"humanName":"Orion","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-03-06","Lithography":"180 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["900(O)","950(O)","1000(O)"]}]},"3000+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","Release Date":"2006-05-23"},"humanName":"3000+ Orleans","isPart":true,"type":"CPU"},"3200+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"3200+ Orleans","isPart":true,"type":"CPU"},"3500+(OUL)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"35W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"3500+ Orleans Ultra Low Power","isPart":true,"type":"CPU"},"3500+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"3500+ Orleans","isPart":true,"type":"CPU"},"3800+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"3800+ Orleans","isPart":true,"type":"CPU"},"4000+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2007-02-20"},"humanName":"4000+ Orleans","isPart":true,"type":"CPU"},"LE-1600(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2007-10-08"},"humanName":"LE-1600 Orleans","isPart":true,"type":"CPU"},"LE-1620(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2007-10-08"},"humanName":"LE-1620 Orleans","isPart":true,"type":"CPU"},"LE-1640(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","Release Date":"2008-01-07"},"humanName":"LE-1640 Orleans","isPart":true,"type":"CPU"},"Orleans":{"humanName":"Orleans","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-02-20","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3000+(O)","3200+(O)","3500+(O)","3800+(O)","4000+(O)"]},{"header":"Low Power SKUs","members":["LE-1600(O)","LE-1620(O)","LE-1640(O)","3500+(OUL)"]}]},"XP-1500-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.333 GHz","TDP":"60 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1500+ (Palomino)","isPart":true,"type":"CPU"},"XP-1600-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.4 GHz","TDP":"62.8 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1600+ (Palomino)","isPart":true,"type":"CPU"},"XP-1700-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.467 GHz","TDP":"64 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1700+ (Palomino)","isPart":true,"type":"CPU"},"XP-1800-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.533 GHz","TDP":"66 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1800+ (Palomino)","isPart":true,"type":"CPU"},"XP-1900-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.6 GHz","TDP":"68 W","Release Date":"2001-11-05"},"humanName":"Athlon XP 1900+ (Palomino)","isPart":true,"type":"CPU"},"XP-2000-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.667 GHz","TDP":"70 W","Release Date":"2002-01-07"},"humanName":"Athlon XP 2000+ (Palomino)","isPart":true,"type":"CPU"},"XP-2100-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.733 GHz","TDP":"72 W","Release Date":"2002-03-13"},"humanName":"Athlon XP 2100+ (Palomino)","isPart":true,"type":"CPU"},"Palomino":{"humanName":"Palomino","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2001-10-09","Lithography":"180 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-1500-PAL","XP-1600-PAL","XP-1700-PAL","XP-1800-PAL","XP-1900-PAL","XP-2000-PAL","XP-2100-PAL"]}]},"FX-8320E":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.2 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8320E"},"FX-8370E":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8370E"},"Piledriver":{"humanName":"Piledriver","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-08-12","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"HIGH TDP OCTACORE","members":["FX-9590","FX-9370"]},{"header":"OCTACORE","members":["FX-8370","FX-8350","FX-8320","FX-8310","FX-8300"]},{"header":"LOW TDP OCTACORE","members":["FX-8370E","FX-8320E"]},{"header":"HEXACORE","members":["FX-6350","FX-6300"]},{"header":"QUAD CORE","members":["FX-4350","FX-4300"]}]},"Ryzen-5-2600E":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-10","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"45 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600E","isPart":true,"type":"CPU"},"Ryzen-5-PRO-2600":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 PRO 2600","isPart":true,"type":"CPU"},"Ryzen-7-2700E":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-10","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"4.0 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700E","isPart":true,"type":"CPU"},"Ryzen-7-PRO-2700":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 PRO 2700","isPart":true,"type":"CPU"},"Ryzen-7-PRO-2700X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.1 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 PRO 2700X","isPart":true,"type":"CPU"},"Pinnacle-Ridge":{"humanName":"Pinnacle Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-04-19","Lithography":"12 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 7","members":["Ryzen-7-PRO-2700X","Ryzen-7-2700X","Ryzen-7-PRO-2700","Ryzen-7-2700","Ryzen-7-2700E"]},{"header":"RYZEN 5","members":["Ryzen-5-2600X","Ryzen-5-PRO-2600","Ryzen-5-2600","Ryzen-5-2600E","Ryzen-5-2500X"]},{"header":"RYZEN 3","members":["Ryzen-3-2300X"]}]},"550(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.55 GHz","TDP":"31W","Release Date":"1999-11-29"},"humanName":"Athlon 550 Pluto","isPart":true,"type":"CPU"},"600(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.6 GHz","TDP":"34W","Release Date":"1999-11-29"},"humanName":"Athlon 600 Pluto","isPart":true,"type":"CPU"},"650(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.65 GHz","TDP":"36W","Release Date":"1999-11-29"},"humanName":"Athlon 650 Pluto","isPart":true,"type":"CPU"},"700(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.7 GHz","TDP":"39W","Release Date":"1999-11-29"},"humanName":"Athlon 700 Pluto","isPart":true,"type":"CPU"},"750(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.75 GHz","TDP":"40W","Release Date":"1999-11-29"},"humanName":"Athlon 750 Pluto","isPart":true,"type":"CPU"},"800(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.8 GHz","TDP":"48W","Release Date":"2000-01-06"},"humanName":"Athlon 800 Pluto","isPart":true,"type":"CPU"},"850(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.85 GHz","TDP":"50W","Release Date":"2000-02-11"},"humanName":"Athlon 850 Pluto","isPart":true,"type":"CPU"},"Pluto":{"humanName":"Pluto","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-03-06","Lithography":"180 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["550(P)","600(P)","650(P)","700(P)","750(P)","800(P)","850(P)"]}]},"600e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X4 600e","isPart":true,"type":"CPU"},"605e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X4 605e","isPart":true,"type":"CPU"},"610e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"45 W","Release Date":"2010-05-11"},"humanName":"X4 610e","isPart":true,"type":"CPU"},"615e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"45 W","Release Date":"2010-09-21"},"humanName":"X4 615e","isPart":true,"type":"CPU"},"620e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","Release Date":"2011-05-03"},"humanName":"X4 620e","isPart":true,"type":"CPU"},"Propus-Athlon":{"humanName":"Propus","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[620,630,635,640,645,650]},{"header":"Low Power SKUs","members":["600e","605e","610e","615e","620e"]}]},"Propus":{"humanName":"Propus","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-01-04","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[840,850]}]},"400e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X3 400e","isPart":true,"type":"CPU"},"405e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X3 405e","isPart":true,"type":"CPU"},"415e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"45 W","Release Date":"2010-05-11"},"humanName":"X3 415e","isPart":true,"type":"CPU"},"420e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","Release Date":"2009-09-21"},"humanName":"X3 420e","isPart":true,"type":"CPU"},"425e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"45 W","Release Date":"2011-05-03"},"humanName":"X3 425e","isPart":true,"type":"CPU"},"Rana":{"humanName":"Rana","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[425,435,440,445,450,455,460]},{"header":"Low Power SKUs","members":["400e","405e","415e","420e","425e"]}]},"Raphael":{"humanName":"Raphael","type":"CPU Architecture","isPart":false,"topHeader":"SELECT CPU:","data":{"Release Date":"2022-09-27","Lithography":"5 nm","Sockets":["AM5"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-7950X3D","Ryzen-9-7950X","Ryzen-9-7900X3D","Ryzen-9-7900X","Ryzen-9-7900"]},{"header":"Ryzen 7","members":["Ryzen-7-7800X3D","Ryzen-7-7700X","Ryzen-7-7700"]},{"header":"Ryzen 5","members":["Ryzen-5-7600X","Ryzen-5-7600"]}]},"210e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","L2 Cache (Total)":"1 MiB","Release Date":"2010-09-21"},"humanName":"X2 210e","isPart":true,"type":"CPU"},"235e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 235e","isPart":true,"type":"CPU"},"240e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 240e","isPart":true,"type":"CPU"},"245e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 245e","isPart":true,"type":"CPU"},"250e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 250e","isPart":true,"type":"CPU"},"250u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.6 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 250u","isPart":true,"type":"CPU"},"260u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 260u","isPart":true,"type":"CPU"},"270u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 270u","isPart":true,"type":"CPU"},"B22":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 B22","isPart":true,"type":"CPU"},"B24":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 B24","isPart":true,"type":"CPU"},"B26":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 B26","isPart":true,"type":"CPU"},"B28":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-12-07"},"humanName":"X2 B28","isPart":true,"type":"CPU"},"B30":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2011"},"humanName":"X2 B30","isPart":true,"type":"CPU"},"Regor-Athlon":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-02","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[215,220,240,245,250,255,260,265,270,280]},{"header":"Low Power SKUs","members":["210e","235e","240e","245e","250e"]},{"header":"Ultra Low Power SKUs","members":["250u","260u","270u"]},{"header":"Business Class SKUs","members":["B22","B24","B26","B28","B30"]}]},"Regor-Sempron":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"Q3 2010","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[180,190]}]},"Regor":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[511,521]}]},"370K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","TDP":"65 W","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Unlocked":true},"humanName":"X2 370K","isPart":true,"type":"CPU"},"760K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":4,"Thread Count":4,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.8 GHz","Boost Frequency":"4.1 GHz","TDP":"100 W","Unlocked":true},"humanName":"X4 760K","isPart":true,"type":"CPU"},"Richland-Sempron":{"humanName":"Richland","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2013-06","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[240]}]},"Richland":{"humanName":"Richland","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2013-06","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[750,"760K",350,"370K"]}]},"K5-PR100":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.100 GHz","TDP":"15.49W","Release Date":"1996-06-17"},"humanName":"K5 PR 100","isPart":true,"type":"CPU"},"K5-PR75":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.075 GHz","TDP":"11.16W","Release Date":"1996-03-27"},"humanName":"K5 PR 75","isPart":true,"type":"CPU"},"K5-PR90":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.090 GHz","TDP":"13.93W","Release Date":"1996-03-27"},"humanName":"K5 PR 90","isPart":true,"type":"CPU"},"SSA5":{"humanName":"SSA5","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1996-03-27","Lithography":"350 nm","Sockets":[5,7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K5-PR75","K5-PR90","K5-PR100"]}]},"3500+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ San Diego","isPart":true,"type":"CPU"},"3700+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3700+ San Diego","isPart":true,"type":"CPU"},"4000+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"4000+ San Diego","isPart":true,"type":"CPU"},"FX-55(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"104W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz"},"humanName":"FX-55 San-Diego","isPart":true,"type":"CPU"},"FX-57(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"104W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz"},"humanName":"FX-57 San-Diego","isPart":true,"type":"CPU"},"San-Diego":{"humanName":"San Diego","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2004-05-04","Lithography":"90 nm","Sockets":["939"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3500+(S)","3700+(S)","4000+(S)","FX-55(S)","FX-57(S)"]}]},"160u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","TDP":"20 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2009-10-20"},"humanName":"160u","isPart":true,"type":"CPU"},"170u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","TDP":"20 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2010-05-11"},"humanName":"170u","isPart":true,"type":"CPU"},"Sargas-Sempron":{"humanName":"Sargas","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-07","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[130,140,145,150]}]},"Sargas":{"humanName":"Sargas","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Ultra Low Power SKUs","members":["160u","170u"]}]},"K6-III-400(S)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.400 GHz","TDP":"18.1W","Release Date":"1999-02-26"},"humanName":"K6-III 400 Sharptooth","isPart":true,"type":"CPU"},"K6-III-450(S)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.450 GHz","TDP":"20.2W","Release Date":"1999-05-13"},"humanName":"K6-III 450 Sharptooth","isPart":true,"type":"CPU"},"Sharptooth":{"humanName":"Sharptooth","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1999-02-22","Lithography":"250 nm","Sockets":["Super 7"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-III-333(S)","K6-III-400(S)","K6-III-450(S)"]}]},"FX-51(S)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"940'","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"FX-51 SlegeHammer","isPart":true,"type":"CPU"},"FX-53(S)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"940'","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"FX-53 SlegeHammer","isPart":true,"type":"CPU"},"SledgeHammer":{"humanName":"SledgeHammer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-23","Lithography":"130 nm","Sockets":[940],"Foundry":"AMD Foundries"},"sections":[{"header":"FX SKUs","members":["FX-51(S)","FX-53(S)"]}]},"Summit-Ridge":{"humanName":"Summit Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-03-02","Lithography":"14 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 7","members":["Ryzen-7-1800X","Ryzen-7-1700X","Ryzen-7-1700"]},{"header":"RYZEN 5","members":["Ryzen-5-1600X","Ryzen-5-1600","Ryzen-5-1500X","Ryzen-5-1400"]},{"header":"RYZEN 3","members":["Ryzen-3-1300X","Ryzen-3-1200"]}]},"XP-1600-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"1.4 GHz","TDP":"48.5 W","Release Date":"2002-Q4"},"humanName":"Athlon XP 1600+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1700-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.467 GHz","TDP":"49.5 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1700+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1800-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.533 GHz","TDP":"51 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1800+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1900-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.6 GHz","TDP":"52.5 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1900+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2000-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.667 GHz","TDP":"60.3 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2000+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2100-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.733 GHz","TDP":"62.1 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2100+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2200-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.8 GHz","TDP":"67.9 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2200+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2400-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.0 GHz","TDP":"65.3 W","Release Date":"2002-08-21"},"humanName":"Athlon XP 2400+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2600-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.133 GHz","TDP":"68.3 W","Release Date":"2002-08-21"},"humanName":"Athlon XP 2600+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2700-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.167 GHz","TDP":"68.3 W","Release Date":"2002-10-01"},"humanName":"Athlon XP 2700+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2800-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.250 GHz","TDP":"74.3 W","Release Date":"2002-10-01"},"humanName":"Athlon XP 2800+ (Thoroughbred)","isPart":true,"type":"CPU"},"Thoroughbred":{"humanName":"Thoroughbred","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2002-06-10","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-1600-TBR","XP-1700-TBR","XP-1800-TBR","XP-1900-TBR","XP-2000-TBR","XP-2100-TBR","XP-2200-TBR","XP-2400-TBR","XP-2600-TBR","XP-2700-TBR","XP-2800-TBR"]}]},"XP-2000-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.667 GHz","TDP":"60.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2000+ (Thorton)","isPart":true,"type":"CPU"},"XP-2200-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.8 GHz","TDP":"62.8 W","Release Date":"2003-09"},"humanName":"Athlon XP 2200+ (Thorton)","isPart":true,"type":"CPU"},"XP-2400-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.0 GHz","TDP":"68.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2400+ (Thorton)","isPart":true,"type":"CPU"},"XP-2600-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.133 GHz","TDP":"68.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2600+ (Thorton)","isPart":true,"type":"CPU"},"XP-3100-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"200 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.2 GHz","TDP":"68.3 W","Release Date":"2003-12"},"humanName":"Athlon XP 3100+ (Thorton)","isPart":true,"type":"CPU"},"Thorton":{"humanName":"Thorton","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-01","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-2000-THT","XP-2200-THT","XP-2400-THT","XP-2600-THT","XP-3100-THT"]}]},"1065T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","TDP":"95 W","Release Date":"2010-11-07"},"humanName":"X6 1065T","isPart":true,"type":"CPU"},"Thuban":{"humanName":"Thuban","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-04-27","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["1075TBE","1090TBE","1100TBE"]},{"header":"Standard SKUs","members":["1035T","1045T","1055T","1065T","1075T"]}]},"1000B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!","E3DNow!"],"Compatible Chipsets":["AMD-760","AMD-760"],"Steppings":"A B","Base Frequency":"1.1 GHz","TDP":"63W","Release Date":"2000-08-14"},"humanName":"Athlon 1000B Thunderbird","isPart":true,"type":"CPU"},"1000C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.0 GHz","TDP":"54W","Release Date":"2000-10-31"},"humanName":"Athlon 1000C Thunderbird","isPart":true,"type":"CPU"},"1133(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.133 GHz","TDP":"66W","Release Date":"2000-08-31"},"humanName":"Athlon 1133 Thunderbird","isPart":true,"type":"CPU"},"1200B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.2 GHz","TDP":"66W","Release Date":"2000-10-17"},"humanName":"Athlon 1000B Thunderbird","isPart":true,"type":"CPU"},"1200C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.2 GHz","TDP":"54W","Release Date":"2000-10-31"},"humanName":"Athlon 1200C Thunderbird","isPart":true,"type":"CPU"},"1266(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.266 GHz","TDP":"66W"},"humanName":"Athlon 1266 Thunderbird","isPart":true,"type":"CPU"},"1300(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.3 GHz","TDP":"68W","Release Date":"2001-03-21"},"humanName":"Athlon 1300 Thunderbird","isPart":true,"type":"CPU"},"1333(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.333 GHz","TDP":"70W","Release Date":"2001-03-21"},"humanName":"Athlon 1333 Thunderbird","isPart":true,"type":"CPU"},"1400B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.4 GHz","TDP":"72W","Release Date":"2001-06-06"},"humanName":"Athlon 1400B Thunderbird","isPart":true,"type":"CPU"},"1400C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.4 GHz","TDP":"72W","Release Date":"2001-06-06"},"humanName":"Athlon 1400C Thunderbird","isPart":true,"type":"CPU"},"600(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.6 GHz","TDP":"38W","Release Date":"2000-06-05"},"humanName":"Athlon 600 Thunderbird","isPart":true,"type":"CPU"},"650(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.65 GHz","TDP":"38W","Release Date":"2000-06-05"},"humanName":"Athlon 650 Thunderbird","isPart":true,"type":"CPU"},"700(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.7 GHz","TDP":"40W","Release Date":"2000-06-05"},"humanName":"Athlon 700 Thunderbird","isPart":true,"type":"CPU"},"750(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.75 GHz","TDP":"43W","Release Date":"2000-06-05"},"humanName":"Athlon 750 Thunderbird","isPart":true,"type":"CPU"},"800(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.8 GHz","TDP":"45W","Release Date":"2000-06-05"},"humanName":"Athlon 800 Thunderbird","isPart":true,"type":"CPU"},"850(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.85 GHz","TDP":"47W","Release Date":"2000-06-05"},"humanName":"Athlon 850 Thunderbird","isPart":true,"type":"CPU"},"900(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.9 GHz","TDP":"50W","Release Date":"2000-06-05"},"humanName":"Athlon 900 Thunderbird","isPart":true,"type":"CPU"},"950(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.95 GHz","TDP":"52W","Release Date":"2000-06-05"},"humanName":"Athlon 950 Thunderbird","isPart":true,"type":"CPU"},"Thunderbird":{"humanName":"Thunderbird","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-06-05","Lithography":"180 nm","Sockets":["A","Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"200MHZ FSB SKUs","members":["600(T)","650(T)","700(T)","750(T)","800(T)","850(T)","900(T)","950(T)","1000B(T)","1100(T)","1200B(T)","1300(T)","1400B(T)"]},{"header":"266MHZ FSB SKUs","members":["1000C(T)","1133(T)","1200C(T)","1266(T)","1333(T)","1400C(T)"]}]},"3700+(T)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"3700+ Toledo","isPart":true,"type":"CPU"},"4000+(T)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"4000+ Toledo","isPart":true,"type":"CPU"},"FX-60":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","Release Date":"2005-05-31"},"humanName":"FX-60","isPart":true,"type":"CPU"},"X2-3800+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"X2 3800+ Toledo","isPart":true,"type":"CPU"},"X2-4200+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4200+ Toledo","isPart":true,"type":"CPU"},"X2-4400+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4400+ Toledo","isPart":true,"type":"CPU"},"X2-4600+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4600+ Toledo","isPart":true,"type":"CPU"},"X2-4800+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4800+ Toledo","isPart":true,"type":"CPU"},"Toledo":{"humanName":"Toledo","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-05-31","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3800+(T)","X2-4200+(T)","X2-4400+(T)","X2-4600+(T)","X2-4800+(T)","FX-60"]}]},"8250e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","TDP":"65 W","Release Date":"2008-09-08"},"humanName":"X3 8250e","isPart":true,"type":"CPU"},"8450e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"65 W","Release Date":"2008-09-08"},"humanName":"X3 8450e","isPart":true,"type":"CPU"},"8600B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-28"},"humanName":"X3 8600B","isPart":true,"type":"CPU"},"8750B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-09-15"},"humanName":"X3 8750B","isPart":true,"type":"CPU"},"8750BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-09-08","Unlocked":true},"humanName":"X3 8750 Black Edition","isPart":true,"type":"CPU"},"Toliman":{"humanName":"Toliman","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-03-27","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["8750BE"]},{"header":"Standard SKUs","members":[8400,8450,8500,8550,8600,8650,8750,8850]},{"header":"Low Power SKUs","members":["8250e","8450e"]},{"header":"Buisness Class SKUs","members":["8600B","8750B"]}]},"X2-340":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":2,"Core Count":2,"Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"1 MiB","TDP":"100 W","Release Date":"2012-10-01"},"isPart":true,"type":"CPU","humanName":"X2 340"},"X4-740":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":4,"Core Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","TDP":"65 W","Release Date":"2012-10-01"},"isPart":true,"type":"CPU","humanName":"X4 740"},"X4-750K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":4,"Core Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"100 W","Release Date":"2012-10-01","Unlocked":true},"isPart":true,"type":"CPU","humanName":"X4 750K"},"Trinity-Sempron":{"humanName":"Trinity","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-10-01","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"4th GEN. DUAL CORE","members":[240]}]},"Trinity":{"humanName":"Trinity","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-10-01","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"4th GEN. QUAD CORE","members":["X4-750K","X4-740","X2-340"]}]},"4228HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4228HE"},"4230HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.9 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2012-05-01","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4230HE"},"4256EE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"1.6 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"35 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4256EE"},"4274HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4274HE"},"4276HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2012-05-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4276HE"},"1500+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"9W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.0 GHz"},"humanName":"1500+ Venice","isPart":true,"type":"CPU"},"3000+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Venice","isPart":true,"type":"CPU"},"3000+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"51W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3000+ Venice","isPart":true,"type":"CPU"},"3200+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Venice","isPart":true,"type":"CPU"},"3200+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"59W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3200+ Venice","isPart":true,"type":"CPU"},"3400+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ Venice","isPart":true,"type":"CPU"},"3400+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ Venice","isPart":true,"type":"CPU"},"3500+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Venice","isPart":true,"type":"CPU"},"3800+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ Venice","isPart":true,"type":"CPU"},"Venice":{"humanName":"Venice","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-04-04","Lithography":"90 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["1500+(V)","3000+(V)","3200+(V)","3400+(V)"]},{"header":"Socket 939 SKUs","members":["3000+(V-939)","3200+(V-939)","3400+(V-939)","3500+(V-939)","3800+(V-939)"]}]},"Vermeer":{"humanName":"Vermeer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2020-11-05","Lithography":"7 nm","Sockets":["AM4"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-5900","Ryzen-9-5900X","Ryzen-9-5950X"]},{"header":"Ryzen 7","members":["Ryzen-7-5800","Ryzen-7-5800X","Ryzen-7-5800X3D"]},{"header":"Ryzen 5","members":["Ryzen-5-5600X","Ryzen-5-5600X3D"]}]},"Whitehaven":{"humanName":"Whitehaven","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-08-10","Lithography":"14 nm","Sockets":["TR4"]},"sections":[{"header":"THREADRIPPER","members":["1950X","1920X","1900X"]}]},"3000+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Winchester","isPart":true,"type":"CPU"},"3200+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Winchester","isPart":true,"type":"CPU"},"3500+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Winchester","isPart":true,"type":"CPU"},"Winchester":{"humanName":"Winchester","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2004-10-14","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3000+(W)","3200+(W)","3500+(W)"]}]},"FX-62":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-11-30"},"humanName":"FX-62","isPart":true,"type":"CPU"},"FX-70":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-11-30"},"humanName":"FX-70","isPart":true,"type":"CPU"},"FX-72":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-11-30"},"humanName":"FX-72","isPart":true,"type":"CPU"},"FX-74":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2006-11-30"},"humanName":"FX-74","isPart":true,"type":"CPU"},"X2-3600+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 Kib","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-08"},"humanName":"X2 3600+ Windsor EF","isPart":true,"type":"CPU"},"X2-3800+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor","isPart":true,"type":"CPU"},"X2-3800+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor EF","isPart":true,"type":"CPU"},"X2-3800+-Windsor-UP":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"35 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor UP","isPart":true,"type":"CPU"},"X2-4000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2006-05-23"},"humanName":"X2 4000+ Windsor","isPart":true,"type":"CPU"},"X2-4000+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2007-02-20"},"humanName":"X2 4000+ Windsor EF","isPart":true,"type":"CPU"},"X2-4200+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4200+ Windsor","isPart":true,"type":"CPU"},"X2-4200+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4200+ Windsor EF","isPart":true,"type":"CPU"},"X2-4400+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4400+ Windsor","isPart":true,"type":"CPU"},"X2-4400+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4400+ Windsor EF","isPart":true,"type":"CPU"},"X2-4600+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4600+ Windsor","isPart":true,"type":"CPU"},"X2-4600+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4600+ Windsor EF","isPart":true,"type":"CPU"},"X2-4800+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4800+ Windsor","isPart":true,"type":"CPU"},"X2-4800+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4800+ Windsor","isPart":true,"type":"CPU"},"X2-5000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-05-23"},"humanName":"X2 5000+ Windsor","isPart":true,"type":"CPU"},"X2-5000+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-05-23"},"humanName":"X2 5000+ Windsor","isPart":true,"type":"CPU"},"X2-5200+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-09-06"},"humanName":"X2 5200+ Windsor","isPart":true,"type":"CPU"},"X2-5200+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2007-02-20"},"humanName":"X2 5200+ Windsor EF","isPart":true,"type":"CPU"},"X2-5400+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-12-12"},"humanName":"X2 5400+ Windsor","isPart":true,"type":"CPU"},"X2-5600+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-12-12"},"humanName":"X2 5600+ Windsor","isPart":true,"type":"CPU"},"X2-6000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2007-02-20"},"humanName":"X2 6000+ Windsor","isPart":true,"type":"CPU"},"X2-6400+BE-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2007-08-20"},"humanName":"X2 6400+ Black Edition Windsor","isPart":true,"type":"CPU"},"Windsor":{"humanName":"Windsor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2006-05-23","Lithography":"90 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3800+(W)","X2-4000+(W)","X2-4200+(W)","X2-4400+(W)","X2-4600+(W)","X2-4800+(W)","X2-5000+(W)","X2-5200+(W)","X2-5400+(W)","X2-5600+(W)","X2-6000+(W)"]},{"header":"Energy-Efficient SKUs","members":["X2-3600+(WEF)","X2-3800+(WEF)","X2-4000+(WEF)","X2-4200+(WEF)","X2-4400+(WEF)","X2-4600+(WEF)","X2-4800+(WEF)","X2-5000+(WEF)","X2-5200+(WEF)"]},{"header":"Low Power SKUs","members":["X2-3800+(WUP)"]},{"header":"Unlocked SKUs","members":["X2-6400+BE(W)","FX-62","FX-70","FX-72","FX-74"]}]},"650T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2011"},"humanName":"X4 650T","isPart":true,"type":"CPU"},"Zosma":{"humanName":"Zosma","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-09-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["960TBE"]},{"header":"Standard SKUs","members":["960T","840T","650T"]}]},"CPUs-DESKTOP":{"humanName":"Desktop CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN FAMILIES","members":["Raphael","Vermeer","Castle-Peak","Matisse","Colfax","Pinnacle-Ridge","Whitehaven","Summit-Ridge"]},{"header":"AMD FX FAMILIES","members":["Piledriver","Bulldozer"]},{"header":"PHENOM FAMILIES","members":["Thuban","Zosma","Deneb","Propus","Heka","Callisto","Regor","Agena","Toliman"]},{"header":"ATHLON FAMILIES (15H)","members":["Bristol-Ridge","Carrizo","Kaveri","Richland","Trinity"]},{"header":"ATHLON FAMILIES (K10)","members":["Propus-Athlon","Rana","Regor-Athlon","Sargas","Kuma"]},{"header":"ATHLON 64 FAMILIES","members":["Brisbane","Windsor","Toledo","Manchester","Lima","Orleans","San-Diego","Venice","Winchester","Newcastle","ClawHammer","SledgeHammer"]},{"header":"ATHLON XP FAMILIES","members":["Palomino","Thoroughbred","Barton","Thorton"]},{"header":"ATHLON FAMILIES","members":["Thunderbird","Orion","Pluto","Argon"]},{"header":"SEMPRON FAMILIES","members":["Richland-Sempron","Trinity-Sempron","Regor-Sempron","Sargas-Sempron"]},{"header":"K6 FAMILIES","members":["Sharptooth","Chomper","Little-Foot","Model-6"]},{"header":"VINTAGE FAMILIES","members":["5K86","SSA5"]}]},"CPUs-EMBEDDED":{"humanName":"Embedded CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"WAT FAMILIES","members":["Lima"]}]},"CPUs-MOBILE":{"humanName":"Mobile CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"PHENOM FAMILIES","members":["Champlain"]},{"header":"TURION FAMILIES","members":["Champlain","Geneva","Caspian","Conesus","Congo","Lion","Tyler","Trinidad","Taylor","Richmond","Lancaster"]},{"header":"ATHLON FAMILIES","members":["Champlain","Geneva","Caspian","Conesus","Congo","Sherman","Huron","Lion","Newark","Oakville","Odessa","ClawHammer"]},{"header":"V SERIES FAMILIES","members":["Champlain","Geneva"]},{"header":"SEMPRON FAMILIES","members":["Caspian","Huron","Sable","Sherman","Keene","Roma","Albany","Sonora","Georgetown","Dublin"]}]},"6366HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"1.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"16 MiB","TDP":"85 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6366HE"},"6386SE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6386SE"},"Abu-Dhabi":{"humanName":"Abu Dhabi","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-11-05","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Sixteen Core","members":["6366HE",6376,6378,6380,"6386SE"]},{"header":"Twelve Core","members":[6344,6348]},{"header":"Eight Core","members":[6320,6328]},{"header":"Quad Core","members":[6308]}]},"2344HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.7 GHz","TDP":"68 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2344HE"},"2346HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"68 W","Release Date":"2007-09-10"},"isPart":true,"type":"CPU","humanName":"2346HE"},"2347HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"68 W","Release Date":"2007-09-10"},"isPart":true,"type":"CPU","humanName":"2347HE"},"2358SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2358SE"},"2360SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2360SE"},"8346HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"79 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8346HE"},"8347HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"79 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8347HE"},"8350HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"79 W","Release Date":"2008-10"},"isPart":true,"type":"CPU","humanName":"8350HE"},"8358SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8358SE"},"8360SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8360SE"},"Barcelona":{"humanName":"Barcelona","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-09","Lithography":"65 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8346HE",8347,"8347HE",8350,"8350HE",8352,8354,8356,"8358SE","8360SE"]},{"header":"Dual Socket CPU","members":["2344HE","2346HE",2347,"2347HE",2350,"2350HE",2352,2354,2356,"2358SE","2360SE"]}]},"Budapest":{"humanName":"Budapest","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-04","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Quad core CPUs","members":[1352,1354,1356]}]},"3320EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"25 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3320EE"},"3350HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3350HE"},"Delhi":{"humanName":"Delhi","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-12-04","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core SKUs","members":[3365,3380]},{"header":"Quad Core SKUs","members":["3320EE","3350HE"]}]},"EPYC-9124":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"64 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","TDP":"200 W","Core Count":16,"Thread Count":32,"Base Frequency":"3.0 GHz","Boost Frequency":"3.6 GHz"},"humanName":"EPYC 9124","isPart":true,"type":"CPU"},"EPYC-9174F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","TDP":"320 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.1 GHz","Boost Frequency":"4.15 GHz"},"humanName":"EPYC 9174F","isPart":true,"type":"CPU"},"EPYC-9224":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"64 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"200 W","Core Count":24,"Thread Count":48,"Base Frequency":"2.5 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9224","isPart":true,"type":"CPU"},"EPYC-9254":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"128 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"200 W","Core Count":24,"Thread Count":48,"Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz"},"humanName":"EPYC 9254","isPart":true,"type":"CPU"},"EPYC-9274F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"320 W","Core Count":24,"Thread Count":48,"Base Frequency":"4.05 GHz","Boost Frequency":"4.1 GHz"},"humanName":"EPYC 9274F","isPart":true,"type":"CPU"},"EPYC-9334":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"128 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"210 W","Core Count":32,"Thread Count":64,"Base Frequency":"2.7 GHz","Boost Frequency":"3.85 GHz"},"humanName":"EPYC 9334","isPart":true,"type":"CPU"},"EPYC-9354":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"280 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.25 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9354","isPart":true,"type":"CPU"},"EPYC-9354P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"280 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.25 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9354P","isPart":true,"type":"CPU"},"EPYC-9374F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"320 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.85 GHz","Boost Frequency":"4.1 GHz"},"humanName":"EPYC 9374F","isPart":true,"type":"CPU"},"EPYC-9454":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"290 W","Core Count":48,"Thread Count":96,"Base Frequency":"2.75 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9454","isPart":true,"type":"CPU"},"EPYC-9454P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"290 W","Core Count":48,"Thread Count":96,"Base Frequency":"2.75 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9454P","isPart":true,"type":"CPU"},"EPYC-9474F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"360 W","Core Count":48,"Thread Count":96,"Base Frequency":"3.6 GHz","Boost Frequency":"3.95 GHz"},"humanName":"EPYC 9474F","isPart":true,"type":"CPU"},"EPYC-9534":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"280 W","Core Count":64,"Thread Count":128,"Base Frequency":"2.45 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9534","isPart":true,"type":"CPU"},"EPYC-9554":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"360 W","Core Count":64,"Thread Count":128,"Base Frequency":"3.1 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9554","isPart":true,"type":"CPU"},"EPYC-9554P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"360 W","Core Count":64,"Thread Count":128,"Base Frequency":"3.1 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9554P","isPart":true,"type":"CPU"},"EPYC-9634":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2688 KiB","L1 Cache (Instruction)":"2688 KiB","L2 Cache (Total)":"84 MiB","TDP":"290 W","Core Count":84,"Thread Count":168,"Base Frequency":"2.25 GHz","Boost Frequency":"3.1 GHz"},"humanName":"EPYC 9634","isPart":true,"type":"CPU"},"EPYC-9654":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"3072 KiB","L1 Cache (Instruction)":"3072 KiB","L2 Cache (Total)":"96 MiB","TDP":"360 W","Core Count":96,"Thread Count":192,"Base Frequency":"2.4 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9654","isPart":true,"type":"CPU"},"EPYC-9654P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"3072 KiB","L1 Cache (Instruction)":"3072 KiB","L2 Cache (Total)":"96 MiB","TDP":"360 W","Core Count":96,"Thread Count":192,"Base Frequency":"2.4 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9654P","isPart":true,"type":"CPU"},"Genoa":{"humanName":"Genoa","type":"CPU Architecture","isPart":false,"topHeader":"SELECT CPU:","data":{"Release Date":"2022-11-10","Lithography":"5 nm","Sockets":["SP5"]},"sections":[{"header":"EPYC","members":["EPYC-9354P","EPYC-9454P","EPYC-9554P","EPYC-9654P","EPYC-9124","EPYC-9224","EPYC-9254","EPYC-9334","EPYC-9354","EPYC-9454","EPYC-9534","EPYC-9554","EPYC-9634","EPYC-9654"]},{"header":"Epyc Frequency Optimised","members":["EPYC-9174F","EPYC-9274F","EPYC-9374F","EPYC-9474F"]}]},"6230HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"12 MiB","TDP":"85 W","Release Date":"2012-05-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6230HE"},"6262HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"1.6 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"16 MiB","TDP":"85 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6262HE"},"6282SE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6282SE"},"6284SE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","Release Date":"2012-05-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6284SE"},"Interlagos":{"humanName":"Interlagos","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-11-14","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Sixteen Core","members":["6262HE",6272,6274,6276,6278,"6282SE","6284SE"]},{"header":"Twelve Core","members":["6230HE",6234,6238]},{"header":"Eight Core","members":[6212,6220]},{"header":"Quad Core","members":[6204]}]},"2419EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"60 W","Release Date":"2009-08-31"},"isPart":true,"type":"CPU","humanName":"2419EE"},"2423HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2423HE"},"2425HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2425HE"},"2439SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2439SE"},"8419EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"60 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8419EE"},"8425HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8425HE"},"8439SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8439SE"},"Istanbul":{"humanName":"Istanbull","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-02","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8419EE",8419,8423,"8425HE",8431,8435,"8439SE"]},{"header":"Dual Socket CPU","members":["2419EE",2419,"2423HE","2425HE",2427,2431,2435,"2439SE"]}]},"4162EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","TDP":"35 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4162EE"},"4164EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","TDP":"35 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4164EE"},"4170HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4170HE"},"4171HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","TDP":"50 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4171HE"},"4174HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4174HE"},"4176HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4176HE"},"Lisbon":{"humanName":"Lisbon","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-06-23","Lithography":"45 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Six Core","members":["4162EE","4164EE","4170HE","4171HE","4174HE","4176HE",4180,4182]},{"header":"Quad Core","members":[4122,4130,4133]}]},"6124HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6124HE"},"6128HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6128HE"},"6132HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6132HE"},"6164HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6164HE"},"6166HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"85 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6166HE"},"6176SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"6 MiB","TDP":"140 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6176SE"},"6180SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"140 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6180SE"},"Magny-Cours":{"humanName":"Magny-Cours","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-03-29","Lithography":"45 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Twelve Core","members":["6164HE","6166HE",6168,6172,6172,6174,6176,"6176SE","6180SE"]},{"header":"Eight Core","members":["6124HE",6128,"6128HE","6132HE",6134,6136,6140]}]},"Epyc-7251":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2400 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7251","isPart":true,"type":"CPU"},"Epyc-7261":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2018","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX","X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC","SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"200 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7261","isPart":true,"type":"CPU"},"Epyc-7281":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7281","isPart":true,"type":"CPU"},"Epyc-7301":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7301","isPart":true,"type":"CPU"},"Epyc-7351":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7351","isPart":true,"type":"CPU"},"Epyc-7351P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7351P","isPart":true,"type":"CPU"},"Epyc-7401":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7401","isPart":true,"type":"CPU"},"Epyc-7401P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7401P","isPart":true,"type":"CPU"},"Epyc-7451":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7451","isPart":true,"type":"CPU"},"Epyc-7501":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7501","isPart":true,"type":"CPU"},"Epyc-7551":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7551","isPart":true,"type":"CPU"},"Epyc-7551P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7551P","isPart":true,"type":"CPU"},"Epyc-7601":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7601","isPart":true,"type":"CPU"},"Naples":{"humanName":"Naples","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-07-20","Lithography":"14 nm","Sockets":["SP3"],"Foundry":"Global Foundries"},"sections":[{"header":"Epyc 2P","members":["Epyc-7601","Epyc-7551","Epyc-7501","Epyc-7451","Epyc-7401","Epyc-7351","Epyc-7301","Epyc-7281","Epyc-7251","Epyc-7261","Epyc-7371"]},{"header":"Epyc 1P","members":["Epyc-7551P","Epyc-7401P","Epyc-7351P"]}]},"Epyc-7232P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7232P","isPart":true,"type":"CPU"},"Epyc-7252":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7252","isPart":true,"type":"CPU"},"Epyc-7262":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","TDP":"155 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7262","isPart":true,"type":"CPU"},"Epyc-7272":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Epyc 7272","isPart":true,"type":"CPU"},"Epyc-7282":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7282","isPart":true,"type":"CPU"},"Epyc-7302":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7302","isPart":true,"type":"CPU"},"Epyc-7302P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7302P","isPart":true,"type":"CPU"},"Epyc-7352":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7352","isPart":true,"type":"CPU"},"Epyc-7402":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7402","isPart":true,"type":"CPU"},"Epyc-7402P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7402P","isPart":true,"type":"CPU"},"Epyc-7452":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.35 GHz","Boost Frequency":"3.35 GHz","TDP":"155 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7452","isPart":true,"type":"CPU"},"Epyc-7502":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7502","isPart":true,"type":"CPU"},"Epyc-7502P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7502P","isPart":true,"type":"CPU"},"Epyc-7532":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-02-19","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","TDP":"200 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7532","isPart":true,"type":"CPU"},"Epyc-7542":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","TDP":"225 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7542","isPart":true,"type":"CPU"},"Epyc-7552":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":48,"Thread Count":96,"L2 Cache (Total)":"24 MiB","L3 Cache (Total)":"192 MiB","Base Frequency":"2.2 GHz","Boost Frequency":"3.35 GHz","TDP":"200 W","L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7552","isPart":true,"type":"CPU"},"Epyc-7642":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":48,"Thread Count":96,"L2 Cache (Total)":"24 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","TDP":"225 W","L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7642","isPart":true,"type":"CPU"},"Epyc-7662":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-02-19","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2 GHz","Boost Frequency":"3.3 GHz","TDP":"225 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7662","isPart":true,"type":"CPU"},"Epyc-7702":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.25 GHz","Boost Frequency":"3.4 GHz","TDP":"225 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7702","isPart":true,"type":"CPU"},"Epyc-7702P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2 GHz","Boost Frequency":"3.35 GHz","TDP":"200 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7702P","isPart":true,"type":"CPU"},"Epyc-7F32":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","TDP":"180 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7F32","isPart":true,"type":"CPU"},"Epyc-7F52":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","TDP":"240 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7F52","isPart":true,"type":"CPU"},"Epyc-7F72":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"192 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","TDP":"240 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7F72","isPart":true,"type":"CPU"},"Epyc-7H12":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-09-18","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","TDP":"280 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7H12","isPart":true,"type":"CPU"},"Rome":{"humanName":"Rome","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-08-07","Lithography":"7 nm","Sockets":["SP3"],"Foundry":"Global Foundries"},"sections":[{"header":"Epyc 2P","members":["Epyc-7252","Epyc-7262","Epyc-7272","Epyc-7282","Epyc-7302","Epyc-7352","Epyc-7402","Epyc-7452","Epyc-7502","Epyc-7532","Epyc-7542","Epyc-7552","Epyc-7642","Epyc-7662","Epyc-7702","Epyc-7742"]},{"header":"Epyc 1P","members":["Epyc-7232P","Epyc-7302P","Epyc-7402P","Epyc-7502P","Epyc-7702P"]},{"header":"Epyc HPC-Optimized","members":["Epyc-7H12"]},{"header":"Epyc Frequency-Optimized","members":["Epyc-7F32","Epyc-7F52","Epyc-7F72"]}]},"4310EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"35 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"4310EE"},"4332HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4332HE"},"4365EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"40 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4365EE"},"4376HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4376HE"},"Seoul":{"humanName":"Seoul","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-12-04","Lithography":"32 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core SKUs","members":["4365EE","4376HE",4386]},{"header":"Six Core SKUs","members":["4332HE",4334,4340]},{"header":"Quad Core SKUs","members":["4310EE"]}]},"2372HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2372HE"},"2373EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"60 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2373EE"},"2374HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2374HE"},"2376HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2376HE"},"2377EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"60 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2377EE"},"2379HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2379HE"},"2381HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2381HE"},"2386SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2386SE"},"2393SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"3.1 GHz","TDP":"137 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2393SE"},"8374HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"8374HE"},"8376HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"8376HE"},"8379HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8379HE"},"8381HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8381HE"},"8386SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8386SE"},"8393SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"3.1 GHz","TDP":"137 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8393SE"},"Shanghai":{"humanName":"Shanghai","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-11-13","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8374HE","8376HE",8378,"8379HE",8380,"8381HE",8382,8384,"8386SE",8387,8389,"8393SE"]},{"header":"Dual Socket CPU","members":["2372HE","2373EE","2374HE",2376,"2376HE","2377EE",2378,"2379HE",2380,"2381HE",2382,2384,"2386SE",2387,2389,"2393SE"]}]},"EPYC-Embedded-3101":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3101","isPart":true,"type":"CPU"},"EPYC-Embedded-3151":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"2.9 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3151","isPart":true,"type":"CPU"},"EPYC-Embedded-3201":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"30 W","Core Count":8,"Thread Count":8,"Base Frequency":"1.5 GHz","Boost Frequency":"3.1 GHz","Max Memory Frequency":"2133 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3201","isPart":true,"type":"CPU"},"EPYC-Embedded-3251":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"30 W","Core Count":8,"Thread Count":8,"Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","Max Memory Frequency":"2133 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3251","isPart":true,"type":"CPU"},"EPYC-Embedded-3301":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":12,"Thread Count":12,"Base Frequency":"2.0 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3301","isPart":true,"type":"CPU"},"EPYC-Embedded-3351":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"80 W","Core Count":12,"Thread Count":24,"Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3351","isPart":true,"type":"CPU"},"EPYC-Embedded-3401":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1,024 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"85 W","Core Count":16,"Thread Count":16,"Base Frequency":"1.85 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3401","isPart":true,"type":"CPU"},"EPYC-Embedded-3451":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1,024 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"100 W","Core Count":16,"Thread Count":32,"Base Frequency":"2.15 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3451","isPart":true,"type":"CPU"},"Snowy-Owl":{"humanName":"Snowy Owl","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-02-21","Lithography":"14nm","Sockets":["SP4","SP4r2"],"Foundry":"Global Foundries"},"sections":[{"header":"EPYC Embedded","members":["EPYC-Embedded-3101","EPYC-Embedded-3151","EPYC-Embedded-3201","EPYC-Embedded-3251","EPYC-Embedded-3301","EPYC-Embedded-3351","EPYC-Embedded-3401","EPYC-Embedded-3451"]}]},"Suzuka":{"humanName":"Suzuka","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Quad core CPUs","members":[1381,1385,1389]}]},"Valencia":{"humanName":"Valencia","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-11-14","Lithography":"32 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core","members":["4256EE","4274HE","4276HE",4280,4284]},{"header":"Six Core","members":[4226,"4228HE","4230HE",4234,4238,4240]}]},"6338P":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","TDP":"99 W","L3 Cache (Total)":"16 MiB","Release Date":"2014-01-22","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6338P"},"6370P":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","TDP":"99 W","L3 Cache (Total)":"16 MiB","Release Date":"2014-01-22","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.0 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"16 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6370P"},"Warsaw":{"humanName":"Warsaw","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2014-01-22","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Low Power","members":["6338P","6370P"]}]},"3250HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","Release Date":"2012-03-20","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3250HE"},"3260HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","Release Date":"2012-03-20","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3260HE"},"Zurich":{"humanName":"Zurich","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-03-20","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core","members":[3280]},{"header":"Four Core","members":["3250HE","3260HE"]}]},"CPUs-SERVER":{"humanName":"Server CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"ZEN EPYC FAMILIES","members":["Genoa","Rome","Naples"]},{"header":"ZEN EPYC EMBEDDED FAMILIES","members":["Snowy-Owl"]},{"header":"PILEDRIVER OPTERON FAMILIES","members":["Warsaw","Abu-Dhabi","Seoul","Delhi"]},{"header":"BULLDOZER OPTERON FAMILIES","members":["Interlagos","Valencia","Zurich"]},{"header":"K10 OPTERON FAMILIES","members":["Magny-Cours","Lisbon","Istanbul","Shanghai","Suzuka","Barcelona","Budapest"]}]},"HD-4250":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV620","Codename":"RV620 LE","Release Date":"2009-02-25","Die Size":"67 mm","Shader Processor Count":40,"Texture Mapping Unit Count":4,"Render Output Unit Count":4,"GPU Base Frequency":"594 MHz","VRAM Frequency":"792 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"25 W","FP32 Compute":"47.52 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4250"},"HD-4350-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"No","GPU":"RV710","Codename":"RV710","Release Date":"2008-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1300 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"10.40 GB/s","TDP":"20 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4350 AGP"},"HD-4350":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2008-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"20 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4350"},"HD-4520":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-12-02","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4520"},"HD-4550":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1310 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"10.48 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4550"},"HD-4570-Rebrand":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV635","Codename":"RV635 PRO","Release Date":"2009-11-22","Die Size":"135 mm","Shader Processor Count":120,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"796 MHz","VRAM Frequency":"792 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.67 GB/s","TDP":"65 W"},"isPart":true,"type":"Graphics Card","humanName":"HD 4570 Rebrand"},"HD-4570":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"8 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4570"},"HD-4650-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 PRO","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.80 GB/s","TDP":"48 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4650 AGP"},"HD-4650":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 PRO","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1400 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"22.40 GB/s","TDP":"48 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4650"},"HD-4670-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2007-07-17","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670 AGP"},"HD-4670-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":640,"Texture Mapping Unit Count":64,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1400 MT/s","VRAM Capacity":"512 MiB (per GPU)","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"22.40 GB/s","TDP":"118 W","FP32 Compute":"960 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670 X2"},"HD-4670":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670"},"HD-4700":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2010-02-11","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.80 GB/s","TDP":"50 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4700"},"HD-4710":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-09-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4710"},"HD-4730":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 CE","Release Date":"2008-06-08","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"110 W","FP32 Compute":"960 GFLOPS","FP64 Compute":"192 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4730"},"HD-4780":{"data":{"Architecture":"TeraScale 1","Lithography":"40 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV740","Codename":"RV740","Release Date":"2009-04-28","Die Size":"137 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"730 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"51.20 GB/s","TDP":"80 W","FP32 Compute":"960 GFLOPS","FP64 Compute":"192 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4780"},"HD-4810":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 CE","Release Date":"2009-05-28","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"625 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"95 W","FP32 Compute":"800 GFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4810"},"HD-4830":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 LE","Release Date":"2008-10-21","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"575 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"95 W","FP32 Compute":"736 GFLOPS","FP64 Compute":"147.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4830"},"HD-4850-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"R700","Codename":"R700 PRO","Release Date":"2008-11-07","Die Size":"256 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1990 MT/s","VRAM Capacity":"512 MiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"63.38 GB/s","TDP":"250 W","FP32 Compute":"2000 GFLOPS","FP64 Compute":"400 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4850 X2"},"HD-4850":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2008-06-25","Die Size":"256 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1986 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"63.55 GB/s","TDP":"110 W","FP32 Compute":"1000 GFLOPS","FP64 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4850"},"HD-4855":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2010-01-03","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"575 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"110 W","FP32 Compute":"736 GFLOPS","FP64 Compute":"147.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4855"},"HD-4860":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV790","Codename":"RV790 GT","Release Date":"2009-09-09","Die Size":"282 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3000 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"130 W","FP32 Compute":"896 GFLOPS","FP64 Compute":"179.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4860"},"HD-4870-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"R700","Codename":"R700 XT","Release Date":"2008-08-12","Die Size":"256 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"700 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"286 W","FP32 Compute":"2.400 TFLOPS","FP64 Compute":"400 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4870 X2"},"HD-4870":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2008-06-25","Die Size":"256 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"150 W","FP32 Compute":"1.200 TFLOPS","FP64 Compute":"240 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4870"},"HD-4890":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV790","Codename":"RV790 XT","Release Date":"2009-04-02","Die Size":"282 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"3900 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"124.8 GB/s","TDP":"190 W","FP32 Compute":"1.360 TFLOPS","FP64 Compute":"272 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4890"},"HD4000":{"humanName":"HD 4000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"55 nm","DirectX Support":"10.1","Release Date":"2008-06-16"},"sections":[{"header":"ENTHUSIAST","members":["HD-4890","HD-4870-X2","HD-4850-X2"]},{"header":"HIGH END","members":["HD-4870","HD-4860","HD-4855","HD-4850","HD-4830","HD-4670-X2"]},{"header":"MID RANGE","members":["HD-4810","HD-4770","HD-4750","HD-4730","HD-4710","HD-4700","HD-4670-AGP","HD-4670","HD-4650-AGP","HD-4650"]},{"header":"ENTRY LEVEL","members":["HD-4570-Rebrand","HD-4570","HD-4550","HD-4520","HD-4350-AGP","HD-4350","HD-4250"]}]},"HD-5470":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2012-02","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5470"},"HD-5490":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2012-10","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"8 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5490"},"HD-5530":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2011-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"9.6 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5530"},"HD-5550":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood PRO2","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"550 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"51.2 GB/s","TDP":"39 W","FP32 Compute":"352 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5550"},"HD-5610":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2011-05-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"16 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5610"},"HD-5630":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood LE","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"780 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"12.48 GB/s","TDP":"64 W","FP32 Compute":"416 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5630"},"HD-5690":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-02","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"2000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5690"},"HD-5770-X2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2010-10-13","Die Size":"166 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"180 W","FP32 Compute":"2.720 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 X2"},"HD5000":{"humanName":"HD 5000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"40 nm","DirectX Support":"11.0","Release Date":"2009-09-10"},"sections":[{"header":"ENTHUSIAST","members":["HD-5970-2GiB","HD-5970-1GiB"]},{"header":"HIGH END","members":["HD-5870-Eyefinity-6","HD-5870-2GiB","HD-5870-1GiB","HD-5850-2GiB","HD-5850-1GiB","HD-5830"]},{"header":"MID RANGE","members":["HD-5770-X2","HD-5770-1GiB","HD-5770-512MiB","HD-5750-1GiB","HD-5750-512MiB","HD-5730","HD-5690","HD-5670-2GiB","HD-5670-1GiB","HD-5670-512MiB"]},{"header":"ENTRY LEVEL","members":["HD-5630","HD-5610","HD-5570-2GiB-DDR3","HD-5570","HD-5570-512","HD-5570-GDDR3","HD-5570-Turks","HD-5550","HD-5530","HD-5490","HD-5470","HD-5450-2GiB-DDR3","HD-5450-1GiB-DDR3","HD-5450-1GiB-DDR2","HD-5450-512MiB-DDR3","HD-5450-512MiB-DDR2"]}]},"HD-6930-1GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cayman","Codename":"Cayman CE","Release Date":"2011-12","Die Size":"389 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"750 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"186 W","FP32 Compute":"1.920 TFLOPS","FP64 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6930 1GiB"},"HD-6930-2GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cayman","Codename":"Cayman CE","Release Date":"2011-12","Die Size":"389 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"750 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"186 W","FP32 Compute":"1.920 TFLOPS","FP64 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6930 2GiB"},"HD6000":{"humanName":"HD 6000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"40 nm","DirectX Support":"11.0","Release Date":"2010-10"},"sections":[{"header":"ENTHUSIAST","members":["HD-6990"]},{"header":"HIGH END","members":["HD-6970","HD-6950-2GiB","HD-6950-1GiB","HD-6930-2GiB","HD-6930-1GiB","HD-6870-2GiB","HD-6870-1GiB","HD-6850"]},{"header":"MID RANGE","members":["HD-6790","HD-6770-512MiB"]},{"header":"ENTRY LEVEL","members":["HD-6670-2GiB","HD-6670-1GiB","HD-6670-512MiB-DDR3","HD-6570","HD-6570-DDR3","HD-6450-2GiB","HD-6450-1GiB","HD-6450-512MiB-DDR3","HD-6350"]}]},"HD-7870XT":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti LE","Release Date":"2011-11-19","Die Size":"352 mm","Shader Processor Count":1536,"Texture Mapping Unit Count":96,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","GPU Boost Frequency":"975 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"192 GB/s","TDP":"185 W","FP32 Compute":"2.842 TFLOPS","FP64 Compute":"710 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7870XT"},"HD-7950Boost":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti Pro2","Release Date":"2012-08-14","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"225 W","FP32 Compute":"3.046 TFLOPS","FP64 Compute":"762 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7950 Boost Edition"},"HD-7970GHz-3GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2012-06-22","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 GHz Edition (3GiB)"},"HD-7970GHz-6GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2012-06-22","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"6 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 GHz Edition (6GiB)"},"HD7000":{"humanName":"HD 7000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2012-01-09"},"sections":[{"header":"ENTHUSIAST","members":["HD-7990"]},{"header":"HIGH END","members":["HD-7970GHz-6GiB","HD-7970GHz-3GiB","HD-7970-6GiB","HD-7970-3GiB","HD-7950Boost","HD-7950"]},{"header":"MID RANGE","members":["HD-7870XT","HD-7870","HD-7850-2GiB","HD-7850-1GiB"]},{"header":"ENTRY LEVEL","members":["HD-7790-2GiB","HD-7790-1GiB","HD-7770-2GiB","HD-7770-1GiB","HD-7750-4GiB-DDR3","HD-7750-2GiB-DDR3","HD-7750-2GiB","HD-7750-1GiB-DDR3","HD-7750-1GiB","HD-7730-2GiB","HD-7730","HD-7730-DDR3"]}]},"HD-8350-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cedar","Codename":"Cedar","Release Date":"2013","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"500 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8350 (DDR2)"},"HD-8350-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cedar","Codename":"Cedar","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"500 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8350 (DDR3)"},"HD-8450-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1066 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"8.53 GB/s","TDP":"18 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8450 (DDR3)"},"HD-8470":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"25.6 GB/s","TDP":"35 W","FP32 Compute":"240 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8470"},"HD-8490":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"875 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"28.8 GB/s","TDP":"35 W","FP32 Compute":"280 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8490"},"HD-8670":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"86 W","FP32 Compute":"768 GFLOPS","FP64 Compute":"48 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8670"},"HD-8730":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-11-05","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"44.8 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8730"},"HD-8770":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2013","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8770"},"HD-8870":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"150 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8870"},"HD-8970":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"225 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8970"},"HD-8990":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Malta","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"950 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB (per GPU)","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"375 W","FP32 Compute":"7.782 TFLOPS","FP64 Compute":"1.946 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8990"},"HD8000":{"humanName":"HD 8000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2013"},"sections":[{"header":"ENTHUSIAST","members":["HD-8990"]},{"header":"HIGH END","members":["HD-8970","HD-8950","HD-8870-GCN1"]},{"header":"MID RANGE","members":["HD-8770-GCN2","HD-8760"]},{"header":"ENTRY LEVEL","members":["HD-8730","HD-8670","HD-8570","HD-8570-DDR3","HD-8490","HD-8470","HD-8450-DDR3","HD-8350-DDR3","HD-8350-DDR2"]}]},"R7-260":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Bonaire","Release Date":"2013-12-17","Die Size":"160 mm","Shader Processor Count":768,"Texture Mapping Unit Count":48,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"95.5 GB/s","TDP":"95 W","FP32 Compute":"1.536 TFLOPS","FP64 Compute":"96 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260"},"R9-295X2":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2014-04-08","Shader Processor Count":5632,"Texture Mapping Unit Count":352,"Render Output Unit Count":128,"GPU Base Frequency":"1018 MHz","GPU":"Hawaii","Codename":"Vesuvius","VRAM Capacity":"4 GiB (per GPU)","TDP":"500 W","FP32 Compute":"11.467 TFLOPS","FP64 Compute":"1.433 TFLOPS"},"humanName":"R9 295X2","isPart":true,"type":"Graphics Card"},"R-200":{"humanName":"R* 200","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2013-10-08"},"sections":[{"header":"ENTHUSIAST","members":["R9-295X2"]},{"header":"HIGH END","members":["R9-290X-8GiB","R9-290X-4GiB","R9-290"]},{"header":"MID RANGE","members":["R9-285","R9-280X","R9-280","R9-270X-4GiB","R9-270X-2GiB","R9-270"]},{"header":"ENTRY LEVEL","members":["R7-260X-2GiB","R7-260X-1GiB","R7-260"]}]},"R9-370X-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2015-08-27","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"185 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS","VRAM Capacity":"2 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R9 370X (2GiB)"},"R9-370X-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2015-08-27","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"185 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS","VRAM Capacity":"4 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R9 370X (4GiB)"},"R9-Fury-X":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2015-06-24","Die Size":"596 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"275 W","FP32 Compute":"8.602 TFLOPS","FP64 Compute":"538 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Fury X"},"R9-Fury":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji Pro","Release Date":"2015-07-14","Die Size":"596 mm","Shader Processor Count":3584,"Texture Mapping Unit Count":224,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"275 W","FP32 Compute":"7.168 TFLOPS","FP64 Compute":"448 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Fury"},"R9-Nano":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2015-08-27","Die Size":"596 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"175 W","FP32 Compute":"8.192 TFLOPS","FP64 Compute":"512 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Nano"},"Radeon-Pro-Duo":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2016-04-26","Die Size":"596 mm","Shader Processor Count":8192,"Texture Mapping Unit Count":512,"Render Output Unit Count":128,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB (per GPU)","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"350 W","FP32 Compute":"16.384 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"Radeon Pro Duo"},"R-300":{"humanName":"R* 300","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2015-06-16"},"sections":[{"header":"ENTHUSIAST","members":["Radeon-Pro-Duo","R9-Fury-X","R9-Nano","R9-Fury"]},{"header":"HIGH END","members":["R9-390X","R9-390"]},{"header":"MID RANGE","members":["R9-380X","R9-380-4GiB","R9-380-2GiB","R9-370X-4GiB","R9-370X-2GiB","R7-370-4GiB","R7-370-2GiB"]},{"header":"ENTRY LEVEL","members":["R7-360"]}]},"RX-450":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","Release Date":"2016-06-30","GPU Base Frequency":"1050 MHz","VRAM Frequency":"4500 MT/s","VRAM Bandwidth":"72 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"123 mm","GPU":"Cape Verde","Codename":"Cape Verde Pro","TDP":"65 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.075 TFLOPS","FP64 Compute":"67 GFLOPS"},"humanName":"RX 450","isPart":true,"type":"Graphics Card"},"RX-455":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-30","GPU Base Frequency":"1050 MHz","VRAM Frequency":"6500 MT/s","VRAM Bandwidth":"104 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":48,"Shader Processor Count":768,"Die Size":"160 mm","GPU":"Bonaire","Codename":"Bonaire Pro","TDP":"100 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.613 TFLOPS","FP64 Compute":"101 GFLOPS"},"humanName":"RX 455","isPart":true,"type":"Graphics Card"},"RX-470D":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Capacity":"8 GB","Release Date":"2016-10-21","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"224 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":112,"Shader Processor Count":1792,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere LE","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.319 TFLOPS","FP64 Compute":"207 GFLOPS"},"humanName":"RX 470D","isPart":true,"type":"Graphics Card"},"RX-400":{"humanName":"RX 400","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2016-06-29"},"sections":[{"header":"MID RANGE","members":["RX-480-8GiB","RX-480-4GiB","RX-470-8GiB","RX-470-4GiB","RX-470D"]},{"header":"ENTRY LEVEL","members":["RX-460-4GiB","RX-460-2GiB","RX-455","RX-450"]}]},"RX-500":{"humanName":"RX 500","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2017-04-18"},"sections":[{"header":"MID RANGE","members":["RX-580-8GiB","RX-580-4GiB","RX-570-8GiB","RX-570-4GiB"]},{"header":"ENTRY LEVEL","members":["RX-560-4GiB","RX-560-2GiB","RX-550-4GiB","RX-550-2GiB"]}]},"RX-Vega":{"humanName":"RX Vega","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Release Date":"2017-08-14"},"sections":[{"header":"ENTHUSIAST","members":["RX-Vega-64-Liquid","RX-Vega-64"]},{"header":"HIGH END","members":["RX-Vega-56"]}]},"Radeon-VII-Architecture":{"humanName":"Radeon VII","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Release Date":"2019-02-07"},"sections":[{"header":"ENTHUSIAST","members":["Radeon-VII"]}]},"GPUs-CONSUMER":{"humanName":"Consumer GPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT SERIES:","sections":[{"header":"RX Series","members":["Radeon-VII-Architecture","RX-Vega","RX-500","RX-400"]},{"header":"R Series","members":["R-300","R-200"]},{"header":"HD Series","members":["HD8000","HD7000","HD6000","HD5000","HD4000"]}]},"Core-i7-8709G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","TDP":"100 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8709G"},"3020e":{"humanName":"3020e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6300":{"humanName":"Core 2 duo e6300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6550":{"humanName":"Core 2 duo e6550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6750":{"humanName":"Core 2 duo e6750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6850":{"humanName":"Core 2 duo e6850","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7200":{"humanName":"Core 2 duo e7200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7300":{"humanName":"Core 2 duo e7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7400":{"humanName":"Core 2 duo e7400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7500":{"humanName":"Core 2 duo e7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7600":{"humanName":"Core 2 duo e7600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8300":{"humanName":"Core 2 duo e8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8400":{"humanName":"Core 2 duo e8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8500":{"humanName":"Core 2 duo e8500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8600":{"humanName":"Core 2 duo e8600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p7350":{"humanName":"Core 2 duo p7350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p7450":{"humanName":"Core 2 duo p7450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8400":{"humanName":"Core 2 duo p8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8600":{"humanName":"Core 2 duo p8600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8700":{"humanName":"Core 2 duo p8700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8800":{"humanName":"Core 2 duo p8800","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5500":{"humanName":"Core 2 duo t5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5750":{"humanName":"Core 2 duo t5750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5870":{"humanName":"Core 2 duo t5870","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6400":{"humanName":"Core 2 duo t6400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6500":{"humanName":"Core 2 duo t6500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6570":{"humanName":"Core 2 duo t6570","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6600":{"humanName":"Core 2 duo t6600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6670":{"humanName":"Core 2 duo t6670","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7200":{"humanName":"Core 2 duo t7200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7250":{"humanName":"Core 2 duo t7250","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7300":{"humanName":"Core 2 duo t7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7500":{"humanName":"Core 2 duo t7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7700":{"humanName":"Core 2 duo t7700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t8100":{"humanName":"Core 2 duo t8100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t8300":{"humanName":"Core 2 duo t8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9300":{"humanName":"Core 2 duo t9300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9400":{"humanName":"Core 2 duo t9400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9500":{"humanName":"Core 2 duo t9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9550":{"humanName":"Core 2 duo t9550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9600":{"humanName":"Core 2 duo t9600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9900":{"humanName":"Core 2 duo t9900","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-extreme-x9650":{"humanName":"Core 2 extreme x9650","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q6600":{"humanName":"Core 2 quad q6600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q6700":{"humanName":"Core 2 quad q6700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8200":{"humanName":"Core 2 quad q8200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8300":{"humanName":"Core 2 quad q8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8400":{"humanName":"Core 2 quad q8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9000":{"humanName":"Core 2 quad q9000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9300":{"humanName":"Core 2 quad q9300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9400":{"humanName":"Core 2 quad q9400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9450":{"humanName":"Core 2 quad q9450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9500":{"humanName":"Core 2 quad q9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9505":{"humanName":"Core 2 quad q9505","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9550":{"humanName":"Core 2 quad q9550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9650":{"humanName":"Core 2 quad q9650","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1000ng4":{"humanName":"Core i3 1000ng4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-10105f":{"humanName":"Core i3 10105f","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1115g4":{"humanName":"Core i3 1115g4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1115g4e":{"humanName":"Core i3 1115g4e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1125g4":{"humanName":"Core i3 1125g4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1215u":{"humanName":"Core i3 1215u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-8121u":{"humanName":"Core i3 8121u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1030ng7":{"humanName":"Core i5 1030ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1038ng7":{"humanName":"Core i5 1038ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1135g7":{"humanName":"Core i5 1135g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1145g7":{"humanName":"Core i5 1145g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1155g7":{"humanName":"Core i5 1155g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1230u":{"humanName":"Core i5 1230u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1235u":{"humanName":"Core i5 1235u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-12500Te":{"humanName":"Core i5 12500Te","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-2415m":{"humanName":"Core i5 2415m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-l16g7":{"humanName":"Core i5 l16g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1060ng7":{"humanName":"Core i7 1060ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1068ng7":{"humanName":"Core i7 1068ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-10875h":{"humanName":"Core i7 10875h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-11375h":{"humanName":"Core i7 11375h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1165g7":{"humanName":"Core i7 1165g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1185g7":{"humanName":"Core i7 1185g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1195g7":{"humanName":"Core i7 1195g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1250u":{"humanName":"Core i7 1250u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1260u":{"humanName":"Core i7 1260u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1265u":{"humanName":"Core i7 1265u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-12700e":{"humanName":"Core i7 12700e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-10885h":{"humanName":"Core i9 10885h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-12900Te":{"humanName":"Core i9 12900Te","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-13900e":{"humanName":"Core i9 13900e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-m-5y10c":{"humanName":"Core m 5y10c","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-m-5y51":{"humanName":"Core m 5y51","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"MISSINGCPUSAGAIN":{"humanName":"MISSINGCPUSAGAIN","type":"CPU Architecture","topHeader":"","data":{"Lithography":"30nm","Sockets":["idk lol"],"Release Date":"0000-00-00"},"sections":[{"header":"MISSINGCPUS","members":["Core-i9-13900KS","Core-i9-13900KF","Core-i9-13900K","Core-i7-13700KF","Core-i7-13700K","Core-i9-13900","Core-i5-13600KF","Core-i9-12900KS","Core-i9-13900F","ryzen-7-7745hx","Core-i5-13600K","Core-i7-13700F","Core-i7-13700","Core-i9-12900K","Core-i9-12900F","Core-i9-12900KF","Core-i7-12700K","Core-i7-12700KF","Core-i9-12900","Core-i5-12600KF","Core-i5-12600K","Core-i7-13700T","Core-i5-13600","Core-i5-13500","Core-i5-13600T","Core-i9-11900K","Core-i5-12600","Core-i7-12700F","Core-i9-12900T","Core-i9-11900KF","Core-i5-12500","Core-i5-13400F","Core-i5-13400","Core-i3-13100F","Core-i3-12300","Core-i7-12700T","Core-i7-12700e","Core-i7-11700KF","Core-i3-13100","Core-i5-13500T","Core-i7-12700","Core-i3-12100F","Core-i7-11700K","Core-i5-13400T","Core-i5-12600T","Core-i5-12400F","Core-i9-11900F","Core-i5-11600KF","Core-i5-12500T","xeon-w-1350","Core-i5-11600K","Core-i5-12400","Core-i3-12100","Core-i5-11600","Core-i9-11900","ryzen-7-5700x","Core-i7-11700F","Core-i7-11700","Core-i5-12400T","Core-i9-11900T","Core-i3-13100T","Core-i7-11390H","Core-i5-11500","Core-i7-11850H","Core-i5-11400F","Core-i3-12100T","Core-i5-11400","Core-i9-12900Te","Core-i7-1265u","Core-i5-11500H","Core-i7-11800H","Core-i5-1235u","Core-i7-1195g7","Core-i7-11375h","Core-i7-11600H","Core-i5-11320H","Core-i3-1215u","Core-i5-11400H","Core-i9-13900e","ryzen-9-pro-6950H","Core-i9-10900KF","ryzen-7-7736u","Core-i9-10900K","Core-i5-1155g7","Core-i7-1165g7","xeon-w-1290","Core-i5-11260H","Core-i9-10850K","Core-i7-11370H","Core-i7-1185g7","Core-i5-1145g7","Core-i7-11700T","Core-i7-10700K","Core-i7-10700KF","xeon-w-1270","Core-i5-11500T","Core-i5-11300H","Core-i9-10900","Core-i5-10600KF","Core-i9-10900F","ryzen-threadripper-3960x","Core-i3-1115g4e","ryzen-7-5825u","Core-i5-10600K","Core-i7-1250u","Core-i5-1230u","Core-i9-10910","Core-i7-10700F","Core-i5-1135g7","Core-i5-11400T","Core-i5-10600","Core-i7-1068ng7","Core-i7-10700","Core-i3-1115g4","ryzen-5-4500","Core-i9-10885h","Core-i5-10505","Core-i5-10500","Core-i5-12500Te","Core-i7-10875h","Core-i7-1260u","Core-i3-10105","ryzen-3-4100","ryzen-3-3100","Core-i7-10850H","Core-i3-10105f","xeon-e3-1270-v6","Core-i7-10870H","Core-i7-10750H","Core-i5-1038ng7","Core-i5-10500H","Core-i3-1125g4","Core-i5-10400F","Core-i3-10100F","Core-i3-10100","Core-i5-10400","Core-i9-10900T","Core-i7-10700T","Core-i5-10300H","Core-i5-10400H","Core-i5-10600T","Core-i5-10200H","xeon-w-2140b","ryzen-5-4600Hs","xeon-gold-6136","Core-i7-1060ng7","Core-i3-10100T","Core-i5-10500T","Core-i3-1000ng4","epyc-7742","xeon-e3-1271-v3","xeon-gold-6150","xeon-e5-1650-v4","xeon-e3-1535m-v5","Core-i5-1030ng7","ryzen-threadripper-1900x","Core-i5-10400T","Core-i3-8121u","xeon-silver-4210r","ryzen-7-pro-1700x","xeon-e5-1620-v4","epyc-7313","xeon-e3-1268l-v3","Core-i4-4690T","xeon-silver-4210","athlon-3000g","ryzen-5-pro-2500u","ryzen-5-3500u","pentium-gold-g5400","Core-m-5y51","xeon-e5-1660-v2","Core-i5-l16g7","xeon-e3-1225-v2","Core-m-5y10c","xeon-e5-2680-v2","pentium-silver-n6000","xeon-e5-1603","xeon-e3-1220l-v2","xeon-e5-2470-v2","athlon-x4-840","a10-7850K","a8-6600K","a10-9600p","a8-7600","a8-6500","Core-i5-2415m","xeon-e5-2660-v2","xeon-e5-2630l-v2","pro-a8-8650b","celeron-g1620","Core-2-duo-e8600","Core-2-duo-e8500","Core-2-quad-q9650","Core-2-extreme-x9650","Core-2-duo-t9900","Core-2-duo-e7600","Core-2-quad-q9550","Core-2-duo-e8300","Core-2-duo-e8400","Core-2-quad-q9505","Core-2-quad-q9500","Core-2-duo-e7500","celeron-j4005","a8-3870","Core-2-duo-t9550","Core-2-duo-t9500","Core-2-quad-q9400","Core-2-quad-q8400","Core-2-quad-q9450","Core-2-duo-t9600","Core-2-duo-e6850","Core-2-duo-t9300","Core-2-duo-p8800","athlon-ii-x4-645","Core-2-duo-e7300","phenom-ii-x4-925","Core-2-duo-t9400","Core-2-quad-q8300","Core-2-duo-p8700","Core-2-duo-e7200","Core-2-duo-e7400","Core-2-quad-q9300","Core-2-quad-q8200","a8-3820","Core-2-duo-t8300","Core-2-duo-e6750","Core-2-quad-q6700","athlon-ii-x4-635","athlon-ii-x2-215","Core-2-duo-t8100","Core-2-duo-p8600","Core-2-quad-q9000","a10-5745m","Core-2-duo-p8400","Core-2-quad-q6600","athlon-ii-x2-220","Core-2-duo-p7450","Core-2-duo-e6550","Core-2-duo-t6570","Core-2-duo-t6600","Core-2-duo-t7700","Core-2-duo-t7500","Core-2-duo-t6500","Core-2-duo-t6670","Core-2-duo-t5870","Core-2-duo-t6400","atom-x7-e3950","Core-2-duo-p7350","Core-2-duo-t7300","Core-2-duo-t7200","Core-2-duo-t5750","a4-7210","Core-2-duo-e6300","Core-2-duo-t7250","a4-6210","atom-x5-z8550","celeron-n2840","Core-2-duo-t5500","e1-2500","e1-6015","e2-1800","e-350","e1-2100","c-60","Core-i9-13900KS","Core-i9-13900KF","Core-i9-13900K","xeon-w7-2495x","xeon-w9-3475x","ryzen-threadripper-pro-5995wx","Core-i7-13700KF","Core-i7-13700K","xeon-w-3375","Core-i9-13900F","Core-i9-12900KS","ryzen-threadripper-pro-5975wx","Core-i9-13900","ryzen-threadripper-pro-5955wx","Core-i9-12900K","Core-i7-13700F","Core-i5-13600KF","ryzen-threadripper-pro-3995wx","epyc-7713","Core-i9-12900KF","Core-i5-13600K","Core-i7-13700","ryzen-threadripper-3970x","Core-i9-12900F","ryzen-9-7845hx","Core-i7-12700K","ryzen-threadripper-3960x","Core-i7-12700KF","ryzen-7-7745hx","Core-i9-12900","Core-i9-13900e","epyc-7413","Core-i5-13600T","Core-i5-13600","Core-i5-13500","Core-i7-12700e","Core-i5-12600KF","Core-i9-12900T","epyc-7742","Core-i5-12600K","Core-i9-12900Te","Core-i7-13700T","Core-i7-12700F","Core-i9-11900K","Core-i5-13400F","xeon-w5-2445","Core-i5-13400","Core-i7-12700","Core-i7-11700KF","Core-i9-11900KF","xeon-gold-6150","xeon-e-2388g","Core-i7-12700T","Core-i5-13500T","xeon-gold-5317","Core-i5-12600","Core-i7-11700K","ryzen-7-5700x","Core-i5-13400T","ryzen-9-6900Hx","xeon-gold-6154","xeon-gold-6132","Core-i9-10900K","Core-i9-11900F","Core-i9-10900KF","xeon-gold-6148","Core-i5-12500","Core-i9-10850K","ryzen-7-6800H","xeon-gold-6136","Core-i5-12400F","xeon-w-1290","Core-i5-12400","Core-i7-11700F","Core-i9-11900","ryzen-9-6900Hs","Core-i5-11600KF","Core-i9-11900T","Core-i5-11600K","Core-i7-11700","ryzen-7-6800Hs","ryzen-5-5600","xeon-e5-2697a-v4","xeon-gold-6140","xeon-e5-2698-v4","xeon-w-1270p","Core-i9-10900F","Core-i9-10900","ryzen-9-pro-6950H","xeon-e5-2696-v3","xeon-gold-6138","Core-i5-11600","Core-i9-10910","xeon-w-1350","Core-i7-10700K","Core-i7-10700KF","Core-i7-11850H","xeon-e5-2699-v4","xeon-w-1270","xeon-silver-4214r","Core-i3-12300","Core-i7-11800H","ryzen-7-7735u","Core-i3-13100F","Core-i5-12600T","ryzen-5-5500","xeon-silver-4216","Core-i5-11400F","xeon-w-2140b","xeon-e5-2690-v4","xeon-e5-2687w-v4","ryzen-threadripper-1950x","ryzen-threadripper-2970wx","Core-i5-12500T","ryzen-7-pro-6850H","Core-i5-12400T","Core-i3-12100F","xeon-e5-1660-v3","Core-i5-11500","ryzen-5-pro-6650H","ryzen-7-7736u","Core-i3-13100","Core-i5-11400","xeon-gold-6134","xeon-silver-4310","xeon-e5-2673-v4","Core-i7-10700F","xeon-e5-2695-v4","ryzen-5-6600H","xeon-e-2378","xeon-e5-2680-v4","xeon-e5-2690-v3","xeon-processor-e5-1680-v3","xeon-w-11855m","ryzen-threadripper-1920x","Core-i7-10700","Core-i3-12100","xeon-w-10885m","Core-i5-10600KF","epyc-7313","Core-i5-10600K","xeon-e5-1680-v4","Core-i7-11600H","xeon-e5-2683-v4","xeon-silver-4214","xeon-e5-2667-v4","ryzen-5-7535hs","ryzen-5-6600u","xeon-e5-2678-v3","Core-i9-10885h","Core-i9-10900T","Core-i7-11700T","ryzen-9-4900Hs","ryzen-5-pro-6650u","Core-i7-10875h","Core-i5-12500Te","Core-i5-11500H","Core-i3-13100T","Core-i5-11400H","xeon-silver-4210r","ryzen-5-4500","Core-i5-11260H","Core-i7-1265u","ryzen-7-5825u","Core-i5-10600","Core-i7-10870H","xeon-e5-2660-v4","ryzen-7-4800Hs","xeon-gold-6128","xeon-e5-2670-v3","Core-i3-12100T","ryzen-threadripper-1900x","Core-i5-10400F","Core-i5-1235u","ryzen-5-7530u","xeon-w-10855m","Core-i5-11500T","xeon-silver-4210","ryzen-7-pro-1700x","xeon-e5-1650-v4","Core-i7-11375h","Core-i7-11390H","Core-i5-11400T","Core-i7-11370H","Core-i5-10400","ryzen-7-pro-5875u","Core-i5-10500","xeon-e5-2640-v3","ryzen-5-pro-7530u","Core-i5-1230u","Core-i5-11320H","Core-i7-10750H","Core-i7-10850H","Core-i7-1250u","xeon-silver-4114","xeon-e5-2650l-v4","ryzen-7-5700u","Core-i7-10700T","Core-i7-1195g7","Core-i7-1185g7","ryzen-5-4600Hs","Core-i5-10505","Core-i7-1068ng7","ryzen-3-3100","ryzen-5-4600H","Core-i5-1145g7","ryzen-7-pro-1700","Core-i5-10500H","Core-i7-1165g7","Core-i5-11300H","Core-i7-1260u","Core-i5-1155g7","Core-i3-1215u","Core-i5-1038ng7","Core-i3-10105","ryzen-3-4100","ryzen-5-4600u","ryzen-5-5500u","epyc-7313p","Core-i5-1135g7","Core-i5-10600T","xeon-e3-1270-v6","Core-i5-10500T","Core-i3-10105f","xeon-e3-1230-v6","pentium-gold-g7400","Core-i3-10100F","xeon-e5-2630l-v3","ryzen-3-5425u","xeon-silver-4108","Core-i3-10100","xeon-e5-1630-v4","Core-i5-10400T","xeon-e3-1240-v5","xeon-e5-2690-v2","xeon-e5-1630-v3","Core-i3-1125g4","xeon-e3-1276-v3","Core-i5-10400H","Core-i5-10300H","xeon-e3-1545m-v5","xeon-e3-1271-v3","xeon-e3-1535m-v6","Core-i5-10200H","xeon-e5-1620-v4","Core-i3-10100T","xeon-e3-1505m-v6","xeon-e5-2680-v2","xeon-e3-1241-v3","xeon-e3-1246-v3","xeon-e3-1231-v3","ryzen-5-7520u","ryzen-3-7320u","xeon-e3-1535m-v5","ryzen-5-3400g","ryzen-3-5300u","xeon-e5-2667-v3","xeon-e5-2623-v4","xeon-e5-2643-v2","xeon-e5-2670-v2","xeon-e3-1275l-v3","xeon-e3-1265l-v3","xeon-e3-1225-v5","ryzen-5-pro-3400ge","xeon","ryzen-5-2400g","xeon-e5-1660-v2","Core-i7-1060ng7","xeon-e5-2660-v2","xeon-e3-1268l-v3","Core-i3-1115g4","xeon-e5-2470-v2","Core-i5-1030ng7","ryzen-3-2200g","celeron-g6900e","Core-i4-4690T","Core-i3-1115g4e","ryzen-5-pro-2500u","pentium-gold-7505","ryzen-5-3500u","xeon-e5-2640-v2","xeon-e3-1270-v2","xeon-e5-1620-v2","Core-i3-8121u","ryzen-5-2500u","xeon-e3-1245-v2","Core-i3-1000ng4","xeon-e5-2630l-v2","xeon-e5-2420-v2","xeon-e5-2620-v2","athlon-3000g","xeon-e3-1225-v2","phenom-ii-x6-1100T-black-edition","xeon-e3-1265l-v2","xeon-e3-1220-v2","pentium-gold-g6400","xeon-e5-1607","athlon-gold-3150u","a10-9700","xeon-e5-1607-v2","fx-9830p","xeon-e5-2673-v3","ryzen-3-2200u","pentium-gold-g5400","xeon-e5-1603","a8-9600","phenom-ii-x6-1090T-black-edition","celeron-j6413","athlon-silver-3050u","celeron-n5105","celeron-g5905","a10-7870K","fx-8800p","a10-7860K","Core-i5-l16g7","Core-m-5y10c","athlon-x4-840","a10-7850K","Core-2-extreme-x9650","pentium-silver-n6000","athlon-ii-x4-651","Core-2-quad-q9650","Core-m-5y51","3020e","a10-6700","a10-9620p","a8-3870","a8-5600K","a8-6600K","a10-5800K","a10-5800b","a8-7600","a8-6500","pro-a8-8600b","Core-2-quad-q9500","Core-2-quad-q9550","a10-8750","Core-2-quad-q9505","athlon-x4-760K","phenom-ii-x4-945","athlon-x4-750K","athlon-ii-x4-645","a8-6500b","pro-a8-8650b","a10-9600p","pro-a10-8700b","pro-a10-8730b","a6-9500","xeon-e3-1220l-v2","Core-2-quad-q8400","Core-2-quad-q9400","phenom-ii-x4-925","a8-5500b","celeron-g3900T","Core-2-quad-q9450","celeron-j4105","a8-3820","athlon-ii-x4-630","Core-i5-2415m","Core-2-quad-q8300","pentium-silver-n5000","a8-5500","Core-2-quad-q8200","phenom-ii-x4-810","athlon-ii-x4-635","celeron-g1820","a6-3600","pentium-silver-n5030","athlon-ii-x4-620","celeron-n4120","Core-2-quad-q6700","Core-2-quad-q9300","atom-x6211e","athlon-ii-x3-450","Core-2-quad-q6600","celeron-g1620","celeron-j3455","celeron-g1610","Core-2-quad-q9000","atom-x7-e3950","a10-4600m","a10-5750m","fx-7500","a8-5550m","celeron-g540","Core-2-duo-e8600","Core-2-duo-e8500","Core-2-duo-e8300","a10-7300","celeron-5205u","Core-2-duo-t9900","phenom-ii-x2-555-black-edition","a8-4500m","Core-2-duo-e8400","Core-2-duo-e7600","a6-7310","a6-5200","a10-5745m","celeron-j4005","a6-7400K","a6-6310","a6-6400K","Core-2-duo-e7500","celeron-1037u","a4-7210","Core-2-duo-t9500","celeron-1005m","Core-2-duo-t9600","Core-2-duo-t9550","a8-5545m","celeron-j4025","Core-2-duo-e6850","atom-x7-z8750","Core-2-duo-p8800","e2-7110","Core-2-duo-t9300","celeron-1000m","atom-x5-z8550","athlon-ii-x2-250","a6-5400K","a4-3400","celeron-j1900","Core-2-duo-e7200","a4-6210","Core-2-duo-e7300","athlon-ii-x2-240","a4-5300","atom-x7-z8700","Core-2-duo-p8700","Core-2-duo-e6750","athlon-ii-x2-215","celeron-n3150","celeron-n2940","celeron-j3160","atom-x5-z8500","celeron-3205u","Core-2-duo-t9400","Core-2-duo-e7400","a4-5000","atom-z3795","Core-2-duo-t8300","Core-2-duo-p8600","athlon-ii-x2-220","Core-2-duo-p7450","Core-2-duo-p8400","celeron-1017u","Core-2-duo-t8100","Core-2-duo-e6550","Core-2-duo-t6570","celeron-j3355","celeron-n3350","Core-2-duo-t6400","a4-3300m","Core-2-duo-p7350","Core-2-duo-t6600","a6-4400m","Core-2-duo-t5870","Core-2-duo-t6500","Core-2-duo-t7700","Core-2-duo-t7500","atom-x5-z8350","a4-3330mx","Core-2-duo-t6670","celeron-t3100","Core-2-duo-t7300","Core-2-duo-t5750","Core-2-duo-t7200","Core-2-duo-e6300","Core-2-duo-t7250","celeron-n2840","celeron-n2830","pentium-d-945/950","Core-2-duo-t5500","celeron-847","celeron-n3050","celeron-n2815","e1-2500","e1-6015","e1-6010","e2-1800","e-350","e1-2100","c-60"]}]},"a10-4600m":{"humanName":"a10 4600m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5745m":{"humanName":"a10 5745m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5750m":{"humanName":"a10 5750m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5800K":{"humanName":"a10 5800K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5800b":{"humanName":"a10 5800b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-6700":{"humanName":"a10 6700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7300":{"humanName":"a10 7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7850K":{"humanName":"a10 7850K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7860K":{"humanName":"a10 7860K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7870K":{"humanName":"a10 7870K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-8750":{"humanName":"a10 8750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9600p":{"humanName":"a10 9600p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9620p":{"humanName":"a10 9620p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9700":{"humanName":"a10 9700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3300m":{"humanName":"a4 3300m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3330mx":{"humanName":"a4 3330mx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3400":{"humanName":"a4 3400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-5000":{"humanName":"a4 5000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-5300":{"humanName":"a4 5300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-6210":{"humanName":"a4 6210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-7210":{"humanName":"a4 7210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-3600":{"humanName":"a6 3600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-4400m":{"humanName":"a6 4400m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-5200":{"humanName":"a6 5200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-5400K":{"humanName":"a6 5400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-6310":{"humanName":"a6 6310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-6400K":{"humanName":"a6 6400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-7310":{"humanName":"a6 7310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-7400K":{"humanName":"a6 7400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-9500":{"humanName":"a6 9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-3820":{"humanName":"a8 3820","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-3870":{"humanName":"a8 3870","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-4500m":{"humanName":"a8 4500m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5500":{"humanName":"a8 5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5500b":{"humanName":"a8 5500b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5545m":{"humanName":"a8 5545m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5550m":{"humanName":"a8 5550m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5600K":{"humanName":"a8 5600K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6500":{"humanName":"a8 6500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6500b":{"humanName":"a8 6500b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6600K":{"humanName":"a8 6600K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-7600":{"humanName":"a8 7600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-9600":{"humanName":"a8 9600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-3000g":{"humanName":"athlon 3000g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-gold-3150u":{"humanName":"athlon gold 3150u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-215":{"humanName":"athlon ii x2 215","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-220":{"humanName":"athlon ii x2 220","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-240":{"humanName":"athlon ii x2 240","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-250":{"humanName":"athlon ii x2 250","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x3-450":{"humanName":"athlon ii x3 450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-620":{"humanName":"athlon ii x4 620","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-630":{"humanName":"athlon ii x4 630","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-635":{"humanName":"athlon ii x4 635","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-645":{"humanName":"athlon ii x4 645","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-651":{"humanName":"athlon ii x4 651","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-silver-3050u":{"humanName":"athlon silver 3050u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-750K":{"humanName":"athlon x4 750K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-760K":{"humanName":"athlon x4 760K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-840":{"humanName":"athlon x4 840","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8350":{"humanName":"atom x5 z8350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8500":{"humanName":"atom x5 z8500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8550":{"humanName":"atom x5 z8550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x6211e":{"humanName":"atom x6211e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-e3950":{"humanName":"atom x7 e3950","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-z8700":{"humanName":"atom x7 z8700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-z8750":{"humanName":"atom x7 z8750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-z3795":{"humanName":"atom z3795","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"c-60":{"humanName":"c 60","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1000m":{"humanName":"celeron 1000m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1005m":{"humanName":"celeron 1005m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1017u":{"humanName":"celeron 1017u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1037u":{"humanName":"celeron 1037u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-3205u":{"humanName":"celeron 3205u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-5205u":{"humanName":"celeron 5205u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1610":{"humanName":"celeron g1610","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1620":{"humanName":"celeron g1620","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1820":{"humanName":"celeron g1820","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g3900T":{"humanName":"celeron g3900T","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g540":{"humanName":"celeron g540","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g5905":{"humanName":"celeron g5905","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g6900e":{"humanName":"celeron g6900e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j1900":{"humanName":"celeron j1900","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3160":{"humanName":"celeron j3160","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3355":{"humanName":"celeron j3355","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3455":{"humanName":"celeron j3455","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4005":{"humanName":"celeron j4005","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4025":{"humanName":"celeron j4025","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4105":{"humanName":"celeron j4105","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j6413":{"humanName":"celeron j6413","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2830":{"humanName":"celeron n2830","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2840":{"humanName":"celeron n2840","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2940":{"humanName":"celeron n2940","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n3150":{"humanName":"celeron n3150","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n3350":{"humanName":"celeron n3350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n4120":{"humanName":"celeron n4120","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n5105":{"humanName":"celeron n5105","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-t3100":{"humanName":"celeron t3100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e-350":{"humanName":"e 350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-2100":{"humanName":"e1 2100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-2500":{"humanName":"e1 2500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-6015":{"humanName":"e1 6015","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e2-1800":{"humanName":"e2 1800","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e2-7110":{"humanName":"e2 7110","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7313":{"humanName":"epyc 7313","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7313p":{"humanName":"epyc 7313p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7413":{"humanName":"epyc 7413","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7713":{"humanName":"epyc 7713","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7742":{"humanName":"epyc 7742","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-7500":{"humanName":"fx 7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-8800p":{"humanName":"fx 8800p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-9830p":{"humanName":"fx 9830p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-7505":{"humanName":"pentium gold 7505","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g5400":{"humanName":"pentium gold g5400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g6400":{"humanName":"pentium gold g6400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g7400":{"humanName":"pentium gold g7400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n5000":{"humanName":"pentium silver n5000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n5030":{"humanName":"pentium silver n5030","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n6000":{"humanName":"pentium silver n6000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x2-555-black-edition":{"humanName":"phenom ii x2 555 black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-810":{"humanName":"phenom ii x4 810","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-925":{"humanName":"phenom ii x4 925","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-945":{"humanName":"phenom ii x4 945","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x6-1090T-black-edition":{"humanName":"phenom ii x6 1090T black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x6-1100T-black-edition":{"humanName":"phenom ii x6 1100T black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a10-8700b":{"humanName":"pro a10 8700b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a10-8730b":{"humanName":"pro a10 8730b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a8-8600b":{"humanName":"pro a8 8600b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a8-8650b":{"humanName":"pro a8 8650b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-2200g":{"humanName":"ryzen 3 2200g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-2200u":{"humanName":"ryzen 3 2200u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-3100":{"humanName":"ryzen 3 3100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-4100":{"humanName":"ryzen 3 4100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-5300u":{"humanName":"ryzen 3 5300u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-5425u":{"humanName":"ryzen 3 5425u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-7320u":{"humanName":"ryzen 3 7320u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-2400g":{"humanName":"ryzen 5 2400g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-2500u":{"humanName":"ryzen 5 2500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-3400g":{"humanName":"ryzen 5 3400g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-3500u":{"humanName":"ryzen 5 3500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4500":{"humanName":"ryzen 5 4500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600H":{"humanName":"ryzen 5 4600H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600Hs":{"humanName":"ryzen 5 4600Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600u":{"humanName":"ryzen 5 4600u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5500":{"humanName":"ryzen 5 5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5500u":{"humanName":"ryzen 5 5500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5600":{"humanName":"ryzen 5 5600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-6600H":{"humanName":"ryzen 5 6600H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-6600u":{"humanName":"ryzen 5 6600u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7520u":{"humanName":"ryzen 5 7520u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7530u":{"humanName":"ryzen 5 7530u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7535hs":{"humanName":"ryzen 5 7535hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-2500u":{"humanName":"ryzen 5 pro 2500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-3400ge":{"humanName":"ryzen 5 pro 3400ge","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-6650H":{"humanName":"ryzen 5 pro 6650H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-6650u":{"humanName":"ryzen 5 pro 6650u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-7530u":{"humanName":"ryzen 5 pro 7530u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-4800Hs":{"humanName":"ryzen 7 4800Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5700u":{"humanName":"ryzen 7 5700u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5700x":{"humanName":"ryzen 7 5700x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5825u":{"humanName":"ryzen 7 5825u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-6800H":{"humanName":"ryzen 7 6800H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-6800Hs":{"humanName":"ryzen 7 6800Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7735u":{"humanName":"ryzen 7 7735u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7736u":{"humanName":"ryzen 7 7736u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7745hx":{"humanName":"ryzen 7 7745hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-1700":{"humanName":"ryzen 7 pro 1700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-1700x":{"humanName":"ryzen 7 pro 1700x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-5875u":{"humanName":"ryzen 7 pro 5875u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-6850H":{"humanName":"ryzen 7 pro 6850H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-4900Hs":{"humanName":"ryzen 9 4900Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-6900Hs":{"humanName":"ryzen 9 6900Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-6900Hx":{"humanName":"ryzen 9 6900Hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-7845hx":{"humanName":"ryzen 9 7845hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-pro-6950H":{"humanName":"ryzen 9 pro 6950H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1900x":{"humanName":"ryzen threadripper 1900x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1920x":{"humanName":"ryzen threadripper 1920x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1950x":{"humanName":"ryzen threadripper 1950x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-2970wx":{"humanName":"ryzen threadripper 2970wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-3960x":{"humanName":"ryzen threadripper 3960x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-3970x":{"humanName":"ryzen threadripper 3970x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-3995wx":{"humanName":"ryzen threadripper pro 3995wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5955wx":{"humanName":"ryzen threadripper pro 5955wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5975wx":{"humanName":"ryzen threadripper pro 5975wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5995wx":{"humanName":"ryzen threadripper pro 5995wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e-2378":{"humanName":"xeon e 2378","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e-2388g":{"humanName":"xeon e 2388g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1220-v2":{"humanName":"xeon e3 1220 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1220l-v2":{"humanName":"xeon e3 1220l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1225-v2":{"humanName":"xeon e3 1225 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1225-v5":{"humanName":"xeon e3 1225 v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1230-v6":{"humanName":"xeon e3 1230 v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1231-v3":{"humanName":"xeon e3 1231 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1240-v5":{"humanName":"xeon e3 1240 v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1241-v3":{"humanName":"xeon e3 1241 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1245-v2":{"humanName":"xeon e3 1245 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1246-v3":{"humanName":"xeon e3 1246 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1265l-v2":{"humanName":"xeon e3 1265l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1265l-v3":{"humanName":"xeon e3 1265l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1268l-v3":{"humanName":"xeon e3 1268l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1270-v2":{"humanName":"xeon e3 1270 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1270-v6":{"humanName":"xeon e3 1270 v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1271-v3":{"humanName":"xeon e3 1271 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1275l-v3":{"humanName":"xeon e3 1275l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1276-v3":{"humanName":"xeon e3 1276 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1505m-v6":{"humanName":"xeon e3 1505m v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1535m-v5":{"humanName":"xeon e3 1535m v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1535m-v6":{"humanName":"xeon e3 1535m v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1545m-v5":{"humanName":"xeon e3 1545m v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1603":{"humanName":"xeon e5 1603","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1607-v2":{"humanName":"xeon e5 1607 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1607":{"humanName":"xeon e5 1607","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1620-v2":{"humanName":"xeon e5 1620 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1620-v4":{"humanName":"xeon e5 1620 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1630-v3":{"humanName":"xeon e5 1630 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1630-v4":{"humanName":"xeon e5 1630 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1650-v4":{"humanName":"xeon e5 1650 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1660-v2":{"humanName":"xeon e5 1660 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1660-v3":{"humanName":"xeon e5 1660 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1680-v4":{"humanName":"xeon e5 1680 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2420-v2":{"humanName":"xeon e5 2420 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2470-v2":{"humanName":"xeon e5 2470 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2620-v2":{"humanName":"xeon e5 2620 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2623-v4":{"humanName":"xeon e5 2623 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2630l-v2":{"humanName":"xeon e5 2630l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2630l-v3":{"humanName":"xeon e5 2630l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2640-v2":{"humanName":"xeon e5 2640 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2640-v3":{"humanName":"xeon e5 2640 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2643-v2":{"humanName":"xeon e5 2643 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2650l-v4":{"humanName":"xeon e5 2650l v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2660-v2":{"humanName":"xeon e5 2660 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2660-v4":{"humanName":"xeon e5 2660 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2667-v3":{"humanName":"xeon e5 2667 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2667-v4":{"humanName":"xeon e5 2667 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2670-v2":{"humanName":"xeon e5 2670 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2670-v3":{"humanName":"xeon e5 2670 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2673-v3":{"humanName":"xeon e5 2673 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2673-v4":{"humanName":"xeon e5 2673 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2678-v3":{"humanName":"xeon e5 2678 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2680-v2":{"humanName":"xeon e5 2680 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2680-v4":{"humanName":"xeon e5 2680 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2683-v4":{"humanName":"xeon e5 2683 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2687w-v4":{"humanName":"xeon e5 2687w v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v2":{"humanName":"xeon e5 2690 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v3":{"humanName":"xeon e5 2690 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v4":{"humanName":"xeon e5 2690 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2695-v4":{"humanName":"xeon e5 2695 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2696-v3":{"humanName":"xeon e5 2696 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2697a-v4":{"humanName":"xeon e5 2697a v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2698-v4":{"humanName":"xeon e5 2698 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2699-v4":{"humanName":"xeon e5 2699 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-5317":{"humanName":"xeon gold 5317","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6128":{"humanName":"xeon gold 6128","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6132":{"humanName":"xeon gold 6132","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6134":{"humanName":"xeon gold 6134","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6136":{"humanName":"xeon gold 6136","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6138":{"humanName":"xeon gold 6138","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6140":{"humanName":"xeon gold 6140","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6148":{"humanName":"xeon gold 6148","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6150":{"humanName":"xeon gold 6150","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6154":{"humanName":"xeon gold 6154","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-processor-e5-1680-v3":{"humanName":"xeon processor e5 1680 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4108":{"humanName":"xeon silver 4108","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4114":{"humanName":"xeon silver 4114","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4210":{"humanName":"xeon silver 4210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4210r":{"humanName":"xeon silver 4210r","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4214":{"humanName":"xeon silver 4214","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4214r":{"humanName":"xeon silver 4214r","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4216":{"humanName":"xeon silver 4216","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4310":{"humanName":"xeon silver 4310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-10855m":{"humanName":"xeon w 10855m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-10885m":{"humanName":"xeon w 10885m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-11855m":{"humanName":"xeon w 11855m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1270":{"humanName":"xeon w 1270","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1270p":{"humanName":"xeon w 1270p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1290":{"humanName":"xeon w 1290","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1350":{"humanName":"xeon w 1350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-2140b":{"humanName":"xeon w 2140b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-3375":{"humanName":"xeon w 3375","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w5-2445":{"humanName":"xeon w5 2445","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w7-2495x":{"humanName":"xeon w7 2495x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w9-3475x":{"humanName":"xeon w9 3475x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon":{"humanName":"xeon","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"MISSINGCPUS":{"humanName":"MISSINGCPUS","type":"Generic Container","isPart":false,"topHeader":"","sections":[{"header":"MISSINGCPUS","members":["MISSINGCPUSAGAIN"]}]},"Root":{"humanName":"Root","type":"Generic Container","isPart":false,"topHeader":"SELECT CATEGORY:","sections":[{"header":"AMD","members":["MISSINGCPUS","CPUs-DESKTOP","CPUs-SERVER","GPUs-CONSUMER","APUs-DESKTOP","APUs-MOBILE"]},{"header":"Intel","members":["Desktop-CPUs-Intel","Mobile-CPUs-Intel","Embedded-CPUs-Intel","Server-CPUs-Intel"]}]},"Pentium-J3355":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3355"},"Pentium-J3355E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-29","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3355E"},"Pentium-J3455":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3455"},"Pentium-J3455E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","GPU Boost Frequency":"750 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3455E"},"Desktop-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Pentium-J4205","Pentium-J3455E","Pentium-J3455"]},{"header":"2 Threads","members":["Pentium-J3355E","Pentium-J3355"]},{"header":"4 Threads","members":["Pentium-J4205","Pentium-J3455E","Pentium-J3455"]},{"header":"2 Threads","members":["Pentium-J3355E","Pentium-J3355"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1296","BGA1296"]}},"Pentium-J1750":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1750"},"Pentium-J1800":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1800"},"Pentium-J1850":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1850"},"Pentium-J1900":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1900"},"Pentium-J2850":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J2850"},"Desktop-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Pentium-J2900","Pentium-J2850","Pentium-J1900","Pentium-J1850"]},{"header":"2 Threads","members":["Pentium-J1800","Pentium-J1750"]},{"header":"4 Threads","members":["Pentium-J2900","Pentium-J2850","Pentium-J1900","Pentium-J1850"]},{"header":"2 Threads","members":["Pentium-J1800","Pentium-J1750"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-11","Sockets":["BGA1170","BGA1170"]}},"Core-i7-965":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-965"},"Desktop-Bloomfield":{"humanName":"Bloomfield","sections":[{"header":"8 Threads","members":["Core-i7-975","Core-i7-965","Core-i7-960","Core-i7-950","Core-i7-940","Core-i7-930","Core-i7-920"]},{"header":"8 Threads","members":["Core-i7-975","Core-i7-965","Core-i7-960","Core-i7-950","Core-i7-940","Core-i7-930","Core-i7-920"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-11-17","Sockets":["LGA1366","LGA1366"]}},"Pentium-J3060":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3060"},"Pentium-J3160":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3160"},"Desktop-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Pentium-J3710","Pentium-J3160"]},{"header":"2 Threads","members":["Pentium-J3060"]},{"header":"4 Threads","members":["Pentium-J3710","Pentium-J3160"]},{"header":"2 Threads","members":["Pentium-J3060"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-01-10","Sockets":["BGA1170","BGA1170"]}},"Desktop-Broadwell-E":{"humanName":"Broadwell E","sections":[{"header":"17 - 64 Threads","members":["Core-i7-6950X"]},{"header":"9 - 16 Threads","members":["Core-i7-6900K","Core-i7-6850K","Core-i7-6800K"]},{"header":"17 - 64 Threads","members":["Core-i7-6950X"]},{"header":"9 - 16 Threads","members":["Core-i7-6900K","Core-i7-6850K","Core-i7-6800K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-05-30","Sockets":["LGA20113","LGA20113"]}},"Desktop-Broadwell":{"humanName":"Broadwell","sections":[{"header":"8 Threads","members":["Core-i7-5775R","Core-i7-5775C"]},{"header":"4 Threads","members":["Core-i5-5675R","Core-i5-5675C","Core-i5-5575R"]},{"header":"8 Threads","members":["Core-i7-5775R","Core-i7-5775C"]},{"header":"4 Threads","members":["Core-i5-5675R","Core-i5-5675C","Core-i5-5575R"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-06-02","Sockets":["BGA1364","LGA1150","BGA1364","LGA1150"]}},"Pentium-347":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"Q4 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 347"},"Pentium-352":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"2006-06-25","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 352"},"Pentium-356":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"Q2 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 356"},"Pentium-365":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"2007-01-21","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 365"},"Pentium-631":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 631"},"Pentium-641":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 641"},"Pentium-651":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2006-10-11","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 651"},"Pentium-661":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 661"},"Desktop-Cedarmill":{"humanName":"Cedarmill","sections":[{"header":"2 Threads","members":["Pentium-661","Pentium-651","Pentium-641","Pentium-631"]},{"header":"1 Threads","members":["Pentium-365","Pentium-356","Pentium-352","Pentium-347"]},{"header":"2 Threads","members":["Pentium-661","Pentium-651","Pentium-641","Pentium-631"]},{"header":"1 Threads","members":["Pentium-365","Pentium-356","Pentium-352","Pentium-347"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q1 2006","Sockets":["PLGA775","PLGA775"]}},"Atom-D2500":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom D2500"},"Atom-D2550":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-02-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz"},"isPart":true,"type":"CPU","humanName":"Atom D2550"},"Desktop-Cedarview":{"humanName":"Cedarview","sections":[{"header":"4 Threads","members":["Atom-D2700","Atom-D2550"]},{"header":"2 Threads","members":["Atom-D2500"]},{"header":"4 Threads","members":["Atom-D2700","Atom-D2550"]},{"header":"2 Threads","members":["Atom-D2500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-09-26","Sockets":["BGA559","BGA559"]}},"Core-i3-560":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-08-29","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-560"},"Core-i5-655K":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-06-01","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-655K"},"Core-i5-670":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-670"},"Pentium-G6951":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-09-04","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G6951"},"Pentium-G6960":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-01-09","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G6960"},"Desktop-Clarkdale":{"humanName":"Clarkdale","sections":[{"header":"4 Threads","members":["Core-i5-680","Core-i5-670","Core-i5-661","Core-i5-660","Core-i5-655K","Core-i5-650","Core-i3-560","Core-i3-550","Core-i3-540","Core-i3-530"]},{"header":"2 Threads","members":["Pentium-G6960","Pentium-G6951","Pentium-G6950"]},{"header":"4 Threads","members":["Core-i5-680","Core-i5-670","Core-i5-661","Core-i5-660","Core-i5-655K","Core-i5-650","Core-i3-560","Core-i3-550","Core-i3-540","Core-i3-530"]},{"header":"2 Threads","members":["Pentium-G6960","Pentium-G6951","Pentium-G6950"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-01-07","Sockets":["LGA1156","LGA1156"]}},"Core-i3-8300T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8300T"},"Core-i3-9300":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9300"},"Core-i3-9300T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9300T"},"Core-i3-9320":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9320"},"Core-i3-9350K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9350K"},"Pentium-G4900":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4900"},"Pentium-G4900T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4900T"},"Pentium-G4920":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4920"},"Pentium-G4930":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930"},"Pentium-G4930T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930T"},"Pentium-G4950":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4950"},"Pentium-G5400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"58 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5400"},"Pentium-G5420":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5420"},"Pentium-G5420T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5420T"},"Pentium-G5500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5500"},"Pentium-G5600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5600"},"Pentium-G5600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5600T"},"Pentium-G5620":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5620"},"Desktop-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Core-i9-9900T","Core-i9-9900KS","Core-i9-9900KF","Core-i9-9900K","Core-i9-9900","Core-i7-8700T","Core-i7-8700K","Core-i7-8700","Core-i7-8086K"]},{"header":"8 Threads","members":["Core-i7-9700T","Core-i7-9700KF","Core-i7-9700K","Core-i7-9700F","Core-i7-9700"]},{"header":"6 Threads","members":["Core-i5-9600T","Core-i5-9600KF","Core-i5-9600K","Core-i5-9600","Core-i5-9500T","Core-i5-9500F","Core-i5-9500","Core-i5-9400T","Core-i5-9400F","Core-i5-9400","Core-i5-8600T","Core-i5-8600K","Core-i5-8600","Core-i5-8500T","Core-i5-8500","Core-i5-8400T","Core-i5-8400"]},{"header":"4 Threads","members":["Pentium-G5620","Pentium-G5600T","Pentium-G5600","Pentium-G5500T","Pentium-G5500","Pentium-G5420T","Pentium-G5420","Pentium-G5400T","Pentium-G5400","Core-i3-9350KF","Core-i3-9350K","Core-i3-9320","Core-i3-9300T","Core-i3-9300","Core-i3-9100T","Core-i3-9100F","Core-i3-9100","Core-i3-8350K","Core-i3-8300T","Core-i3-8300","Core-i3-8100T","Core-i3-8100"]},{"header":"2 Threads","members":["Pentium-G4950","Pentium-G4930T","Pentium-G4930","Pentium-G4920","Pentium-G4900T","Pentium-G4900"]},{"header":"9 - 16 Threads","members":["Core-i9-9900T","Core-i9-9900KS","Core-i9-9900KF","Core-i9-9900K","Core-i9-9900","Core-i7-8700T","Core-i7-8700K","Core-i7-8700","Core-i7-8086K"]},{"header":"8 Threads","members":["Core-i7-9700T","Core-i7-9700KF","Core-i7-9700K","Core-i7-9700F","Core-i7-9700"]},{"header":"6 Threads","members":["Core-i5-9600T","Core-i5-9600KF","Core-i5-9600K","Core-i5-9600","Core-i5-9500T","Core-i5-9500F","Core-i5-9500","Core-i5-9400T","Core-i5-9400F","Core-i5-9400","Core-i5-8600T","Core-i5-8600K","Core-i5-8600","Core-i5-8500T","Core-i5-8500","Core-i5-8400T","Core-i5-8400"]},{"header":"4 Threads","members":["Pentium-G5620","Pentium-G5600T","Pentium-G5600","Pentium-G5500T","Pentium-G5500","Pentium-G5420T","Pentium-G5420","Pentium-G5400T","Pentium-G5400","Core-i3-9350KF","Core-i3-9350K","Core-i3-9320","Core-i3-9300T","Core-i3-9300","Core-i3-9100T","Core-i3-9100F","Core-i3-9100","Core-i3-8350K","Core-i3-8300T","Core-i3-8300","Core-i3-8100T","Core-i3-8100"]},{"header":"2 Threads","members":["Pentium-G4950","Pentium-G4930T","Pentium-G4930","Pentium-G4920","Pentium-G4900T","Pentium-G4900"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-10-05","Sockets":["LGA1151","LGA1151"]}},"Core-E4300":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-01-21","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4300"},"Core-E4400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-04-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4400"},"Core-E4500":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4500"},"Core-E4600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-10-21","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4600"},"Core-E4700":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"Q1 2008","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4700"},"Core-E6300":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2006-07-29","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6300"},"Core-E6320":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-04-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6320"},"Core-E6400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2006-07-29","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6400"},"Core-E6420":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-04-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6420"},"Core-E6540":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6540"},"Core-E6550":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6550"},"Core-E6600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6600"},"Core-E6700":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6700"},"Core-E6750":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6750"},"Core-E6850":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6850"},"Core-X6800":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"75 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X6800"},"Pentium-220":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"19 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2007-10-21","Socket":"PBGA479","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 220"},"Pentium-420":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-06-03","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 420"},"Pentium-430":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-06-03","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 430"},"Pentium-440":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2007-06-03","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 440"},"Pentium-450":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-08-31","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 450"},"Pentium-E1200":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1200"},"Pentium-E1400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1400"},"Pentium-E1500":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1500"},"Pentium-E1600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2009-06-03","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1600"},"Pentium-E2160":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q3 2006","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2160"},"Pentium-E2180":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q3 2007","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2180"},"Pentium-E2200":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"2007-12-02","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2200"},"Pentium-E2220":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"2008-03-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2220"},"Desktop-Conroe":{"humanName":"Conroe","sections":[{"header":"2 Threads","members":["Pentium-E2220","Pentium-E2200","Pentium-E2180","Pentium-E2160","Pentium-E2140","Pentium-E1600","Pentium-E1500","Pentium-E1400","Pentium-E1200","Core-X6800","Core-E6850","Core-E6750","Core-E6700","Core-E6600","Core-E6550","Core-E6540","Core-E6420","Core-E6400","Core-E6320","Core-E6300","Core-E4700","Core-E4600","Core-E4500","Core-E4400","Core-E4300"]},{"header":"1 Threads","members":["Pentium-450","Pentium-440","Pentium-430","Pentium-420","Pentium-220"]},{"header":"2 Threads","members":["Pentium-E2220","Pentium-E2200","Pentium-E2180","Pentium-E2160","Pentium-E2140","Pentium-E1600","Pentium-E1500","Pentium-E1400","Pentium-E1200","Core-X6800","Core-E6850","Core-E6750","Core-E6700","Core-E6600","Core-E6550","Core-E6540","Core-E6420","Core-E6400","Core-E6320","Core-E6300","Core-E4700","Core-E4600","Core-E4500","Core-E4400","Core-E4300"]},{"header":"1 Threads","members":["Pentium-450","Pentium-440","Pentium-430","Pentium-420","Pentium-220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2006","Sockets":["LGA775","PLGA775","PBGA479","LGA775","PLGA775","PBGA479"]}},"Core-i5-4670R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4670R"},"Core-i7-4770R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770R"},"Desktop-Crystal-Well":{"humanName":"Crystal Well","sections":[{"header":"8 Threads","members":["Core-i7-4770R"]},{"header":"4 Threads","members":["Core-i5-4670R","Core-i5-4570R"]},{"header":"8 Threads","members":["Core-i7-4770R"]},{"header":"4 Threads","members":["Core-i5-4670R","Core-i5-4570R"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-03","Sockets":["BGA1364","BGA1364"]}},"Desktop-Devils-Canyon":{"humanName":"Devil's Canyon","sections":[{"header":"8 Threads","members":["Core-i7-4790K"]},{"header":"4 Threads","members":["Core-i5-4690K"]},{"header":"8 Threads","members":["Core-i7-4790K"]},{"header":"4 Threads","members":["Core-i5-4690K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-06-02","Sockets":["LGA1150","LGA1150"]}},"Desktop-Diamondville":{"humanName":"Diamondville","sections":[{"header":"4 Threads","members":["Atom-330"]},{"header":"2 Threads","members":["Atom-230"]},{"header":"4 Threads","members":["Atom-330"]},{"header":"2 Threads","members":["Atom-230"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-06-03","Sockets":["PBGA437","PBGA437"]}},"Pentium-J4005":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4005"},"Pentium-J4105":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4105"},"Pentium-J5005":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J5005"},"Pentium-J4025":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4025"},"Pentium-J4125":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4125"},"Pentium-J5040":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J5040"},"Desktop-Gemini-Lake-Refresh":{"humanName":"Gemini Lake Refresh","sections":[{"header":"4 Threads","members":["Pentium-J5040","Pentium-J4125"]},{"header":"2 Threads","members":["Pentium-J4025"]},{"header":"4 Threads","members":["Pentium-J5040","Pentium-J4125"]},{"header":"2 Threads","members":["Pentium-J4025"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-11-04","Sockets":["BGA1090","BGA1090"]}},"Desktop-Gemini-Lake":{"humanName":"Gemini Lake","sections":[{"header":"4 Threads","members":["Pentium-J5005","Pentium-J4105"]},{"header":"2 Threads","members":["Pentium-J4005"]},{"header":"4 Threads","members":["Pentium-J5005","Pentium-J4105"]},{"header":"2 Threads","members":["Pentium-J4005"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-12-11","Sockets":["BGA1090","BGA1090"]}},"Desktop-Gulftown":{"humanName":"Gulftown","sections":[{"header":"9 - 16 Threads","members":["Core-i7-990X","Core-i7-980X","Core-i7-980","Core-i7-970"]},{"header":"9 - 16 Threads","members":["Core-i7-990X","Core-i7-980X","Core-i7-980","Core-i7-970"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1366","LGA1366"]}},"Core-i3-4330T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4330T"},"Core-i3-4350T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4350T"},"Core-i3-4360T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4360T"},"Core-i3-4370T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4370T"},"Core-i5-4440S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4440S"},"Core-i5-4690T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4690T"},"Pentium-G1820":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1820"},"Pentium-G1820T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1820T"},"Pentium-G1830":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1830"},"Pentium-G1840":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1840"},"Pentium-G1840T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1840T"},"Pentium-G1850":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1850"},"Pentium-G3240T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3240T"},"Pentium-G3260T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3260T"},"Pentium-G3420T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3420T"},"Pentium-G3440T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3440T"},"Pentium-G3450T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3450T"},"Pentium-G3460T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3460T"},"Desktop-Haswell-E":{"humanName":"Haswell E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-5960X","Core-i7-5930K","Core-i7-5820K"]},{"header":"9 - 16 Threads","members":["Core-i7-5960X","Core-i7-5930K","Core-i7-5820K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-08-29","Sockets":["LGA20113","LGA20113"]}},"Desktop-Haswell":{"humanName":"Haswell","sections":[{"header":"8 Threads","members":["Core-i7-4790T","Core-i7-4790S","Core-i7-4790","Core-i7-4785T","Core-i7-4771","Core-i7-4770T","Core-i7-4770S","Core-i7-4770K","Core-i7-4770","Core-i7-4765T"]},{"header":"4 Threads","members":["Core-i5-4690T","Core-i5-4690S","Core-i5-4690","Core-i5-4670T","Core-i5-4670S","Core-i5-4670K","Core-i5-4670","Core-i5-4590T","Core-i5-4590S","Core-i5-4590","Core-i5-4570T","Core-i5-4570S","Core-i5-4570","Core-i5-4460T","Core-i5-4460S","Core-i5-4460","Core-i5-4440S","Core-i5-4440","Core-i5-4430S","Core-i5-4430","Core-i3-4370T","Core-i3-4370","Core-i3-4360T","Core-i3-4360","Core-i3-4350T","Core-i3-4350","Core-i3-4340","Core-i3-4330T","Core-i3-4330","Core-i3-4170T","Core-i3-4170","Core-i3-4160T","Core-i3-4160","Core-i3-4150T","Core-i3-4150","Core-i3-4130T","Core-i3-4130"]},{"header":"2 Threads","members":["Pentium-G3470","Pentium-G3460T","Pentium-G3460","Pentium-G3450T","Pentium-G3450","Pentium-G3440T","Pentium-G3440","Pentium-G3430","Pentium-G3420T","Pentium-G3420","Pentium-G3260T","Pentium-G3260","Pentium-G3258","Pentium-G3250T","Pentium-G3250","Pentium-G3240T","Pentium-G3240","Pentium-G3220T","Pentium-G3220","Pentium-G1850","Pentium-G1840T","Pentium-G1840","Pentium-G1830","Pentium-G1820T","Pentium-G1820"]},{"header":"8 Threads","members":["Core-i7-4790T","Core-i7-4790S","Core-i7-4790","Core-i7-4785T","Core-i7-4771","Core-i7-4770T","Core-i7-4770S","Core-i7-4770K","Core-i7-4770","Core-i7-4765T"]},{"header":"4 Threads","members":["Core-i5-4690T","Core-i5-4690S","Core-i5-4690","Core-i5-4670T","Core-i5-4670S","Core-i5-4670K","Core-i5-4670","Core-i5-4590T","Core-i5-4590S","Core-i5-4590","Core-i5-4570T","Core-i5-4570S","Core-i5-4570","Core-i5-4460T","Core-i5-4460S","Core-i5-4460","Core-i5-4440S","Core-i5-4440","Core-i5-4430S","Core-i5-4430","Core-i3-4370T","Core-i3-4370","Core-i3-4360T","Core-i3-4360","Core-i3-4350T","Core-i3-4350","Core-i3-4340","Core-i3-4330T","Core-i3-4330","Core-i3-4170T","Core-i3-4170","Core-i3-4160T","Core-i3-4160","Core-i3-4150T","Core-i3-4150","Core-i3-4130T","Core-i3-4130"]},{"header":"2 Threads","members":["Pentium-G3470","Pentium-G3460T","Pentium-G3460","Pentium-G3450T","Pentium-G3450","Pentium-G3440T","Pentium-G3440","Pentium-G3430","Pentium-G3420T","Pentium-G3420","Pentium-G3260T","Pentium-G3260","Pentium-G3258","Pentium-G3250T","Pentium-G3250","Pentium-G3240T","Pentium-G3240","Pentium-G3220T","Pentium-G3220","Pentium-G1850","Pentium-G1840T","Pentium-G1840","Pentium-G1830","Pentium-G1820T","Pentium-G1820"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","LGA1150"]}},"Core-i3-3245":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3245"},"Core-i3-3250T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3250T"},"Core-i5-3570T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3570T"},"Pentium-G1610":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1610"},"Pentium-G1610T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1610T"},"Pentium-G1620":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1620"},"Pentium-G1620T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1620T"},"Pentium-G1630":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1630"},"Pentium-G2030T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2030T"},"Pentium-G2100T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2100T"},"Pentium-G2120T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2120T"},"Pentium-G2140":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2140"},"Desktop-Ivy-Bridge-E":{"humanName":"Ivy Bridge E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-4960X","Core-i7-4930K"]},{"header":"8 Threads","members":["Core-i7-4820K"]},{"header":"9 - 16 Threads","members":["Core-i7-4960X","Core-i7-4930K"]},{"header":"8 Threads","members":["Core-i7-4820K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Desktop-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3770T","Core-i7-3770S","Core-i7-3770K","Core-i7-3770"]},{"header":"4 Threads","members":["Core-i5-3570T","Core-i5-3570S","Core-i5-3570K","Core-i5-3570","Core-i5-3550S","Core-i5-3550","Core-i5-3475S","Core-i5-3470T","Core-i5-3470S","Core-i5-3470","Core-i5-3450S","Core-i5-3450","Core-i5-3350P","Core-i5-3340S","Core-i5-3340","Core-i5-3330S","Core-i5-3330","Core-i3-3250T","Core-i3-3250","Core-i3-3245","Core-i3-3240T","Core-i3-3240","Core-i3-3225","Core-i3-3220T","Core-i3-3220","Core-i3-3210"]},{"header":"2 Threads","members":["Pentium-G2140","Pentium-G2130","Pentium-G2120T","Pentium-G2120","Pentium-G2100T","Pentium-G2030T","Pentium-G2030","Pentium-G2020T","Pentium-G2020","Pentium-G2010","Pentium-G1630","Pentium-G1620T","Pentium-G1620","Pentium-G1610T","Pentium-G1610"]},{"header":"8 Threads","members":["Core-i7-3770T","Core-i7-3770S","Core-i7-3770K","Core-i7-3770"]},{"header":"4 Threads","members":["Core-i5-3570T","Core-i5-3570S","Core-i5-3570K","Core-i5-3570","Core-i5-3550S","Core-i5-3550","Core-i5-3475S","Core-i5-3470T","Core-i5-3470S","Core-i5-3470","Core-i5-3450S","Core-i5-3450","Core-i5-3350P","Core-i5-3340S","Core-i5-3340","Core-i5-3330S","Core-i5-3330","Core-i3-3250T","Core-i3-3250","Core-i3-3245","Core-i3-3240T","Core-i3-3240","Core-i3-3225","Core-i3-3220T","Core-i3-3220","Core-i3-3210"]},{"header":"2 Threads","members":["Pentium-G2140","Pentium-G2130","Pentium-G2120T","Pentium-G2120","Pentium-G2100T","Pentium-G2030T","Pentium-G2030","Pentium-G2020T","Pentium-G2020","Pentium-G2010","Pentium-G1630","Pentium-G1620T","Pentium-G1620","Pentium-G1610T","Pentium-G1610"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["LGA1155","LGA1155"]}},"Core-i3-7101TE":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7101TE"},"Pentium-G3930":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930"},"Pentium-G3930E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930E"},"Pentium-G3930T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930T"},"Pentium-G3930TE":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930TE"},"Pentium-G3950":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3950"},"Pentium-G4600T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4600T"},"Desktop-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Core-i7-7740X","Core-i7-7700T","Core-i7-7700K","Core-i7-7700"]},{"header":"4 Threads","members":["Pentium-G4620","Pentium-G4600T","Pentium-G4600","Pentium-G4560T","Pentium-G4560","Core-i5-7640X","Core-i5-7600T","Core-i5-7600K","Core-i5-7600","Core-i5-7500T","Core-i5-7500","Core-i5-7400T","Core-i5-7400","Core-i3-7350K","Core-i3-7320","Core-i3-7300T","Core-i3-7300","Core-i3-7101TE","Core-i3-7101E","Core-i3-7100T","Core-i3-7100"]},{"header":"2 Threads","members":["Pentium-G3950","Pentium-G3930TE","Pentium-G3930T","Pentium-G3930E","Pentium-G3930"]},{"header":"8 Threads","members":["Core-i7-7740X","Core-i7-7700T","Core-i7-7700K","Core-i7-7700"]},{"header":"4 Threads","members":["Pentium-G4620","Pentium-G4600T","Pentium-G4600","Pentium-G4560T","Pentium-G4560","Core-i5-7640X","Core-i5-7600T","Core-i5-7600K","Core-i5-7600","Core-i5-7500T","Core-i5-7500","Core-i5-7400T","Core-i5-7400","Core-i3-7350K","Core-i3-7320","Core-i3-7300T","Core-i3-7300","Core-i3-7101TE","Core-i3-7101E","Core-i3-7100T","Core-i3-7100"]},{"header":"2 Threads","members":["Pentium-G3950","Pentium-G3930TE","Pentium-G3930T","Pentium-G3930E","Pentium-G3930"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["LGA1151","LGA2066","LGA1151","LGA2066"]}},"Core-Q6600":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q6600"},"Core-Q6700":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q6700"},"Core-QX6700":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q4 2006","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6700"},"Core-QX6800":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-04-09","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6800"},"Core-QX6850":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6850"},"Desktop-Kentsfield":{"humanName":"Kentsfield","sections":[{"header":"4 Threads","members":["Core-QX6850","Core-QX6800","Core-QX6700","Core-Q6700","Core-Q6600"]},{"header":"4 Threads","members":["Core-QX6850","Core-QX6800","Core-QX6700","Core-Q6700","Core-Q6600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q4 2006","Sockets":["LGA775","LGA775"]}},"Core-i5-750S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-01-07","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i5-750S"},"Core-i7-860S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-01-07","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-860S"},"Core-i7-870S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q2 2010","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-870S"},"Desktop-Lynnfield":{"humanName":"Lynnfield","sections":[{"header":"8 Threads","members":["Core-i7-880","Core-i7-875K","Core-i7-870S","Core-i7-870","Core-i7-860S","Core-i7-860"]},{"header":"4 Threads","members":["Core-i5-760","Core-i5-750S","Core-i5-750"]},{"header":"8 Threads","members":["Core-i7-880","Core-i7-875K","Core-i7-870S","Core-i7-870","Core-i7-860S","Core-i7-860"]},{"header":"4 Threads","members":["Core-i5-760","Core-i5-750S","Core-i5-750"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-08","Sockets":["LGA1156","LGA1156"]}},"Atom-D425":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3, DDR2","Base Frequency":"1.8 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-26","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom D425"},"Desktop-Pineview":{"humanName":"Pineview","sections":[{"header":"4 Threads","members":["Atom-D525","Atom-D510"]},{"header":"2 Threads","members":["Atom-D425","Atom-D410"]},{"header":"4 Threads","members":["Atom-D525","Atom-D510"]},{"header":"2 Threads","members":["Atom-D425","Atom-D410"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["BGA559","BGA559"]}},"Pentium-315":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 315"},"Pentium-315J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 315J"},"Pentium-320":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"2004-02-14","Socket":"H-PBGA478, H-PBGA479, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 320"},"Pentium-325":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 325"},"Pentium-325J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 325J"},"Pentium-326":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PLGA478, PLGA775","Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 326"},"Pentium-330J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 330J"},"Pentium-331":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 331"},"Pentium-335":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PLGA478, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 335"},"Pentium-335J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 335J"},"Pentium-336":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 336"},"Pentium-340J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 340J"},"Pentium-341":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"2005-07-29","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 341"},"Pentium-345":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 345"},"Pentium-345J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 345J"},"Pentium-346":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 346"},"Pentium-350J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA478, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 350J"},"Pentium-351":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 351"},"Pentium-355":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 355"},"Pentium-505":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 505"},"Pentium-505J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 505J"},"Pentium-506":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q2 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 506"},"Pentium-511":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775, PPGA478","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 511"},"Pentium-515":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 515"},"Pentium-516":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 516"},"Pentium-517":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 517"},"Pentium-519":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 519"},"Pentium-519K":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 519K"},"Pentium-520J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 520J"},"Pentium-521":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 521"},"Pentium-524":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q2 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 524"},"Pentium-530J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 530J"},"Pentium-531":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"2004-06-25","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 531"},"Pentium-540J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 540J"},"Pentium-541":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2004","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 541"},"Pentium-550J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 550J"},"Pentium-551":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"2004-06-25","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 551"},"Pentium-560J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 560J"},"Pentium-561":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 561"},"Pentium-571":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 571"},"Pentium-620":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 620"},"Pentium-630":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 630"},"Pentium-640":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 640"},"Pentium-650":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 650"},"Pentium-660":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775, PPGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 660"},"Pentium-662":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 662"},"Pentium-670":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q2 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 670"},"Pentium-672":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 672"},"Desktop-Prescott":{"humanName":"Prescott","sections":[{"header":"2 Threads","members":["Pentium-672","Pentium-670","Pentium-662","Pentium-660","Pentium-650","Pentium-640","Pentium-630","Pentium-620","Pentium-571","Pentium-561","Pentium-560J","Pentium-551","Pentium-550J","Pentium-541","Pentium-540J","Pentium-531","Pentium-530J","Pentium-524","Pentium-521","Pentium-520J","Pentium-517"]},{"header":"1 Threads","members":["Pentium-519K","Pentium-519","Pentium-516","Pentium-515","Pentium-511","Pentium-506","Pentium-505J","Pentium-505","Pentium-355","Pentium-351","Pentium-350J","Pentium-346","Pentium-345J","Pentium-345","Pentium-341","Pentium-340J","Pentium-336","Pentium-335J","Pentium-335","Pentium-331","Pentium-330J","Pentium-326","Pentium-325J","Pentium-325","Pentium-320","Pentium-315J","Pentium-315"]},{"header":"2 Threads","members":["Pentium-672","Pentium-670","Pentium-662","Pentium-660","Pentium-650","Pentium-640","Pentium-630","Pentium-620","Pentium-571","Pentium-561","Pentium-560J","Pentium-551","Pentium-550J","Pentium-541","Pentium-540J","Pentium-531","Pentium-530J","Pentium-524","Pentium-521","Pentium-520J","Pentium-517"]},{"header":"1 Threads","members":["Pentium-519K","Pentium-519","Pentium-516","Pentium-515","Pentium-511","Pentium-506","Pentium-505J","Pentium-505","Pentium-355","Pentium-351","Pentium-350J","Pentium-346","Pentium-345J","Pentium-345","Pentium-341","Pentium-340J","Pentium-336","Pentium-335J","Pentium-335","Pentium-331","Pentium-330J","Pentium-326","Pentium-325J","Pentium-325","Pentium-320","Pentium-315J","Pentium-315"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q2 2004","Sockets":["PPGA478","PLGA478","PLGA775","PPGA775","PPGA478","PLGA478","PLGA775","PPGA775"]}},"Pentium-915":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 915"},"Pentium-920":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 920"},"Pentium-930":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 930"},"Pentium-935":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"2007-01-21","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 935"},"Pentium-940":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 940"},"Pentium-945":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 945"},"Pentium-950":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 950"},"Pentium-955":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 955"},"Pentium-960":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q2 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 960"},"Pentium-965":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 965"},"Desktop-Presler":{"humanName":"Presler","sections":[{"header":"4 Threads","members":["Pentium-965","Pentium-955"]},{"header":"2 Threads","members":["Pentium-960","Pentium-950","Pentium-945","Pentium-940","Pentium-935","Pentium-930","Pentium-920","Pentium-915"]},{"header":"4 Threads","members":["Pentium-965","Pentium-955"]},{"header":"2 Threads","members":["Pentium-960","Pentium-950","Pentium-945","Pentium-940","Pentium-935","Pentium-930","Pentium-920","Pentium-915"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q1 2006","Sockets":["PLGA775","PLGA775"]}},"Core-i3-2100T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2100T"},"Core-i3-2102":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2102"},"Core-i5-2380P":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i5-2380P"},"Core-i5-2390T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2390T"},"Core-i5-2500T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2500T"},"Pentium-G440":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G440"},"Pentium-G460":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-12-11","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G460"},"Pentium-G465":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G465"},"Pentium-G470":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G470"},"Pentium-G530":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G530"},"Pentium-G530T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G530T"},"Pentium-G540":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G540"},"Pentium-G540T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G540T"},"Pentium-G550":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G550"},"Pentium-G550T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G550T"},"Pentium-G555":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G555"},"Pentium-G620T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G620T"},"Pentium-G622":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G622"},"Pentium-G630T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G630T"},"Pentium-G632":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G632"},"Pentium-G640T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G640T"},"Pentium-G645T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G645T"},"Pentium-G860T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G860T"},"Desktop-Sandy-Bridge-E":{"humanName":"Sandy Bridge E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-3970X","Core-i7-3960X","Core-i7-3930K"]},{"header":"8 Threads","members":["Core-i7-3820"]},{"header":"9 - 16 Threads","members":["Core-i7-3970X","Core-i7-3960X","Core-i7-3930K"]},{"header":"8 Threads","members":["Core-i7-3820"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-11-14","Sockets":["LGA2011","LGA2011"]}},"Desktop-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2700K","Core-i7-2600S","Core-i7-2600K","Core-i7-2600"]},{"header":"4 Threads","members":["Core-i5-2550K","Core-i5-2500T","Core-i5-2500S","Core-i5-2500K","Core-i5-2500","Core-i5-2450P","Core-i5-2405S","Core-i5-2400S","Core-i5-2400","Core-i5-2390T","Core-i5-2380P","Core-i5-2320","Core-i5-2310","Core-i5-2300","Core-i3-2130","Core-i3-2125","Core-i3-2120T","Core-i3-2120","Core-i3-2105","Core-i3-2102","Core-i3-2100T","Core-i3-2100"]},{"header":"2 Threads","members":["Pentium-G870","Pentium-G860T","Pentium-G860","Pentium-G850","Pentium-G840","Pentium-G645T","Pentium-G645","Pentium-G640T","Pentium-G640","Pentium-G632","Pentium-G630T","Pentium-G630","Pentium-G622","Pentium-G620T","Pentium-G620","Pentium-G555","Pentium-G550T","Pentium-G550","Pentium-G540T","Pentium-G540","Pentium-G530T","Pentium-G530","Pentium-G470","Pentium-G465","Pentium-G460"]},{"header":"1 Threads","members":["Pentium-G440"]},{"header":"8 Threads","members":["Core-i7-2700K","Core-i7-2600S","Core-i7-2600K","Core-i7-2600"]},{"header":"4 Threads","members":["Core-i5-2550K","Core-i5-2500T","Core-i5-2500S","Core-i5-2500K","Core-i5-2500","Core-i5-2450P","Core-i5-2405S","Core-i5-2400S","Core-i5-2400","Core-i5-2390T","Core-i5-2380P","Core-i5-2320","Core-i5-2310","Core-i5-2300","Core-i3-2130","Core-i3-2125","Core-i3-2120T","Core-i3-2120","Core-i3-2105","Core-i3-2102","Core-i3-2100T","Core-i3-2100"]},{"header":"2 Threads","members":["Pentium-G870","Pentium-G860T","Pentium-G860","Pentium-G850","Pentium-G840","Pentium-G645T","Pentium-G645","Pentium-G640T","Pentium-G640","Pentium-G632","Pentium-G630T","Pentium-G630","Pentium-G622","Pentium-G620T","Pentium-G620","Pentium-G555","Pentium-G550T","Pentium-G550","Pentium-G540T","Pentium-G540","Pentium-G530T","Pentium-G530","Pentium-G470","Pentium-G465","Pentium-G460"]},{"header":"1 Threads","members":["Pentium-G440"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-01-09","Sockets":["LGA1155","LGA1155"]}},"Core-i5-6585R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6585R"},"Core-i5-6685R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6685R"},"Core-i7-6785R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6785R"},"Pentium-G3900":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900"},"Pentium-G3900T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900T"},"Pentium-G3920":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3920"},"Pentium-G4500T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4500T"},"Desktop-Skylake":{"humanName":"Skylake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-3175X","Core-i9-9980XE","Core-i9-9960X","Core-i9-9940X","Core-i9-9920X","Core-i9-9900X","Core-i9-9820X","Core-i9-7980XE","Core-i9-7960X","Core-i9-7940X","Core-i9-7920X","Core-i9-7900X"]},{"header":"9 - 16 Threads","members":["Core-i7-9800X","Core-i7-7820X","Core-i7-7800X"]},{"header":"8 Threads","members":["Core-i7-6785R","Core-i7-6700T","Core-i7-6700K","Core-i7-6700"]},{"header":"4 Threads","members":["Core-i5-6685R","Core-i5-6600T","Core-i5-6600K","Core-i5-6600","Core-i5-6585R","Core-i5-6500T","Core-i5-6500","Core-i5-6402P","Core-i5-6400T","Core-i5-6400","Core-i3-6320","Core-i3-6300T","Core-i3-6300","Core-i3-6100T","Core-i3-6100","Core-i3-6098P"]},{"header":"2 Threads","members":["Pentium-G4520","Pentium-G4500T","Pentium-G4500","Pentium-G4400T","Pentium-G4400","Pentium-G3920","Pentium-G3900T","Pentium-G3900"]},{"header":"17 - 64 Threads","members":["Xeon-W-3175X","Core-i9-9980XE","Core-i9-9960X","Core-i9-9940X","Core-i9-9920X","Core-i9-9900X","Core-i9-9820X","Core-i9-7980XE","Core-i9-7960X","Core-i9-7940X","Core-i9-7920X","Core-i9-7900X"]},{"header":"9 - 16 Threads","members":["Core-i7-9800X","Core-i7-7820X","Core-i7-7800X"]},{"header":"8 Threads","members":["Core-i7-6785R","Core-i7-6700T","Core-i7-6700K","Core-i7-6700"]},{"header":"4 Threads","members":["Core-i5-6685R","Core-i5-6600T","Core-i5-6600K","Core-i5-6600","Core-i5-6585R","Core-i5-6500T","Core-i5-6500","Core-i5-6402P","Core-i5-6400T","Core-i5-6400","Core-i3-6320","Core-i3-6300T","Core-i3-6300","Core-i3-6100T","Core-i3-6100","Core-i3-6098P"]},{"header":"2 Threads","members":["Pentium-G4520","Pentium-G4500T","Pentium-G4500","Pentium-G4400T","Pentium-G4400","Pentium-G3920","Pentium-G3900T","Pentium-G3900"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-08-05","Sockets":["LGA1151","LGA2066","LGA3647","LGA1151","LGA2066","LGA3647"]}},"Pentium-805":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q1 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 805"},"Pentium-820":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 820"},"Pentium-830":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 830"},"Pentium-840":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 840"},"Desktop-Smithfield":{"humanName":"Smithfield","sections":[{"header":"4 Threads","members":["Pentium-840"]},{"header":"2 Threads","members":["Pentium-830","Pentium-820","Pentium-805"]},{"header":"4 Threads","members":["Pentium-840"]},{"header":"2 Threads","members":["Pentium-830","Pentium-820","Pentium-805"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q1 2005","Sockets":["PLGA775","PLGA775"]}},"Core-E7200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7200"},"Core-E7300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7300"},"Core-E7400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-10-19","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7400"},"Core-E7500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7500"},"Core-E7600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2009-06-03","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7600"},"Core-E8190":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8190"},"Core-E8200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8200"},"Core-E8300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8300"},"Core-E8400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8400"},"Core-E8500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8500"},"Core-E8600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8600"},"Pentium-E3200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3200"},"Pentium-E3300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3300"},"Pentium-E3400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"Q1 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3400"},"Pentium-E3500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium E3500"},"Pentium-E6500K":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E6500K"},"Desktop-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Pentium-E6800","Pentium-E6700","Pentium-E6600","Pentium-E6500K","Pentium-E6500","Pentium-E6300","Pentium-E5800","Pentium-E5700","Pentium-E5500","Pentium-E5400","Pentium-E5300","Pentium-E5200","Pentium-E3500","Pentium-E3400","Pentium-E3300","Pentium-E3200","Core-E8600","Core-E8500","Core-E8400","Core-E8300","Core-E8200","Core-E8190","Core-E7600","Core-E7500","Core-E7400","Core-E7300","Core-E7200"]},{"header":"2 Threads","members":["Pentium-E6800","Pentium-E6700","Pentium-E6600","Pentium-E6500K","Pentium-E6500","Pentium-E6300","Pentium-E5800","Pentium-E5700","Pentium-E5500","Pentium-E5400","Pentium-E5300","Pentium-E5200","Pentium-E3500","Pentium-E3400","Pentium-E3300","Pentium-E3200","Core-E8600","Core-E8500","Core-E8400","Core-E8300","Core-E8200","Core-E8190","Core-E7600","Core-E7500","Core-E7400","Core-E7300","Core-E7200"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-01-20","Sockets":["LGA775","LGA775"]}},"Core-Q8200":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2008-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8200"},"Core-Q8200S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8200S"},"Core-Q8300":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8300"},"Core-Q8400":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-04-25","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8400"},"Core-Q8400S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-04-25","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8400S"},"Core-Q9300":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9300"},"Core-Q9400":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9400"},"Core-Q9400S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9400S"},"Core-Q9450":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9450"},"Core-Q9500":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9500"},"Core-Q9505":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9505"},"Core-Q9505S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9505S"},"Core-Q9550":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9550"},"Core-Q9550S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9550S"},"Core-Q9650":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9650"},"Core-QX9650":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9650"},"Core-QX9770":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"136 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9770"},"Core-QX9775":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-31","Socket":"LGA771","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9775"},"Desktop-Yorkfield":{"humanName":"Yorkfield","sections":[{"header":"4 Threads","members":["Core-QX9775","Core-QX9770","Core-QX9650","Core-Q9650","Core-Q9550S","Core-Q9550","Core-Q9505S","Core-Q9505","Core-Q9500","Core-Q9450","Core-Q9400S","Core-Q9400","Core-Q9300","Core-Q8400S","Core-Q8400","Core-Q8300","Core-Q8200S","Core-Q8200"]},{"header":"4 Threads","members":["Core-QX9775","Core-QX9770","Core-QX9650","Core-Q9650","Core-Q9550S","Core-Q9550","Core-Q9505S","Core-Q9505","Core-Q9500","Core-Q9450","Core-Q9400S","Core-Q9400","Core-Q9300","Core-Q8400S","Core-Q8400","Core-Q8300","Core-Q8200S","Core-Q8200"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA775","LGA771","LGA775","LGA771"]}},"Desktop-CPUs-Intel":{"humanName":"Desktop CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Desktop-Gemini-Lake-Refresh","Desktop-Cascade-Lake","Desktop-Gemini-Lake","Desktop-Coffee-Lake","Desktop-Kaby-Lake","Desktop-Apollo-Lake","Desktop-Broadwell-E","Desktop-Braswell","Desktop-Skylake","Desktop-Broadwell"]},{"header":"2010 - 2014","members":["Desktop-Haswell-E","Desktop-Devils-Canyon","Desktop-Bay-Trail","Desktop-Ivy-Bridge-E","Desktop-Crystal-Well","Desktop-Haswell","Desktop-Ivy-Bridge","Desktop-Sandy-Bridge-E","Desktop-Cedarview","Desktop-Sandy-Bridge","Desktop-Gulftown","Desktop-Clarkdale","Desktop-Pineview"]},{"header":"2005 - 2009","members":["Desktop-Lynnfield","Desktop-Bloomfield","Desktop-Diamondville","Desktop-Wolfdale","Desktop-Yorkfield","Desktop-Kentsfield","Desktop-Conroe","Desktop-Cedarmill","Desktop-Presler","Desktop-Smithfield"]},{"header":"2000 - 2004","members":["Desktop-Prescott"]},{"header":"2015 - 2019","members":["Desktop-Gemini-Lake-Refresh","Desktop-Cascade-Lake","Desktop-Gemini-Lake","Desktop-Coffee-Lake","Desktop-Kaby-Lake","Desktop-Apollo-Lake","Desktop-Broadwell-E","Desktop-Braswell","Desktop-Skylake","Desktop-Broadwell"]},{"header":"2010 - 2014","members":["Desktop-Haswell-E","Desktop-Devils-Canyon","Desktop-Bay-Trail","Desktop-Ivy-Bridge-E","Desktop-Crystal-Well","Desktop-Haswell","Desktop-Ivy-Bridge","Desktop-Sandy-Bridge-E","Desktop-Cedarview","Desktop-Sandy-Bridge","Desktop-Gulftown","Desktop-Clarkdale","Desktop-Pineview"]},{"header":"2005 - 2009","members":["Desktop-Lynnfield","Desktop-Bloomfield","Desktop-Diamondville","Desktop-Wolfdale","Desktop-Yorkfield","Desktop-Kentsfield","Desktop-Conroe","Desktop-Cedarmill","Desktop-Presler","Desktop-Smithfield"]},{"header":"2000 - 2004","members":["Desktop-Prescott"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Atom-E3930":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"6.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, MT/s;
LPDDR4","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L, MT/s;
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3930"},"Atom-E3940":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"9.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,
LPDDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L,
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3940"},"Atom-E3950":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"12 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L,
LPDDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","VRAM Type":"DDR3L,
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3950"},"Embedded-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Atom-E3950","Atom-E3940"]},{"header":"2 Threads","members":["Atom-E3930"]},{"header":"4 Threads","members":["Atom-E3950","Atom-E3940"]},{"header":"2 Threads","members":["Atom-E3930"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-10-25","Sockets":["BGA1296","BGA1296"]}},"Core-i5-520E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-520E"},"Core-i7-620LE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620LE"},"Core-i7-620UE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","Boost Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620UE"},"Embedded-Arrandale":{"humanName":"Arrandale","sections":[{"header":"4 Threads","members":["Core-i7-620UE","Core-i7-620LE","Core-i5-520E"]},{"header":"4 Threads","members":["Core-i7-620UE","Core-i7-620LE","Core-i5-520E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-01-07","Sockets":["BGA1288","BGA1288"]}},"Atom-E3805":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.33 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-10-06","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom E3805"},"Atom-E3815":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3815"},"Atom-E3825":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.33 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3825"},"Atom-E3826":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3826"},"Atom-E3827":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"8 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.75 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"542 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3827"},"Atom-E3845":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.91 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"542 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3845"},"Embedded-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Atom-E3845"]},{"header":"2 Threads","members":["Atom-E3827","Atom-E3826","Atom-E3825","Atom-E3805"]},{"header":"1 Threads","members":["Atom-E3815"]},{"header":"4 Threads","members":["Atom-E3845"]},{"header":"2 Threads","members":["Atom-E3827","Atom-E3826","Atom-E3825","Atom-E3805"]},{"header":"1 Threads","members":["Atom-E3815"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-10-08","Sockets":["BGA1170","BGA1170"]}},"Atom-E8000":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Embedded","Lithography":"14 nm","TDP":"5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-17","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E8000"},"Embedded-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Atom-E8000"]},{"header":"4 Threads","members":["Atom-E8000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-01-17","Sockets":["BGA1170","BGA1170"]}},"Core-i7-5700EQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5700EQ"},"Core-i7-5850EQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5850EQ"},"Xeon-E3-1258LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"700 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1258LV4"},"Xeon-E3-1278LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"800 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1278LV4"},"Xeon-E5-2608LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"50 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2608LV4"},"Xeon-E5-2618LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV4"},"Xeon-E5-2628LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV4"},"Xeon-E5-2648LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV4"},"Xeon-E5-2658V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V4"},"Xeon-E5-2699RV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-10-24","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699RV4"},"Xeon-E5-4628LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4628LV4"},"Embedded-Broadwell":{"humanName":"Broadwell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4628LV4","Xeon-E5-2699RV4","Xeon-E5-2658V4","Xeon-E5-2648LV4","Xeon-E5-2628LV4","Xeon-E5-2618LV4"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2608LV4"]},{"header":"8 Threads","members":["Xeon-E3-1278LV4","Xeon-E3-1258LV4","Core-i7-5850EQ","Core-i7-5700EQ"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4628LV4","Xeon-E5-2699RV4","Xeon-E5-2658V4","Xeon-E5-2648LV4","Xeon-E5-2628LV4","Xeon-E5-2618LV4"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2608LV4"]},{"header":"8 Threads","members":["Xeon-E3-1278LV4","Xeon-E3-1258LV4","Core-i7-5850EQ","Core-i7-5700EQ"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-06-02","Sockets":["BGA1364","LGA20113","BGA1364","LGA20113"]}},"Core-i3-9100E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR","Base Frequency":"3.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100E"},"Core-i3-9100HL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100HL"},"Core-i3-9100TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100TE"},"Core-i5-9500E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9500E"},"Core-i5-9500TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9500TE"},"Core-i7-9700E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9700E"},"Core-i7-9700TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9700TE"},"Core-i7-9850HE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9850HE"},"Core-i7-9850HL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9850HL"},"Pentium-G4930E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930E"},"Pentium-G4932E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4932E"},"Xeon-E-2226GE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2226GE"},"Xeon-E-2254ME":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2254ME"},"Xeon-E-2254ML":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2254ML"},"Xeon-E-2276ME":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276ME"},"Xeon-E-2276ML":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276ML"},"Xeon-E-2278GE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278GE"},"Xeon-E-2278GEL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278GEL"},"Embedded-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2278GEL","Xeon-E-2278GE","Xeon-E-2276ML","Xeon-E-2276ME","Core-i7-9850HL","Core-i7-9850HE"]},{"header":"8 Threads","members":["Xeon-E-2254ML","Xeon-E-2254ME","Core-i7-9700TE","Core-i7-9700E"]},{"header":"6 Threads","members":["Xeon-E-2226GE","Core-i5-9500TE","Core-i5-9500E"]},{"header":"4 Threads","members":["Core-i3-9100TE","Core-i3-9100HL","Core-i3-9100E"]},{"header":"2 Threads","members":["Pentium-G4932E","Pentium-G4930E"]},{"header":"9 - 16 Threads","members":["Xeon-E-2278GEL","Xeon-E-2278GE","Xeon-E-2276ML","Xeon-E-2276ME","Core-i7-9850HL","Core-i7-9850HE"]},{"header":"8 Threads","members":["Xeon-E-2254ML","Xeon-E-2254ME","Core-i7-9700TE","Core-i7-9700E"]},{"header":"6 Threads","members":["Xeon-E-2226GE","Core-i5-9500TE","Core-i5-9500E"]},{"header":"4 Threads","members":["Core-i3-9100TE","Core-i3-9100HL","Core-i3-9100E"]},{"header":"2 Threads","members":["Pentium-G4932E","Pentium-G4930E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-06-10","Sockets":["BGA1440","LGA1151","BGA1440","LGA1151"]}},"Xeon-L5408":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Embedded","Lithography":"45 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5408"},"Embedded-Harpertown":{"humanName":"Harpertown","sections":[{"header":"4 Threads","members":["Xeon-L5408"]},{"header":"4 Threads","members":["Xeon-L5408"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-03-31","Sockets":["LGA771","LGA771"]}},"Core-i3-4100E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4100E"},"Core-i3-4102E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4102E"},"Core-i3-4110E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4110E"},"Core-i3-4112E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4112E"},"Core-i3-4330TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i3-4330TE"},"Core-i3-4340TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i3-4340TE"},"Core-i5-4400E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4400E"},"Core-i5-4402E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4402E"},"Core-i5-4402EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"27 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4402EC"},"Core-i5-4410E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4410E"},"Core-i5-4422E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4422E"},"Core-i5-4570TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4570TE"},"Core-i7-4700EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"43 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4700EC"},"Core-i7-4700EQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4700EQ"},"Core-i7-4702EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"27 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4702EC"},"Core-i7-4770TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770TE"},"Pentium-2000E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium 2000E"},"Pentium-2002E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium 2002E"},"Pentium-G1820TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Pentium G1820TE"},"Pentium-G3320TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium G3320TE"},"Xeon-E3-1268LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1268LV3"},"Xeon-E5-1428LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428LV3"},"Xeon-E5-2408LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2408LV3"},"Xeon-E5-2418LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418LV3"},"Xeon-E5-2428LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"55 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428LV3"},"Xeon-E5-2438LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2438LV3"},"Xeon-E5-2608LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"52 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2608LV3"},"Xeon-E5-2618LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV3"},"Xeon-E5-2628LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV3"},"Xeon-E5-2648LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV3"},"Xeon-E5-2658AV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-01-28","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658AV3"},"Xeon-E5-2658V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V3"},"Xeon-E5-4648V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4648V3"},"Embedded-Haswell":{"humanName":"Haswell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4648V3","Xeon-E5-2658V3","Xeon-E5-2658AV3","Xeon-E5-2648LV3","Xeon-E5-2628LV3","Xeon-E5-2438LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2618LV3","Xeon-E5-2608LV3","Xeon-E5-2428LV3","Xeon-E5-2418LV3","Xeon-E5-1428LV3"]},{"header":"8 Threads","members":["Xeon-E5-2408LV3","Xeon-E3-1268LV3","Core-i7-4770TE","Core-i7-4702EC","Core-i7-4700EQ","Core-i7-4700EC"]},{"header":"4 Threads","members":["Core-i5-4570TE","Core-i5-4422E","Core-i5-4410E","Core-i5-4402EC","Core-i5-4402E","Core-i5-4400E","Core-i3-4340TE","Core-i3-4330TE","Core-i3-4112E","Core-i3-4110E","Core-i3-4102E","Core-i3-4100E"]},{"header":"2 Threads","members":["Pentium-G3320TE","Pentium-G1820TE","Pentium-2002E","Pentium-2000E"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4648V3","Xeon-E5-2658V3","Xeon-E5-2658AV3","Xeon-E5-2648LV3","Xeon-E5-2628LV3","Xeon-E5-2438LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2618LV3","Xeon-E5-2608LV3","Xeon-E5-2428LV3","Xeon-E5-2418LV3","Xeon-E5-1428LV3"]},{"header":"8 Threads","members":["Xeon-E5-2408LV3","Xeon-E3-1268LV3","Core-i7-4770TE","Core-i7-4702EC","Core-i7-4700EQ","Core-i7-4700EC"]},{"header":"4 Threads","members":["Core-i5-4570TE","Core-i5-4422E","Core-i5-4410E","Core-i5-4402EC","Core-i5-4402E","Core-i5-4400E","Core-i3-4340TE","Core-i3-4330TE","Core-i3-4112E","Core-i3-4110E","Core-i3-4102E","Core-i3-4100E"]},{"header":"2 Threads","members":["Pentium-G3320TE","Pentium-G1820TE","Pentium-2002E","Pentium-2000E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","BGA1364","LGA20113","LGA1356","LGA1150","BGA1364","LGA20113","LGA1356"]}},"Core-i3-3120ME":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-07-26","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3120ME"},"Core-i3-3217UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-07-26","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3217UE"},"Core-i5-3610ME":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3610ME"},"Core-i7-3517UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3517UE"},"Core-i7-3555LE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"550 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3555LE"},"Core-i7-3612QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3612QE"},"Core-i7-3615QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3615QE"},"Pentium-1020E":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1020E"},"Pentium-1047UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1047UE"},"Pentium-1405V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 1405V2"},"Pentium-927UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 927UE"},"Xeon-E5-1428LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428LV2"},"Xeon-E5-2418LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418LV2"},"Xeon-E5-2428LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"60 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428LV2"},"Xeon-E5-2448LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2448LV2"},"Embedded-Ivy-Bridge-EN":{"humanName":"Ivy Bridge EN","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-2448LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2428LV2","Xeon-E5-2418LV2","Xeon-E5-1428LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-2448LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2428LV2","Xeon-E5-2418LV2","Xeon-E5-1428LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-01-09","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2618LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV2"},"Xeon-E5-2628LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV2"},"Xeon-E5-2648LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV2"},"Xeon-E5-2658V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V2"},"Xeon-E5-4624LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4624LV2"},"Embedded-Ivy-Bridge-EP":{"humanName":"Ivy Bridge EP","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4624LV2","Xeon-E5-2658V2","Xeon-E5-2648LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2628LV2","Xeon-E5-2618LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4624LV2","Xeon-E5-2658V2","Xeon-E5-2648LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2628LV2","Xeon-E5-2618LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Embedded-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3615QE","Core-i7-3612QE","Core-i7-3610QE"]},{"header":"4 Threads","members":["Core-i7-3555LE","Core-i7-3517UE","Core-i5-3610ME","Core-i3-3217UE","Core-i3-3120ME"]},{"header":"2 Threads","members":["Pentium-1405V2","Pentium-1047UE","Pentium-1020E"]},{"header":"1 Threads","members":["Pentium-927UE"]},{"header":"8 Threads","members":["Core-i7-3615QE","Core-i7-3612QE","Core-i7-3610QE"]},{"header":"4 Threads","members":["Core-i7-3555LE","Core-i7-3517UE","Core-i5-3610ME","Core-i3-3217UE","Core-i3-3120ME"]},{"header":"2 Threads","members":["Pentium-1405V2","Pentium-1047UE","Pentium-1020E"]},{"header":"1 Threads","members":["Pentium-927UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["BGA1023","PGA988","LGA1356","BGA1023","PGA988","LGA1356"]}},"Pentium-P1053":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"30 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium P1053"},"Xeon-EC3539":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC3539"},"Xeon-EC5509":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"85 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5509"},"Xeon-EC5539":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Base Frequency":"2.27 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5539"},"Xeon-EC5549":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5549"},"Xeon-LC3518":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"23 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC3518"},"Xeon-LC3528":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Base Frequency":"1.73 GHz","Boost Frequency":"1.87 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC3528"},"Xeon-LC5518":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"48 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Base Frequency":"1.73 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC5518"},"Xeon-LC5528":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Base Frequency":"2.13 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC5528"},"Embedded-Jasper-Forest":{"humanName":"Jasper Forest","sections":[{"header":"8 Threads","members":["Xeon-LC5528","Xeon-LC5518","Xeon-EC5549"]},{"header":"4 Threads","members":["Xeon-LC3528","Xeon-EC5509","Xeon-EC3539"]},{"header":"2 Threads","members":["Xeon-EC5539","Pentium-P1053"]},{"header":"1 Threads","members":["Xeon-LC3518"]},{"header":"8 Threads","members":["Xeon-LC5528","Xeon-LC5518","Xeon-EC5549"]},{"header":"4 Threads","members":["Xeon-LC3528","Xeon-EC5509","Xeon-EC3539"]},{"header":"2 Threads","members":["Xeon-EC5539","Pentium-P1053"]},{"header":"1 Threads","members":["Xeon-LC3518"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["LGA1366","LGA1366"]}},"Core-i3-7100E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100E"},"Core-i3-7102E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7102E"},"Core-i5-7440EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7440EQ"},"Core-i5-7442EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7442EQ"},"Xeon-E3-1501LV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-06-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1501LV6"},"Xeon-E3-1501MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-06-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1501MV6"},"Xeon-E3-1505LV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505LV6"},"Embedded-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1505LV6","Core-i7-7820EQ"]},{"header":"4 Threads","members":["Xeon-E3-1501MV6","Xeon-E3-1501LV6","Core-i5-7442EQ","Core-i5-7440EQ","Core-i3-7102E","Core-i3-7100E"]},{"header":"8 Threads","members":["Xeon-E3-1505LV6","Core-i7-7820EQ"]},{"header":"4 Threads","members":["Xeon-E3-1501MV6","Xeon-E3-1501LV6","Core-i5-7442EQ","Core-i5-7440EQ","Core-i3-7102E","Core-i3-7100E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["BGA1440","BGA1440"]}},"Xeon-L5508":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Embedded","Lithography":"45 nm","TDP":"38 W","Core Count":2,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5508"},"Xeon-L5518":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Embedded","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5518"},"Embedded-Nehalem-EP":{"humanName":"Nehalem EP","sections":[{"header":"8 Threads","members":["Xeon-L5518"]},{"header":"4 Threads","members":["Xeon-L5508"]},{"header":"8 Threads","members":["Xeon-L5518"]},{"header":"4 Threads","members":["Xeon-L5508"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Atom-C2308":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.25 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-03-27","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2308"},"Atom-C2316":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2017-07-10","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2316"},"Atom-C2338":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2338"},"Atom-C2358":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2358"},"Atom-C2508":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"9.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.25 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-03-27","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2508"},"Atom-C2516":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-07-10","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2516"},"Atom-C2518":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"13 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2518"},"Atom-C2538":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2538"},"Atom-C2558":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2558"},"Atom-C2718":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"18 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2718"},"Atom-C2738":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2738"},"Atom-C2758":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2758"},"Embedded-Rangeley":{"humanName":"Rangeley","sections":[{"header":"8 Threads","members":["Atom-C2758","Atom-C2738","Atom-C2718"]},{"header":"4 Threads","members":["Atom-C2558","Atom-C2538","Atom-C2518","Atom-C2516","Atom-C2508"]},{"header":"2 Threads","members":["Atom-C2358","Atom-C2338","Atom-C2316","Atom-C2308"]},{"header":"8 Threads","members":["Atom-C2758","Atom-C2738","Atom-C2718"]},{"header":"4 Threads","members":["Atom-C2558","Atom-C2538","Atom-C2518","Atom-C2516","Atom-C2508"]},{"header":"2 Threads","members":["Atom-C2358","Atom-C2338","Atom-C2316","Atom-C2308"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-04","Sockets":["BGA1283","BGA1283"]}},"Core-i3-2310E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q1 2011","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2310E"},"Core-i3-2340UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2340UE"},"Core-i5-2515E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2515E"},"Core-i7-2610UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-03-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2610UE"},"Core-i7-2655LE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-03-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2655LE"},"Core-i7-2715QE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2715QE"},"Pentium-807UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1000 MHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 807UE"},"Pentium-827E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-16","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 827E"},"Pentium-847E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 847E"},"Pentium-B810E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B810E"},"Xeon-E5-2418L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"50 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418L"},"Xeon-E5-2428L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428L"},"Xeon-E5-2448L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2448L"},"Embedded-Sandy-Bridge-EN":{"humanName":"Sandy Bridge EN","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2448L","Xeon-E5-2428L"]},{"header":"8 Threads","members":["Xeon-E5-2418L"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2448L","Xeon-E5-2428L"]},{"header":"8 Threads","members":["Xeon-E5-2418L"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-05-14","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2648L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Embedded","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648L"},"Xeon-E5-2658":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Embedded","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658"},"Embedded-Sandy-Bridge-EP":{"humanName":"Sandy Bridge EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2658","Xeon-E5-2648L"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2658","Xeon-E5-2648L"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-03-06","Sockets":["LGA2011","LGA2011"]}},"Embedded-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2715QE"]},{"header":"4 Threads","members":["Core-i7-2655LE","Core-i7-2610UE","Core-i5-2515E","Core-i3-2340UE","Core-i3-2310E"]},{"header":"2 Threads","members":["Pentium-B810E","Pentium-847E"]},{"header":"1 Threads","members":["Pentium-827E","Pentium-807UE"]},{"header":"8 Threads","members":["Core-i7-2715QE"]},{"header":"4 Threads","members":["Core-i7-2655LE","Core-i7-2610UE","Core-i5-2515E","Core-i3-2340UE","Core-i3-2310E"]},{"header":"2 Threads","members":["Pentium-B810E","Pentium-847E"]},{"header":"1 Threads","members":["Pentium-827E","Pentium-807UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"Q1 2011","Sockets":["BGA1023","BGA1023"]}},"Core-i3-6100E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100E"},"Core-i3-6100TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100TE"},"Core-i3-6102E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6102E"},"Core-i5-6440EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6440EQ"},"Core-i5-6442EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.9 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6442EQ"},"Core-i7-6700TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6700TE"},"Core-i7-6820EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6820EQ"},"Core-i7-6822EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6822EQ"},"Pentium-G3900E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900E"},"Pentium-G3900TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900TE"},"Pentium-G3902E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3902E"},"Pentium-G4400TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-12-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4400TE"},"Xeon-E3-1268LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1268LV5"},"Xeon-E3-1505LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505LV5"},"Xeon-E3-1558LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1558LV5"},"Xeon-E3-1578LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"700 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1578LV5"},"Embedded-Skylake":{"humanName":"Skylake","sections":[{"header":"8 Threads","members":["Xeon-E3-1578LV5","Xeon-E3-1558LV5","Xeon-E3-1505LV5","Xeon-E3-1268LV5","Core-i7-6822EQ","Core-i7-6820EQ","Core-i7-6700TE"]},{"header":"4 Threads","members":["Core-i5-6500TE","Core-i5-6442EQ","Core-i5-6440EQ","Core-i3-6102E","Core-i3-6100TE","Core-i3-6100E"]},{"header":"2 Threads","members":["Pentium-G4400TE","Pentium-G3902E","Pentium-G3900TE","Pentium-G3900E"]},{"header":"8 Threads","members":["Xeon-E3-1578LV5","Xeon-E3-1558LV5","Xeon-E3-1505LV5","Xeon-E3-1268LV5","Core-i7-6822EQ","Core-i7-6820EQ","Core-i7-6700TE"]},{"header":"4 Threads","members":["Core-i5-6500TE","Core-i5-6442EQ","Core-i5-6440EQ","Core-i3-6102E","Core-i3-6100TE","Core-i3-6100E"]},{"header":"2 Threads","members":["Pentium-G4400TE","Pentium-G3902E","Pentium-G3900TE","Pentium-G3900E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-10-11","Sockets":["LGA1151","BGA1440","LGA1151","BGA1440"]}},"Atom-E645C":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E645C"},"Atom-E645CT":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E645CT"},"Atom-E665C":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E665C"},"Atom-E665CT":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E665CT"},"Embedded-Stellarton":{"humanName":"Stellarton","sections":[{"header":"2 Threads","members":["Atom-E665CT","Atom-E665C","Atom-E645CT","Atom-E645C"]},{"header":"2 Threads","members":["Atom-E665CT","Atom-E665C","Atom-E645CT","Atom-E645C"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2010-11-22","Sockets":["BGA1466","BGA1466"]}},"Atom-E620":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"600 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E620"},"Atom-E620T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"600 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E620T"},"Atom-E640":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E640"},"Atom-E640T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E640T"},"Atom-E660":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E660"},"Atom-E660T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E660T"},"Atom-E680":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"4.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E680"},"Atom-E680T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"4.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E680T"},"Embedded-Tunnel-Creek":{"humanName":"Tunnel Creek","sections":[{"header":"2 Threads","members":["Atom-E680T","Atom-E680","Atom-E660T","Atom-E660","Atom-E640T","Atom-E640","Atom-E620T","Atom-E620"]},{"header":"2 Threads","members":["Atom-E680T","Atom-E680","Atom-E660T","Atom-E660","Atom-E640T","Atom-E640","Atom-E620T","Atom-E620"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q3 2010","Sockets":["BGA676","BGA676"]}},"Core-i3-8145UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8145UE"},"Core-i5-8365UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8365UE"},"Core-i7-8665UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8665UE"},"Pentium-4305UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4305UE"},"Embedded-Whiskey-Lake":{"humanName":"Whiskey Lake","sections":[{"header":"8 Threads","members":["Core-i7-8665UE","Core-i5-8365UE"]},{"header":"4 Threads","members":["Core-i3-8145UE"]},{"header":"2 Threads","members":["Pentium-4305UE"]},{"header":"8 Threads","members":["Core-i7-8665UE","Core-i5-8365UE"]},{"header":"4 Threads","members":["Core-i3-8145UE"]},{"header":"2 Threads","members":["Pentium-4305UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-06-10","Sockets":["BGA1528","BGA1528"]}},"Xeon-E5240":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5240"},"Xeon-L3014":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-09-30","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3014"},"Xeon-L5238":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"Q1 2008","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5238"},"Embedded-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Xeon-L5238","Xeon-E5240"]},{"header":"1 Threads","members":["Xeon-L3014"]},{"header":"2 Threads","members":["Xeon-L5238","Xeon-E5240"]},{"header":"1 Threads","members":["Xeon-L3014"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2008","Sockets":["LGA771","LGA771"]}},"Embedded-CPUs-Intel":{"humanName":"Embedded CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Embedded-Whiskey-Lake","Embedded-Coffee-Lake","Embedded-Kaby-Lake","Embedded-Apollo-Lake","Embedded-Braswell","Embedded-Skylake","Embedded-Broadwell"]},{"header":"2010 - 2014","members":["Embedded-Ivy-Bridge-EN","Embedded-Bay-Trail","Embedded-Ivy-Bridge-EP","Embedded-Rangeley","Embedded-Haswell","Embedded-Gladden","Embedded-Sandy-Bridge-EN","Embedded-Ivy-Bridge","Embedded-Sandy-Bridge-EP","Embedded-Sandy-Bridge","Embedded-Stellarton","Embedded-Tunnel-Creek","Embedded-Arrandale","Embedded-Jasper-Forest"]},{"header":"2005 - 2009","members":["Embedded-Nehalem-EP","Embedded-Harpertown","Embedded-Wolfdale"]},{"header":"2015 - 2019","members":["Embedded-Whiskey-Lake","Embedded-Coffee-Lake","Embedded-Kaby-Lake","Embedded-Apollo-Lake","Embedded-Braswell","Embedded-Skylake","Embedded-Broadwell"]},{"header":"2010 - 2014","members":["Embedded-Ivy-Bridge-EN","Embedded-Bay-Trail","Embedded-Ivy-Bridge-EP","Embedded-Rangeley","Embedded-Haswell","Embedded-Gladden","Embedded-Sandy-Bridge-EN","Embedded-Ivy-Bridge","Embedded-Sandy-Bridge-EP","Embedded-Sandy-Bridge","Embedded-Stellarton","Embedded-Tunnel-Creek","Embedded-Arrandale","Embedded-Jasper-Forest"]},{"header":"2005 - 2009","members":["Embedded-Nehalem-EP","Embedded-Harpertown","Embedded-Wolfdale"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Pentium-4425Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 4425Y"},"Core-i3-10110Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-10110Y"},"Core-i5-10310Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-10310Y"},"Core-i5-8310Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2019","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8310Y"},"Mobile-Amber-Lake-Y":{"humanName":"Amber Lake Y","sections":[{"header":"8 Threads","members":["Core-i7-10510Y","Core-i5-10310Y","Core-i5-10210Y"]},{"header":"4 Threads","members":["Core-m3-8100Y","Core-i7-8500Y","Core-i5-8310Y","Core-i5-8210Y","Core-i5-8200Y","Core-i3-10110Y"]},{"header":"8 Threads","members":["Core-i7-10510Y","Core-i5-10310Y","Core-i5-10210Y"]},{"header":"4 Threads","members":["Core-m3-8100Y","Core-i7-8500Y","Core-i5-8310Y","Core-i5-8210Y","Core-i5-8200Y","Core-i3-10110Y"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-08-28","Sockets":["BGA1515","UTBGA1377","BGA1515","UTBGA1377"]}},"Mobile-Amber-Lake":{"humanName":"Amber Lake","sections":[{"header":"4 Threads","members":["Pentium-4425Y"]},{"header":"4 Threads","members":["Pentium-4425Y"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-01-01","Sockets":["BGA1515","BGA1515"]}},"Pentium-N3350":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3350"},"Pentium-N3350E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","GPU Boost Frequency":"650 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3350E"},"Pentium-N3450":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3450"},"Pentium-N4200E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N4200E"},"Mobile-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Pentium-N4200E","Pentium-N4200","Pentium-N3450"]},{"header":"2 Threads","members":["Pentium-N3350E","Pentium-N3350"]},{"header":"4 Threads","members":["Pentium-N4200E","Pentium-N4200","Pentium-N3450"]},{"header":"2 Threads","members":["Pentium-N3350E","Pentium-N3350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1296","BGA1296"]}},"Core-i3-330E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-330E"},"Core-i3-330UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-330UM"},"Core-i3-380UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q4 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-380UM"},"Core-i3-390M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-390M"},"Core-i5-430UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"1.73 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-430UM"},"Core-i5-470UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"1.86 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q4 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-470UM"},"Core-i5-520UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.066 GHz","Boost Frequency":"1.866 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-520UM"},"Core-i5-540UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-540UM"},"Core-i5-560UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-560UM"},"Core-i7-610E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-610E"},"Core-i7-620LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620LM"},"Core-i7-620UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620UM"},"Core-i7-640UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-640UM"},"Core-i7-660LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660LM"},"Core-i7-660UE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660UE"},"Core-i7-660UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660UM"},"Core-i7-680UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.46 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-680UM"},"Pentium-P4500":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2010-04-01","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4500"},"Pentium-P4505":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4505"},"Pentium-P4600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4600"},"Pentium-P6000":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P6000"},"Pentium-P6300":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.27 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P6300"},"Pentium-U3400":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3400"},"Pentium-U3405":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3405"},"Pentium-U3600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2011-01-09","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3600"},"Pentium-U5400":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U5400"},"Pentium-U5600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-01-09","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U5600"},"Mobile-Arrandale":{"humanName":"Arrandale","sections":[{"header":"4 Threads","members":["Core-i7-680UM","Core-i7-660UM","Core-i7-660UE","Core-i7-660LM","Core-i7-640UM","Core-i7-640M","Core-i7-640LM","Core-i7-620UM","Core-i7-620M","Core-i7-620LM","Core-i7-610E","Core-i5-580M","Core-i5-560UM","Core-i5-560M","Core-i5-540UM","Core-i5-540M","Core-i5-520UM","Core-i5-520M","Core-i5-480M","Core-i5-470UM","Core-i5-460M","Core-i5-450M","Core-i5-430UM","Core-i5-430M","Core-i3-390M","Core-i3-380UM","Core-i3-380M","Core-i3-370M","Core-i3-350M","Core-i3-330UM","Core-i3-330M","Core-i3-330E"]},{"header":"2 Threads","members":["Pentium-U5600","Pentium-U5400","Pentium-U3600","Pentium-U3405","Pentium-U3400","Pentium-P6300","Pentium-P6200","Pentium-P6100","Pentium-P6000","Pentium-P4600","Pentium-P4505","Pentium-P4500"]},{"header":"4 Threads","members":["Core-i7-680UM","Core-i7-660UM","Core-i7-660UE","Core-i7-660LM","Core-i7-640UM","Core-i7-640M","Core-i7-640LM","Core-i7-620UM","Core-i7-620M","Core-i7-620LM","Core-i7-610E","Core-i5-580M","Core-i5-560UM","Core-i5-560M","Core-i5-540UM","Core-i5-540M","Core-i5-520UM","Core-i5-520M","Core-i5-480M","Core-i5-470UM","Core-i5-460M","Core-i5-450M","Core-i5-430UM","Core-i5-430M","Core-i3-390M","Core-i3-380UM","Core-i3-380M","Core-i3-370M","Core-i3-350M","Core-i3-330UM","Core-i3-330M","Core-i3-330E"]},{"header":"2 Threads","members":["Pentium-U5600","Pentium-U5400","Pentium-U3600","Pentium-U3405","Pentium-U3400","Pentium-P6300","Pentium-P6200","Pentium-P6100","Pentium-P6000","Pentium-P4600","Pentium-P4505","Pentium-P4500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"Q1 2010","Sockets":["BGA1288","PGA988","BGA1288","PGA988"]}},"Pentium-A1020":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-03","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2"},"isPart":true,"type":"CPU","humanName":"Pentium A1020"},"Pentium-N2805":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2805"},"Pentium-N2806":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2806"},"Pentium-N2807":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.58 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-02-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2807"},"Pentium-N2808":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.58 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"311 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2808"},"Pentium-N2810":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2810"},"Pentium-N2815":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2815"},"Pentium-N2820":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2820"},"Pentium-N2830":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2830"},"Pentium-N2840":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"311 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2840"},"Pentium-N2910":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2910"},"Pentium-N2920":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"844 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2920"},"Pentium-N2930":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2930"},"Pentium-N2940":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2940"},"Mobile-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Pentium-N3540","Pentium-N3530","Pentium-N3520","Pentium-N3510","Pentium-N2940","Pentium-N2930","Pentium-N2920","Pentium-N2910","Pentium-A1020","Atom-Z3795","Atom-Z3785","Atom-Z3775D","Atom-Z3775","Atom-Z3770D","Atom-Z3770","Atom-Z3745D","Atom-Z3745","Atom-Z3740D","Atom-Z3740","Atom-Z3736G","Atom-Z3736F","Atom-Z3735G","Atom-Z3735F","Atom-Z3735E","Atom-Z3735D"]},{"header":"2 Threads","members":["Pentium-N2840","Pentium-N2830","Pentium-N2820","Pentium-N2815","Pentium-N2810","Pentium-N2808","Pentium-N2807","Pentium-N2806","Pentium-N2805"]},{"header":"4 Threads","members":["Pentium-N3540","Pentium-N3530","Pentium-N3520","Pentium-N3510","Pentium-N2940","Pentium-N2930","Pentium-N2920","Pentium-N2910","Pentium-A1020","Atom-Z3795","Atom-Z3785","Atom-Z3775D","Atom-Z3775","Atom-Z3770D","Atom-Z3770","Atom-Z3745D","Atom-Z3745","Atom-Z3740D","Atom-Z3740","Atom-Z3736G","Atom-Z3736F","Atom-Z3735G","Atom-Z3735F","Atom-Z3735E","Atom-Z3735D"]},{"header":"2 Threads","members":["Pentium-N2840","Pentium-N2830","Pentium-N2820","Pentium-N2815","Pentium-N2810","Pentium-N2808","Pentium-N2807","Pentium-N2806","Pentium-N2805"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-11","Sockets":["BGA1170","UTBGA1380","UTBGA592","BGA1170","UTBGA1380","UTBGA592"]}},"Pentium-N3000":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"4 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3000"},"Pentium-N3010":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"4 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3010"},"Pentium-N3050":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3050"},"Pentium-N3060":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3060"},"Pentium-N3150":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3150"},"Pentium-N3160":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3160"},"Mobile-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Pentium-N3710","Pentium-N3700","Pentium-N3160","Pentium-N3150"]},{"header":"2 Threads","members":["Pentium-N3060","Pentium-N3050","Pentium-N3010","Pentium-N3000"]},{"header":"4 Threads","members":["Pentium-N3710","Pentium-N3700","Pentium-N3160","Pentium-N3150"]},{"header":"2 Threads","members":["Pentium-N3060","Pentium-N3050","Pentium-N3010","Pentium-N3000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-30","Sockets":["BGA1170","BGA1170"]}},"Core-5Y10":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10"},"Core-5Y10a":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10a"},"Core-5Y10c":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10c"},"Core-5Y31":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"900 MHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y31"},"Core-5Y51":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y51"},"Core-5Y70":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y70"},"Core-5Y71":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y71"},"Core-i3-5157U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-5157U"},"Core-i5-5350H":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-5350H"},"Core-i7-5750HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5750HQ"},"Pentium-3205U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3205U"},"Pentium-3215U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-06-07","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3215U"},"Pentium-3755U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3755U"},"Pentium-3765U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-06-07","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3765U"},"Mobile-Broadwell":{"humanName":"Broadwell","sections":[{"header":"8 Threads","members":["Core-i7-5950HQ","Core-i7-5850HQ","Core-i7-5750HQ","Core-i7-5700HQ"]},{"header":"4 Threads","members":["Pentium-3825U","Core-i7-5650U","Core-i7-5600U","Core-i7-5557U","Core-i7-5550U","Core-i7-5500U","Core-i5-5350U","Core-i5-5350H","Core-i5-5300U","Core-i5-5287U","Core-i5-5257U","Core-i5-5250U","Core-i5-5200U","Core-i3-5157U","Core-i3-5020U","Core-i3-5015U","Core-i3-5010U","Core-i3-5005U","Core-5Y71","Core-5Y70","Core-5Y51","Core-5Y31","Core-5Y10c","Core-5Y10a","Core-5Y10"]},{"header":"2 Threads","members":["Pentium-3805U","Pentium-3765U","Pentium-3755U","Pentium-3215U","Pentium-3205U"]},{"header":"8 Threads","members":["Core-i7-5950HQ","Core-i7-5850HQ","Core-i7-5750HQ","Core-i7-5700HQ"]},{"header":"4 Threads","members":["Pentium-3825U","Core-i7-5650U","Core-i7-5600U","Core-i7-5557U","Core-i7-5550U","Core-i7-5500U","Core-i5-5350U","Core-i5-5350H","Core-i5-5300U","Core-i5-5287U","Core-i5-5257U","Core-i5-5250U","Core-i5-5200U","Core-i3-5157U","Core-i3-5020U","Core-i3-5015U","Core-i3-5010U","Core-i3-5005U","Core-5Y71","Core-5Y70","Core-5Y51","Core-5Y31","Core-5Y10c","Core-5Y10a","Core-5Y10"]},{"header":"2 Threads","members":["Pentium-3805U","Pentium-3765U","Pentium-3755U","Pentium-3215U","Pentium-3205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2014-09-05","Sockets":["BGA1234","BGA1168","BGA1364","BGA1234","BGA1168","BGA1364"]}},"Mobile-Cedarview":{"humanName":"Cedarview","sections":[{"header":"4 Threads","members":["Atom-N2800","Atom-N2600"]},{"header":"4 Threads","members":["Atom-N2800","Atom-N2600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-12-28","Sockets":["BGA559","BGA559"]}},"Mobile-Cherry-Trail":{"humanName":"Cherry Trail","sections":[{"header":"4 Threads","members":["Atom-x7-Z8750","Atom-x7-Z8700","Atom-x5-Z8550","Atom-x5-Z8500","Atom-x5-Z8350","Atom-x5-Z8330","Atom-x5-Z8300"]},{"header":"4 Threads","members":["Atom-x7-Z8750","Atom-x7-Z8700","Atom-x5-Z8550","Atom-x5-Z8500","Atom-x5-Z8350","Atom-x5-Z8330","Atom-x5-Z8300"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-02","Sockets":["UTBGA1380","UTBGA592","UTBGA1380","UTBGA592"]}},"Core-i7-940XM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-940XM"},"Mobile-Clarksfield":{"humanName":"Clarksfield","sections":[{"header":"8 Threads","members":["Core-i7-940XM","Core-i7-920XM","Core-i7-840QM","Core-i7-820QM","Core-i7-740QM","Core-i7-720QM"]},{"header":"8 Threads","members":["Core-i7-940XM","Core-i7-920XM","Core-i7-840QM","Core-i7-820QM","Core-i7-740QM","Core-i7-720QM"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-23","Sockets":["PGA988","PGA988"]}},"Mobile-Cloverview":{"humanName":"Cloverview","sections":[{"header":"4 Threads","members":["Atom-Z2760","Atom-Z2580","Atom-Z2560","Atom-Z2520"]},{"header":"4 Threads","members":["Atom-Z2760","Atom-Z2580","Atom-Z2560","Atom-Z2520"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-09-27","Sockets":["MB4760","MB4760"]}},"Core-i3-8100H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-07-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8100H"},"Core-i5-8269U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8269U"},"Core-i5-8400B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8400B"},"Core-i7-8557U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-07-09","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8557U"},"Mobile-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2286M","Xeon-E-2276M","Xeon-E-2186M","Xeon-E-2176M","Core-i9-9980HK","Core-i9-9880H","Core-i9-8950HK","Core-i7-9850H","Core-i7-9750HF","Core-i7-9750H","Core-i7-8850H","Core-i7-8750H","Core-i7-8700B"]},{"header":"8 Threads","members":["Core-i7-8569U","Core-i7-8559U","Core-i7-8557U","Core-i5-9400H","Core-i5-9300HF","Core-i5-9300H","Core-i5-8400H","Core-i5-8300H","Core-i5-8279U","Core-i5-8269U","Core-i5-8259U","Core-i5-8257U"]},{"header":"6 Threads","members":["Core-i5-8500B","Core-i5-8400B"]},{"header":"4 Threads","members":["Core-i3-8109U","Core-i3-8100H","Core-i3-8100B"]},{"header":"9 - 16 Threads","members":["Xeon-E-2286M","Xeon-E-2276M","Xeon-E-2186M","Xeon-E-2176M","Core-i9-9980HK","Core-i9-9880H","Core-i9-8950HK","Core-i7-9850H","Core-i7-9750HF","Core-i7-9750H","Core-i7-8850H","Core-i7-8750H","Core-i7-8700B"]},{"header":"8 Threads","members":["Core-i7-8569U","Core-i7-8559U","Core-i7-8557U","Core-i5-9400H","Core-i5-9300HF","Core-i5-9300H","Core-i5-8400H","Core-i5-8300H","Core-i5-8279U","Core-i5-8269U","Core-i5-8259U","Core-i5-8257U"]},{"header":"6 Threads","members":["Core-i5-8500B","Core-i5-8400B"]},{"header":"4 Threads","members":["Core-i3-8109U","Core-i3-8100H","Core-i3-8100B"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-04-03","Sockets":["BGA1440","BGA1528","BGA1440","BGA1528"]}},"Pentium-5205U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-10-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 5205U"},"Pentium-6405U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-10-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 6405U"},"Mobile-Comet-Lake":{"humanName":"Comet Lake","sections":[{"header":"9 - 16 Threads","members":["Core-i7-10710U"]},{"header":"8 Threads","members":["Core-i7-10510U","Core-i5-10210U"]},{"header":"4 Threads","members":["Pentium-6405U","Core-i3-10110U"]},{"header":"2 Threads","members":["Pentium-5205U"]},{"header":"9 - 16 Threads","members":["Core-i7-10710U"]},{"header":"8 Threads","members":["Core-i7-10510U","Core-i5-10210U"]},{"header":"4 Threads","members":["Pentium-6405U","Core-i3-10110U"]},{"header":"2 Threads","members":["Pentium-5205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-08-21","Sockets":["BGA1528","BGA1528"]}},"Core-i7-4760HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4760HQ"},"Core-i7-4860HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-19","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4860HQ"},"Core-i7-4950HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4950HQ"},"Mobile-Crystal-Well":{"humanName":"Crystal Well","sections":[{"header":"8 Threads","members":["Core-i7-4980HQ","Core-i7-4960HQ","Core-i7-4950HQ","Core-i7-4870HQ","Core-i7-4860HQ","Core-i7-4850HQ","Core-i7-4770HQ","Core-i7-4760HQ","Core-i7-4750HQ"]},{"header":"8 Threads","members":["Core-i7-4980HQ","Core-i7-4960HQ","Core-i7-4950HQ","Core-i7-4870HQ","Core-i7-4860HQ","Core-i7-4850HQ","Core-i7-4770HQ","Core-i7-4760HQ","Core-i7-4750HQ"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-04","Sockets":["BGA1364","BGA1364"]}},"Mobile-Diamondville":{"humanName":"Diamondville","sections":[{"header":"2 Threads","members":["Atom-N280","Atom-N270"]},{"header":"2 Threads","members":["Atom-N280","Atom-N270"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-06-03","Sockets":["PBGA437","PBGA437"]}},"Pentium-350":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q3 2005","Socket":"H-PBGA478, H-PBGA479, PPGA478, PPGA479","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 350"},"Pentium-353":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Base Frequency":"900 MHz","L2 Cache (Total)":"512 KiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 353"},"Pentium-360":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q4 2006","Socket":"H-PBGA479, PPGA478","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 360"},"Pentium-370":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2005-02-14","Socket":"H-PBGA478, H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 370"},"Pentium-373":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Die Size":"87 mm","Release Date":"2005-02-14","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 373"},"Pentium-380":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 380"},"Pentium-383":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 383"},"Pentium-390":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 390"},"Pentium-715":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 715"},"Pentium-725":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"Q2 2004","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 725"},"Pentium-730":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 730"},"Pentium-733":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 733"},"Pentium-735":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 735"},"Pentium-738":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-07-29","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 738"},"Pentium-740":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 740"},"Pentium-745":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-06-25","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 745"},"Pentium-745A":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-06-25","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 745A"},"Pentium-750":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 750"},"Pentium-753":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 753"},"Pentium-755":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 755"},"Pentium-758":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 758"},"Pentium-760":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-10-11","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 760"},"Pentium-765":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 765"},"Pentium-770":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 770"},"Pentium-773":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 773"},"Pentium-778":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 778"},"Pentium-780":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 780"},"Mobile-Dothan":{"humanName":"Dothan","sections":[{"header":"1 Threads","members":["Pentium-780","Pentium-778","Pentium-773","Pentium-770","Pentium-765","Pentium-760","Pentium-758","Pentium-755","Pentium-753","Pentium-750","Pentium-745A","Pentium-745","Pentium-740","Pentium-738","Pentium-735","Pentium-733","Pentium-730","Pentium-725","Pentium-715","Pentium-390","Pentium-383","Pentium-380","Pentium-373","Pentium-370","Pentium-360","Pentium-353","Pentium-350"]},{"header":"1 Threads","members":["Pentium-780","Pentium-778","Pentium-773","Pentium-770","Pentium-765","Pentium-760","Pentium-758","Pentium-755","Pentium-753","Pentium-750","Pentium-745A","Pentium-745","Pentium-740","Pentium-738","Pentium-735","Pentium-733","Pentium-730","Pentium-725","Pentium-715","Pentium-390","Pentium-383","Pentium-380","Pentium-373","Pentium-370","Pentium-360","Pentium-353","Pentium-350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q2 2004","Sockets":["HPBGA478","HPBGA479","PPGA478","PPGA479","HPBGA478","HPBGA479","PPGA478","PPGA479"]}},"Pentium-N4000":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4000"},"Pentium-N4100":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4100"},"Pentium-N5000":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N5000"},"Pentium-N4020":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4020"},"Pentium-N4120":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4120"},"Pentium-N5030":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N5030"},"Mobile-Gemini-Lake-Refresh":{"humanName":"Gemini Lake Refresh","sections":[{"header":"4 Threads","members":["Pentium-N5030","Pentium-N4120"]},{"header":"2 Threads","members":["Pentium-N4020"]},{"header":"4 Threads","members":["Pentium-N5030","Pentium-N4120"]},{"header":"2 Threads","members":["Pentium-N4020"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-11-04","Sockets":["BGA1090","BGA1090"]}},"Mobile-Gemini-Lake":{"humanName":"Gemini Lake","sections":[{"header":"4 Threads","members":["Pentium-N5000","Pentium-N4100"]},{"header":"2 Threads","members":["Pentium-N4000"]},{"header":"4 Threads","members":["Pentium-N5000","Pentium-N4100"]},{"header":"2 Threads","members":["Pentium-N4000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-12-11","Sockets":["BGA1090","BGA1090"]}},"Core-i3-4010Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4010Y"},"Core-i3-4030Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4030Y"},"Core-i3-4100U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4100U"},"Core-i3-4110M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4110M"},"Core-i3-4120U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4120U"},"Core-i3-4158U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4158U"},"Core-i5-4200Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4200Y"},"Core-i5-4220Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4220Y"},"Core-i5-4302Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4302Y"},"Core-i5-4330M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4330M"},"Core-i5-4350U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4350U"},"Core-i5-4360U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4360U"},"Core-i7-4610Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4610Y"},"Pentium-2950M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2950M"},"Pentium-2955U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2955U"},"Pentium-2957U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2957U"},"Pentium-2961Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2961Y"},"Pentium-2970M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2970M"},"Pentium-2980U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2980U"},"Pentium-2981U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2981U"},"Pentium-3558U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3558U"},"Pentium-3560M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3560M"},"Pentium-3560Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3560Y"},"Pentium-3561Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3561Y"},"Mobile-Haswell":{"humanName":"Haswell","sections":[{"header":"8 Threads","members":["Core-i7-4940MX","Core-i7-4930MX","Core-i7-4910MQ","Core-i7-4900MQ","Core-i7-4810MQ","Core-i7-4800MQ","Core-i7-4722HQ","Core-i7-4720HQ","Core-i7-4712MQ","Core-i7-4712HQ","Core-i7-4710MQ","Core-i7-4710HQ","Core-i7-4702MQ","Core-i7-4702HQ","Core-i7-4700MQ","Core-i7-4700HQ"]},{"header":"4 Threads","members":["Core-i7-4650U","Core-i7-4610Y","Core-i7-4610M","Core-i7-4600U","Core-i7-4600M","Core-i7-4578U","Core-i7-4558U","Core-i7-4550U","Core-i7-4510U","Core-i7-4500U","Core-i5-4360U","Core-i5-4350U","Core-i5-4340M","Core-i5-4330M","Core-i5-4310U","Core-i5-4310M","Core-i5-4308U","Core-i5-4302Y","Core-i5-4300Y","Core-i5-4300U","Core-i5-4300M","Core-i5-4288U","Core-i5-4278U","Core-i5-4260U","Core-i5-4258U","Core-i5-4250U","Core-i5-4220Y","Core-i5-4210Y","Core-i5-4210U","Core-i5-4210M","Core-i5-4210H","Core-i5-4202Y","Core-i5-4200Y","Core-i5-4200U","Core-i5-4200M","Core-i5-4200H","Core-i3-4158U","Core-i3-4120U","Core-i3-4110M","Core-i3-4100U","Core-i3-4100M","Core-i3-4030Y","Core-i3-4030U","Core-i3-4025U","Core-i3-4020Y","Core-i3-4012Y","Core-i3-4010Y","Core-i3-4010U","Core-i3-4005U","Core-i3-4000M"]},{"header":"2 Threads","members":["Pentium-3561Y","Pentium-3560Y","Pentium-3560M","Pentium-3558U","Pentium-3556U","Pentium-3550M","Pentium-2981U","Pentium-2980U","Pentium-2970M","Pentium-2961Y","Pentium-2957U","Pentium-2955U","Pentium-2950M"]},{"header":"8 Threads","members":["Core-i7-4940MX","Core-i7-4930MX","Core-i7-4910MQ","Core-i7-4900MQ","Core-i7-4810MQ","Core-i7-4800MQ","Core-i7-4722HQ","Core-i7-4720HQ","Core-i7-4712MQ","Core-i7-4712HQ","Core-i7-4710MQ","Core-i7-4710HQ","Core-i7-4702MQ","Core-i7-4702HQ","Core-i7-4700MQ","Core-i7-4700HQ"]},{"header":"4 Threads","members":["Core-i7-4650U","Core-i7-4610Y","Core-i7-4610M","Core-i7-4600U","Core-i7-4600M","Core-i7-4578U","Core-i7-4558U","Core-i7-4550U","Core-i7-4510U","Core-i7-4500U","Core-i5-4360U","Core-i5-4350U","Core-i5-4340M","Core-i5-4330M","Core-i5-4310U","Core-i5-4310M","Core-i5-4308U","Core-i5-4302Y","Core-i5-4300Y","Core-i5-4300U","Core-i5-4300M","Core-i5-4288U","Core-i5-4278U","Core-i5-4260U","Core-i5-4258U","Core-i5-4250U","Core-i5-4220Y","Core-i5-4210Y","Core-i5-4210U","Core-i5-4210M","Core-i5-4210H","Core-i5-4202Y","Core-i5-4200Y","Core-i5-4200U","Core-i5-4200M","Core-i5-4200H","Core-i3-4158U","Core-i3-4120U","Core-i3-4110M","Core-i3-4100U","Core-i3-4100M","Core-i3-4030Y","Core-i3-4030U","Core-i3-4025U","Core-i3-4020Y","Core-i3-4012Y","Core-i3-4010Y","Core-i3-4010U","Core-i3-4005U","Core-i3-4000M"]},{"header":"2 Threads","members":["Pentium-3561Y","Pentium-3560Y","Pentium-3560M","Pentium-3558U","Pentium-3556U","Pentium-3550M","Pentium-2981U","Pentium-2980U","Pentium-2970M","Pentium-2961Y","Pentium-2957U","Pentium-2955U","Pentium-2950M"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["BGA1364","BGA1168","PGA946","BGA1364","BGA1168","PGA946"]}},"Core-i3-1000G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-1000G1"},"Core-i3-1000G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-1000G4"},"Core-i5-1030G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"700 MHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1030G4"},"Core-i5-1030G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"800 MHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1030G7"},"Core-i7-1060G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1000 MHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-1060G7"},"Mobile-Ice-Lake":{"humanName":"Ice Lake","sections":[{"header":"8 Threads","members":["Core-i7-1065G7","Core-i7-1060G7","Core-i5-1035G7","Core-i5-1035G4","Core-i5-1035G1","Core-i5-1030G7","Core-i5-1030G4"]},{"header":"4 Threads","members":["Core-i3-1005G1","Core-i3-1000G4","Core-i3-1000G1"]},{"header":"8 Threads","members":["Core-i7-1065G7","Core-i7-1060G7","Core-i5-1035G7","Core-i5-1035G4","Core-i5-1035G1","Core-i5-1030G7","Core-i5-1030G4"]},{"header":"4 Threads","members":["Core-i3-1005G1","Core-i3-1000G4","Core-i3-1000G1"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"10 nm","Release Date":"2019-08-01","Sockets":["BGA1526","BGA1526"]}},"Core-i3-3130M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3130M"},"Core-i3-3229Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3229Y"},"Core-i5-3439Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3439Y"},"Pentium-1000M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1000M"},"Pentium-1005M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1005M"},"Pentium-1007U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1007U"},"Pentium-1017U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1017U"},"Pentium-1019Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1000 MHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-04-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1019Y"},"Pentium-1020M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1020M"},"Pentium-1037U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1037U"},"Pentium-2030M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2030M"},"Pentium-2129Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2129Y"},"Pentium-A1018":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-08-29","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium A1018"},"Mobile-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3940XM","Core-i7-3920XM","Core-i7-3840QM","Core-i7-3820QM","Core-i7-3740QM","Core-i7-3720QM","Core-i7-3635QM","Core-i7-3632QM","Core-i7-3630QM","Core-i7-3615QM","Core-i7-3612QM","Core-i7-3610QM"]},{"header":"4 Threads","members":["Core-i7-3689Y","Core-i7-3687U","Core-i7-3667U","Core-i7-3540M","Core-i7-3537U","Core-i7-3520M","Core-i7-3517U","Core-i5-3439Y","Core-i5-3437U","Core-i5-3427U","Core-i5-3380M","Core-i5-3360M","Core-i5-3340M","Core-i5-3339Y","Core-i5-3337U","Core-i5-3320M","Core-i5-3317U","Core-i5-3230M","Core-i5-3210M","Core-i3-3229Y","Core-i3-3227U","Core-i3-3217U","Core-i3-3130M","Core-i3-3120M","Core-i3-3110M"]},{"header":"2 Threads","members":["Pentium-A1018","Pentium-2129Y","Pentium-2127U","Pentium-2117U","Pentium-2030M","Pentium-2020M","Pentium-1037U","Pentium-1020M","Pentium-1019Y","Pentium-1017U","Pentium-1007U","Pentium-1005M","Pentium-1000M"]},{"header":"8 Threads","members":["Core-i7-3940XM","Core-i7-3920XM","Core-i7-3840QM","Core-i7-3820QM","Core-i7-3740QM","Core-i7-3720QM","Core-i7-3635QM","Core-i7-3632QM","Core-i7-3630QM","Core-i7-3615QM","Core-i7-3612QM","Core-i7-3610QM"]},{"header":"4 Threads","members":["Core-i7-3689Y","Core-i7-3687U","Core-i7-3667U","Core-i7-3540M","Core-i7-3537U","Core-i7-3520M","Core-i7-3517U","Core-i5-3439Y","Core-i5-3437U","Core-i5-3427U","Core-i5-3380M","Core-i5-3360M","Core-i5-3340M","Core-i5-3339Y","Core-i5-3337U","Core-i5-3320M","Core-i5-3317U","Core-i5-3230M","Core-i5-3210M","Core-i3-3229Y","Core-i3-3227U","Core-i3-3217U","Core-i3-3130M","Core-i3-3120M","Core-i3-3110M"]},{"header":"2 Threads","members":["Pentium-A1018","Pentium-2129Y","Pentium-2127U","Pentium-2117U","Pentium-2030M","Pentium-2020M","Pentium-1037U","Pentium-1020M","Pentium-1019Y","Pentium-1017U","Pentium-1007U","Pentium-1005M","Pentium-1000M"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["PGA988","BGA1224","BGA1023","PGA988","BGA1224","BGA1023"]}},"Core-M3-7Y30":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-7Y30"},"Core-M3-7Y32":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-04-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-7Y32"},"Core-i3-7100H":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"RAM","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100H"},"Core-i5-7287U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7287U"},"Core-i5-7Y57":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7Y57"},"Pentium-3865U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3865U"},"Pentium-3965U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3965U"},"Pentium-3965Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-29","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3965Y"},"Xeon-E3-1505MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505MV6"},"Xeon-E3-1535MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1535MV6"},"Mobile-Kaby-Lake-G":{"humanName":"Kaby Lake G","sections":[{"header":"8 Threads","members":["Core-i7-8809G","Core-i7-8709G","Core-i7-8706G","Core-i7-8705G","Core-i5-8305G"]},{"header":"8 Threads","members":["Core-i7-8809G","Core-i7-8709G","Core-i7-8706G","Core-i7-8705G","Core-i5-8305G"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-01-07","Sockets":["BGA2270","BGA2270"]}},"Pentium-3867U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3867U"},"Mobile-Kaby-Lake-R":{"humanName":"Kaby Lake R","sections":[{"header":"8 Threads","members":["Core-i7-8650U","Core-i7-8550U","Core-i5-8350U","Core-i5-8250U"]},{"header":"4 Threads","members":["Pentium-4417U"]},{"header":"2 Threads","members":["Pentium-3867U"]},{"header":"8 Threads","members":["Core-i7-8650U","Core-i7-8550U","Core-i5-8350U","Core-i5-8250U"]},{"header":"4 Threads","members":["Pentium-4417U"]},{"header":"2 Threads","members":["Pentium-3867U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-08-21","Sockets":["BGA1356","BGA1356"]}},"Mobile-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1535MV6","Xeon-E3-1505MV6","Core-i7-7920HQ","Core-i7-7820HQ","Core-i7-7820HK","Core-i7-7700HQ"]},{"header":"4 Threads","members":["Pentium-4415Y","Pentium-4415U","Pentium-4410Y","Core-i7-7660U","Core-i7-7600U","Core-i7-7567U","Core-i7-7560U","Core-i7-7500U","Core-i7-7Y75","Core-i5-7440HQ","Core-i5-7360U","Core-i5-7300U","Core-i5-7300HQ","Core-i5-7287U","Core-i5-7267U","Core-i5-7260U","Core-i5-7200U","Core-i5-7Y57","Core-i5-7Y54","Core-i3-8130U","Core-i3-7167U","Core-i3-7130U","Core-i3-7100U","Core-i3-7100H","Core-i3-7020U","Core-M3-7Y32","Core-M3-7Y30"]},{"header":"2 Threads","members":["Pentium-3965Y","Pentium-3965U","Pentium-3865U"]},{"header":"8 Threads","members":["Xeon-E3-1535MV6","Xeon-E3-1505MV6","Core-i7-7920HQ","Core-i7-7820HQ","Core-i7-7820HK","Core-i7-7700HQ"]},{"header":"4 Threads","members":["Pentium-4415Y","Pentium-4415U","Pentium-4410Y","Core-i7-7660U","Core-i7-7600U","Core-i7-7567U","Core-i7-7560U","Core-i7-7500U","Core-i7-7Y75","Core-i5-7440HQ","Core-i5-7360U","Core-i5-7300U","Core-i5-7300HQ","Core-i5-7287U","Core-i5-7267U","Core-i5-7260U","Core-i5-7200U","Core-i5-7Y57","Core-i5-7Y54","Core-i3-8130U","Core-i3-7167U","Core-i3-7130U","Core-i3-7100U","Core-i3-7100H","Core-i3-7020U","Core-M3-7Y32","Core-M3-7Y30"]},{"header":"2 Threads","members":["Pentium-3965Y","Pentium-3965U","Pentium-3865U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1515","BGA1356","BGA1440","BGA1515","BGA1356","BGA1440"]}},"Atom-Z600":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"1.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"400 MHz","Memory Type":"LPDDR1","Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","VRAM Type":"LPDDR1","Maximum VRAM Capacity":"256 MiB"},"isPart":true,"type":"CPU","humanName":"Atom Z600"},"Atom-Z615":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz","VRAM Type":"DDR2","Maximum VRAM Capacity":"256 MiB"},"isPart":true,"type":"CPU","humanName":"Atom Z615"},"Atom-Z625":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.9 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z625"},"Atom-Z650":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-04-11","Socket":"T-PBGA518","Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z650"},"Atom-Z670":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.5 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-04-11","Socket":"T-PBGA518","Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z670"},"Mobile-Lincroft":{"humanName":"Lincroft","sections":[{"header":"2 Threads","members":["Atom-Z670","Atom-Z650","Atom-Z625","Atom-Z615","Atom-Z600"]},{"header":"2 Threads","members":["Atom-Z670","Atom-Z650","Atom-Z625","Atom-Z615","Atom-Z600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2011-04-11","Sockets":["TPBGA518","TPBGA518"]}},"Core-L7200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-01-03","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7200"},"Core-L7300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7300"},"Core-L7400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-01-03","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7400"},"Core-L7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7500"},"Core-L7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7700"},"Core-T5200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5200"},"Core-T5250":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5250"},"Core-T5270":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5270"},"Core-T5300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5300"},"Core-T5450":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5450"},"Core-T5470":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5470"},"Core-T5500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5500"},"Core-T5550":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5550"},"Core-T5600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5600"},"Core-T5670":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2008-03-31","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5670"},"Core-T5750":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q1 2008","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5750"},"Core-T5800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q4 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5800"},"Core-T5870":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5870"},"Core-T7100":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7100"},"Core-T7200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7200"},"Core-T7250":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7250"},"Core-T7300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7300"},"Core-T7400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7400"},"Core-T7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7500"},"Core-T7600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"Q3 2007","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7600"},"Core-T7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7700"},"Core-T7800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7800"},"Core-U2100":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U2100"},"Core-U2200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U2200"},"Core-U7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PBGA479","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7500"},"Core-U7600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-04-05","Socket":"PBGA479","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7600"},"Core-U7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2008-01-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7700"},"Core-X7800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-16","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X7800"},"Core-X7900":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-08-22","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X7900"},"Pentium-520":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-01-03"},"isPart":true,"type":"CPU","humanName":"Pentium 520"},"Pentium-523":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"930 MHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 523"},"Pentium-530":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-03-25","Socket":"PGA478, PPGA478","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 530"},"Pentium-540":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 540"},"Pentium-550":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 550"},"Pentium-560":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-01-02"},"isPart":true,"type":"CPU","humanName":"Pentium 560"},"Pentium-570":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-04-06","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 570"},"Pentium-573":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Die Size":"143 mm","Release Date":"2009-06-15","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 573"},"Pentium-575":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-08-19","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 575"},"Pentium-585":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-08-19","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 585"},"Pentium-T1600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-12-07","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T1600"},"Pentium-T1700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-12-07","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T1700"},"Pentium-T2310":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2007","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2310"},"Pentium-T2330":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2007","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2330"},"Pentium-T2370":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q1 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2370"},"Pentium-T2390":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2390"},"Pentium-T3200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3200"},"Pentium-T3400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3400"},"Mobile-Merom":{"humanName":"Merom","sections":[{"header":"2 Threads","members":["Pentium-T3400","Pentium-T3200","Pentium-T2390","Pentium-T2370","Pentium-T2330","Pentium-T2310","Pentium-T1700","Pentium-T1600","Core-X7900","Core-X7800","Core-U7700","Core-U7600","Core-U7500","Core-T7800","Core-T7700","Core-T7600","Core-T7500","Core-T7400","Core-T7300","Core-T7250","Core-T7200","Core-T7100","Core-T5870","Core-T5800","Core-T5750","Core-T5670","Core-T5600","Core-T5550","Core-T5500","Core-T5470","Core-T5450","Core-T5300","Core-T5270","Core-T5250","Core-T5200","Core-L7700","Core-L7500","Core-L7400","Core-L7300","Core-L7200"]},{"header":"1 Threads","members":["Pentium-585","Pentium-575","Pentium-573","Pentium-570","Pentium-560","Pentium-550","Pentium-540","Pentium-530","Pentium-523","Pentium-520","Core-U2200","Core-U2100"]},{"header":"2 Threads","members":["Pentium-T3400","Pentium-T3200","Pentium-T2390","Pentium-T2370","Pentium-T2330","Pentium-T2310","Pentium-T1700","Pentium-T1600","Core-X7900","Core-X7800","Core-U7700","Core-U7600","Core-U7500","Core-T7800","Core-T7700","Core-T7600","Core-T7500","Core-T7400","Core-T7300","Core-T7250","Core-T7200","Core-T7100","Core-T5870","Core-T5800","Core-T5750","Core-T5670","Core-T5600","Core-T5550","Core-T5500","Core-T5470","Core-T5450","Core-T5300","Core-T5270","Core-T5250","Core-T5200","Core-L7700","Core-L7500","Core-L7400","Core-L7300","Core-L7200"]},{"header":"1 Threads","members":["Pentium-585","Pentium-575","Pentium-573","Pentium-570","Pentium-560","Pentium-550","Pentium-540","Pentium-530","Pentium-523","Pentium-520","Core-U2200","Core-U2100"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2006","Sockets":["PBGA479","PPGA478","PGA478","PBGA479","PPGA478","PGA478"]}},"Mobile-Moorefield":{"humanName":"Moorefield","sections":[{"header":"4 Threads","members":["Atom-Z3590","Atom-Z3580","Atom-Z3570","Atom-Z3560","Atom-Z3530"]},{"header":"4 Threads","members":["Atom-Z3590","Atom-Z3580","Atom-Z3570","Atom-Z3560","Atom-Z3530"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-05-23","Sockets":["MB5T1064","MB5T1064"]}},"Core-P7350":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q3 2008","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7350"},"Core-P7370":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q4 2008","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7370"},"Core-P7450":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-01-09","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7450"},"Core-P7550":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-06-29","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7550"},"Core-P7570":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q3 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7570"},"Core-P8400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8400"},"Core-P8600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8600"},"Core-P8700":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8700"},"Core-P8800":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8800"},"Core-P9500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9500"},"Core-P9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9600"},"Core-P9700":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"28 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9700"},"Core-Q9000":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9000"},"Core-Q9100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-19","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9100"},"Core-QX9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-19","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9300"},"Core-SL9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9300"},"Core-SL9380":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-31","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9380"},"Core-SL9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9400"},"Core-SL9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9600"},"Core-SP9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9300"},"Core-SP9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9400"},"Core-SP9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9600"},"Core-SU3500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q2 2009","Socket":"BGA956","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU3500"},"Core-SU9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9300"},"Core-SU9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9400"},"Core-SU9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9600"},"Core-T6400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6400"},"Core-T6500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"2009-06-29","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6500"},"Core-T6600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6600"},"Core-T6670":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q3 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6670"},"Core-T8100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T8100"},"Core-T8300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T8300"},"Core-T9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9300"},"Core-T9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9400"},"Core-T9500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9500"},"Core-T9550":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9550"},"Core-T9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9600"},"Core-T9800":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9800"},"Core-T9900":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9900"},"Core-X9000":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X9000"},"Core-X9100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X9100"},"Pentium-722":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2008-09-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 722"},"Pentium-723":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-08-19","Socket":"BGA956"},"isPart":true,"type":"CPU","humanName":"Pentium 723"},"Pentium-743":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-09-06","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 743"},"Pentium-763":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2011-01-09"},"isPart":true,"type":"CPU","humanName":"Pentium 763"},"Pentium-900":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 900"},"Pentium-925":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2011-01-09","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 925"},"Pentium-SU2300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-09-06","Socket":"BGA956"},"isPart":true,"type":"CPU","humanName":"Pentium SU2300"},"Pentium-T3100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.9 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-06-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3100"},"Pentium-T3300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2010","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3300"},"Pentium-T3500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q3 2010","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3500"},"Mobile-Penryn":{"humanName":"Penryn","sections":[{"header":"4 Threads","members":["Core-QX9300","Core-Q9100","Core-Q9000"]},{"header":"2 Threads","members":["Pentium-T4500","Pentium-T4400","Pentium-T4300","Pentium-T4200","Pentium-T3500","Pentium-T3300","Pentium-T3100","Pentium-SU2300","Core-X9100","Core-X9000","Core-T9900","Core-T9800","Core-T9600","Core-T9550","Core-T9500","Core-T9400","Core-T9300","Core-T8300","Core-T8100","Core-T6670","Core-T6600","Core-T6500","Core-T6400","Core-SU9600","Core-SU9400","Core-SU9300","Core-SP9600","Core-SP9400","Core-SP9300","Core-SL9600","Core-SL9400","Core-SL9380","Core-SL9300","Core-P9700","Core-P9600","Core-P9500","Core-P8800","Core-P8700","Core-P8600","Core-P8400","Core-P7570","Core-P7550","Core-P7450","Core-P7370","Core-P7350"]},{"header":"1 Threads","members":["Pentium-925","Pentium-900","Pentium-763","Pentium-743","Pentium-723","Pentium-722","Core-SU3500"]},{"header":"4 Threads","members":["Core-QX9300","Core-Q9100","Core-Q9000"]},{"header":"2 Threads","members":["Pentium-T4500","Pentium-T4400","Pentium-T4300","Pentium-T4200","Pentium-T3500","Pentium-T3300","Pentium-T3100","Pentium-SU2300","Core-X9100","Core-X9000","Core-T9900","Core-T9800","Core-T9600","Core-T9550","Core-T9500","Core-T9400","Core-T9300","Core-T8300","Core-T8100","Core-T6670","Core-T6600","Core-T6500","Core-T6400","Core-SU9600","Core-SU9400","Core-SU9300","Core-SP9600","Core-SP9400","Core-SP9300","Core-SL9600","Core-SL9400","Core-SL9380","Core-SL9300","Core-P9700","Core-P9600","Core-P9500","Core-P8800","Core-P8700","Core-P8600","Core-P8400","Core-P7570","Core-P7550","Core-P7450","Core-P7370","Core-P7350"]},{"header":"1 Threads","members":["Pentium-925","Pentium-900","Pentium-763","Pentium-743","Pentium-723","Pentium-722","Core-SU3500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-01-07","Sockets":["BGA956","BGA479","PGA478","PPGA478","BGA956","BGA479","PGA478","PPGA478"]}},"Atom-N470":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"667 MHz","Memory Type":"DDR2","Base Frequency":"1.83 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz"},"isPart":true,"type":"CPU","humanName":"Atom N470"},"Atom-N475":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Memory Type":"DDR2/3","Base Frequency":"1.83 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-01","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz"},"isPart":true,"type":"CPU","humanName":"Atom N475"},"Mobile-Pineview":{"humanName":"Pineview","sections":[{"header":"4 Threads","members":["Atom-N570","Atom-N550"]},{"header":"2 Threads","members":["Atom-N475","Atom-N470","Atom-N455","Atom-N450"]},{"header":"4 Threads","members":["Atom-N570","Atom-N550"]},{"header":"2 Threads","members":["Atom-N475","Atom-N470","Atom-N455","Atom-N450"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["BGA559","BGA559"]}},"Core-i3-2312M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2312M"},"Core-i3-2330E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2330E"},"Core-i5-2510E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2510E"},"Core-i7-2617M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2617M"},"Core-i7-2629M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2629M"},"Core-i7-2649M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2649M"},"Core-i7-2657M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2657M"},"Core-i7-2710QE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2710QE"},"Pentium-787":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-17","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 787"},"Pentium-797":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 797"},"Pentium-807":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 807"},"Pentium-847":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 847"},"Pentium-857":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-07-03","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 857"},"Pentium-867":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 867"},"Pentium-877":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 877"},"Pentium-887":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 887"},"Pentium-957":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 957"},"Pentium-977":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 977"},"Pentium-997":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 997"},"Pentium-B710":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-16","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B710"},"Pentium-B720":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B720"},"Pentium-B800":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B800"},"Pentium-B810":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-03-15","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B810"},"Pentium-B815":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B815"},"Pentium-B820":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B820"},"Pentium-B830":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B830"},"Pentium-B840":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B840"},"Mobile-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2960XM","Core-i7-2920XM","Core-i7-2860QM","Core-i7-2820QM","Core-i7-2760QM","Core-i7-2720QM","Core-i7-2710QE","Core-i7-2675QM","Core-i7-2670QM","Core-i7-2635QM","Core-i7-2630QM"]},{"header":"4 Threads","members":["Core-i7-2677M","Core-i7-2657M","Core-i7-2649M","Core-i7-2640M","Core-i7-2637M","Core-i7-2629M","Core-i7-2620M","Core-i7-2617M","Core-i5-2557M","Core-i5-2540M","Core-i5-2537M","Core-i5-2520M","Core-i5-2510E","Core-i5-2467M","Core-i5-2450M","Core-i5-2435M","Core-i5-2430M","Core-i5-2410M","Core-i3-2377M","Core-i3-2375M","Core-i3-2370M","Core-i3-2367M","Core-i3-2365M","Core-i3-2357M","Core-i3-2350M","Core-i3-2348M","Core-i3-2330M","Core-i3-2330E","Core-i3-2328M","Core-i3-2312M","Core-i3-2310M"]},{"header":"2 Threads","members":["Pentium-B980","Pentium-B970","Pentium-B960","Pentium-B950","Pentium-B940","Pentium-B840","Pentium-B830","Pentium-B820","Pentium-B815","Pentium-B810","Pentium-B800","Pentium-997","Pentium-987","Pentium-977","Pentium-967","Pentium-957","Pentium-887","Pentium-877","Pentium-867","Pentium-857","Pentium-847","Pentium-807"]},{"header":"1 Threads","members":["Pentium-B720","Pentium-B710","Pentium-797","Pentium-787"]},{"header":"8 Threads","members":["Core-i7-2960XM","Core-i7-2920XM","Core-i7-2860QM","Core-i7-2820QM","Core-i7-2760QM","Core-i7-2720QM","Core-i7-2710QE","Core-i7-2675QM","Core-i7-2670QM","Core-i7-2635QM","Core-i7-2630QM"]},{"header":"4 Threads","members":["Core-i7-2677M","Core-i7-2657M","Core-i7-2649M","Core-i7-2640M","Core-i7-2637M","Core-i7-2629M","Core-i7-2620M","Core-i7-2617M","Core-i5-2557M","Core-i5-2540M","Core-i5-2537M","Core-i5-2520M","Core-i5-2510E","Core-i5-2467M","Core-i5-2450M","Core-i5-2435M","Core-i5-2430M","Core-i5-2410M","Core-i3-2377M","Core-i3-2375M","Core-i3-2370M","Core-i3-2367M","Core-i3-2365M","Core-i3-2357M","Core-i3-2350M","Core-i3-2348M","Core-i3-2330M","Core-i3-2330E","Core-i3-2328M","Core-i3-2312M","Core-i3-2310M"]},{"header":"2 Threads","members":["Pentium-B980","Pentium-B970","Pentium-B960","Pentium-B950","Pentium-B940","Pentium-B840","Pentium-B830","Pentium-B820","Pentium-B815","Pentium-B810","Pentium-B800","Pentium-997","Pentium-987","Pentium-977","Pentium-967","Pentium-957","Pentium-887","Pentium-877","Pentium-867","Pentium-857","Pentium-847","Pentium-807"]},{"header":"1 Threads","members":["Pentium-B720","Pentium-B710","Pentium-797","Pentium-787"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-01-09","Sockets":["BGA1224","PGA988","BGA1023","PPGA988","BGA1224","PGA988","BGA1023","PPGA988"]}},"Atom-Z500":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"0.65 W","Core Count":1,"Thread Count":2,"Base Frequency":"800 MHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z500"},"Atom-Z510":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510"},"Atom-Z510P":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510P"},"Atom-Z510PT":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510PT"},"Atom-Z515":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"1.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-04-08","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z515"},"Atom-Z520PT":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z520PT"},"Atom-Z530":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z530"},"Atom-Z530P":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z530P"},"Atom-Z540":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z540"},"Atom-Z550":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-04-08","Socket":"PBGA441","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Atom Z550"},"Atom-Z560":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"Q2 2010","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z560"},"Mobile-Silverthorne":{"humanName":"Silverthorne","sections":[{"header":"2 Threads","members":["Atom-Z560","Atom-Z550","Atom-Z540","Atom-Z530P","Atom-Z530","Atom-Z520PT","Atom-Z520","Atom-Z515","Atom-Z510PT","Atom-Z510P","Atom-Z500"]},{"header":"1 Threads","members":["Atom-Z510"]},{"header":"2 Threads","members":["Atom-Z560","Atom-Z550","Atom-Z540","Atom-Z530P","Atom-Z530","Atom-Z520PT","Atom-Z520","Atom-Z515","Atom-Z510PT","Atom-Z510P","Atom-Z500"]},{"header":"1 Threads","members":["Atom-Z510"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-04-02","Sockets":["PBGA441","BGA437","PBGA441","BGA437"]}},"Core-M3-6Y30":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"900 MHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-6Y30"},"Core-M5-6Y54":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M5-6Y54"},"Core-M5-6Y57":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M5-6Y57"},"Core-M7-6Y75":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M7-6Y75"},"Core-i3-6100H":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100H"},"Core-i5-6287U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6287U"},"Core-i5-6350HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6350HQ"},"Core-i7-6870HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6870HQ"},"Core-i7-6970HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6970HQ"},"Pentium-3855U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3855U"},"Pentium-3955U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3955U"},"Xeon-E3-1505MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505MV5"},"Xeon-E3-1515MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1515MV5"},"Xeon-E3-1535MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1535MV5"},"Xeon-E3-1545MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1545MV5"},"Xeon-E3-1575MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1575MV5"},"Mobile-Skylake":{"humanName":"Skylake","sections":[{"header":"8 Threads","members":["Xeon-E3-1575MV5","Xeon-E3-1545MV5","Xeon-E3-1535MV5","Xeon-E3-1515MV5","Xeon-E3-1505MV5","Core-i7-6970HQ","Core-i7-6920HQ","Core-i7-6870HQ","Core-i7-6820HQ","Core-i7-6820HK","Core-i7-6770HQ","Core-i7-6700HQ"]},{"header":"4 Threads","members":["Pentium-4405Y","Pentium-4405U","Core-i7-6660U","Core-i7-6650U","Core-i7-6600U","Core-i7-6567U","Core-i7-6560U","Core-i7-6500U","Core-i5-6440HQ","Core-i5-6360U","Core-i5-6350HQ","Core-i5-6300U","Core-i5-6300HQ","Core-i5-6287U","Core-i5-6267U","Core-i5-6260U","Core-i5-6200U","Core-i3-6167U","Core-i3-6157U","Core-i3-6100U","Core-i3-6100H","Core-i3-6006U","Core-M7-6Y75","Core-M5-6Y57","Core-M5-6Y54","Core-M3-6Y30"]},{"header":"2 Threads","members":["Pentium-3955U","Pentium-3855U"]},{"header":"8 Threads","members":["Xeon-E3-1575MV5","Xeon-E3-1545MV5","Xeon-E3-1535MV5","Xeon-E3-1515MV5","Xeon-E3-1505MV5","Core-i7-6970HQ","Core-i7-6920HQ","Core-i7-6870HQ","Core-i7-6820HQ","Core-i7-6820HK","Core-i7-6770HQ","Core-i7-6700HQ"]},{"header":"4 Threads","members":["Pentium-4405Y","Pentium-4405U","Core-i7-6660U","Core-i7-6650U","Core-i7-6600U","Core-i7-6567U","Core-i7-6560U","Core-i7-6500U","Core-i5-6440HQ","Core-i5-6360U","Core-i5-6350HQ","Core-i5-6300U","Core-i5-6300HQ","Core-i5-6287U","Core-i5-6267U","Core-i5-6260U","Core-i5-6200U","Core-i3-6167U","Core-i3-6157U","Core-i3-6100U","Core-i3-6100H","Core-i3-6006U","Core-M7-6Y75","Core-M5-6Y57","Core-M5-6Y54","Core-M3-6Y30"]},{"header":"2 Threads","members":["Pentium-3955U","Pentium-3855U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-07-01","Sockets":["BGA1356","BGA1515","BGA1440","BGA1356","BGA1515","BGA1440"]}},"Mobile-SoFIA-3G-R":{"humanName":"SoFIA 3G R","sections":[{"header":"4 Threads","members":["Atom-x3-C3295RK","Atom-x3-C3265RK","Atom-x3-C3235RK","Atom-x3-C3230RK","Atom-x3-C3200RK","Atom-x3-3205RK"]},{"header":"4 Threads","members":["Atom-x3-C3295RK","Atom-x3-C3265RK","Atom-x3-C3235RK","Atom-x3-C3230RK","Atom-x3-C3200RK","Atom-x3-3205RK"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"28 nm","Release Date":"2015-03-02","Sockets":["VF2BGA361","VF2BGA361"]}},"Pentium-4205U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4205U"},"Pentium-4305U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4305U"},"Mobile-Whiskey-Lake":{"humanName":"Whiskey Lake","sections":[{"header":"8 Threads","members":["Core-i7-8665U","Core-i7-8565U","Core-i5-8365U","Core-i5-8265U"]},{"header":"4 Threads","members":["Pentium-5405U","Core-i3-8145U"]},{"header":"2 Threads","members":["Pentium-4305U","Pentium-4205U"]},{"header":"8 Threads","members":["Core-i7-8665U","Core-i7-8565U","Core-i5-8365U","Core-i5-8265U"]},{"header":"4 Threads","members":["Pentium-5405U","Core-i3-8145U"]},{"header":"2 Threads","members":["Pentium-4305U","Pentium-4205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-08-28","Sockets":["BGA1528","BGA1528"]}},"Core-L2300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2300"},"Core-L2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2400"},"Core-L2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2500"},"Core-T1250":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1250"},"Core-T1300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1300"},"Core-T1350":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1350"},"Core-T1400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1400"},"Core-T2050":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2050"},"Core-T2300E":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2300E"},"Core-T2350":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2350"},"Core-T2450":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2450"},"Core-T2700":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2700"},"Core-U1300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"6 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1300"},"Core-U1400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"6 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1400"},"Core-U1500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1500"},"Core-U2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"9 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U2400"},"Core-U2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"9 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U2500"},"Pentium-215":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 215"},"Pentium-410":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 410"},"Pentium-423":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 423"},"Pentium-443":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 443"},"Pentium-T2060":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q1 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2060"},"Pentium-T2080":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q2 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2080"},"Pentium-T2130":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q2 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2130"},"Mobile-Yonah":{"humanName":"Yonah","sections":[{"header":"2 Threads","members":["Pentium-T2130","Pentium-T2080","Pentium-T2060","Core-U2500","Core-U2400","Core-T2700","Core-T2600","Core-T2500","Core-T2450","Core-T2400","Core-T2350","Core-T2300E","Core-T2300","Core-T2250","Core-T2050","Core-L2500","Core-L2400","Core-L2300"]},{"header":"1 Threads","members":["Pentium-443","Pentium-423","Pentium-410","Pentium-215","Core-U1500","Core-U1400","Core-U1300","Core-T1400","Core-T1350","Core-T1300","Core-T1250"]},{"header":"2 Threads","members":["Pentium-T2130","Pentium-T2080","Pentium-T2060","Core-U2500","Core-U2400","Core-T2700","Core-T2600","Core-T2500","Core-T2450","Core-T2400","Core-T2350","Core-T2300E","Core-T2300","Core-T2250","Core-T2050","Core-L2500","Core-L2400","Core-L2300"]},{"header":"1 Threads","members":["Pentium-443","Pentium-423","Pentium-410","Pentium-215","Core-U1500","Core-U1400","Core-U1300","Core-T1400","Core-T1350","Core-T1300","Core-T1250"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-02-14","Sockets":["PPGA478","PBGA479","PPGA478","PBGA479"]}},"Mobile-CPUs-Intel":{"humanName":"Mobile CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Mobile-Gemini-Lake-Refresh","Mobile-Comet-Lake","Mobile-Ice-Lake","Mobile-Amber-Lake","Mobile-Whiskey-Lake","Mobile-Amber-Lake-Y","Mobile-Coffee-Lake","Mobile-Kaby-Lake-G","Mobile-Gemini-Lake","Mobile-Kaby-Lake-R","Mobile-Kaby-Lake","Mobile-Apollo-Lake","Mobile-Skylake","Mobile-Braswell","Mobile-Cherry-Trail","Mobile-SoFIA-LTE","Mobile-SoFIA-3G-R"]},{"header":"2010 - 2014","members":["Mobile-Broadwell","Mobile-Moorefield","Mobile-Merrifield","Mobile-Bay-Trail","Mobile-Crystal-Well","Mobile-Haswell","Mobile-Cloverview","Mobile-Ivy-Bridge","Mobile-Penwell","Mobile-Cedarview","Mobile-Lincroft","Mobile-Sandy-Bridge","Mobile-Pineview","Mobile-Arrandale"]},{"header":"2005 - 2009","members":["Mobile-Clarksfield","Mobile-Diamondville","Mobile-Silverthorne","Mobile-Penryn","Mobile-Merom","Mobile-Yonah"]},{"header":"2000 - 2004","members":["Mobile-Dothan"]},{"header":"1970 - 1974","members":["Mobile-Tualatin","Mobile-Banias","Mobile-Prescott"]},{"header":"2015 - 2019","members":["Mobile-Gemini-Lake-Refresh","Mobile-Comet-Lake","Mobile-Ice-Lake","Mobile-Amber-Lake","Mobile-Whiskey-Lake","Mobile-Amber-Lake-Y","Mobile-Coffee-Lake","Mobile-Kaby-Lake-G","Mobile-Gemini-Lake","Mobile-Kaby-Lake-R","Mobile-Kaby-Lake","Mobile-Apollo-Lake","Mobile-Skylake","Mobile-Braswell","Mobile-Cherry-Trail","Mobile-SoFIA-LTE","Mobile-SoFIA-3G-R"]},{"header":"2010 - 2014","members":["Mobile-Broadwell","Mobile-Moorefield","Mobile-Merrifield","Mobile-Bay-Trail","Mobile-Crystal-Well","Mobile-Haswell","Mobile-Cloverview","Mobile-Ivy-Bridge","Mobile-Penwell","Mobile-Cedarview","Mobile-Lincroft","Mobile-Sandy-Bridge","Mobile-Pineview","Mobile-Arrandale"]},{"header":"2005 - 2009","members":["Mobile-Clarksfield","Mobile-Diamondville","Mobile-Silverthorne","Mobile-Penryn","Mobile-Merom","Mobile-Yonah"]},{"header":"2000 - 2004","members":["Mobile-Dothan"]},{"header":"1970 - 1974","members":["Mobile-Tualatin","Mobile-Banias","Mobile-Prescott"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Atom-C2350":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2350"},"Atom-C2530":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"9 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2530"},"Atom-C2550":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"14 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2550"},"Atom-C2730":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"12 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2730"},"Atom-C2750":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2750"},"Server-Avoton":{"humanName":"Avoton","sections":[{"header":"8 Threads","members":["Atom-C2750","Atom-C2730"]},{"header":"4 Threads","members":["Atom-C2550","Atom-C2530"]},{"header":"2 Threads","members":["Atom-C2350"]},{"header":"8 Threads","members":["Atom-C2750","Atom-C2730"]},{"header":"4 Threads","members":["Atom-C2550","Atom-C2530"]},{"header":"2 Threads","members":["Atom-C2350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-04","Sockets":["BGA1283","BGA1283"]}},"Xeon-W3540":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon W3540"},"Xeon-W3580":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon W3580"},"Server-Bloomfield":{"humanName":"Bloomfield","sections":[{"header":"8 Threads","members":["Xeon-W3580","Xeon-W3570","Xeon-W3565","Xeon-W3550","Xeon-W3540","Xeon-W3530","Xeon-W3520"]},{"header":"8 Threads","members":["Xeon-W3580","Xeon-W3570","Xeon-W3565","Xeon-W3550","Xeon-W3540","Xeon-W3530","Xeon-W3520"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Atom-S1269":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"11.7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1269"},"Atom-S1279":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"13.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1279"},"Atom-S1289":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"14.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1289"},"Server-Briarwood":{"humanName":"Briarwood","sections":[{"header":"4 Threads","members":["Atom-S1289","Atom-S1279","Atom-S1269"]},{"header":"4 Threads","members":["Atom-S1289","Atom-S1279","Atom-S1269"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2013-04-10","Sockets":["BGA1283","BGA1283"]}},"Pentium-D1507":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"20 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1507"},"Pentium-D1508":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1508"},"Pentium-D1509":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"19 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1509"},"Pentium-D1517":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1517"},"Pentium-D1519":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1519"},"Xeon-D-1513N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1513N"},"Xeon-D-1518":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1518"},"Xeon-D-1520":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-03-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1520"},"Xeon-D-1521":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1521"},"Xeon-D-1523N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1523N"},"Xeon-D-1527":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1527"},"Xeon-D-1528":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1528"},"Xeon-D-1529":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"20 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"1.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1529"},"Xeon-D-1531":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1531"},"Xeon-D-1533N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1533N"},"Xeon-D-1537":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1537"},"Xeon-D-1539":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1539"},"Xeon-D-1540":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-03-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1540"},"Xeon-D-1543N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1543N"},"Xeon-D-1548":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1548"},"Xeon-D-1553N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1553N"},"Xeon-D-1557":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-02-26","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1557"},"Xeon-D-1559":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1559"},"Xeon-D-1567":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-02-26","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1567"},"Xeon-D-1571":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":16,"Thread Count":32,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2016-02-17","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1571"},"Xeon-D-1577":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":16,"Thread Count":32,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2016-02-17","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1577"},"Xeon-E3-1265LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265LV4"},"Xeon-E3-1285LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285LV4"},"Xeon-E3-1285V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285V4"},"Xeon-E5-1620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V4"},"Xeon-E5-1630V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1630V4"},"Xeon-E5-1650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V4"},"Xeon-E5-1660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V4"},"Xeon-E5-1680V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1680V4"},"Xeon-E5-2603V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V4"},"Xeon-E5-2609V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V4"},"Xeon-E5-2620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V4"},"Xeon-E5-2623V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2623V4"},"Xeon-E5-2630LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"55 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV4"},"Xeon-E5-2630V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V4"},"Xeon-E5-2637V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V4"},"Xeon-E5-2640V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"90 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V4"},"Xeon-E5-2643V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V4"},"Xeon-E5-2650LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV4"},"Xeon-E5-2650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V4"},"Xeon-E5-2660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V4"},"Xeon-E5-2667V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V4"},"Xeon-E5-2680V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V4"},"Xeon-E5-2683V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2683V4"},"Xeon-E5-2687WV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV4"},"Xeon-E5-2690V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V4"},"Xeon-E5-2695V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V4"},"Xeon-E5-2697AV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697AV4"},"Xeon-E5-2697V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V4"},"Xeon-E5-2698V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":20,"Thread Count":40,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"50 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2698V4"},"Xeon-E5-2699AV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-10-24","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699AV4"},"Xeon-E5-2699V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699V4"},"Xeon-E5-4610V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V4"},"Xeon-E5-4620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V4"},"Xeon-E5-4627V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":10,"Thread Count":10,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V4"},"Xeon-E5-4640V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V4"},"Xeon-E5-4650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V4"},"Xeon-E5-4655V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4655V4"},"Xeon-E5-4660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4660V4"},"Xeon-E5-4667V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4667V4"},"Xeon-E5-4669V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4669V4"},"Xeon-E7-4809V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V4"},"Xeon-E7-4820V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V4"},"Xeon-E7-4830V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V4"},"Xeon-E7-4850V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V4"},"Xeon-E7-8860V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860V4"},"Xeon-E7-8867V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867V4"},"Xeon-E7-8870V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":20,"Thread Count":40,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"50 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V4"},"Xeon-E7-8880V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V4"},"Xeon-E7-8890V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V4"},"Xeon-E7-8891V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V4"},"Xeon-E7-8893V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V4"},"Xeon-E7-8894V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2017-02-07","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8894V4"},"Server-Broadwell":{"humanName":"Broadwell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8894V4","Xeon-E7-8891V4","Xeon-E7-8890V4","Xeon-E7-8880V4","Xeon-E7-8870V4","Xeon-E7-8867V4","Xeon-E7-8860V4","Xeon-E7-4850V4","Xeon-E7-4830V4","Xeon-E7-4820V4","Xeon-E5-4669V4","Xeon-E5-4667V4","Xeon-E5-4660V4","Xeon-E5-4650V4","Xeon-E5-4640V4","Xeon-E5-4620V4","Xeon-E5-4610V4","Xeon-E5-2699V4","Xeon-E5-2699AV4","Xeon-E5-2698V4","Xeon-E5-2697V4","Xeon-E5-2697AV4","Xeon-E5-2695V4","Xeon-E5-2690V4","Xeon-E5-2687WV4","Xeon-E5-2683V4","Xeon-E5-2680V4","Xeon-E5-2660V4","Xeon-E5-2650V4","Xeon-E5-2650LV4","Xeon-E5-2640V4","Xeon-E5-2630V4","Xeon-E5-2630LV4","Xeon-D-1577","Xeon-D-1571","Xeon-D-1567","Xeon-D-1559","Xeon-D-1557"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V4","Xeon-E5-4655V4","Xeon-E5-4627V4","Xeon-E5-2667V4","Xeon-E5-2643V4","Xeon-E5-2620V4","Xeon-E5-1680V4","Xeon-E5-1660V4","Xeon-E5-1650V4","Xeon-D-1553N","Xeon-D-1548","Xeon-D-1543N","Xeon-D-1541","Xeon-D-1540","Xeon-D-1539","Xeon-D-1537","Xeon-D-1533N","Xeon-D-1531","Xeon-D-1528"]},{"header":"8 Threads","members":["Xeon-E7-8893V4","Xeon-E5-2637V4","Xeon-E5-2623V4","Xeon-E5-2609V4","Xeon-E5-1630V4","Xeon-E5-1620V4","Xeon-E3-1285V4","Xeon-E3-1285LV4","Xeon-E3-1265LV4","Xeon-D-1529","Xeon-D-1527","Xeon-D-1523N","Xeon-D-1521","Xeon-D-1520","Xeon-D-1518","Xeon-D-1513N","Pentium-D1519","Pentium-D1517"]},{"header":"6 Threads","members":["Xeon-E5-2603V4"]},{"header":"4 Threads","members":["Pentium-D1508"]},{"header":"2 Threads","members":["Pentium-D1509","Pentium-D1507"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8894V4","Xeon-E7-8891V4","Xeon-E7-8890V4","Xeon-E7-8880V4","Xeon-E7-8870V4","Xeon-E7-8867V4","Xeon-E7-8860V4","Xeon-E7-4850V4","Xeon-E7-4830V4","Xeon-E7-4820V4","Xeon-E5-4669V4","Xeon-E5-4667V4","Xeon-E5-4660V4","Xeon-E5-4650V4","Xeon-E5-4640V4","Xeon-E5-4620V4","Xeon-E5-4610V4","Xeon-E5-2699V4","Xeon-E5-2699AV4","Xeon-E5-2698V4","Xeon-E5-2697V4","Xeon-E5-2697AV4","Xeon-E5-2695V4","Xeon-E5-2690V4","Xeon-E5-2687WV4","Xeon-E5-2683V4","Xeon-E5-2680V4","Xeon-E5-2660V4","Xeon-E5-2650V4","Xeon-E5-2650LV4","Xeon-E5-2640V4","Xeon-E5-2630V4","Xeon-E5-2630LV4","Xeon-D-1577","Xeon-D-1571","Xeon-D-1567","Xeon-D-1559","Xeon-D-1557"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V4","Xeon-E5-4655V4","Xeon-E5-4627V4","Xeon-E5-2667V4","Xeon-E5-2643V4","Xeon-E5-2620V4","Xeon-E5-1680V4","Xeon-E5-1660V4","Xeon-E5-1650V4","Xeon-D-1553N","Xeon-D-1548","Xeon-D-1543N","Xeon-D-1541","Xeon-D-1540","Xeon-D-1539","Xeon-D-1537","Xeon-D-1533N","Xeon-D-1531","Xeon-D-1528"]},{"header":"8 Threads","members":["Xeon-E7-8893V4","Xeon-E5-2637V4","Xeon-E5-2623V4","Xeon-E5-2609V4","Xeon-E5-1630V4","Xeon-E5-1620V4","Xeon-E3-1285V4","Xeon-E3-1285LV4","Xeon-E3-1265LV4","Xeon-D-1529","Xeon-D-1527","Xeon-D-1523N","Xeon-D-1521","Xeon-D-1520","Xeon-D-1518","Xeon-D-1513N","Pentium-D1519","Pentium-D1517"]},{"header":"6 Threads","members":["Xeon-E5-2603V4"]},{"header":"4 Threads","members":["Pentium-D1508"]},{"header":"2 Threads","members":["Pentium-D1509","Pentium-D1507"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-09","Sockets":["BGA1667","LGA1150","LGA20113","LGA2011","BGA1667","LGA1150","LGA20113","LGA2011"]}},"Xeon-3204":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3204"},"Xeon-4208":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4208"},"Xeon-4209T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4209T"},"Xeon-4210":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4210"},"Xeon-4214":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4214"},"Xeon-4214Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4214Y"},"Xeon-4215":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4215"},"Xeon-4216":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"100 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4216"},"Xeon-5215":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215"},"Xeon-5215L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215L"},"Xeon-5215M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215M"},"Xeon-5217":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5217"},"Xeon-5218":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218"},"Xeon-5218B":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218B"},"Xeon-5218N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"110 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218N"},"Xeon-5218T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218T"},"Xeon-5220":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220"},"Xeon-5220S":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220S"},"Xeon-5220T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220T"},"Xeon-5222":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5222"},"Xeon-6222V":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6222V"},"Xeon-6226":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6226"},"Xeon-6230":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230"},"Xeon-6230N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230N"},"Xeon-6230T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230T"},"Xeon-6234":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6234"},"Xeon-6238":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238"},"Xeon-6238L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238L"},"Xeon-6238M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238M"},"Xeon-6238T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238T"},"Xeon-6240":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240"},"Xeon-6240L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240L"},"Xeon-6240M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240M"},"Xeon-6240Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240Y"},"Xeon-6242":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6242"},"Xeon-6244":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6244"},"Xeon-6246":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6246"},"Xeon-6248":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6248"},"Xeon-6252":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6252"},"Xeon-6252N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6252N"},"Xeon-6254":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"200 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6254"},"Xeon-6262V":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6262V"},"Xeon-8253":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8253"},"Xeon-8256":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8256"},"Xeon-8260":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260"},"Xeon-8260L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260L"},"Xeon-8260M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260M"},"Xeon-8260Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260Y"},"Xeon-8268":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8268"},"Xeon-8270":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8270"},"Xeon-8276":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276"},"Xeon-8276L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276L"},"Xeon-8276M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276M"},"Xeon-8280":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280"},"Xeon-8280L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280L"},"Xeon-8280M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280M"},"Xeon-9221":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"250 W","Core Count":32,"Thread Count":64,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-08-01","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9221"},"Xeon-9222":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"250 W","Core Count":32,"Thread Count":64,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-08-01","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9222"},"Xeon-9242":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"350 W","Core Count":48,"Thread Count":96,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-04-02","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9242"},"Xeon-9282":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"400 W","Core Count":56,"Thread Count":112,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"77 MiB","Release Date":"2019-04-02","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9282"},"Server-Cascade-Lake":{"humanName":"Cascade Lake","sections":[{"header":"65 - 128 Threads","members":["Xeon-9282","Xeon-9242"]},{"header":"17 - 64 Threads","members":["Xeon-9222","Xeon-9221","Xeon-8280M","Xeon-8280L","Xeon-8280","Xeon-8276M","Xeon-8276L","Xeon-8276","Xeon-8270","Xeon-8268","Xeon-8260Y","Xeon-8260M","Xeon-8260L","Xeon-8260","Xeon-8253","Xeon-6262V","Xeon-6254","Xeon-6252N","Xeon-6252","Xeon-6248","Xeon-6246","Xeon-6242","Xeon-6240Y","Xeon-6240M","Xeon-6240L","Xeon-6240","Xeon-6238T","Xeon-6238M","Xeon-6238L","Xeon-6238","Xeon-6230T","Xeon-6230N","Xeon-6230","Xeon-6226","Xeon-6222V","Xeon-5220T","Xeon-5220S","Xeon-5220","Xeon-5218T","Xeon-5218N","Xeon-5218B","Xeon-5218","Xeon-5215M","Xeon-5215L","Xeon-5215","Xeon-4216","Xeon-4214Y","Xeon-4214","Xeon-4210"]},{"header":"9 - 16 Threads","members":["Xeon-6244","Xeon-6234","Xeon-5217","Xeon-4215","Xeon-4209T","Xeon-4208"]},{"header":"8 Threads","members":["Xeon-8256","Xeon-5222"]},{"header":"6 Threads","members":["Xeon-3204"]},{"header":"65 - 128 Threads","members":["Xeon-9282","Xeon-9242"]},{"header":"17 - 64 Threads","members":["Xeon-9222","Xeon-9221","Xeon-8280M","Xeon-8280L","Xeon-8280","Xeon-8276M","Xeon-8276L","Xeon-8276","Xeon-8270","Xeon-8268","Xeon-8260Y","Xeon-8260M","Xeon-8260L","Xeon-8260","Xeon-8253","Xeon-6262V","Xeon-6254","Xeon-6252N","Xeon-6252","Xeon-6248","Xeon-6246","Xeon-6242","Xeon-6240Y","Xeon-6240M","Xeon-6240L","Xeon-6240","Xeon-6238T","Xeon-6238M","Xeon-6238L","Xeon-6238","Xeon-6230T","Xeon-6230N","Xeon-6230","Xeon-6226","Xeon-6222V","Xeon-5220T","Xeon-5220S","Xeon-5220","Xeon-5218T","Xeon-5218N","Xeon-5218B","Xeon-5218","Xeon-5215M","Xeon-5215L","Xeon-5215","Xeon-4216","Xeon-4214Y","Xeon-4214","Xeon-4210"]},{"header":"9 - 16 Threads","members":["Xeon-6244","Xeon-6234","Xeon-5217","Xeon-4215","Xeon-4209T","Xeon-4208"]},{"header":"8 Threads","members":["Xeon-8256","Xeon-5222"]},{"header":"6 Threads","members":["Xeon-3204"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-04-02","Sockets":["LGA3647","LGA3647"]}},"Atom-S1220":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"8.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1220"},"Atom-S1240":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"6.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1240"},"Atom-S1260":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1260"},"Server-Centerton":{"humanName":"Centerton","sections":[{"header":"4 Threads","members":["Atom-S1260","Atom-S1240","Atom-S1220"]},{"header":"4 Threads","members":["Atom-S1260","Atom-S1240","Atom-S1220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-12-11","Sockets":["BGA1283","BGA1283"]}},"Xeon-L3406":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Server","Lithography":"32 nm","TDP":"30 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-03-16","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L3406"},"Server-Clarkdale":{"humanName":"Clarkdale","sections":[{"header":"4 Threads","members":["Xeon-L3406"]},{"header":"4 Threads","members":["Xeon-L3406"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1156","LGA1156"]}},"Xeon-L5310":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-03-12","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5310"},"Xeon-L5318":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2008-03-31","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5318"},"Xeon-L5320":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-03-12","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5320"},"Xeon-L5335":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-08-13","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5335"},"Xeon-X5355":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5355"},"Xeon-X5365":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-08-13","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5365"},"Server-Clovertown":{"humanName":"Clovertown","sections":[{"header":"4 Threads","members":["Xeon-X5365","Xeon-X5355","Xeon-L5335","Xeon-L5320","Xeon-L5318","Xeon-L5310","Xeon-E5345","Xeon-E5335","Xeon-E5320","Xeon-E5310"]},{"header":"4 Threads","members":["Xeon-X5365","Xeon-X5355","Xeon-L5335","Xeon-L5320","Xeon-L5318","Xeon-L5310","Xeon-E5345","Xeon-E5335","Xeon-E5320","Xeon-E5310"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-10-11","Sockets":["LGA771","PLGA771","LGA771","PLGA771"]}},"Xeon-E-2124":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E-2124"},"Xeon-E-2126G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2126G"},"Xeon-E-2134":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E-2134"},"Xeon-E-2174G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2174G"},"Xeon-E-2186G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2186G"},"Xeon-E-2226G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2226G"},"Xeon-E-2234":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E-2234"},"Xeon-E-2244G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2244G"},"Xeon-E-2246G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2246G"},"Xeon-E-2276G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276G"},"Xeon-E-2278G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278G"},"Xeon-E-2288G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2288G"},"Server-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2288G","Xeon-E-2286G","Xeon-E-2278G","Xeon-E-2276G","Xeon-E-2246G","Xeon-E-2236","Xeon-E-2186G","Xeon-E-2176G","Xeon-E-2146G","Xeon-E-2136"]},{"header":"8 Threads","members":["Xeon-E-2274G","Xeon-E-2244G","Xeon-E-2234","Xeon-E-2174G","Xeon-E-2144G","Xeon-E-2134"]},{"header":"6 Threads","members":["Xeon-E-2226G","Xeon-E-2126G"]},{"header":"4 Threads","members":["Xeon-E-2224G","Xeon-E-2224","Xeon-E-2124G","Xeon-E-2124"]},{"header":"9 - 16 Threads","members":["Xeon-E-2288G","Xeon-E-2286G","Xeon-E-2278G","Xeon-E-2276G","Xeon-E-2246G","Xeon-E-2236","Xeon-E-2186G","Xeon-E-2176G","Xeon-E-2146G","Xeon-E-2136"]},{"header":"8 Threads","members":["Xeon-E-2274G","Xeon-E-2244G","Xeon-E-2234","Xeon-E-2174G","Xeon-E-2144G","Xeon-E-2134"]},{"header":"6 Threads","members":["Xeon-E-2226G","Xeon-E-2126G"]},{"header":"4 Threads","members":["Xeon-E-2224G","Xeon-E-2224","Xeon-E-2124G","Xeon-E-2124"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2018-07-12","Sockets":["LGA1151","LGA1151"]}},"Xeon-3040":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Socket":"LGA775, PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3040"},"Xeon-3050":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Socket":"LGA775, PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3050"},"Xeon-3060":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3060"},"Xeon-3065":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-11-12","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3065"},"Xeon-3070":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3070"},"Server-Conroe":{"humanName":"Conroe","sections":[{"header":"2 Threads","members":["Xeon-3070","Xeon-3065","Xeon-3060","Xeon-3050","Xeon-3040"]},{"header":"2 Threads","members":["Xeon-3070","Xeon-3065","Xeon-3060","Xeon-3050","Xeon-3040"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2007-11-12","Sockets":["LGA775","PLGA775","LGA775","PLGA775"]}},"Atom-C3308":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"9.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.6 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3308"},"Atom-C3336":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"11 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-31","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3336"},"Atom-C3338":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"8.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.5 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3338"},"Atom-C3508":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"11.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.6 GHz","Boost Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3508"},"Atom-C3538":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3538"},"Atom-C3558":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"16 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3558"},"Atom-C3708":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"17 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"1.7 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3708"},"Atom-C3750":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"21 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3750"},"Atom-C3758":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3758"},"Atom-C3808":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3808"},"Atom-C3830":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"21.5 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"1.9 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3830"},"Atom-C3850":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3850"},"Atom-C3858":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3858"},"Atom-C3950":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"24 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"1.7 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3950"},"Atom-C3955":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"32 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3955"},"Atom-C3958":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"31 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3958"},"Server-Denverton":{"humanName":"Denverton","sections":[{"header":"9 - 16 Threads","members":["Atom-C3958","Atom-C3955","Atom-C3950","Atom-C3858","Atom-C3850","Atom-C3830","Atom-C3808"]},{"header":"8 Threads","members":["Atom-C3758","Atom-C3750","Atom-C3708"]},{"header":"4 Threads","members":["Atom-C3558","Atom-C3538","Atom-C3508"]},{"header":"2 Threads","members":["Atom-C3338","Atom-C3336","Atom-C3308"]},{"header":"9 - 16 Threads","members":["Atom-C3958","Atom-C3955","Atom-C3950","Atom-C3858","Atom-C3850","Atom-C3830","Atom-C3808"]},{"header":"8 Threads","members":["Atom-C3758","Atom-C3750","Atom-C3708"]},{"header":"4 Threads","members":["Atom-C3558","Atom-C3538","Atom-C3508"]},{"header":"2 Threads","members":["Atom-C3338","Atom-C3336","Atom-C3308"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["BGA1310","BGA1310"]}},"Xeon-E7420":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7420"},"Xeon-E7430":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7430"},"Xeon-E7440":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7440"},"Xeon-E7450":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7450"},"Xeon-L7445":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7445"},"Xeon-L7455":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7455"},"Xeon-X7460":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"16 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X7460"},"Server-Dunnington":{"humanName":"Dunnington","sections":[{"header":"6 Threads","members":["Xeon-X7460","Xeon-L7455","Xeon-E7450"]},{"header":"4 Threads","members":["Xeon-L7445","Xeon-E7440","Xeon-E7430","Xeon-E7420"]},{"header":"6 Threads","members":["Xeon-X7460","Xeon-L7455","Xeon-E7450"]},{"header":"4 Threads","members":["Xeon-L7445","Xeon-E7440","Xeon-E7430","Xeon-E7420"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-09-15","Sockets":["PGA604","PGA604"]}},"Server-Gulftown":{"humanName":"Gulftown","sections":[{"header":"9 - 16 Threads","members":["Xeon-W3690"]},{"header":"9 - 16 Threads","members":["Xeon-W3690"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-02-14","Sockets":["LGA1366","LGA1366"]}},"Xeon-E5410":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5410"},"Xeon-L5410":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5410"},"Xeon-L5430":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5430"},"Xeon-X5482":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5482"},"Xeon-X5492":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5492"},"Server-Harpertown":{"humanName":"Harpertown","sections":[{"header":"4 Threads","members":["Xeon-X5492","Xeon-X5482","Xeon-X5472","Xeon-X5470","Xeon-X5460","Xeon-X5450","Xeon-L5430","Xeon-L5420","Xeon-L5410","Xeon-E5472","Xeon-E5462","Xeon-E5450","Xeon-E5440","Xeon-E5430","Xeon-E5420","Xeon-E5410","Xeon-E5405"]},{"header":"4 Threads","members":["Xeon-X5492","Xeon-X5482","Xeon-X5472","Xeon-X5470","Xeon-X5460","Xeon-X5450","Xeon-L5430","Xeon-L5420","Xeon-L5410","Xeon-E5472","Xeon-E5462","Xeon-E5450","Xeon-E5440","Xeon-E5430","Xeon-E5420","Xeon-E5410","Xeon-E5405"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA771","LGA771"]}},"Xeon-E3-1220LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","Boost Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220LV3"},"Xeon-E3-1225V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V3"},"Xeon-E3-1226V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1226V3"},"Xeon-E3-1230Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230Lv3"},"Xeon-E3-1231V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1231V3"},"Xeon-E3-1240LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240LV3"},"Xeon-E3-1241V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1241V3"},"Xeon-E3-1246V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1246V3"},"Xeon-E3-1265Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265Lv3"},"Xeon-E3-1271V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1271V3"},"Xeon-E3-1275LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275LV3"},"Xeon-E3-1276V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1276V3"},"Xeon-E3-1281V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1281V3"},"Xeon-E3-1285-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.3 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285 v3"},"Xeon-E3-1285Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","DirectX Support":"11.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285Lv3"},"Xeon-E3-1286LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1286LV3"},"Xeon-E3-1286V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1286V3"},"Xeon-E5-1620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V3"},"Xeon-E5-1630V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1630V3"},"Xeon-E5-1650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V3"},"Xeon-E5-1660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V3"},"Xeon-E5-1680V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1680V3"},"Xeon-E5-2603V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V3"},"Xeon-E5-2609V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V3"},"Xeon-E5-2620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V3"},"Xeon-E5-2623V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2623V3"},"Xeon-E5-2630LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"55 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV3"},"Xeon-E5-2630V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V3"},"Xeon-E5-2637V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V3"},"Xeon-E5-2640V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"90 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V3"},"Xeon-E5-2643V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V3"},"Xeon-E5-2650LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV3"},"Xeon-E5-2650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V3"},"Xeon-E5-2660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V3"},"Xeon-E5-2667V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V3"},"Xeon-E5-2670V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670V3"},"Xeon-E5-2680V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V3"},"Xeon-E5-2683V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2683V3"},"Xeon-E5-2687WV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"160 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV3"},"Xeon-E5-2690V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V3"},"Xeon-E5-2695V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V3"},"Xeon-E5-2697V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"145 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V3"},"Xeon-E5-2698V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2698V3"},"Xeon-E5-2699V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"145 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699V3"},"Xeon-E5-4610V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V3"},"Xeon-E5-4620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V3"},"Xeon-E5-4627V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":10,"Thread Count":10,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V3"},"Xeon-E5-4640V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V3"},"Xeon-E5-4650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V3"},"Xeon-E5-4655V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4655V3"},"Xeon-E5-4660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4660V3"},"Xeon-E5-4667V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4667V3"},"Xeon-E5-4669V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4669V3"},"Xeon-E7-4809V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V3"},"Xeon-E7-4820V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V3"},"Xeon-E7-4830V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V3"},"Xeon-E7-4850V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V3"},"Xeon-E7-8860V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860V3"},"Xeon-E7-8867V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867V3"},"Xeon-E7-8870V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V3"},"Xeon-E7-8880LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880LV3"},"Xeon-E7-8880V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V3"},"Xeon-E7-8890V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V3"},"Xeon-E7-8891V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V3"},"Xeon-E7-8893V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V3"},"Server-Haswell":{"humanName":"Haswell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8891V3","Xeon-E7-8890V3","Xeon-E7-8880V3","Xeon-E7-8880LV3","Xeon-E7-8870V3","Xeon-E7-8867V3","Xeon-E7-8860V3","Xeon-E7-4850V3","Xeon-E7-4830V3","Xeon-E7-4820V3","Xeon-E5-4669V3","Xeon-E5-4667V3","Xeon-E5-4660V3","Xeon-E5-4650V3","Xeon-E5-4640V3","Xeon-E5-4620V3","Xeon-E5-4610V3","Xeon-E5-2699V3","Xeon-E5-2698V3","Xeon-E5-2697V3","Xeon-E5-2695V3","Xeon-E5-2690V3","Xeon-E5-2687WV3","Xeon-E5-2683V3","Xeon-E5-2680V3","Xeon-E5-2670V3","Xeon-E5-2660V3","Xeon-E5-2650V3","Xeon-E5-2650LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V3","Xeon-E5-4655V3","Xeon-E5-4627V3","Xeon-E5-2667V3","Xeon-E5-2643V3","Xeon-E5-2640V3","Xeon-E5-2630V3","Xeon-E5-2630LV3","Xeon-E5-2620V3","Xeon-E5-1680V3","Xeon-E5-1660V3","Xeon-E5-1650V3"]},{"header":"8 Threads","members":["Xeon-E7-8893V3","Xeon-E5-2637V3","Xeon-E5-2623V3","Xeon-E5-1630V3","Xeon-E5-1620V3","Xeon-E3-1286V3","Xeon-E3-1286LV3","Xeon-E3-1285Lv3","Xeon-E3-1285-v3","Xeon-E3-1281V3","Xeon-E3-1280-v3","Xeon-E3-1276V3","Xeon-E3-1275LV3","Xeon-E3-1275-v3","Xeon-E3-1271V3","Xeon-E3-1270-v3","Xeon-E3-1265Lv3","Xeon-E3-1246V3","Xeon-E3-1245-v3","Xeon-E3-1241V3","Xeon-E3-1240LV3","Xeon-E3-1240-v3","Xeon-E3-1231V3","Xeon-E3-1230Lv3","Xeon-E3-1230-v3"]},{"header":"6 Threads","members":["Xeon-E5-2609V3","Xeon-E5-2603V3"]},{"header":"4 Threads","members":["Xeon-E3-1226V3","Xeon-E3-1225V3","Xeon-E3-1220LV3","Xeon-E3-1220-v3"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8891V3","Xeon-E7-8890V3","Xeon-E7-8880V3","Xeon-E7-8880LV3","Xeon-E7-8870V3","Xeon-E7-8867V3","Xeon-E7-8860V3","Xeon-E7-4850V3","Xeon-E7-4830V3","Xeon-E7-4820V3","Xeon-E5-4669V3","Xeon-E5-4667V3","Xeon-E5-4660V3","Xeon-E5-4650V3","Xeon-E5-4640V3","Xeon-E5-4620V3","Xeon-E5-4610V3","Xeon-E5-2699V3","Xeon-E5-2698V3","Xeon-E5-2697V3","Xeon-E5-2695V3","Xeon-E5-2690V3","Xeon-E5-2687WV3","Xeon-E5-2683V3","Xeon-E5-2680V3","Xeon-E5-2670V3","Xeon-E5-2660V3","Xeon-E5-2650V3","Xeon-E5-2650LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V3","Xeon-E5-4655V3","Xeon-E5-4627V3","Xeon-E5-2667V3","Xeon-E5-2643V3","Xeon-E5-2640V3","Xeon-E5-2630V3","Xeon-E5-2630LV3","Xeon-E5-2620V3","Xeon-E5-1680V3","Xeon-E5-1660V3","Xeon-E5-1650V3"]},{"header":"8 Threads","members":["Xeon-E7-8893V3","Xeon-E5-2637V3","Xeon-E5-2623V3","Xeon-E5-1630V3","Xeon-E5-1620V3","Xeon-E3-1286V3","Xeon-E3-1286LV3","Xeon-E3-1285Lv3","Xeon-E3-1285-v3","Xeon-E3-1281V3","Xeon-E3-1280-v3","Xeon-E3-1276V3","Xeon-E3-1275LV3","Xeon-E3-1275-v3","Xeon-E3-1271V3","Xeon-E3-1270-v3","Xeon-E3-1265Lv3","Xeon-E3-1246V3","Xeon-E3-1245-v3","Xeon-E3-1241V3","Xeon-E3-1240LV3","Xeon-E3-1240-v3","Xeon-E3-1231V3","Xeon-E3-1230Lv3","Xeon-E3-1230-v3"]},{"header":"6 Threads","members":["Xeon-E5-2609V3","Xeon-E5-2603V3"]},{"header":"4 Threads","members":["Xeon-E3-1226V3","Xeon-E3-1225V3","Xeon-E3-1220LV3","Xeon-E3-1220-v3"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","LGA20113","LGA2011","LGA1150","LGA20113","LGA2011"]}},"Xeon-D-1602":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"27 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1602"},"Xeon-D-1622":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1622"},"Xeon-D-1623N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1623N"},"Xeon-D-1627":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1627"},"Xeon-D-1633N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1633N"},"Xeon-D-1637":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"55 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1637"},"Xeon-D-1649N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1649N"},"Xeon-D-1653N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1653N"},"Server-Hewitt-Lake":{"humanName":"Hewitt Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-D-1653N","Xeon-D-1649N","Xeon-D-1637","Xeon-D-1633N"]},{"header":"8 Threads","members":["Xeon-D-1627","Xeon-D-1623N","Xeon-D-1622"]},{"header":"4 Threads","members":["Xeon-D-1602"]},{"header":"9 - 16 Threads","members":["Xeon-D-1653N","Xeon-D-1649N","Xeon-D-1637","Xeon-D-1633N"]},{"header":"8 Threads","members":["Xeon-D-1627","Xeon-D-1623N","Xeon-D-1622"]},{"header":"4 Threads","members":["Xeon-D-1602"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-04-02","Sockets":["BGA1667","BGA1667"]}},"Xeon-E3-1220LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220LV2"},"Xeon-E3-1220V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V2"},"Xeon-E3-1225V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V2"},"Xeon-E3-1240V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V2"},"Xeon-E3-1245V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V2"},"Xeon-E3-1265LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265LV2"},"Xeon-E3-1270V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V2"},"Xeon-E3-1275V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V2"},"Xeon-E3-1280V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V2"},"Xeon-E3-1290V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"87 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1290V2"},"Xeon-E7-2850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2850V2"},"Xeon-E7-2870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2870V2"},"Xeon-E7-2880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2880V2"},"Xeon-E7-2890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2890V2"},"Xeon-E7-4809V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V2"},"Xeon-E7-4820V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V2"},"Xeon-E7-4830V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V2"},"Xeon-E7-4850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V2"},"Xeon-E7-4860V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4860V2"},"Xeon-E7-4870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4870V2"},"Xeon-E7-4880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4880V2"},"Xeon-E7-4890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4890V2"},"Xeon-E7-8850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8850V2"},"Xeon-E7-8857V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8857V2"},"Xeon-E7-8870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V2"},"Xeon-E7-8880LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880LV2"},"Xeon-E7-8880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V2"},"Xeon-E7-8890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V2"},"Xeon-E7-8891V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V2"},"Xeon-E7-8893V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V2"},"Xeon-E5-2403V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2403V2"},"Xeon-E5-2407V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2407V2"},"Xeon-E5-2420V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2420V2"},"Xeon-E5-2430LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430LV2"},"Xeon-E5-2430V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430V2"},"Xeon-E5-2440V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2440V2"},"Xeon-E5-2450LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450LV2"},"Xeon-E5-2450V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450V2"},"Xeon-E5-2470V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2470V2"},"Server-Ivy-Bridge-EN":{"humanName":"Ivy Bridge EN","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-2470V2","Xeon-E5-2450LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2450V2","Xeon-E5-2440V2","Xeon-E5-2430V2","Xeon-E5-2430LV2","Xeon-E5-2420V2"]},{"header":"4 Threads","members":["Xeon-E5-2407V2","Xeon-E5-2403V2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-2470V2","Xeon-E5-2450LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2450V2","Xeon-E5-2440V2","Xeon-E5-2430V2","Xeon-E5-2430LV2","Xeon-E5-2420V2"]},{"header":"4 Threads","members":["Xeon-E5-2407V2","Xeon-E5-2403V2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-01-09","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-1620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V2"},"Xeon-E5-1650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V2"},"Xeon-E5-1660V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V2"},"Xeon-E5-2603V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V2"},"Xeon-E5-2609V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V2"},"Xeon-E5-2620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V2"},"Xeon-E5-2630LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV2"},"Xeon-E5-2630V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V2"},"Xeon-E5-2637V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V2"},"Xeon-E5-2640V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V2"},"Xeon-E5-2643V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V2"},"Xeon-E5-2650LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV2"},"Xeon-E5-2650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V2"},"Xeon-E5-2660V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V2"},"Xeon-E5-2667V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V2"},"Xeon-E5-2670V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670V2"},"Xeon-E5-2680V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V2"},"Xeon-E5-2687WV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV2"},"Xeon-E5-2690V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V2"},"Xeon-E5-2695V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V2"},"Xeon-E5-2697V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V2"},"Xeon-E5-4603V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4603V2"},"Xeon-E5-4607V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4607V2"},"Xeon-E5-4610V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V2"},"Xeon-E5-4620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V2"},"Xeon-E5-4627V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V2"},"Xeon-E5-4640V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V2"},"Xeon-E5-4650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V2"},"Xeon-E5-4657LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4657LV2"},"Server-Ivy-Bridge-EP":{"humanName":"Ivy Bridge EP","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4657LV2","Xeon-E5-4650V2","Xeon-E5-4640V2","Xeon-E5-2697V2","Xeon-E5-2695V2","Xeon-E5-2690V2","Xeon-E5-2680V2","Xeon-E5-2670V2","Xeon-E5-2660V2","Xeon-E5-2650LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4620V2","Xeon-E5-4610V2","Xeon-E5-4607V2","Xeon-E5-2687WV2","Xeon-E5-2667V2","Xeon-E5-2650V2","Xeon-E5-2643V2","Xeon-E5-2640V2","Xeon-E5-2630V2","Xeon-E5-2630LV2","Xeon-E5-2620V2","Xeon-E5-1660V2","Xeon-E5-1650V2"]},{"header":"8 Threads","members":["Xeon-E5-4627V2","Xeon-E5-4603V2","Xeon-E5-2637V2","Xeon-E5-1620V2"]},{"header":"4 Threads","members":["Xeon-E5-2609V2","Xeon-E5-2603V2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4657LV2","Xeon-E5-4650V2","Xeon-E5-4640V2","Xeon-E5-2697V2","Xeon-E5-2695V2","Xeon-E5-2690V2","Xeon-E5-2680V2","Xeon-E5-2670V2","Xeon-E5-2660V2","Xeon-E5-2650LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4620V2","Xeon-E5-4610V2","Xeon-E5-4607V2","Xeon-E5-2687WV2","Xeon-E5-2667V2","Xeon-E5-2650V2","Xeon-E5-2643V2","Xeon-E5-2640V2","Xeon-E5-2630V2","Xeon-E5-2630LV2","Xeon-E5-2620V2","Xeon-E5-1660V2","Xeon-E5-1650V2"]},{"header":"8 Threads","members":["Xeon-E5-4627V2","Xeon-E5-4603V2","Xeon-E5-2637V2","Xeon-E5-1620V2"]},{"header":"4 Threads","members":["Xeon-E5-2609V2","Xeon-E5-2603V2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Server-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8891V2","Xeon-E7-8890V2","Xeon-E7-8880V2","Xeon-E7-8880LV2","Xeon-E7-8870V2","Xeon-E7-8850V2","Xeon-E7-4890V2","Xeon-E7-4880V2","Xeon-E7-4870V2","Xeon-E7-4860V2","Xeon-E7-4850V2","Xeon-E7-4830V2","Xeon-E7-2890V2","Xeon-E7-2880V2","Xeon-E7-2870V2","Xeon-E7-2850V2"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8893V2","Xeon-E7-8857V2","Xeon-E7-4820V2","Xeon-E7-4809V2"]},{"header":"8 Threads","members":["Xeon-E3-1290V2","Xeon-E3-1280V2","Xeon-E3-1275V2","Xeon-E3-1270V2","Xeon-E3-1265LV2","Xeon-E3-1245V2","Xeon-E3-1240V2","Xeon-E3-1230V2"]},{"header":"4 Threads","members":["Xeon-E3-1225V2","Xeon-E3-1220V2","Xeon-E3-1220LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8891V2","Xeon-E7-8890V2","Xeon-E7-8880V2","Xeon-E7-8880LV2","Xeon-E7-8870V2","Xeon-E7-8850V2","Xeon-E7-4890V2","Xeon-E7-4880V2","Xeon-E7-4870V2","Xeon-E7-4860V2","Xeon-E7-4850V2","Xeon-E7-4830V2","Xeon-E7-2890V2","Xeon-E7-2880V2","Xeon-E7-2870V2","Xeon-E7-2850V2"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8893V2","Xeon-E7-8857V2","Xeon-E7-4820V2","Xeon-E7-4809V2"]},{"header":"8 Threads","members":["Xeon-E3-1290V2","Xeon-E3-1280V2","Xeon-E3-1275V2","Xeon-E3-1270V2","Xeon-E3-1265LV2","Xeon-E3-1245V2","Xeon-E3-1240V2","Xeon-E3-1230V2"]},{"header":"4 Threads","members":["Xeon-E3-1225V2","Xeon-E3-1220V2","Xeon-E3-1220LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-05-14","Sockets":["LGA1155","LGA2011","LGA1155","LGA2011"]}},"Xeon-E3-1220V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V6"},"Xeon-E3-1225V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V6"},"Xeon-E3-1230V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V6"},"Xeon-E3-1240V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V6"},"Xeon-E3-1245V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V6"},"Xeon-E3-1270V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V6"},"Xeon-E3-1275V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V6"},"Xeon-E3-1280V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V6"},"Xeon-E3-1285V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"79 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.1 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285V6"},"Server-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1285V6","Xeon-E3-1280V6","Xeon-E3-1275V6","Xeon-E3-1270V6","Xeon-E3-1245V6","Xeon-E3-1240V6","Xeon-E3-1230V6"]},{"header":"4 Threads","members":["Xeon-E3-1225V6","Xeon-E3-1220V6"]},{"header":"8 Threads","members":["Xeon-E3-1285V6","Xeon-E3-1280V6","Xeon-E3-1275V6","Xeon-E3-1270V6","Xeon-E3-1245V6","Xeon-E3-1240V6","Xeon-E3-1230V6"]},{"header":"4 Threads","members":["Xeon-E3-1225V6","Xeon-E3-1220V6"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-03-28","Sockets":["LGA1151","LGA1151"]}},"Xeon-X3210":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3210"},"Xeon-X3230":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3230"},"Server-Kentsfield":{"humanName":"Kentsfield","sections":[{"header":"4 Threads","members":["Xeon-X3230","Xeon-X3220","Xeon-X3210"]},{"header":"4 Threads","members":["Xeon-X3230","Xeon-X3220","Xeon-X3210"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2007-01-08","Sockets":["LGA775","LGA775"]}},"Xeon-L3426":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L3426"},"Xeon-X3480":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X3480"},"Server-Lynnfield":{"humanName":"Lynnfield","sections":[{"header":"8 Threads","members":["Xeon-X3480","Xeon-X3470","Xeon-X3460","Xeon-X3450","Xeon-X3440","Xeon-L3426"]},{"header":"4 Threads","members":["Xeon-X3430"]},{"header":"8 Threads","members":["Xeon-X3480","Xeon-X3470","Xeon-X3460","Xeon-X3450","Xeon-X3440","Xeon-L3426"]},{"header":"4 Threads","members":["Xeon-X3430"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-08","Sockets":["LGA1156","LGA1156"]}},"Xeon-E5502":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5502"},"Xeon-E5503":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5503"},"Xeon-L5506":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5506"},"Xeon-L5530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5530"},"Xeon-W5580":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon W5580"},"Xeon-W5590":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon W5590"},"Server-Nehalem-EP":{"humanName":"Nehalem EP","sections":[{"header":"8 Threads","members":["Xeon-X5570","Xeon-X5560","Xeon-X5550","Xeon-W5590","Xeon-W5580","Xeon-L5530","Xeon-L5520","Xeon-E5540","Xeon-E5530","Xeon-E5520"]},{"header":"4 Threads","members":["Xeon-L5506","Xeon-E5507","Xeon-E5506","Xeon-E5504"]},{"header":"2 Threads","members":["Xeon-E5503","Xeon-E5502"]},{"header":"8 Threads","members":["Xeon-X5570","Xeon-X5560","Xeon-X5550","Xeon-W5590","Xeon-W5580","Xeon-L5530","Xeon-L5520","Xeon-E5540","Xeon-E5530","Xeon-E5520"]},{"header":"4 Threads","members":["Xeon-L5506","Xeon-E5507","Xeon-E5506","Xeon-E5504"]},{"header":"2 Threads","members":["Xeon-E5503","Xeon-E5502"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Xeon-E3-1220L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"20 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-04-05","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220L"},"Xeon-E3-1235":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1235"},"Xeon-E3-1275":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275"},"Xeon-E3-1280":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280"},"Xeon-E3-1290":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-07-01","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1290"},"Pentium-1405":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"5 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 1405"},"Xeon-E5-1428L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428L"},"Xeon-E5-2403":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2403"},"Xeon-E5-2407":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2407"},"Xeon-E5-2430L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430L"},"Xeon-E5-2440":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2440"},"Xeon-E5-2450":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450"},"Xeon-E5-2450L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450L"},"Xeon-E5-2470":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2470"},"Server-Sandy-Bridge-EN":{"humanName":"Sandy Bridge EN","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2470","Xeon-E5-2450L","Xeon-E5-2450","Xeon-E5-2440","Xeon-E5-2430L","Xeon-E5-2430","Xeon-E5-2420","Xeon-E5-1428L"]},{"header":"4 Threads","members":["Xeon-E5-2407","Xeon-E5-2403"]},{"header":"2 Threads","members":["Pentium-1405"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2470","Xeon-E5-2450L","Xeon-E5-2450","Xeon-E5-2440","Xeon-E5-2430L","Xeon-E5-2430","Xeon-E5-2420","Xeon-E5-1428L"]},{"header":"4 Threads","members":["Xeon-E5-2407","Xeon-E5-2403"]},{"header":"2 Threads","members":["Pentium-1405"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-05-14","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2603":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603"},"Xeon-E5-2609":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609"},"Xeon-E5-2630L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630L"},"Xeon-E5-2637":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":2,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"5 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637"},"Xeon-E5-2650L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650L"},"Xeon-E5-2667":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667"},"Xeon-E5-4603":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4603"},"Xeon-E5-4607":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4607"},"Xeon-E5-4610":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610"},"Xeon-E5-4617":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4617"},"Xeon-E5-4620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620"},"Xeon-E5-4640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640"},"Xeon-E5-4650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650"},"Xeon-E5-4650L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650L"},"Server-Sandy-Bridge-EP":{"humanName":"Sandy Bridge EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-4650L","Xeon-E5-4650","Xeon-E5-4640","Xeon-E5-4620","Xeon-E5-4610","Xeon-E5-4607","Xeon-E5-2690","Xeon-E5-2687W","Xeon-E5-2680","Xeon-E5-2670","Xeon-E5-2667","Xeon-E5-2665","Xeon-E5-2660","Xeon-E5-2650L","Xeon-E5-2650","Xeon-E5-2640","Xeon-E5-2630L","Xeon-E5-2630","Xeon-E5-2620","Xeon-E5-1660","Xeon-E5-1650"]},{"header":"8 Threads","members":["Xeon-E5-4603","Xeon-E5-2643","Xeon-E5-1620"]},{"header":"6 Threads","members":["Xeon-E5-4617"]},{"header":"4 Threads","members":["Xeon-E5-2637","Xeon-E5-2609","Xeon-E5-2603"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4650L","Xeon-E5-4650","Xeon-E5-4640","Xeon-E5-4620","Xeon-E5-4610","Xeon-E5-4607","Xeon-E5-2690","Xeon-E5-2687W","Xeon-E5-2680","Xeon-E5-2670","Xeon-E5-2667","Xeon-E5-2665","Xeon-E5-2660","Xeon-E5-2650L","Xeon-E5-2650","Xeon-E5-2640","Xeon-E5-2630L","Xeon-E5-2630","Xeon-E5-2620","Xeon-E5-1660","Xeon-E5-1650"]},{"header":"8 Threads","members":["Xeon-E5-4603","Xeon-E5-2643","Xeon-E5-1620"]},{"header":"6 Threads","members":["Xeon-E5-4617"]},{"header":"4 Threads","members":["Xeon-E5-2637","Xeon-E5-2609","Xeon-E5-2603"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-03-06","Sockets":["LGA2011","LGA2011"]}},"Server-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Xeon-E3-1290","Xeon-E3-1280","Xeon-E3-1275","Xeon-E3-1270","Xeon-E3-1260L","Xeon-E3-1245","Xeon-E3-1240","Xeon-E3-1235","Xeon-E3-1230"]},{"header":"4 Threads","members":["Xeon-E3-1225","Xeon-E3-1220L","Xeon-E3-1220"]},{"header":"8 Threads","members":["Xeon-E3-1290","Xeon-E3-1280","Xeon-E3-1275","Xeon-E3-1270","Xeon-E3-1260L","Xeon-E3-1245","Xeon-E3-1240","Xeon-E3-1235","Xeon-E3-1230"]},{"header":"4 Threads","members":["Xeon-E3-1225","Xeon-E3-1220L","Xeon-E3-1220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-04-05","Sockets":["LGA1155","LGA1155"]}},"Xeon-3104":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3104"},"Xeon-3106":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3106"},"Xeon-4108":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4108"},"Xeon-4109T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4109T"},"Xeon-4110":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4110"},"Xeon-4112":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4112"},"Xeon-4114":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4114"},"Xeon-4114T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4114T"},"Xeon-4116":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4116"},"Xeon-4116T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4116T"},"Xeon-5115":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5115"},"Xeon-5118":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5118"},"Xeon-5119T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5119T"},"Xeon-5120":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"19.25 MiB","Die Size":"143 mm","Socket":"FCLGA3647","Other Extensions":["x86-64","x86-64"],"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Boost Frequency":"3.2 GHz","Release Date":"2017-07-11","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5120"},"Xeon-5120T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5120T"},"Xeon-5122":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5122"},"Xeon-6126":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126"},"Xeon-6126F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126F"},"Xeon-6126T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126T"},"Xeon-6128":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":6,"Thread Count":12,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6128"},"Xeon-6130":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130"},"Xeon-6130F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130F"},"Xeon-6130T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130T"},"Xeon-6132":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6132"},"Xeon-6134":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6134"},"Xeon-6136":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6136"},"Xeon-6138":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138"},"Xeon-6138F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138F"},"Xeon-6138P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"195 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2018-05-15","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138P"},"Xeon-6138T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138T"},"Xeon-6140":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6140"},"Xeon-6142":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6142"},"Xeon-6142F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6142F"},"Xeon-6144":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6144"},"Xeon-6146":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6146"},"Xeon-6148":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6148"},"Xeon-6148F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6148F"},"Xeon-6150":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6150"},"Xeon-6152":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6152"},"Xeon-6154":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"200 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6154"},"Xeon-8153":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8153"},"Xeon-8156":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8156"},"Xeon-8158":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8158"},"Xeon-8160":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160"},"Xeon-8160F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160F"},"Xeon-8160T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160T"},"Xeon-8164":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8164"},"Xeon-8168":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8168"},"Xeon-8170":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8170"},"Xeon-8176":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8176"},"Xeon-8176F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"173 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8176F"},"Xeon-8180":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8180"},"Xeon-D-2123IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2123IT"},"Xeon-D-2141I":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2141I"},"Xeon-D-2142IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2142IT"},"Xeon-D-2143IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2143IT"},"Xeon-D-2145NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2145NT"},"Xeon-D-2146NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2146NT"},"Xeon-D-2161I":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"90 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2161I"},"Xeon-D-2163IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"17 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2163IT"},"Xeon-D-2166NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"17 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2166NT"},"Xeon-D-2173IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2173IT"},"Xeon-D-2177NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2177NT"},"Xeon-D-2183IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"100 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2183IT"},"Xeon-D-2187NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"110 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2187NT"},"Xeon-E3-1220V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V5"},"Xeon-E3-1225V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V5"},"Xeon-E3-1230V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V5"},"Xeon-E3-1235LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1235LV5"},"Xeon-E3-1240LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240LV5"},"Xeon-E3-1240V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V5"},"Xeon-E3-1245V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V5"},"Xeon-E3-1260LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1260LV5"},"Xeon-E3-1270V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V5"},"Xeon-E3-1275V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V5"},"Xeon-E3-1280V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V5"},"Xeon-E3-1565LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1565LV5"},"Xeon-E3-1585LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1585LV5"},"Xeon-E3-1585V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1585V5"},"Server-Skylake":{"humanName":"Skylake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-2195","Xeon-W-2175","Xeon-W-2155","Xeon-D-2187NT","Xeon-D-2183IT","Xeon-D-2177NT","Xeon-D-2173IT","Xeon-D-2166NT","Xeon-D-2163IT","Xeon-D-2161I","Xeon-8180","Xeon-8176F","Xeon-8176","Xeon-8170","Xeon-8168","Xeon-8164","Xeon-8160T","Xeon-8160F","Xeon-8160","Xeon-8158","Xeon-8153","Xeon-6154","Xeon-6152","Xeon-6150","Xeon-6148F","Xeon-6148","Xeon-6146","Xeon-6142F","Xeon-6142","Xeon-6140","Xeon-6138T","Xeon-6138P","Xeon-6138F","Xeon-6138","Xeon-6136","Xeon-6132","Xeon-6130T","Xeon-6130F","Xeon-6130","Xeon-6126T","Xeon-6126F","Xeon-6126","Xeon-5120T","Xeon-5120","Xeon-5119T","Xeon-5118","Xeon-5115","Xeon-4116T","Xeon-4116","Xeon-4114T","Xeon-4114"]},{"header":"9 - 16 Threads","members":["Xeon-W-2145","Xeon-W-2135","Xeon-W-2133","Xeon-D-2146NT","Xeon-D-2145NT","Xeon-D-2143IT","Xeon-D-2142IT","Xeon-D-2141I","Xeon-6144","Xeon-6134","Xeon-6128","Xeon-4110","Xeon-4109T","Xeon-4108"]},{"header":"8 Threads","members":["Xeon-W-2125","Xeon-W-2123","Xeon-E3-1585V5","Xeon-E3-1585LV5","Xeon-E3-1565LV5","Xeon-E3-1280V5","Xeon-E3-1275V5","Xeon-E3-1270V5","Xeon-E3-1260LV5","Xeon-E3-1245V5","Xeon-E3-1240V5","Xeon-E3-1240LV5","Xeon-E3-1230V5","Xeon-D-2123IT","Xeon-8156","Xeon-5122","Xeon-4112","Xeon-3106"]},{"header":"6 Threads","members":["Xeon-3104"]},{"header":"4 Threads","members":["Xeon-E3-1235LV5","Xeon-E3-1225V5","Xeon-E3-1220V5"]},{"header":"17 - 64 Threads","members":["Xeon-W-2195","Xeon-W-2175","Xeon-W-2155","Xeon-D-2187NT","Xeon-D-2183IT","Xeon-D-2177NT","Xeon-D-2173IT","Xeon-D-2166NT","Xeon-D-2163IT","Xeon-D-2161I","Xeon-8180","Xeon-8176F","Xeon-8176","Xeon-8170","Xeon-8168","Xeon-8164","Xeon-8160T","Xeon-8160F","Xeon-8160","Xeon-8158","Xeon-8153","Xeon-6154","Xeon-6152","Xeon-6150","Xeon-6148F","Xeon-6148","Xeon-6146","Xeon-6142F","Xeon-6142","Xeon-6140","Xeon-6138T","Xeon-6138P","Xeon-6138F","Xeon-6138","Xeon-6136","Xeon-6132","Xeon-6130T","Xeon-6130F","Xeon-6130","Xeon-6126T","Xeon-6126F","Xeon-6126","Xeon-5120T","Xeon-5120","Xeon-5119T","Xeon-5118","Xeon-5115","Xeon-4116T","Xeon-4116","Xeon-4114T","Xeon-4114"]},{"header":"9 - 16 Threads","members":["Xeon-W-2145","Xeon-W-2135","Xeon-W-2133","Xeon-D-2146NT","Xeon-D-2145NT","Xeon-D-2143IT","Xeon-D-2142IT","Xeon-D-2141I","Xeon-6144","Xeon-6134","Xeon-6128","Xeon-4110","Xeon-4109T","Xeon-4108"]},{"header":"8 Threads","members":["Xeon-W-2125","Xeon-W-2123","Xeon-E3-1585V5","Xeon-E3-1585LV5","Xeon-E3-1565LV5","Xeon-E3-1280V5","Xeon-E3-1275V5","Xeon-E3-1270V5","Xeon-E3-1260LV5","Xeon-E3-1245V5","Xeon-E3-1240V5","Xeon-E3-1240LV5","Xeon-E3-1230V5","Xeon-D-2123IT","Xeon-8156","Xeon-5122","Xeon-4112","Xeon-3106"]},{"header":"6 Threads","members":["Xeon-3104"]},{"header":"4 Threads","members":["Xeon-E3-1235LV5","Xeon-E3-1225V5","Xeon-E3-1220V5"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-10-19","Sockets":["LGA3647","LGA1151","BGA1440","LGA2066","BGA2518","LGA3647","LGA1151","BGA1440","LGA2066","BGA2518"]}},"Xeon-E7210":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7210"},"Xeon-E7220":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7220"},"Xeon-E7310":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7310"},"Xeon-E7320":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7320"},"Xeon-E7330":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7330"},"Xeon-E7340":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7340"},"Xeon-L7345":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7345"},"Xeon-X7350":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X7350"},"Server-Tigerton":{"humanName":"Tigerton","sections":[{"header":"4 Threads","members":["Xeon-X7350","Xeon-L7345","Xeon-E7340","Xeon-E7330","Xeon-E7320","Xeon-E7310"]},{"header":"2 Threads","members":["Xeon-E7220","Xeon-E7210"]},{"header":"4 Threads","members":["Xeon-X7350","Xeon-L7345","Xeon-E7340","Xeon-E7330","Xeon-E7320","Xeon-E7310"]},{"header":"2 Threads","members":["Xeon-E7220","Xeon-E7210"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2007","Sockets":["PPGA604","PGA604","PPGA604","PGA604"]}},"Xeon-E5603":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5603"},"Xeon-E5606":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5606"},"Xeon-E5607":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5607"},"Xeon-E5630":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5630"},"Xeon-E5640":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5640"},"Xeon-E5645":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.67 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5645"},"Xeon-E5649":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5649"},"Xeon-L5609":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"1.86 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5609"},"Xeon-L5618":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.87 GHz","Boost Frequency":"2.26 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon L5618"},"Xeon-L5630":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5630"},"Xeon-L5638":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon L5638"},"Xeon-L5640":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5640"},"Xeon-X5647":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5647"},"Xeon-X5672":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5672"},"Xeon-X5687":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.86 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5687"},"Server-Westmere-EP":{"humanName":"Westmere EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-X5690","Xeon-X5680","Xeon-X5675","Xeon-X5670","Xeon-X5660","Xeon-X5650","Xeon-W3680","Xeon-W3670","Xeon-L5640","Xeon-L5638","Xeon-E5649","Xeon-E5645"]},{"header":"8 Threads","members":["Xeon-X5687","Xeon-X5677","Xeon-X5672","Xeon-X5667","Xeon-X5647","Xeon-L5630","Xeon-L5618","Xeon-E5640","Xeon-E5630","Xeon-E5620"]},{"header":"4 Threads","members":["Xeon-L5609","Xeon-E5607","Xeon-E5606","Xeon-E5603"]},{"header":"9 - 16 Threads","members":["Xeon-X5690","Xeon-X5680","Xeon-X5675","Xeon-X5670","Xeon-X5660","Xeon-X5650","Xeon-W3680","Xeon-W3670","Xeon-L5640","Xeon-L5638","Xeon-E5649","Xeon-E5645"]},{"header":"8 Threads","members":["Xeon-X5687","Xeon-X5677","Xeon-X5672","Xeon-X5667","Xeon-X5647","Xeon-L5630","Xeon-L5618","Xeon-E5640","Xeon-E5630","Xeon-E5620"]},{"header":"4 Threads","members":["Xeon-L5609","Xeon-E5607","Xeon-E5606","Xeon-E5603"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1366","LGA1366"]}},"Xeon-E7-2803":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2803"},"Xeon-E7-2820":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2820"},"Xeon-E7-2830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2830"},"Xeon-E7-2850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2850"},"Xeon-E7-2860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2860"},"Xeon-E7-2870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2870"},"Xeon-E7-4807":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4807"},"Xeon-E7-4820":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820"},"Xeon-E7-4830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830"},"Xeon-E7-4850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850"},"Xeon-E7-4860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4860"},"Xeon-E7-4870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4870"},"Xeon-E7-8830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8830"},"Xeon-E7-8837":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8837"},"Xeon-E7-8850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8850"},"Xeon-E7-8860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860"},"Xeon-E7-8867L":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867L"},"Xeon-E7-8870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870"},"Server-Westmere-EX":{"humanName":"Westmere EX","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8870","Xeon-E7-8867L","Xeon-E7-8860","Xeon-E7-8850","Xeon-E7-4870","Xeon-E7-4860","Xeon-E7-4850","Xeon-E7-2870","Xeon-E7-2860","Xeon-E7-2850"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8830","Xeon-E7-4830","Xeon-E7-4820","Xeon-E7-4807","Xeon-E7-2830","Xeon-E7-2820","Xeon-E7-2803"]},{"header":"8 Threads","members":["Xeon-E7-8837"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8870","Xeon-E7-8867L","Xeon-E7-8860","Xeon-E7-8850","Xeon-E7-4870","Xeon-E7-4860","Xeon-E7-4850","Xeon-E7-2870","Xeon-E7-2860","Xeon-E7-2850"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8830","Xeon-E7-4830","Xeon-E7-4820","Xeon-E7-4807","Xeon-E7-2830","Xeon-E7-2820","Xeon-E7-2803"]},{"header":"8 Threads","members":["Xeon-E7-8837"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-04-05","Sockets":["LGA1567","LGA1567"]}},"Xeon-E3120":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E3120"},"Xeon-E5205":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5205"},"Xeon-E5220":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5220"},"Xeon-L3110":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"45 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-02-27","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3110"},"Xeon-L5215":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"20 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-09-30","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5215"},"Xeon-L5240":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-05-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5240"},"Xeon-X5260":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5260"},"Xeon-X5270":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-10-01","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5270"},"Xeon-X5272":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5272"},"Server-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Xeon-X5272","Xeon-X5270","Xeon-X5260","Xeon-L5240","Xeon-L5215","Xeon-L3110","Xeon-E5220","Xeon-E5205","Xeon-E3120","Xeon-E3110"]},{"header":"2 Threads","members":["Xeon-X5272","Xeon-X5270","Xeon-X5260","Xeon-L5240","Xeon-L5215","Xeon-L3110","Xeon-E5220","Xeon-E5205","Xeon-E3120","Xeon-E3110"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA775","LGA771","LGA775","LGA771"]}},"Xeon-5110":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5110"},"Xeon-5113":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5113"},"Xeon-5128":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-10-11","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5128"},"Xeon-5130":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5130"},"Xeon-5133":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5133"},"Xeon-5138":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-10-11","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5138"},"Xeon-5140":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5140"},"Xeon-5148":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5148"},"Xeon-5150":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5150"},"Xeon-5160":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5160"},"Server-Woodcrest":{"humanName":"Woodcrest","sections":[{"header":"2 Threads","members":["Xeon-5160","Xeon-5150","Xeon-5148","Xeon-5140","Xeon-5138","Xeon-5133","Xeon-5130","Xeon-5128","Xeon-5113","Xeon-5110"]},{"header":"2 Threads","members":["Xeon-5160","Xeon-5150","Xeon-5148","Xeon-5140","Xeon-5138","Xeon-5133","Xeon-5130","Xeon-5128","Xeon-5113","Xeon-5110"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-06-25","Sockets":["LGA771","LGA771"]}},"Xeon-L3360":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-02-23","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3360"},"Xeon-X3320":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3320"},"Xeon-X3330":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3330"},"Xeon-X3350":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3350"},"Xeon-X3360":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3360"},"Xeon-X3370":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3370"},"Xeon-X3380":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-03-02","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3380"},"Server-Yorkfield":{"humanName":"Yorkfield","sections":[{"header":"4 Threads","members":["Xeon-X3380","Xeon-X3370","Xeon-X3360","Xeon-X3350","Xeon-X3330","Xeon-X3320","Xeon-L3360"]},{"header":"4 Threads","members":["Xeon-X3380","Xeon-X3370","Xeon-X3360","Xeon-X3350","Xeon-X3330","Xeon-X3320","Xeon-L3360"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-03-24","Sockets":["LGA775","LGA775"]}},"Server-CPUs-Intel":{"humanName":"Server CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Server-Cascade-Lake","Server-Hewitt-Lake","Server-Coffee-Lake","Server-Kaby-Lake","Server-Denverton","Server-Skylake","Server-Broadwell"]},{"header":"2010 - 2014","members":["Server-Ivy-Bridge-EN","Server-Ivy-Bridge-EP","Server-Avoton","Server-Haswell","Server-Briarwood","Server-Centerton","Server-Sandy-Bridge-EN","Server-Ivy-Bridge","Server-Sandy-Bridge-EP","Server-Sandy-Bridge","Server-Westmere-EX","Server-Gulftown","Server-Clarkdale","Server-Westmere-EP","Server-Nehalem-EX"]},{"header":"2005 - 2009","members":["Server-Lynnfield","Server-Nehalem-EP","Server-Bloomfield","Server-Dunnington","Server-Yorkfield","Server-Conroe","Server-Wolfdale","Server-Harpertown","Server-Tigerton","Server-Kentsfield","Server-Clovertown","Server-Woodcrest"]},{"header":"1970 - 1974","members":["Server-Dempsey","Server-Paxville","Server-Tulsa"]},{"header":"2015 - 2019","members":["Server-Cascade-Lake","Server-Hewitt-Lake","Server-Coffee-Lake","Server-Kaby-Lake","Server-Denverton","Server-Skylake","Server-Broadwell"]},{"header":"2010 - 2014","members":["Server-Ivy-Bridge-EN","Server-Ivy-Bridge-EP","Server-Avoton","Server-Haswell","Server-Briarwood","Server-Centerton","Server-Sandy-Bridge-EN","Server-Ivy-Bridge","Server-Sandy-Bridge-EP","Server-Sandy-Bridge","Server-Westmere-EX","Server-Gulftown","Server-Clarkdale","Server-Westmere-EP","Server-Nehalem-EX"]},{"header":"2005 - 2009","members":["Server-Lynnfield","Server-Nehalem-EP","Server-Bloomfield","Server-Dunnington","Server-Yorkfield","Server-Conroe","Server-Wolfdale","Server-Harpertown","Server-Tigerton","Server-Kentsfield","Server-Clovertown","Server-Woodcrest"]},{"header":"1970 - 1974","members":["Server-Dempsey","Server-Paxville","Server-Tulsa"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Xeon-W-3225":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"160 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3225"},"Xeon-W-3245M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3245M"},"Xeon-W-3265":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3265"},"Xeon-W-3275":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3275"},"undefined-Cascade-Lake":{"humanName":"Cascade Lake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-3275M","Xeon-W-3275","Xeon-W-3265M","Xeon-W-3265","Xeon-W-3245M","Xeon-W-3245","Xeon-W-3235","Xeon-W-2295","Xeon-W-2275","Xeon-W-2265","Xeon-W-2255"]},{"header":"9 - 16 Threads","members":["Xeon-W-3225","Xeon-W-3223","Xeon-W-2245","Xeon-W-2235"]},{"header":"8 Threads","members":["Xeon-W-2225","Xeon-W-2223"]},{"header":"17 - 64 Threads","members":["Xeon-W-3275M","Xeon-W-3275","Xeon-W-3265M","Xeon-W-3265","Xeon-W-3245M","Xeon-W-3245","Xeon-W-3235","Xeon-W-2295","Xeon-W-2275","Xeon-W-2265","Xeon-W-2255"]},{"header":"9 - 16 Threads","members":["Xeon-W-3225","Xeon-W-3223","Xeon-W-2245","Xeon-W-2235"]},{"header":"8 Threads","members":["Xeon-W-2225","Xeon-W-2223"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-06-03","Sockets":["LGA3647","LGA3647"]}},"undefined-CPUs-Intel":{"humanName":"undefined CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["undefined-Cascade-Lake"]},{"header":"2015 - 2019","members":["undefined-Cascade-Lake"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Pentium-310":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q4 2005","Socket":"H-PBGA479, PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 310"},"Pentium-330":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q2 2004","Socket":"PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 330"},"Pentium-340":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q4 2004","Socket":"PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 340"},"Pentium-333":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"7 W","Core Count":1,"Thread Count":1,"Base Frequency":"900 MHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 333"},"Xeon-5030":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5030"},"Xeon-5040":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5040"},"Xeon-5050":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5050"},"Xeon-5060":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5060"},"Xeon-5070":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5070"},"Xeon-5080":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5080"},"Xeon-7020":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7020"},"Xeon-7030":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7030"},"Xeon-7040":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7040"},"Xeon-7041":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7041"},"Xeon-7110M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7110M"},"Xeon-7110N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7110N"},"Xeon-7120M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7120M"},"Xeon-7120N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7120N"},"Xeon-7130M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7130M"},"Xeon-7130N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"8 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7130N"},"Xeon-7140M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7140M"},"Xeon-7140N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7140N"},"Pentium-518":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 518"},"Pentium-532":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 532"},"Pentium-538":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 538"},"Pentium-548":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 548"},"Pentium-552":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 552"},"Pentium-705":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 705"},"Pentium-718":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"12 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 718"},"Pentium-713":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"7 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 713"},"Xeon-5063":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5063"},"Xeon-7150N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7150N"},"Xeon-E6510":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","TDP":"105 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.73 GHz","Boost Frequency":"1.733 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E6510"},"Xeon-E6540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E6540"},"Xeon-E7520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.866 GHz","Boost Frequency":"1.866 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7520"},"Xeon-E7530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"1.866 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7530"},"Xeon-E7540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7540"},"Xeon-L7545":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Base Frequency":"1.866 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon L7545"},"Xeon-L7555":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.866 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"24 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon L7555"},"Xeon-X6550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X6550"},"Xeon-X7542":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.666 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7542"},"Xeon-X7550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7550"},"Xeon-X7560":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.266 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7560"},"Xeon-E3-1125C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E3-1125C"},"Xeon-E3-1105C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1000 MHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E3-1105C"},"Core-i3-2115C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Core i3-2115C"},"Pentium-B915C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium B915C"},"Pentium-725C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 725C"},"Xeon-E3-1105CV2":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1105CV2"},"Xeon-E3-1125CV2":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1125CV2"},"Pentium-B925C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"15 W","Core Count":2,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-11-14"},"isPart":true,"type":"CPU","humanName":"Pentium B925C"},"Core-i3-3115C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3115C"}} \ No newline at end of file From 74f00436425bcca50614071b620ab3144028a267 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 18 Jul 2024 13:47:00 +0100 Subject: [PATCH 10/41] manufacturer --- gpu-arch-vendor.json | 0 gpu-arch-vendor.yml | 82 +++++++++++++++++++ specs/GPUs-CONSUMER/Ada-Lovelace.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4050.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4060-AD106.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml | 2 + .../GeForce-RTX-4060-Ti-16-GB.yaml | 2 + .../GeForce-RTX-4060-Ti-8-GB.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4060.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml | 2 + .../GeForce-RTX-4070-Ti-SUPER.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4070-Ti.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4070.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080-Ti.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4080.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4090-D.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4090-Ti.yaml | 2 + .../Ada-Lovelace/GeForce-RTX-4090.yaml | 2 + specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml | 2 + specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml | 2 + specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml | 2 + specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml | 2 + specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml | 2 + .../Ada-Lovelace/RTX-2000-Ada-Generation.yaml | 2 + .../RTX-2000-Embedded-Ada-Generation.yaml | 2 + .../RTX-2000-Max-Q-Ada-Generation.yaml | 2 + .../RTX-2000-Mobile-Ada-Generation.yaml | 2 + .../RTX-3000-Mobile-Ada-Generation.yaml | 2 + .../RTX-3500-Embedded-Ada-Generation.yaml | 2 + .../RTX-3500-Mobile-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-4000-Ada-Generation.yaml | 2 + .../RTX-4000-Mobile-Ada-Generation.yaml | 2 + .../RTX-4000-SFF-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-4500-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-5000-Ada-Generation.yaml | 2 + .../RTX-5000-Embedded-Ada-Generation.yaml | 2 + .../RTX-5000-Max-Q-Ada-Generation.yaml | 2 + .../RTX-5000-Mobile-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-5880-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-6000-Ada-Generation.yaml | 2 + .../GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml | 2 + specs/GPUs-CONSUMER/Ampere.yaml | 1 + specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml | 2 + .../GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A100X.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A10G.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A10M.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A2.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A30X.yaml | 2 + specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml | 2 + .../GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml | 2 + .../GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml | 2 + specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml | 2 + specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml | 2 + .../GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml | 2 + specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml | 2 + specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml | 2 + .../GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml | 2 + specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml | 2 + .../Ampere/GeForce-RTX-2050-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-2050-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3050-4-GB.yaml | 2 + .../Ampere/GeForce-RTX-3050-6-GB.yaml | 2 + .../Ampere/GeForce-RTX-3050-8-GB-GA107.yaml | 2 + .../Ampere/GeForce-RTX-3050-8-GB.yaml | 2 + .../GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml | 2 + .../GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml | 2 + .../Ampere/GeForce-RTX-3050-Max-Q.yaml | 2 + .../GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml | 2 + .../GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml | 2 + .../Ampere/GeForce-RTX-3050-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3050-OEM.yaml | 2 + .../Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3050-Ti-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3060-12-GB-GA104.yaml | 2 + .../Ampere/GeForce-RTX-3060-12-GB.yaml | 2 + .../Ampere/GeForce-RTX-3060-3840SP.yaml | 2 + .../Ampere/GeForce-RTX-3060-8-GB-GA104.yaml | 2 + .../Ampere/GeForce-RTX-3060-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3060-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3060-Ti-GA103.yaml | 2 + .../Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml | 2 + .../Ampere/GeForce-RTX-3060-Ti.yaml | 2 + .../Ampere/GeForce-RTX-3070-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3070-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3070-Ti-16-GB.yaml | 2 + .../GeForce-RTX-3070-Ti-8-GB-GA102.yaml | 2 + .../Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3070-Ti-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3070-Ti.yaml | 2 + .../Ampere/GeForce-RTX-3070-TiM.yaml | 2 + .../Ampere/GeForce-RTX-3070.yaml | 2 + .../Ampere/GeForce-RTX-3080-12-GB.yaml | 2 + .../Ampere/GeForce-RTX-3080-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3080-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3080-Ti-20-GB.yaml | 2 + .../Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml | 2 + .../Ampere/GeForce-RTX-3080-Ti-Mobile.yaml | 2 + .../Ampere/GeForce-RTX-3080-Ti.yaml | 2 + .../Ampere/GeForce-RTX-3080.yaml | 2 + .../Ampere/GeForce-RTX-3090-Ti.yaml | 2 + .../Ampere/GeForce-RTX-3090.yaml | 2 + .../Ampere/Jetson-AGX-Orin-32-GB.yaml | 2 + .../Ampere/Jetson-AGX-Orin-64-GB.yaml | 2 + .../Ampere/Jetson-Orin-NX-16-GB.yaml | 2 + .../Ampere/Jetson-Orin-NX-8-GB.yaml | 2 + .../Ampere/Jetson-Orin-Nano-4-GB.yaml | 2 + .../Ampere/Jetson-Orin-Nano-8-GB.yaml | 2 + specs/GPUs-CONSUMER/Ampere/PG506-207.yaml | 2 + specs/GPUs-CONSUMER/Ampere/PG506-217.yaml | 2 + specs/GPUs-CONSUMER/Ampere/PG506-232.yaml | 2 + specs/GPUs-CONSUMER/Ampere/PG506-242.yaml | 2 + .../Ampere/RTX-A1000-Embedded.yaml | 2 + .../Ampere/RTX-A1000-Mobile-6-GB.yaml | 2 + .../Ampere/RTX-A1000-Mobile.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml | 2 + .../Ampere/RTX-A2000-Embedded.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml | 2 + .../Ampere/RTX-A2000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml | 2 + .../Ampere/RTX-A3000-Mobile-12-GB.yaml | 2 + .../Ampere/RTX-A3000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml | 2 + .../Ampere/RTX-A4000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml | 2 + .../Ampere/RTX-A4500-Embedded.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml | 2 + .../Ampere/RTX-A4500-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml | 2 + .../Ampere/RTX-A500-Embedded.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml | 2 + .../Ampere/RTX-A5000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml | 2 + .../GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml | 2 + .../Ampere/RTX-A5500-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml | 2 + specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml | 2 + specs/GPUs-CONSUMER/CDNA-1.0.yaml | 1 + .../CDNA-1.0/Radeon-Instinct-MI100.yaml | 2 + specs/GPUs-CONSUMER/CDNA-2.0.yaml | 1 + .../CDNA-2.0/Radeon-Instinct-MI200.yaml | 2 + .../CDNA-2.0/Radeon-Instinct-MI210.yaml | 2 + .../CDNA-2.0/Radeon-Instinct-MI250.yaml | 2 + .../CDNA-2.0/Radeon-Instinct-MI250X.yaml | 2 + specs/GPUs-CONSUMER/CDNA-3.0.yaml | 1 + .../CDNA-3.0/Radeon-Instinct-MI300.yaml | 2 + .../CDNA-3.0/Radeon-Instinct-MI300X.yaml | 2 + specs/GPUs-CONSUMER/Celsius.yaml | 1 + .../Celsius/GeForce-256-DDR.yaml | 2 + .../Celsius/GeForce-256-SDR.yaml | 2 + .../Celsius/GeForce-6200-AGP.yaml | 2 + .../Celsius/GeForce-PCX-4300.yaml | 2 + .../Celsius/GeForce2-GTS-PRO.yaml | 2 + specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml | 2 + .../Celsius/GeForce2-Go-100.yaml | 2 + .../Celsius/GeForce2-Go-200.yaml | 2 + specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml | 2 + .../Celsius/GeForce2-MX-+-nForce-220.yaml | 2 + .../Celsius/GeForce2-MX-+-nForce-420.yaml | 2 + .../Celsius/GeForce2-MX-200-LP.yaml | 2 + .../Celsius/GeForce2-MX-200-PCI.yaml | 2 + .../Celsius/GeForce2-MX-200.yaml | 2 + .../Celsius/GeForce2-MX-400-PCI.yaml | 2 + .../Celsius/GeForce2-MX-400.yaml | 2 + .../Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml | 2 + .../Celsius/GeForce2-MX-DH-Pro-TV.yaml | 2 + .../Celsius/GeForce2-MX-PCI.yaml | 2 + specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml | 2 + specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml | 2 + specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml | 2 + .../GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml | 2 + .../Celsius/GeForce4-410-Go.yaml | 2 + .../Celsius/GeForce4-420-Go.yaml | 2 + .../Celsius/GeForce4-440-Go.yaml | 2 + .../Celsius/GeForce4-448-Go.yaml | 2 + .../Celsius/GeForce4-460-Go.yaml | 2 + .../Celsius/GeForce4-488-Go.yaml | 2 + .../Celsius/GeForce4-MX-+-nForce2.yaml | 2 + .../Celsius/GeForce4-MX-4000-PCI.yaml | 2 + .../Celsius/GeForce4-MX-4000-Rev.-2.yaml | 2 + .../Celsius/GeForce4-MX-4000.yaml | 2 + .../Celsius/GeForce4-MX-420-PCI.yaml | 2 + .../Celsius/GeForce4-MX-420.yaml | 2 + .../Celsius/GeForce4-MX-440-8x.yaml | 2 + .../Celsius/GeForce4-MX-440-Mac-Edition.yaml | 2 + .../Celsius/GeForce4-MX-440-SE.yaml | 2 + .../Celsius/GeForce4-MX-440.yaml | 2 + .../Celsius/Quadro-NVS-280-SD.yaml | 2 + .../Celsius/Quadro-NVS-50-PCI.yaml | 2 + specs/GPUs-CONSUMER/Celsius/Quadro.yaml | 2 + specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml | 2 + .../Celsius/Quadro2-MXR-Low-Profile.yaml | 2 + specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml | 2 + specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml | 2 + .../Celsius/Quadro4-100-NVS-PCI.yaml | 2 + .../Celsius/Quadro4-100-NVS.yaml | 2 + .../Celsius/Quadro4-200-NVS.yaml | 2 + .../Celsius/Quadro4-380-XGL.yaml | 2 + .../Celsius/Quadro4-400-NVS-PCI.yaml | 2 + .../Celsius/Quadro4-500-Go-GL.yaml | 2 + .../Celsius/Quadro4-500-XGL.yaml | 2 + .../Celsius/Quadro4-550-XGL.yaml | 2 + .../Celsius/Quadro4-580-XGL.yaml | 2 + specs/GPUs-CONSUMER/Curie.yaml | 1 + .../Curie/GeForce-6100-+-nForce-400.yaml | 2 + .../Curie/GeForce-6100-+-nForce-405.yaml | 2 + .../Curie/GeForce-6100-+-nForce-420.yaml | 2 + .../Curie/GeForce-6100-+-nForce-430.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml | 2 + .../Curie/GeForce-6150-SE-+-nForce-430.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml | 2 + .../Curie/GeForce-6200-LE-AGP-512-MB.yaml | 2 + .../Curie/GeForce-6200-LE-AGP.yaml | 2 + .../Curie/GeForce-6200-LE-PCI.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml | 2 + .../Curie/GeForce-6200-SE-TurboCache.yaml | 2 + .../Curie/GeForce-6200-TurboCache.yaml | 2 + .../Curie/GeForce-6200-X2-PCI.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml | 2 + .../Curie/GeForce-6600-GT-AGP.yaml | 2 + .../Curie/GeForce-6600-GT-Dual.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml | 2 + .../Curie/GeForce-6600-LE-AGP.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml | 2 + .../Curie/GeForce-6800-GT-DDL.yaml | 2 + .../Curie/GeForce-6800-GT-Dual.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml | 2 + .../Curie/GeForce-6800-Ultra-DDL.yaml | 2 + .../Curie/GeForce-6800-Ultra.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml | 2 + specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml | 2 + .../Curie/GeForce-7000M-+-nForce-610M.yaml | 2 + .../Curie/GeForce-7025-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-+-nForce-610i.yaml | 2 + .../Curie/GeForce-7050-+-nForce-620i.yaml | 2 + .../Curie/GeForce-7050-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-+-nForce-630i.yaml | 2 + .../Curie/GeForce-7050-PV-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-SE-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7100-+-nForce-630i.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml | 2 + .../Curie/GeForce-7150-+-nForce-630i.yaml | 2 + .../Curie/GeForce-7150M-+-nForce-630M.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml | 2 + .../Curie/GeForce-7300-GS-Low-Profile.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml | 2 + .../Curie/GeForce-7300-GT-AGP.yaml | 2 + .../Curie/GeForce-7300-GT-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml | 2 + .../Curie/GeForce-7600-GS-AGP.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml | 2 + .../Curie/GeForce-7600-GT-AGP.yaml | 2 + .../Curie/GeForce-7600-GT-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml | 2 + .../Curie/GeForce-7800-GS+-20Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS+-24Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS+-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-20Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-24Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-AGP.yaml | 2 + .../Curie/GeForce-7800-GT-Dual.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml | 2 + .../Curie/GeForce-7800-GTX-512.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml | 2 + .../Curie/GeForce-7900-GS-AGP.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml | 2 + .../Curie/GeForce-7950-GT-AGP.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml | 2 + .../GeForce-Go-6100-+-nForce-Go-430.yaml | 2 + .../GeForce-Go-6150-+-nForce-Go-430.yaml | 2 + .../Curie/GeForce-Go-6200-TE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml | 2 + .../Curie/GeForce-Go-6600-NPB-128M.yaml | 2 + .../Curie/GeForce-Go-6600-TE.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml | 2 + .../Curie/GeForce-Go-6800-Ultra.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml | 2 + .../Curie/GeForce-Go-7600-GT.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml | 2 + .../Curie/GeForce-Go-7800-GTX.yaml | 2 + .../GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml | 2 + .../Curie/GeForce-Go-7900-GS.yaml | 2 + .../Curie/GeForce-Go-7900-GTX.yaml | 2 + .../Curie/GeForce-Go-7900-SE.yaml | 2 + .../Curie/GeForce-Go-7950-GTX.yaml | 2 + .../Curie/Playstation-3-GPU-28nm.yaml | 2 + .../Curie/Playstation-3-GPU-40nm.yaml | 2 + .../Curie/Playstation-3-GPU-65nm.yaml | 2 + .../Curie/Playstation-3-GPU-90nm.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml | 2 + .../Curie/Quadro-FX-4000-SDI.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml | 2 + .../Curie/Quadro-FX-4500-SDI.yaml | 2 + .../Curie/Quadro-FX-4500-X2.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml | 2 + .../Curie/Quadro-FX-5500-SDI.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml | 2 + specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml | 2 + .../Curie/Quadro-NVS-440-PCIe-x1.yaml | 2 + .../Curie/Quadro-NVS-440-PCIe-x16.yaml | 2 + .../GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml | 2 + .../Curie/Quadro-Plex-1000-Model-II.yaml | 2 + specs/GPUs-CONSUMER/Fahrenheit.yaml | 1 + specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64-Vanta.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64.yaml | 2 + .../Fahrenheit/Riva-TNT2-PRO.yaml | 2 + .../Fahrenheit/Riva-TNT2-Ultra.yaml | 2 + specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml | 2 + specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml | 2 + specs/GPUs-CONSUMER/Fermi-2.0.yaml | 1 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml | 2 + .../Fermi-2.0/GeForce-510-OEM.yaml | 2 + .../Fermi-2.0/GeForce-605-OEM.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml | 2 + .../Fermi-2.0/GeForce-GT-520-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-520-PCI.yaml | 2 + .../Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml | 2 + .../Fermi-2.0/GeForce-GT-520.yaml | 2 + .../Fermi-2.0/GeForce-GT-520MX.yaml | 2 + .../Fermi-2.0/GeForce-GT-545-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-545.yaml | 2 + .../Fermi-2.0/GeForce-GT-550M.yaml | 2 + .../Fermi-2.0/GeForce-GT-555M-2-GB.yaml | 2 + .../Fermi-2.0/GeForce-GT-555M-3-GB.yaml | 2 + .../Fermi-2.0/GeForce-GT-610-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-610-PCI.yaml | 2 + .../Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml | 2 + .../Fermi-2.0/GeForce-GT-610.yaml | 2 + .../Fermi-2.0/GeForce-GT-620-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-625M.yaml | 2 + .../Fermi-2.0/GeForce-GT-635M.yaml | 2 + .../Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml | 2 + .../Fermi-2.0/GeForce-GT-645-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-705-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GT-710M.yaml | 2 + .../Fermi-2.0/GeForce-GT-720A.yaml | 2 + .../Fermi-2.0/GeForce-GT-720M.yaml | 2 + .../Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml | 2 + .../Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml | 2 + .../Fermi-2.0/GeForce-GTX-460-SE-v2.yaml | 2 + .../Fermi-2.0/GeForce-GTX-460-v2.yaml | 2 + .../Fermi-2.0/GeForce-GTX-550-Ti.yaml | 2 + .../Fermi-2.0/GeForce-GTX-555-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560-SE.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560-Ti-448.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560-Ti.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560.yaml | 2 + .../Fermi-2.0/GeForce-GTX-560M.yaml | 2 + .../Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml | 2 + .../Fermi-2.0/GeForce-GTX-570.yaml | 2 + .../Fermi-2.0/GeForce-GTX-570M.yaml | 2 + .../Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml | 2 + .../Fermi-2.0/GeForce-GTX-580.yaml | 2 + .../Fermi-2.0/GeForce-GTX-580M.yaml | 2 + .../Fermi-2.0/GeForce-GTX-590.yaml | 2 + .../Fermi-2.0/GeForce-GTX-670M.yaml | 2 + .../Fermi-2.0/GeForce-GTX-675M.yaml | 2 + specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml | 2 + specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml | 2 + specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml | 2 + specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml | 2 + .../Fermi-2.0/Quadro-Plex-7000.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml | 2 + .../GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml | 2 + specs/GPUs-CONSUMER/Fermi.yaml | 1 + .../GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml | 2 + .../Fermi/GeForce-GT-420-OEM.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml | 2 + .../Fermi/GeForce-GT-430-OEM.yaml | 2 + .../Fermi/GeForce-GT-430-PCI.yaml | 2 + specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml | 2 + .../Fermi/GeForce-GT-440-Mac-Edition.yaml | 2 + .../Fermi/GeForce-GT-440-OEM.yaml | 2 + specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml | 2 + .../Fermi/GeForce-GT-640M-LE.yaml | 2 + specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml | 2 + .../Fermi/GeForce-GTS-450-OEM.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml | 2 + .../Fermi/GeForce-GTX-460-SE.yaml | 2 + .../Fermi/GeForce-GTX-460-X2.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml | 2 + .../Fermi/GeForce-GTX-470-X2.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml | 2 + .../Fermi/GeForce-GTX-480-Core-512.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml | 2 + .../GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml | 2 + specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml | 2 + .../GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml | 2 + .../Fermi/Quadro-4000-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml | 2 + .../GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml | 2 + .../GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml | 2 + specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml | 2 + specs/GPUs-CONSUMER/G100.yaml | 1 + specs/GPUs-CONSUMER/G100/Productiva-G100.yaml | 2 + specs/GPUs-CONSUMER/G200.yaml | 1 + specs/GPUs-CONSUMER/G200/Marvel-G200.yaml | 2 + .../G200/Millennium-G200-SD.yaml | 2 + specs/GPUs-CONSUMER/G200/Millennium-G200.yaml | 2 + .../GPUs-CONSUMER/G200/Millennium-G200A.yaml | 2 + specs/GPUs-CONSUMER/G200/Millennium-G250.yaml | 2 + specs/GPUs-CONSUMER/G200/Mystique-G200.yaml | 2 + specs/GPUs-CONSUMER/G400.yaml | 1 + specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml | 2 + .../G400/Millennium-G400-MAX.yaml | 2 + specs/GPUs-CONSUMER/G400/Millennium-G400.yaml | 2 + .../G400/Millennium-G450-LP.yaml | 2 + .../G400/Millennium-G450-x2-MMS.yaml | 2 + .../G400/Millennium-G450-x4-MMS.yaml | 2 + specs/GPUs-CONSUMER/G400/Millennium-G450.yaml | 2 + specs/GPUs-CONSUMER/G500.yaml | 1 + .../G500/Millennium-G550-PCIe.yaml | 2 + specs/GPUs-CONSUMER/G500/Millennium-G550.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0.yaml | 1 + specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml | 2 + .../GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 2 + .../GCN-1.0/FirePro-S10000-Passive.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml | 2 + .../GCN-1.0/FirePro-W5000-DVI.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml | 2 + .../GCN-1.0/FirePro-W9000-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml | 2 + .../GCN-1.0/Radeon-520-Mobile-DDR3.yaml | 2 + .../GCN-1.0/Radeon-520-Mobile-GDDR5.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml | 2 + .../GCN-1.0/Radeon-610-Mobile.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml | 2 + .../GCN-1.0/Radeon-HD-7730M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml | 2 + .../GCN-1.0/Radeon-HD-7750M.yaml | 2 + .../GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml | 2 + .../GCN-1.0/Radeon-HD-7770M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml | 2 + .../GCN-1.0/Radeon-HD-7850M.yaml | 2 + .../GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml | 2 + .../GCN-1.0/Radeon-HD-7870-XT.yaml | 2 + .../GCN-1.0/Radeon-HD-7870M.yaml | 2 + .../GCN-1.0/Radeon-HD-7950-Boost.yaml | 2 + .../GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml | 2 + .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml | 2 + .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml | 2 + .../GCN-1.0/Radeon-HD-7950M.yaml | 2 + .../GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml | 2 + .../GCN-1.0/Radeon-HD-7970-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml | 2 + .../GCN-1.0/Radeon-HD-7970M-X2.yaml | 2 + .../GCN-1.0/Radeon-HD-7970M.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml | 2 + .../GCN-1.0/Radeon-HD-8530M.yaml | 2 + .../GCN-1.0/Radeon-HD-8550M.yaml | 2 + .../GCN-1.0/Radeon-HD-8570-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8570A.yaml | 2 + .../GCN-1.0/Radeon-HD-8570M.yaml | 2 + .../GCN-1.0/Radeon-HD-8590M.yaml | 2 + .../GCN-1.0/Radeon-HD-8670-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8670A.yaml | 2 + .../GCN-1.0/Radeon-HD-8670M.yaml | 2 + .../GCN-1.0/Radeon-HD-8690M.yaml | 2 + .../GCN-1.0/Radeon-HD-8730-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8730A.yaml | 2 + .../GCN-1.0/Radeon-HD-8730M.yaml | 2 + .../GCN-1.0/Radeon-HD-8740-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8750A.yaml | 2 + .../GCN-1.0/Radeon-HD-8750M.yaml | 2 + .../GCN-1.0/Radeon-HD-8760-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8770M.yaml | 2 + .../GCN-1.0/Radeon-HD-8790M.yaml | 2 + .../GCN-1.0/Radeon-HD-8830M.yaml | 2 + .../GCN-1.0/Radeon-HD-8850M.yaml | 2 + .../GCN-1.0/Radeon-HD-8860-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8870-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8870M.yaml | 2 + .../GCN-1.0/Radeon-HD-8950-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8970-OEM.yaml | 2 + .../GCN-1.0/Radeon-HD-8970M.yaml | 2 + .../GCN-1.0/Radeon-HD-8990-OEM.yaml | 2 + .../GCN-1.0/Radeon-R5-240-OEM.yaml | 2 + .../GCN-1.0/Radeon-R5-340-OEM.yaml | 2 + .../GCN-1.0/Radeon-R5-340X-OEM.yaml | 2 + .../GCN-1.0/Radeon-R5-430-OEM.yaml | 2 + .../GCN-1.0/Radeon-R5-435-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml | 2 + .../GCN-1.0/Radeon-R5-M230-Rebrand.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml | 2 + .../GCN-1.0/Radeon-R5-M240-Rebrand.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml | 2 + .../GCN-1.0/Radeon-R6-M340DX.yaml | 2 + .../GCN-1.0/Radeon-R6-M435DX.yaml | 2 + .../GCN-1.0/Radeon-R7-240-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml | 2 + .../GCN-1.0/Radeon-R7-250-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml | 2 + .../GCN-1.0/Radeon-R7-250XE.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml | 2 + .../GCN-1.0/Radeon-R7-265X-OEM.yaml | 2 + .../GCN-1.0/Radeon-R7-340-OEM.yaml | 2 + .../GCN-1.0/Radeon-R7-350-640SP.yaml | 2 + .../GCN-1.0/Radeon-R7-350-Fake-Card.yaml | 2 + .../GCN-1.0/Radeon-R7-350-OEM.yaml | 2 + .../GCN-1.0/Radeon-R7-350X-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml | 2 + .../GCN-1.0/Radeon-R7-430-OEM.yaml | 2 + .../GCN-1.0/Radeon-R7-435-OEM.yaml | 2 + .../GCN-1.0/Radeon-R7-450-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml | 2 + .../GCN-1.0/Radeon-R7-M260DX.yaml | 2 + .../GCN-1.0/Radeon-R7-M260X.yaml | 2 + .../GCN-1.0/Radeon-R7-M265DX.yaml | 2 + .../GCN-1.0/Radeon-R7-M270DX.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml | 2 + .../GCN-1.0/Radeon-R7-M365X.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml | 2 + .../GCN-1.0/Radeon-R7-M465X.yaml | 2 + .../GCN-1.0/Radeon-R8-M350DX.yaml | 2 + .../GCN-1.0/Radeon-R8-M435DX.yaml | 2 + .../GCN-1.0/Radeon-R9-255-OEM.yaml | 2 + .../GCN-1.0/Radeon-R9-270-1024SP.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml | 2 + .../GCN-1.0/Radeon-R9-280X2.yaml | 2 + .../GCN-1.0/Radeon-R9-370-1024SP.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml | 2 + .../GCN-1.0/Radeon-R9-M275X.yaml | 2 + .../GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml | 2 + .../GCN-1.0/Radeon-R9-M290X.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml | 2 + .../GCN-1.0/Radeon-R9-M365X.yaml | 2 + .../GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml | 2 + .../GCN-1.0/Radeon-R9-M375X.yaml | 2 + .../GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml | 2 + specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml | 2 + .../GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml | 2 + specs/GPUs-CONSUMER/GCN-2.0.yaml | 1 + .../GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml | 2 + .../GCN-2.0/Playstation-4-GPU.yaml | 2 + .../GCN-2.0/Playstation-4-Pro-GPU.yaml | 2 + .../GCN-2.0/Playstation-4-Slim-GPU.yaml | 2 + .../GCN-2.0/Radeon-E8870-MXM.yaml | 2 + .../GCN-2.0/Radeon-E8870-PCIe.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml | 2 + .../GCN-2.0/Radeon-HD-8180-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8210-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8210E.yaml | 2 + .../GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8250-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8280-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8280E.yaml | 2 + .../GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8330E.yaml | 2 + .../GCN-2.0/Radeon-HD-8400-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml | 2 + .../GCN-2.0/Radeon-HD-8400E.yaml | 2 + .../GCN-2.0/Radeon-HD-8770-OEM.yaml | 2 + .../GCN-2.0/Radeon-HD-8950M.yaml | 2 + .../GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R2-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R3-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml | 2 + .../GCN-2.0/Radeon-R7-360-896SP.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml | 2 + .../GCN-2.0/Radeon-R7-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R7-Mobile-Graphics.yaml | 2 + .../GCN-2.0/Radeon-R9-260-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml | 2 + .../GCN-2.0/Radeon-R9-290X2.yaml | 2 + .../GCN-2.0/Radeon-R9-295X2.yaml | 2 + .../GCN-2.0/Radeon-R9-360-OEM.yaml | 2 + .../GCN-2.0/Radeon-R9-390-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml | 2 + .../GCN-2.0/Radeon-R9-M270X.yaml | 2 + .../GCN-2.0/Radeon-R9-M280X.yaml | 2 + .../GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml | 2 + .../GCN-2.0/Radeon-R9-M385X.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml | 2 + .../GCN-2.0/Radeon-R9-M470X.yaml | 2 + .../GCN-2.0/Radeon-RX-455-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml | 2 + specs/GPUs-CONSUMER/GCN-3.0.yaml | 1 + .../GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml | 2 + .../GCN-3.0/FirePro-S7150-x2.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml | 2 + .../GCN-3.0/FirePro-S9300-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml | 2 + .../GCN-3.0/Radeon-530-Mobile-DDR3.yaml | 2 + .../GCN-3.0/Radeon-530-Mobile-GDDR5.yaml | 2 + .../GCN-3.0/Radeon-530X-Mobile.yaml | 2 + .../GCN-3.0/Radeon-535-Mobile.yaml | 2 + .../GCN-3.0/Radeon-620-Mobile.yaml | 2 + .../GCN-3.0/Radeon-625-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml | 2 + specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml | 2 + .../GCN-3.0/Radeon-Instinct-MI8.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml | 2 + .../GCN-3.0/Radeon-R4-Mobile-Graphics.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml | 2 + .../GCN-3.0/Radeon-R5-Graphics.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml | 2 + .../GCN-3.0/Radeon-R5-Mobile-Graphics.yaml | 2 + .../GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml | 2 + .../GCN-3.0/Radeon-R6-M255DX.yaml | 2 + .../GCN-3.0/Radeon-R6-Mobile-Graphics.yaml | 2 + .../GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml | 2 + .../GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml | 2 + .../GCN-3.0/Radeon-R8-M365DX.yaml | 2 + .../GCN-3.0/Radeon-R8-M445DX.yaml | 2 + .../GCN-3.0/Radeon-R8-M535DX.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml | 2 + .../GCN-3.0/Radeon-R9-380-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml | 2 + .../GCN-3.0/Radeon-R9-FURY-X.yaml | 2 + .../GCN-3.0/Radeon-R9-FURY-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml | 2 + .../GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml | 2 + .../GCN-3.0/Radeon-R9-M295X.yaml | 2 + .../GCN-3.0/Radeon-R9-M390X.yaml | 2 + .../GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml | 2 + .../GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml | 2 + .../GCN-3.0/Radeon-R9-M395X.yaml | 2 + .../GCN-3.0/Radeon-R9-M485X.yaml | 2 + .../GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml | 2 + specs/GPUs-CONSUMER/GCN-4.0.yaml | 1 + specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml | 2 + .../GCN-4.0/Radeon-540-Mobile.yaml | 2 + .../GCN-4.0/Radeon-540X-Mobile.yaml | 2 + specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml | 2 + .../GCN-4.0/Radeon-550X-640SP.yaml | 2 + .../GCN-4.0/Radeon-550X-Mobile.yaml | 2 + specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml | 2 + .../GCN-4.0/Radeon-630-Mobile.yaml | 2 + .../GCN-4.0/Radeon-E9171-MCM.yaml | 2 + .../GCN-4.0/Radeon-E9172-MXM.yaml | 2 + .../GCN-4.0/Radeon-E9173-PCIe.yaml | 2 + .../GCN-4.0/Radeon-E9174-MXM.yaml | 2 + .../GCN-4.0/Radeon-E9175-PCIe.yaml | 2 + .../GCN-4.0/Radeon-E9260-MXM.yaml | 2 + .../GCN-4.0/Radeon-E9260-PCIe.yaml | 2 + .../GCN-4.0/Radeon-E9390-PCIe.yaml | 2 + .../GCN-4.0/Radeon-E9550-MXM.yaml | 2 + .../GCN-4.0/Radeon-E9560-PCIe.yaml | 2 + .../GCN-4.0/Radeon-Instinct-MI6.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml | 2 + .../GCN-4.0/Radeon-Pro-555X.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml | 2 + .../GCN-4.0/Radeon-Pro-560X.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml | 2 + .../GCN-4.0/Radeon-Pro-570X.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml | 2 + .../GCN-4.0/Radeon-Pro-575X.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml | 2 + .../GCN-4.0/Radeon-Pro-580X.yaml | 2 + .../GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 2 + .../GCN-4.0/Radeon-Pro-V5300X.yaml | 2 + .../GCN-4.0/Radeon-Pro-V7300X.yaml | 2 + .../GCN-4.0/Radeon-Pro-V7350X2.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-2100.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-3100.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-3200.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-4100.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-5100.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-7100.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml | 2 + .../GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml | 2 + .../GCN-4.0/Radeon-RX-460-1024SP.yaml | 2 + .../GCN-4.0/Radeon-RX-460-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml | 2 + .../GCN-4.0/Radeon-RX-470-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml | 2 + .../GCN-4.0/Radeon-RX-480-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml | 2 + .../GCN-4.0/Radeon-RX-540-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-540X-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-550-512SP.yaml | 2 + .../GCN-4.0/Radeon-RX-550-640SP.yaml | 2 + .../GCN-4.0/Radeon-RX-550-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml | 2 + .../GCN-4.0/Radeon-RX-550X-640SP.yaml | 2 + .../GCN-4.0/Radeon-RX-550X-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml | 2 + .../GCN-4.0/Radeon-RX-560-896SP.yaml | 2 + .../GCN-4.0/Radeon-RX-560-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-560-XT.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml | 2 + .../GCN-4.0/Radeon-RX-560DX.yaml | 2 + .../GCN-4.0/Radeon-RX-560X-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml | 2 + .../GCN-4.0/Radeon-RX-570-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-570-X2.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml | 2 + .../GCN-4.0/Radeon-RX-580-2048SP.yaml | 2 + .../GCN-4.0/Radeon-RX-580-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-580-OEM.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml | 2 + .../GCN-4.0/Radeon-RX-580X-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml | 2 + .../GCN-4.0/Radeon-RX-590-GME.yaml | 2 + .../GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml | 2 + .../GCN-4.0/Radeon-RX-640-Mobile.yaml | 2 + .../GCN-4.0/Radeon-RX-640-OEM.yaml | 2 + .../GCN-4.0/Radeon-RX-Vega-M-GH.yaml | 2 + .../GCN-4.0/Radeon-RX-Vega-M-GL.yaml | 2 + specs/GPUs-CONSUMER/GCN-5.0.yaml | 1 + .../GCN-5.0/Atari-VCS-400-GPU.yaml | 2 + .../GCN-5.0/Atari-VCS-800-GPU.yaml | 2 + .../GCN-5.0/Radeon-Instinct-MI25.yaml | 2 + .../GCN-5.0/Radeon-Pro-V320.yaml | 2 + .../GCN-5.0/Radeon-Pro-V340-16-GB.yaml | 2 + .../GCN-5.0/Radeon-Pro-V340-8-GB.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-16.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-20.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-48.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-56.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-64.yaml | 2 + .../GCN-5.0/Radeon-Pro-Vega-64X.yaml | 2 + .../GCN-5.0/Radeon-Pro-WX-8100.yaml | 2 + .../GCN-5.0/Radeon-Pro-WX-8200.yaml | 2 + .../GCN-5.0/Radeon-Pro-WX-9100.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-11.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-56.yaml | 2 + .../Radeon-RX-Vega-64-Limited-Edition.yaml | 2 + .../Radeon-RX-Vega-64-Liquid-Cooling.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-64.yaml | 2 + .../GCN-5.0/Radeon-RX-Vega-Nano.yaml | 2 + .../GCN-5.0/Radeon-Vega-10-Mobile.yaml | 2 + .../GCN-5.0/Radeon-Vega-11-Embedded.yaml | 2 + .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml | 2 + .../GCN-5.0/Radeon-Vega-3-Embedded.yaml | 2 + .../GCN-5.0/Radeon-Vega-3-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml | 2 + .../GCN-5.0/Radeon-Vega-6-Embedded.yaml | 2 + .../GCN-5.0/Radeon-Vega-6-Mobile.yaml | 2 + .../GCN-5.0/Radeon-Vega-8-Embedded.yaml | 2 + .../GCN-5.0/Radeon-Vega-8-Mobile.yaml | 2 + .../GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml | 2 + ...eon-Vega-Frontier-Edition-Watercooled.yaml | 2 + .../GCN-5.0/Radeon-Vega-Frontier-Edition.yaml | 2 + .../GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml | 2 + specs/GPUs-CONSUMER/GCN-5.1.yaml | 1 + .../GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml | 2 + .../GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml | 2 + .../GCN-5.1/Radeon-Graphics-384SP.yaml | 2 + .../GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml | 2 + .../GCN-5.1/Radeon-Graphics-448SP.yaml | 2 + .../GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml | 2 + .../GCN-5.1/Radeon-Graphics-512SP.yaml | 2 + .../GCN-5.1/Radeon-Instinct-MI50.yaml | 2 + .../GCN-5.1/Radeon-Instinct-MI60.yaml | 2 + .../GCN-5.1/Radeon-Pro-V420.yaml | 2 + .../GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml | 2 + .../GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml | 2 + .../GCN-5.1/Radeon-Pro-Vega-II.yaml | 2 + specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml | 2 + specs/GPUs-CONSUMER/Generation-1.0.yaml | 1 + .../Generation-1.0/i752-Graphics.yaml | 2 + specs/GPUs-CONSUMER/Generation-1.0/i752.yaml | 2 + .../Generation-1.0/i810-Graphics.yaml | 2 + .../Generation-1.0/i815-Graphics.yaml | 2 + .../Generation-1.0/i830M-Graphics.yaml | 2 + .../Generation-1.0/i830MG-Graphics.yaml | 2 + specs/GPUs-CONSUMER/Generation-11.0.yaml | 1 + .../Iris-Plus-Graphics-G4-48EU-Mobile.yaml | 2 + .../Iris-Plus-Graphics-G7-64EU-Mobile.yaml | 2 + .../UHD-Graphics-24EU-Mobile.yaml | 2 + .../UHD-Graphics-32EU-Mobile.yaml | 2 + .../UHD-Graphics-G1-32EU-Mobile.yaml | 2 + .../UHD-Graphics-G4-48EU-Mobile.yaml | 2 + .../UHD-Graphics-G7-64EU-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Generation-12.1.yaml | 1 + .../Generation-12.1/H3C-XG310.yaml | 2 + .../Iris-Xe-Graphics-G4-48EU-Mobile.yaml | 2 + .../Iris-Xe-Graphics-G7-80EU-Mobile.yaml | 2 + .../Iris-Xe-Graphics-G7-96EU-Mobile.yaml | 2 + .../Generation-12.1/Iris-Xe-MAX-Graphics.yaml | 2 + .../UHD-Graphics-16EU-Mobile.yaml | 2 + .../Generation-12.1/UHD-Graphics-16EU.yaml | 2 + .../Generation-12.1/UHD-Graphics-750.yaml | 2 + .../Generation-12.1/UHD-Graphics-P750.yaml | 2 + .../Generation-12.1/Xe-DG1-SDV.yaml | 2 + .../GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml | 2 + specs/GPUs-CONSUMER/Generation-12.2.yaml | 1 + .../Iris-Xe-Graphics-80EU-Mobile.yaml | 2 + .../Iris-Xe-Graphics-96EU-Mobile.yaml | 2 + .../UHD-Graphics-48EU-Mobile.yaml | 2 + .../UHD-Graphics-64EU-Mobile.yaml | 2 + .../UHD-Graphics-710-Mobile.yaml | 2 + .../Generation-12.2/UHD-Graphics-710.yaml | 2 + .../Generation-12.2/UHD-Graphics-730.yaml | 2 + .../UHD-Graphics-770-Mobile.yaml | 2 + .../Generation-12.2/UHD-Graphics-770.yaml | 2 + specs/GPUs-CONSUMER/Generation-12.5.yaml | 1 + .../Generation-12.5/Arctic-Sound-1T.yaml | 2 + .../Generation-12.5/Arctic-Sound-2T.yaml | 2 + .../Generation-12.5/Arctic-Sound-M.yaml | 2 + .../Data-Center-GPU-Max-1100.yaml | 2 + .../Data-Center-GPU-Max-1350.yaml | 2 + .../Data-Center-GPU-Max-1550.yaml | 2 + .../Data-Center-GPU-Max-NEXT.yaml | 2 + .../Data-Center-GPU-Max-Subsystem.yaml | 2 + specs/GPUs-CONSUMER/Generation-12.7.yaml | 1 + .../Generation-12.7/Arc-A310.yaml | 2 + .../Generation-12.7/Arc-A350.yaml | 2 + .../Generation-12.7/Arc-A350M.yaml | 2 + .../Generation-12.7/Arc-A370M.yaml | 2 + .../Generation-12.7/Arc-A380M.yaml | 2 + .../Generation-12.7/Arc-A530M.yaml | 2 + .../Generation-12.7/Arc-A550M.yaml | 2 + .../Generation-12.7/Arc-A570M.yaml | 2 + .../Generation-12.7/Arc-A580.yaml | 2 + .../Generation-12.7/Arc-A730M.yaml | 2 + .../Generation-12.7/Arc-A750.yaml | 2 + .../Generation-12.7/Arc-A770.yaml | 2 + .../Generation-12.7/Arc-A770M.yaml | 2 + .../Generation-12.7/Arc-A780.yaml | 2 + .../Generation-12.7/Arc-Pro-A30M.yaml | 2 + .../Generation-12.7/Arc-Pro-A40.yaml | 2 + .../Generation-12.7/Arc-Pro-A50.yaml | 2 + .../Generation-12.7/Arc-Pro-A60.yaml | 2 + .../Generation-12.7/Arc-Pro-A60M.yaml | 2 + .../Data-Center-GPU-Flex-140.yaml | 2 + .../Data-Center-GPU-Flex-170.yaml | 2 + specs/GPUs-CONSUMER/Generation-2.0.yaml | 1 + .../Generation-2.0/Extreme-Graphics-2.yaml | 2 + .../Generation-2.0/Extreme-Graphics.yaml | 2 + .../Generation-2.0/i852GM-Graphics.yaml | 2 + specs/GPUs-CONSUMER/Generation-3.0.yaml | 1 + .../GPUs-CONSUMER/Generation-3.0/GMA-900.yaml | 2 + specs/GPUs-CONSUMER/Generation-3.5.yaml | 1 + .../GPUs-CONSUMER/Generation-3.5/GMA-950.yaml | 2 + specs/GPUs-CONSUMER/Generation-4.0.yaml | 1 + .../Generation-4.0/GMA-3000.yaml | 2 + .../Generation-4.0/GMA-3100.yaml | 2 + .../Generation-4.0/GMA-3150.yaml | 2 + .../Generation-4.0/GMA-X3000.yaml | 2 + .../Generation-4.0/GMA-X3100.yaml | 2 + .../Generation-4.0/GMA-X3500.yaml | 2 + specs/GPUs-CONSUMER/Generation-5.0.yaml | 1 + .../Generation-5.0/GMA-X4500.yaml | 2 + .../Generation-5.0/GMA-X4500M.yaml | 2 + .../Generation-5.0/GMA-X4500MHD.yaml | 2 + .../Generation-5.0/GMA-X4700MHD.yaml | 2 + specs/GPUs-CONSUMER/Generation-5.75.yaml | 1 + .../Generation-5.75/HD-Graphics-12EU.yaml | 2 + .../HD-Graphics-16EU-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Generation-6.0.yaml | 1 + .../Generation-6.0/HD-Graphics-2000.yaml | 2 + .../HD-Graphics-3000-Mobile.yaml | 2 + .../Generation-6.0/HD-Graphics-3000.yaml | 2 + .../HD-Graphics-6EU-Mobile.yaml | 2 + .../Generation-6.0/HD-Graphics-P3000.yaml | 2 + specs/GPUs-CONSUMER/Generation-7.0.yaml | 1 + .../HD-Graphics-32EU-Mobile.yaml | 2 + .../HD-Graphics-4000-Mobile.yaml | 2 + .../Generation-7.0/HD-Graphics-4000.yaml | 2 + .../Generation-7.0/HD-Graphics-6EU.yaml | 2 + .../Generation-7.0/HD-Graphics-P4000.yaml | 2 + specs/GPUs-CONSUMER/Generation-7.5.yaml | 1 + .../HD-Graphics-10EU-Mobile.yaml | 2 + .../Generation-7.5/HD-Graphics-10EU.yaml | 2 + .../HD-Graphics-4200-Mobile.yaml | 2 + .../HD-Graphics-4400-Mobile.yaml | 2 + .../Generation-7.5/HD-Graphics-4400.yaml | 2 + .../HD-Graphics-4600-Mobile.yaml | 2 + .../Generation-7.5/HD-Graphics-4600.yaml | 2 + .../HD-Graphics-5000-Mobile.yaml | 2 + .../Generation-7.5/HD-Graphics-P4600.yaml | 2 + .../Generation-7.5/HD-Graphics-P4700.yaml | 2 + .../Iris-Graphics-5100-Mobile.yaml | 2 + .../Iris-Pro-Graphics-5200-Mobile.yaml | 2 + .../Iris-Pro-Graphics-5200.yaml | 2 + specs/GPUs-CONSUMER/Generation-8.0.yaml | 1 + .../HD-Graphics-12EU-Mobile.yaml | 2 + .../HD-Graphics-400-Mobile.yaml | 2 + .../HD-Graphics-405-Mobile.yaml | 2 + .../HD-Graphics-5300-Mobile.yaml | 2 + .../HD-Graphics-5500-Mobile.yaml | 2 + .../HD-Graphics-5600-Mobile.yaml | 2 + .../HD-Graphics-6000-Mobile.yaml | 2 + .../Generation-8.0/HD-Graphics-P5700.yaml | 2 + .../Iris-Graphics-6100-Mobile.yaml | 2 + .../Iris-Pro-Graphics-6200-Mobile.yaml | 2 + .../Iris-Pro-Graphics-6200.yaml | 2 + .../Iris-Pro-Graphics-P6300.yaml | 2 + specs/GPUs-CONSUMER/Generation-9.0.yaml | 1 + .../HD-Graphics-500-Mobile.yaml | 2 + .../HD-Graphics-505-Mobile.yaml | 2 + .../HD-Graphics-510-Mobile.yaml | 2 + .../Generation-9.0/HD-Graphics-510.yaml | 2 + .../HD-Graphics-515-Mobile.yaml | 2 + .../HD-Graphics-520-Mobile.yaml | 2 + .../HD-Graphics-530-Mobile.yaml | 2 + .../Generation-9.0/HD-Graphics-530.yaml | 2 + .../Generation-9.0/HD-Graphics-P530.yaml | 2 + .../Iris-Graphics-540-Mobile.yaml | 2 + .../Iris-Graphics-550-Mobile.yaml | 2 + .../Iris-Pro-Graphics-580-Mobile.yaml | 2 + .../Iris-Pro-Graphics-P555.yaml | 2 + .../Iris-Pro-Graphics-P580-Mobile.yaml | 2 + .../Iris-Pro-Graphics-P580.yaml | 2 + specs/GPUs-CONSUMER/Generation-9.5.yaml | 1 + .../HD-Graphics-610-Mobile.yaml | 2 + .../Generation-9.5/HD-Graphics-610.yaml | 2 + .../HD-Graphics-615-Mobile.yaml | 2 + .../HD-Graphics-620-Mobile.yaml | 2 + .../HD-Graphics-630-Mobile.yaml | 2 + .../Generation-9.5/HD-Graphics-630.yaml | 2 + .../HD-Graphics-P630-Mobile.yaml | 2 + .../Iris-Plus-Graphics-640-Mobile.yaml | 2 + .../Iris-Plus-Graphics-645-Mobile.yaml | 2 + .../Iris-Plus-Graphics-650-Mobile.yaml | 2 + .../Iris-Plus-Graphics-655-Mobile.yaml | 2 + .../UHD-Graphics-600-Mobile.yaml | 2 + .../UHD-Graphics-605-Mobile.yaml | 2 + .../UHD-Graphics-610-Mobile.yaml | 2 + .../Generation-9.5/UHD-Graphics-610.yaml | 2 + .../UHD-Graphics-615-Mobile.yaml | 2 + .../UHD-Graphics-617-Mobile.yaml | 2 + .../UHD-Graphics-620-Mobile.yaml | 2 + .../UHD-Graphics-630-Mobile.yaml | 2 + .../Generation-9.5/UHD-Graphics-630.yaml | 2 + .../UHD-Graphics-P630-Mobile.yaml | 2 + .../Generation-9.5/UHD-Graphics-P630.yaml | 2 + specs/GPUs-CONSUMER/Hopper.yaml | 1 + specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml | 2 + .../GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml | 2 + .../GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml | 2 + .../GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml | 2 + .../GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml | 2 + .../GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml | 2 + .../GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml | 2 + specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml | 2 + specs/GPUs-CONSUMER/IBM.yaml | 1 + specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml | 2 + specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml | 2 + specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml | 2 + specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml | 2 + specs/GPUs-CONSUMER/Kelvin.yaml | 1 + .../GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml | 2 + .../GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml | 2 + specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml | 2 + .../Kelvin/GeForce4-Go-4200.yaml | 2 + .../Kelvin/GeForce4-Ti-4200-8X.yaml | 2 + .../Kelvin/GeForce4-Ti-4200.yaml | 2 + .../Kelvin/GeForce4-Ti-4400.yaml | 2 + .../Kelvin/GeForce4-Ti-4600.yaml | 2 + .../Kelvin/GeForce4-Ti-4800.yaml | 2 + specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml | 2 + .../Kelvin/Quadro4-700-Go-GL.yaml | 2 + .../GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml | 2 + .../GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml | 2 + .../GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml | 2 + .../GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml | 2 + specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml | 2 + specs/GPUs-CONSUMER/Kepler-2.0.yaml | 1 + .../Kepler-2.0/GeForce-710A.yaml | 2 + .../Kepler-2.0/GeForce-805A.yaml | 2 + .../Kepler-2.0/GeForce-810A.yaml | 2 + .../Kepler-2.0/GeForce-825M.yaml | 2 + .../Kepler-2.0/GeForce-910M.yaml | 2 + .../Kepler-2.0/GeForce-920A.yaml | 2 + .../Kepler-2.0/GeForce-920M.yaml | 2 + .../GeForce-GT-630-Rev.-2-PCIe-x8.yaml | 2 + .../Kepler-2.0/GeForce-GT-630-Rev.-2.yaml | 2 + .../Kepler-2.0/GeForce-GT-635-OEM.yaml | 2 + .../Kepler-2.0/GeForce-GT-640-Rev.-2.yaml | 2 + .../Kepler-2.0/GeForce-GT-710-OEM.yaml | 2 + .../Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml | 2 + .../Kepler-2.0/GeForce-GT-710.yaml | 2 + .../Kepler-2.0/GeForce-GT-720.yaml | 2 + .../Kepler-2.0/GeForce-GT-730A.yaml | 2 + .../Kepler-2.0/GeForce-GT-735M.yaml | 2 + .../GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml | 2 + .../Kepler-2.0/Quadro-K510M.yaml | 2 + .../Kepler-2.0/Quadro-K610M.yaml | 2 + specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml | 2 + specs/GPUs-CONSUMER/Kepler.yaml | 1 + specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml | 2 + specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml | 2 + .../Kepler/GeForce-GT-1030-GK107.yaml | 2 + .../Kepler/GeForce-GT-630-OEM.yaml | 2 + .../Kepler/GeForce-GT-640-OEM.yaml | 2 + .../Kepler/GeForce-GT-640M-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml | 2 + .../Kepler/GeForce-GT-650M-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml | 2 + .../Kepler/GeForce-GT-720-OEM.yaml | 2 + .../Kepler/GeForce-GT-730-OEM.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml | 2 + .../Kepler/GeForce-GT-740-OEM.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml | 2 + .../Kepler/GeForce-GT-750M-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml | 2 + .../Kepler/GeForce-GT-755M-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml | 2 + .../Kepler/GeForce-GTX-645-OEM.yaml | 2 + .../Kepler/GeForce-GTX-650-Ti-Boost.yaml | 2 + .../Kepler/GeForce-GTX-650-Ti-OEM.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml | 2 + .../Kepler/GeForce-GTX-660-OEM.yaml | 2 + .../Kepler/GeForce-GTX-660-Ti.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml | 2 + .../Kepler/GeForce-GTX-660M-Mac-Edition.yaml | 2 + .../Kepler/GeForce-GTX-660M.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml | 2 + .../Kepler/GeForce-GTX-670MX.yaml | 2 + .../Kepler/GeForce-GTX-675MX-Mac-Edition.yaml | 2 + .../Kepler/GeForce-GTX-675MX.yaml | 2 + .../Kepler/GeForce-GTX-680-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml | 2 + .../Kepler/GeForce-GTX-680M.yaml | 2 + .../Kepler/GeForce-GTX-680MX-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml | 2 + .../Kepler/GeForce-GTX-750-Ti-OEM.yaml | 2 + .../Kepler/GeForce-GTX-760-OEM-Rebrand.yaml | 2 + .../Kepler/GeForce-GTX-760-OEM.yaml | 2 + .../GeForce-GTX-760-Ti-OEM-Rebrand.yaml | 2 + .../Kepler/GeForce-GTX-760-Ti-OEM.yaml | 2 + .../Kepler/GeForce-GTX-760-X2.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml | 2 + .../Kepler/GeForce-GTX-760A.yaml | 2 + .../Kepler/GeForce-GTX-760M.yaml | 2 + .../Kepler/GeForce-GTX-765M.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml | 2 + .../Kepler/GeForce-GTX-770M.yaml | 2 + .../Kepler/GeForce-GTX-775M-Mac-Edition.yaml | 2 + .../Kepler/GeForce-GTX-780-6-GB.yaml | 2 + .../Kepler/GeForce-GTX-780-Rev.-2.yaml | 2 + .../Kepler/GeForce-GTX-780-Ti-6-GB.yaml | 2 + .../Kepler/GeForce-GTX-780-Ti.yaml | 2 + .../GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml | 2 + .../Kepler/GeForce-GTX-780M-Mac-Edition.yaml | 2 + .../Kepler/GeForce-GTX-780M.yaml | 2 + .../Kepler/GeForce-GTX-870M.yaml | 2 + .../Kepler/GeForce-GTX-880M.yaml | 2 + .../Kepler/GeForce-GTX-TITAN-BLACK.yaml | 2 + .../Kepler/GeForce-GTX-TITAN-Z.yaml | 2 + .../Kepler/GeForce-GTX-TITAN.yaml | 2 + specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml | 2 + specs/GPUs-CONSUMER/Kepler/NVS-510.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml | 2 + .../Kepler/Quadro-K2000M-Embedded.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml | 2 + .../Kepler/Quadro-K5000-Mac-Edition.yaml | 2 + .../Kepler/Quadro-K5000-SYNC.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml | 2 + .../Kepler/Quadro-K6000-SDI.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml | 2 + specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml | 2 + specs/GPUs-CONSUMER/Knights.yaml | 1 + specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml | 2 + .../GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml | 2 + specs/GPUs-CONSUMER/MP.yaml | 1 + specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml | 2 + specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml | 2 + specs/GPUs-CONSUMER/MP/QID-PRO.yaml | 2 + specs/GPUs-CONSUMER/MP/QID.yaml | 2 + specs/GPUs-CONSUMER/Mach.yaml | 1 + specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml | 2 + specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml | 2 + specs/GPUs-CONSUMER/Mach/3D-Rage.yaml | 2 + specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml | 2 + .../Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml | 2 + .../Mach/Graphics-Pro-Turbo.yaml | 2 + .../Mach/Graphics-Ultra-Pro-ISA.yaml | 2 + .../Mach/Graphics-Ultra-Pro-PCI.yaml | 2 + .../Mach/Graphics-Ultra-Pro-VLB.yaml | 2 + .../Mach/Graphics-Ultra-XLR-VLB.yaml | 2 + specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml | 2 + .../GPUs-CONSUMER/Mach/Graphics-Vantage.yaml | 2 + .../Mach/Graphics-Wonder-PCI.yaml | 2 + .../Mach/Graphics-Wonder-VLB.yaml | 2 + .../Mach/Graphics-Xpression-ISA.yaml | 2 + .../Mach/Graphics-Xpression.yaml | 2 + specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml | 2 + .../GPUs-CONSUMER/Mach/Video-Xpression+.yaml | 2 + specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml | 2 + specs/GPUs-CONSUMER/Mach/WinBoost.yaml | 2 + specs/GPUs-CONSUMER/Mach/WinCharger.yaml | 2 + specs/GPUs-CONSUMER/Mach/WinTurbo.yaml | 2 + specs/GPUs-CONSUMER/Maxwell-2.0.yaml | 1 + .../GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml | 2 + .../Maxwell-2.0/GRID-M60-1Q.yaml | 2 + .../Maxwell-2.0/GRID-M60-2Q.yaml | 2 + .../Maxwell-2.0/GRID-M60-4A.yaml | 2 + .../Maxwell-2.0/GRID-M60-8Q.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-750-GM206.yaml | 2 + .../GeForce-GTX-950-Low-Power.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-950-OEM.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-950.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-960-OEM.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-960.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-965M.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-970.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-970M.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-980-Mobile.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-980-Ti.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-980.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-980M.yaml | 2 + .../Maxwell-2.0/GeForce-GTX-TITAN-X.yaml | 2 + .../Maxwell-2.0/Jetson-Nano.yaml | 2 + .../GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml | 2 + .../Maxwell-2.0/Quadro-M2000.yaml | 2 + .../Maxwell-2.0/Quadro-M2200-Mobile.yaml | 2 + .../Maxwell-2.0/Quadro-M3000-SE.yaml | 2 + .../Maxwell-2.0/Quadro-M3000M.yaml | 2 + .../Maxwell-2.0/Quadro-M4000.yaml | 2 + .../Maxwell-2.0/Quadro-M4000M.yaml | 2 + .../Maxwell-2.0/Quadro-M5000.yaml | 2 + .../Maxwell-2.0/Quadro-M5000M.yaml | 2 + .../Maxwell-2.0/Quadro-M5500-Mobile.yaml | 2 + .../Maxwell-2.0/Quadro-M6000-24-GB.yaml | 2 + .../Maxwell-2.0/Quadro-M6000.yaml | 2 + .../Maxwell-2.0/Switch-GPU-16nm.yaml | 2 + .../Maxwell-2.0/Switch-GPU-20nm.yaml | 2 + specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml | 2 + .../Maxwell-2.0/Tesla-M40-24-GB.yaml | 2 + .../GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml | 2 + .../Maxwell-2.0/Tesla-M6-Mobile.yaml | 2 + .../Maxwell-2.0/Tesla-M6-X2-Mobile.yaml | 2 + .../GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml | 2 + specs/GPUs-CONSUMER/Maxwell.yaml | 1 + specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml | 2 + .../GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml | 2 + .../GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml | 2 + .../Maxwell/GeForce-GTX-745-OEM.yaml | 2 + .../Maxwell/GeForce-GTX-750-Ti.yaml | 2 + .../Maxwell/GeForce-GTX-750.yaml | 2 + .../Maxwell/GeForce-GTX-850A.yaml | 2 + .../Maxwell/GeForce-GTX-850M.yaml | 2 + .../Maxwell/GeForce-GTX-860M-OEM.yaml | 2 + .../Maxwell/GeForce-GTX-860M.yaml | 2 + .../Maxwell/GeForce-GTX-950A.yaml | 2 + .../Maxwell/GeForce-GTX-950M-Mac-Edition.yaml | 2 + .../Maxwell/GeForce-GTX-950M.yaml | 2 + .../Maxwell/GeForce-GTX-960M.yaml | 2 + .../GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml | 2 + .../GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml | 2 + .../GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml | 2 + .../GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml | 2 + .../Maxwell/Quadro-M1200-Mobile.yaml | 2 + .../GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml | 2 + .../Maxwell/Quadro-M520-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml | 2 + .../Maxwell/Quadro-M620-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml | 2 + specs/GPUs-CONSUMER/PX.yaml | 1 + specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml | 2 + specs/GPUs-CONSUMER/Parhelia.yaml | 1 + .../Parhelia/Millenium-P650-LP-MDD-PCIe.yaml | 2 + .../Parhelia/Millenium-P650-PCIe.yaml | 2 + .../Parhelia/Millenium-P650.yaml | 2 + .../Parhelia/Millenium-P750.yaml | 2 + .../Parhelia/Parhelia-128-MB.yaml | 2 + .../Parhelia/Parhelia-256-MB.yaml | 2 + .../GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml | 2 + .../Parhelia/Parhelia-DL256.yaml | 2 + .../Parhelia/Parhelia-HR256.yaml | 2 + .../GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml | 2 + .../Parhelia/Parhelia-Precision-SDT.yaml | 2 + .../Parhelia/Parhelia-Precision-SGT.yaml | 2 + specs/GPUs-CONSUMER/Pascal.yaml | 1 + .../Pascal/GeForce-GT-1010-DDR4.yaml | 2 + .../GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml | 2 + .../Pascal/GeForce-GT-1030-DDR4.yaml | 2 + .../GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml | 2 + .../Pascal/GeForce-GTX-1050-3-GB.yaml | 2 + .../Pascal/GeForce-GTX-1050-Max-Q.yaml | 2 + .../Pascal/GeForce-GTX-1050-Mobile.yaml | 2 + .../Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml | 2 + .../Pascal/GeForce-GTX-1050-Ti-Mobile.yaml | 2 + .../Pascal/GeForce-GTX-1050-Ti.yaml | 2 + .../Pascal/GeForce-GTX-1050.yaml | 2 + .../Pascal/GeForce-GTX-1060-3-GB-GP104.yaml | 2 + .../Pascal/GeForce-GTX-1060-3-GB.yaml | 2 + .../Pascal/GeForce-GTX-1060-5-GB.yaml | 2 + .../Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml | 2 + .../Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml | 2 + .../Pascal/GeForce-GTX-1060-6-GB-GP104.yaml | 2 + .../Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml | 2 + .../Pascal/GeForce-GTX-1060-6-GB.yaml | 2 + .../Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml | 2 + .../Pascal/GeForce-GTX-1060-Max-Q.yaml | 2 + .../Pascal/GeForce-GTX-1060-Mobile.yaml | 2 + .../Pascal/GeForce-GTX-1070-GDDR5X.yaml | 2 + .../Pascal/GeForce-GTX-1070-Max-Q.yaml | 2 + .../Pascal/GeForce-GTX-1070-Mobile.yaml | 2 + .../Pascal/GeForce-GTX-1070-Ti.yaml | 2 + .../Pascal/GeForce-GTX-1070.yaml | 2 + .../Pascal/GeForce-GTX-1080-11Gbps.yaml | 2 + .../Pascal/GeForce-GTX-1080-Max-Q.yaml | 2 + .../Pascal/GeForce-GTX-1080-Mobile.yaml | 2 + .../Pascal/GeForce-GTX-1080-Ti-10-GB.yaml | 2 + .../Pascal/GeForce-GTX-1080-Ti-12-GB.yaml | 2 + .../Pascal/GeForce-GTX-1080-Ti.yaml | 2 + .../Pascal/GeForce-GTX-1080.yaml | 2 + .../Pascal/GeForce-MX150-GP107.yaml | 2 + specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml | 2 + specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml | 2 + specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml | 2 + specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml | 2 + specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P102-100.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P102-101.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P104-100.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P104-101.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P106-090.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P106-100.yaml | 2 + specs/GPUs-CONSUMER/Pascal/P106M.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml | 2 + .../Pascal/Quadro-P1000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml | 2 + .../Pascal/Quadro-P2000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml | 2 + .../Pascal/Quadro-P3000-Mobile.yaml | 2 + .../Pascal/Quadro-P3200-Max-Q.yaml | 2 + .../Pascal/Quadro-P3200-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml | 2 + .../Pascal/Quadro-P4000-Max-Q.yaml | 2 + .../Pascal/Quadro-P4000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml | 2 + .../Pascal/Quadro-P4200-Max-Q.yaml | 2 + .../Pascal/Quadro-P4200-Mobile.yaml | 2 + .../Pascal/Quadro-P500-Mobile.yaml | 2 + .../Pascal/Quadro-P5000-Mobile.yaml | 2 + .../Pascal/Quadro-P5000-X2-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml | 2 + .../Pascal/Quadro-P520-Max-Q.yaml | 2 + .../Pascal/Quadro-P520-Mobile.yaml | 2 + .../Pascal/Quadro-P5200-Max-Q.yaml | 2 + .../Pascal/Quadro-P5200-Mobile.yaml | 2 + .../Pascal/Quadro-P600-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml | 2 + .../Pascal/Quadro-P620-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml | 2 + .../GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml | 2 + specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml | 2 + .../GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml | 2 + .../Pascal/Tesla-P100-PCIe-12-GB.yaml | 2 + .../Pascal/Tesla-P100-PCIe-16-GB.yaml | 2 + .../GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml | 2 + specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml | 2 + .../GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml | 2 + specs/GPUs-CONSUMER/PowerVR-SGX535.yaml | 1 + .../GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml | 2 + .../GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml | 2 + specs/GPUs-CONSUMER/PowerVR-SGX545.yaml | 1 + .../PowerVR-SGX545/GMA-3650.yaml | 2 + specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml | 2 + specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml | 1 + .../Playstation-Vita-GPU.yaml | 2 + specs/GPUs-CONSUMER/R300.yaml | 1 + .../R300/All-In-Wonder-2006-AGP-Edition.yaml | 2 + .../R300/All-In-Wonder-9500.yaml | 2 + .../R300/All-In-Wonder-9600-PRO.yaml | 2 + .../R300/All-In-Wonder-9600-XT.yaml | 2 + .../R300/All-In-Wonder-9600.yaml | 2 + .../R300/All-In-Wonder-9700-PRO.yaml | 2 + .../R300/All-In-Wonder-9800-PRO.yaml | 2 + .../R300/All-In-Wonder-9800-SE.yaml | 2 + .../R300/All-In-Wonder-X600-PRO.yaml | 2 + .../R300/FireGL-9500-Z1-128.yaml | 2 + .../R300/FireGL-9600-T2-128.yaml | 2 + .../R300/FireGL-9600-T2-64S.yaml | 2 + .../R300/FireGL-9700-X1-128.yaml | 2 + .../R300/FireGL-9700-X1-256.yaml | 2 + .../R300/FireGL-9700-X1-256p.yaml | 2 + .../R300/FireGL-9800-X2-256.yaml | 2 + .../R300/FireGL-9800-X2-256T.yaml | 2 + specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml | 2 + specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml | 2 + specs/GPUs-CONSUMER/R300/FireMV-2200.yaml | 2 + specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml | 2 + .../R300/FireMV-2400-PCIe-x1.yaml | 2 + .../R300/Mobility-FireGL-T2.yaml | 2 + .../R300/Mobility-FireGL-T2e.yaml | 2 + .../R300/Mobility-FireGL-V3100.yaml | 2 + .../R300/Mobility-FireGL-V3200.yaml | 2 + .../R300/Mobility-Radeon-9500.yaml | 2 + .../R300/Mobility-Radeon-9550.yaml | 2 + .../R300/Mobility-Radeon-9600-PRO-Turbo.yaml | 2 + .../R300/Mobility-Radeon-9600-PRO.yaml | 2 + .../R300/Mobility-Radeon-9600.yaml | 2 + .../R300/Mobility-Radeon-9700-SE.yaml | 2 + .../R300/Mobility-Radeon-9700.yaml | 2 + .../R300/Mobility-Radeon-X300-IGP.yaml | 2 + .../R300/Mobility-Radeon-X300.yaml | 2 + .../R300/Mobility-Radeon-X600-SE.yaml | 2 + .../R300/Mobility-Radeon-X600.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9500.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9550.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9600.yaml | 2 + .../R300/Radeon-9700-PRO-X4.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9700.yaml | 2 + .../R300/Radeon-9800-PRO-MAXX.yaml | 2 + .../R300/Radeon-9800-PRO-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml | 2 + .../R300/Radeon-9800-XT-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-9800.yaml | 2 + .../GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml | 2 + .../R300/Radeon-X300-SE-HyperMemory.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X300.yaml | 2 + .../R300/Radeon-X550-HyperMemory.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X550.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml | 2 + specs/GPUs-CONSUMER/R300/Radeon-X600.yaml | 2 + .../R300/Radeon-Xpress--200M-IGP.yaml | 2 + .../R300/Radeon-Xpress-1100-IGP.yaml | 2 + .../R300/Radeon-Xpress-1100-Mobile-IGP.yaml | 2 + .../R300/Radeon-Xpress-1150-IGP.yaml | 2 + .../R300/Radeon-Xpress-1150-Mobile-IGP.yaml | 2 + .../R300/Radeon-Xpress-200-IGP.yaml | 2 + .../R300/Radeon-Xpress-200M-IGP.yaml | 2 + specs/GPUs-CONSUMER/R400.yaml | 1 + .../R400/All-In-Wonder-X800-GT.yaml | 2 + .../R400/All-In-Wonder-X800-SE.yaml | 2 + .../R400/All-In-Wonder-X800-VE.yaml | 2 + .../R400/All-In-Wonder-X800-XL.yaml | 2 + .../R400/All-In-Wonder-X800-XT.yaml | 2 + specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml | 2 + specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml | 2 + specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml | 2 + specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml | 2 + .../R400/Mobility-FireGL-V5000.yaml | 2 + .../R400/Mobility-Radeon-9800.yaml | 2 + .../R400/Mobility-Radeon-X700-XL.yaml | 2 + .../R400/Mobility-Radeon-X700.yaml | 2 + .../R400/Mobility-Radeon-X800-XT.yaml | 2 + .../R400/Mobility-Radeon-X800.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml | 2 + .../R400/Radeon-X700-PRO-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X700.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml | 2 + .../R400/Radeon-X800-CrossFire-Edition.yaml | 2 + .../R400/Radeon-X800-GT-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml | 2 + .../R400/Radeon-X800-GTO-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml | 2 + .../GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml | 2 + .../R400/Radeon-X800-PRO-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml | 2 + .../R400/Radeon-X800-SE-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml | 2 + .../R400/Radeon-X800-VE-AGP.yaml | 2 + .../R400/Radeon-X800-XL-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml | 2 + .../R400/Radeon-X800-XT-AGP.yaml | 2 + .../R400/Radeon-X800-XT-Mac-Edition.yaml | 2 + .../R400/Radeon-X800-XT-Platinum-AGP.yaml | 2 + .../R400/Radeon-X800-XT-Platinum.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X800.yaml | 2 + .../R400/Radeon-X850-CrossFire-Edition.yaml | 2 + .../R400/Radeon-X850-PRO-AGP.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml | 2 + .../R400/Radeon-X850-XT-AGP.yaml | 2 + .../R400/Radeon-X850-XT-Platinum-AGP.yaml | 2 + .../R400/Radeon-X850-XT-Platinum.yaml | 2 + specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml | 2 + .../R400/Radeon-Xpress-1200-IGP.yaml | 2 + .../R400/Radeon-Xpress-1200-Mobile-IGP.yaml | 2 + .../R400/Radeon-Xpress-1250-IGP.yaml | 2 + .../R400/Radeon-Xpress-1250-Mobile-IGP.yaml | 2 + .../R400/Radeon-Xpress-1270-Mobile-IGP.yaml | 2 + specs/GPUs-CONSUMER/RDNA-1.0.yaml | 1 + .../RDNA-1.0/Radeon-Pro-5300.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5300M.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5500-XT.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5500M.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5600M.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5700-XT.yaml | 2 + .../RDNA-1.0/Radeon-Pro-5700.yaml | 2 + .../RDNA-1.0/Radeon-Pro-V520.yaml | 2 + .../RDNA-1.0/Radeon-Pro-V540.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5300M.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5500.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5500M.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5500X.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5700.yaml | 2 + .../RDNA-1.0/Radeon-Pro-W5700X.yaml | 2 + .../RDNA-1.0/Radeon-RX-5300-OEM.yaml | 2 + .../RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml | 2 + .../RDNA-1.0/Radeon-RX-5300M.yaml | 2 + .../RDNA-1.0/Radeon-RX-5500-OEM.yaml | 2 + .../RDNA-1.0/Radeon-RX-5500-XT.yaml | 2 + .../RDNA-1.0/Radeon-RX-5500M.yaml | 2 + .../RDNA-1.0/Radeon-RX-5600-OEM.yaml | 2 + .../RDNA-1.0/Radeon-RX-5600-XT.yaml | 2 + .../RDNA-1.0/Radeon-RX-5600M.yaml | 2 + .../Radeon-RX-5700-XT-50th-Anniversary.yaml | 2 + .../RDNA-1.0/Radeon-RX-5700-XT.yaml | 2 + .../RDNA-1.0/Radeon-RX-5700.yaml | 2 + .../RDNA-1.0/Radeon-RX-5700M.yaml | 2 + specs/GPUs-CONSUMER/RDNA-2.0.yaml | 1 + .../RDNA-2.0/Playstation-5-GPU.yaml | 2 + specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml | 2 + specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml | 2 + specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml | 2 + .../RDNA-2.0/Radeon-Graphics-128SP.yaml | 2 + .../RDNA-2.0/Radeon-PRO-V620.yaml | 2 + .../RDNA-2.0/Radeon-PRO-W6300.yaml | 2 + .../RDNA-2.0/Radeon-PRO-W6400.yaml | 2 + .../RDNA-2.0/Radeon-PRO-W6600.yaml | 2 + .../RDNA-2.0/Radeon-PRO-W6800.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6300M.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6500M.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6600M.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6600X.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6800X.yaml | 2 + .../RDNA-2.0/Radeon-Pro-W6900X.yaml | 2 + .../RDNA-2.0/Radeon-RX-6300.yaml | 2 + .../RDNA-2.0/Radeon-RX-6300M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6400.yaml | 2 + .../RDNA-2.0/Radeon-RX-6450M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6500-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6500M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6550M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6550S.yaml | 2 + .../RDNA-2.0/Radeon-RX-6600-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6600.yaml | 2 + .../RDNA-2.0/Radeon-RX-6600M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6600S.yaml | 2 + .../RDNA-2.0/Radeon-RX-6650-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6650M-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6650M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6700-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6700.yaml | 2 + .../RDNA-2.0/Radeon-RX-6700M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6700S.yaml | 2 + .../RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml | 2 + .../RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml | 2 + .../RDNA-2.0/Radeon-RX-6750-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6800-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6800.yaml | 2 + .../RDNA-2.0/Radeon-RX-6800M.yaml | 2 + .../RDNA-2.0/Radeon-RX-6800S.yaml | 2 + .../RDNA-2.0/Radeon-RX-6850M-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6900-XT.yaml | 2 + .../RDNA-2.0/Radeon-RX-6900-XTX.yaml | 2 + .../RDNA-2.0/Radeon-RX-6950-XT.yaml | 2 + .../RDNA-2.0/Steam-Deck-GPU.yaml | 2 + .../RDNA-2.0/Steam-Deck-OLED-GPU.yaml | 2 + .../RDNA-2.0/Xbox-Series-S-GPU.yaml | 2 + .../RDNA-2.0/Xbox-Series-X-GPU.yaml | 2 + specs/GPUs-CONSUMER/RDNA-3.0.yaml | 1 + .../RDNA-3.0/ROG-Ally-Extreme-GPU.yaml | 2 + .../GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml | 2 + specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml | 2 + specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml | 2 + specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml | 2 + .../RDNA-3.0/Radeon-PRO-W7500.yaml | 2 + .../RDNA-3.0/Radeon-PRO-W7600.yaml | 2 + .../RDNA-3.0/Radeon-PRO-W7700.yaml | 2 + .../RDNA-3.0/Radeon-PRO-W7800.yaml | 2 + .../RDNA-3.0/Radeon-PRO-W7900.yaml | 2 + .../RDNA-3.0/Radeon-RX-7500-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7600-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7600.yaml | 2 + .../RDNA-3.0/Radeon-RX-7600M-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7600M.yaml | 2 + .../RDNA-3.0/Radeon-RX-7600S.yaml | 2 + .../RDNA-3.0/Radeon-RX-7700-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7700.yaml | 2 + .../RDNA-3.0/Radeon-RX-7700S.yaml | 2 + .../RDNA-3.0/Radeon-RX-7800-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7900-GRE.yaml | 2 + .../RDNA-3.0/Radeon-RX-7900-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7900-XTX.yaml | 2 + .../RDNA-3.0/Radeon-RX-7900M.yaml | 2 + .../RDNA-3.0/Radeon-RX-7950-XT.yaml | 2 + .../RDNA-3.0/Radeon-RX-7950-XTX.yaml | 2 + .../RDNA-3.0/Radeon-RX-7990-XTX.yaml | 2 + specs/GPUs-CONSUMER/Rage-2.yaml | 1 + .../GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml | 2 + .../GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-3.yaml | 1 + .../GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml | 2 + .../GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml | 2 + .../Rage-3/Rage-PRO-Turbo-AGP.yaml | 2 + .../Rage-3/Rage-PRO-Turbo-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-4.yaml | 1 + .../Rage-4/All-In-Wonder-128-PCI.yaml | 2 + .../Rage-4/All-In-Wonder-128-PRO-Ultra.yaml | 2 + .../Rage-4/All-In-Wonder-128-PRO.yaml | 2 + .../Rage-4/All-In-Wonder-128.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml | 2 + .../Rage-4/Rage-128-PRO-Ultra-GL.yaml | 2 + .../Rage-4/Rage-128-PRO-Ultra.yaml | 2 + specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml | 2 + specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml | 2 + .../Rage-4/Rage-Mobility-128-AGP-2X.yaml | 2 + .../Rage-4/Rage-Mobility-128-AGP-4X.yaml | 2 + .../Rage-4/Rage-Mobility-CL.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml | 2 + .../Rage-4/Rage-Mobility-M1.yaml | 2 + .../Rage-4/Rage-Mobility-M3.yaml | 2 + .../Rage-4/Rage-Mobility-M4.yaml | 2 + .../GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml | 2 + specs/GPUs-CONSUMER/Rage-5.yaml | 1 + specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml | 2 + specs/GPUs-CONSUMER/Rage-6.yaml | 1 + .../Rage-6/All-In-Wonder-Radeon-7200.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/ES1000.yaml | 2 + .../Rage-6/Mobility-Radeon-7000-IGP.yaml | 2 + .../Rage-6/Mobility-Radeon-7000.yaml | 2 + .../Rage-6/Mobility-Radeon-P.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml | 2 + .../Rage-6/Radeon-7000-Mac-Edition-PCI.yaml | 2 + .../Rage-6/Radeon-7000-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml | 2 + .../Rage-6/Radeon-7200-64-MB.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml | 2 + .../Rage-6/Radeon-DDR-VIVO-OEM.yaml | 2 + .../Rage-6/Radeon-DDR-VIVO-SE.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml | 2 + .../GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml | 2 + specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-7.yaml | 1 + .../Rage-7/All-In-Wonder-9000-PRO.yaml | 2 + .../Rage-7/All-In-Wonder-9200-SE.yaml | 2 + .../Rage-7/All-In-Wonder-9200.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-7500-VE.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-7500.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-8500.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-8500DV.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml | 2 + .../GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml | 2 + .../Rage-7/Mobility-FireGL-7800.yaml | 2 + .../Rage-7/Mobility-FireGL-9000.yaml | 2 + .../Rage-7/Mobility-Radeon-7500.yaml | 2 + .../Rage-7/Mobility-Radeon-7500C.yaml | 2 + .../Rage-7/Mobility-Radeon-9000-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9000.yaml | 2 + .../Rage-7/Mobility-Radeon-9100-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9200.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml | 2 + .../Rage-7/Radeon-7500-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml | 2 + .../Rage-7/Radeon-9000-PRO-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml | 2 + .../Rage-7/Radeon-9200-SE-PCI.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml | 2 + .../GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml | 2 + specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml | 2 + specs/GPUs-CONSUMER/Rankine.yaml | 1 + .../Rankine/GeForce-FX-5100.yaml | 2 + .../Rankine/GeForce-FX-5200-LE.yaml | 2 + .../Rankine/GeForce-FX-5200-PCI.yaml | 2 + .../Rankine/GeForce-FX-5200-Rev.-2.yaml | 2 + .../GeForce-FX-5200-Ultra-Mac-Edition.yaml | 2 + .../Rankine/GeForce-FX-5200-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5200.yaml | 2 + .../Rankine/GeForce-FX-5500-PCI.yaml | 2 + .../Rankine/GeForce-FX-5500.yaml | 2 + .../Rankine/GeForce-FX-5600-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5600-XT-PCI.yaml | 2 + .../Rankine/GeForce-FX-5600-XT.yaml | 2 + .../Rankine/GeForce-FX-5600.yaml | 2 + .../Rankine/GeForce-FX-5700-EP.yaml | 2 + .../GeForce-FX-5700-Engineering-Sample.yaml | 2 + .../Rankine/GeForce-FX-5700-LE.yaml | 2 + .../Rankine/GeForce-FX-5700-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5700-VE.yaml | 2 + .../Rankine/GeForce-FX-5700.yaml | 2 + .../Rankine/GeForce-FX-5800-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5800.yaml | 2 + .../Rankine/GeForce-FX-5900-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5900-XT.yaml | 2 + .../Rankine/GeForce-FX-5900-ZT.yaml | 2 + .../Rankine/GeForce-FX-5900.yaml | 2 + .../Rankine/GeForce-FX-5950-Ultra.yaml | 2 + .../Rankine/GeForce-FX-Go5100.yaml | 2 + .../Rankine/GeForce-FX-Go5200-32M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-64M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-NPB-32M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-NPB-64M.yaml | 2 + .../Rankine/GeForce-FX-Go5200.yaml | 2 + .../Rankine/GeForce-FX-Go5250.yaml | 2 + .../Rankine/GeForce-FX-Go5300.yaml | 2 + .../Rankine/GeForce-FX-Go5350.yaml | 2 + .../Rankine/GeForce-FX-Go5600.yaml | 2 + .../Rankine/GeForce-FX-Go5650.yaml | 2 + .../Rankine/GeForce-FX-Go5700.yaml | 2 + .../Rankine/GeForce-PCX-5300.yaml | 2 + .../Rankine/GeForce-PCX-5750.yaml | 2 + .../Rankine/GeForce-PCX-5900.yaml | 2 + .../Rankine/GeForce-PCX-5950.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml | 2 + .../Rankine/Quadro-FX-3000G.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml | 2 + .../Rankine/Quadro-FX-600-PCI.yaml | 2 + .../GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml | 2 + .../Rankine/Quadro-FX-Go1000.yaml | 2 + .../Rankine/Quadro-FX-Go700.yaml | 2 + .../Rankine/Quadro-NVS-280-AGP.yaml | 2 + .../Rankine/Quadro-NVS-280-PCI.yaml | 2 + .../Rankine/Quadro-NVS-280-PCIe.yaml | 2 + .../Rankine/Quadro-NVS-55-PCI.yaml | 2 + specs/GPUs-CONSUMER/TeraScale-2.yaml | 1 + .../TeraScale-2/FirePro-2270-PCIe-x1.yaml | 2 + .../TeraScale-2/FirePro-2270.yaml | 2 + .../TeraScale-2/FirePro-2460-Multi-View.yaml | 2 + .../TeraScale-2/FirePro-M2000.yaml | 2 + .../TeraScale-2/FirePro-M3900.yaml | 2 + .../TeraScale-2/FirePro-M5800.yaml | 2 + .../TeraScale-2/FirePro-M5950.yaml | 2 + .../TeraScale-2/FirePro-M7820.yaml | 2 + .../TeraScale-2/FirePro-M8900.yaml | 2 + .../TeraScale-2/FirePro-V3800.yaml | 2 + .../TeraScale-2/FirePro-V3900.yaml | 2 + .../TeraScale-2/FirePro-V4800.yaml | 2 + .../TeraScale-2/FirePro-V4900.yaml | 2 + .../TeraScale-2/FirePro-V5800-DVI.yaml | 2 + .../TeraScale-2/FirePro-V5800.yaml | 2 + .../TeraScale-2/FirePro-V7800.yaml | 2 + .../TeraScale-2/FirePro-V7800P.yaml | 2 + .../TeraScale-2/FirePro-V8800.yaml | 2 + .../TeraScale-2/FirePro-V9800.yaml | 2 + .../TeraScale-2/FirePro-V9800P.yaml | 2 + .../TeraScale-2/FireStream-9350.yaml | 2 + .../TeraScale-2/FireStream-9370.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5430.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5450.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5470.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5570.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5650.yaml | 2 + .../Mobility-Radeon-HD-5670-Mac-Edition.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5730.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5750.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5770.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5830.yaml | 2 + .../Mobility-Radeon-HD-5850-Mac-Edition.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5850.yaml | 2 + .../TeraScale-2/Mobility-Radeon-HD-5870.yaml | 2 + .../TeraScale-2/Radeon-E6460.yaml | 2 + .../TeraScale-2/Radeon-E6465.yaml | 2 + .../TeraScale-2/Radeon-E6760-MXM.yaml | 2 + .../TeraScale-2/Radeon-E6760-PCIe.yaml | 2 + .../TeraScale-2/Radeon-HD-5450-PCI.yaml | 2 + .../TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml | 2 + .../TeraScale-2/Radeon-HD-5450.yaml | 2 + .../TeraScale-2/Radeon-HD-5470.yaml | 2 + .../TeraScale-2/Radeon-HD-5490.yaml | 2 + .../TeraScale-2/Radeon-HD-5530.yaml | 2 + .../TeraScale-2/Radeon-HD-5550.yaml | 2 + .../TeraScale-2/Radeon-HD-5570-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-5570.yaml | 2 + .../TeraScale-2/Radeon-HD-5630.yaml | 2 + .../Radeon-HD-5670-640SP-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-5670.yaml | 2 + .../TeraScale-2/Radeon-HD-5690.yaml | 2 + .../TeraScale-2/Radeon-HD-5730.yaml | 2 + .../TeraScale-2/Radeon-HD-5750.yaml | 2 + .../Radeon-HD-5770-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-5770-X2.yaml | 2 + .../TeraScale-2/Radeon-HD-5770.yaml | 2 + .../TeraScale-2/Radeon-HD-5830.yaml | 2 + .../TeraScale-2/Radeon-HD-5850.yaml | 2 + .../Radeon-HD-5870-Eyefinity-6.yaml | 2 + .../Radeon-HD-5870-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-5870.yaml | 2 + .../TeraScale-2/Radeon-HD-5950.yaml | 2 + .../TeraScale-2/Radeon-HD-5970.yaml | 2 + .../TeraScale-2/Radeon-HD-6230.yaml | 2 + .../TeraScale-2/Radeon-HD-6250-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6250.yaml | 2 + .../TeraScale-2/Radeon-HD-6290-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6290.yaml | 2 + .../TeraScale-2/Radeon-HD-6310-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6320-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6330M.yaml | 2 + .../TeraScale-2/Radeon-HD-6350.yaml | 2 + .../TeraScale-2/Radeon-HD-6350A.yaml | 2 + .../TeraScale-2/Radeon-HD-6350M.yaml | 2 + .../TeraScale-2/Radeon-HD-6370D-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6370M.yaml | 2 + .../TeraScale-2/Radeon-HD-6380G-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6390.yaml | 2 + .../TeraScale-2/Radeon-HD-6410D-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6430M.yaml | 2 + .../TeraScale-2/Radeon-HD-6450-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-6450.yaml | 2 + .../TeraScale-2/Radeon-HD-6450A.yaml | 2 + .../TeraScale-2/Radeon-HD-6450M.yaml | 2 + .../TeraScale-2/Radeon-HD-6470M.yaml | 2 + .../TeraScale-2/Radeon-HD-6480G-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6490.yaml | 2 + .../Radeon-HD-6490M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6490M.yaml | 2 + .../TeraScale-2/Radeon-HD-6510.yaml | 2 + .../TeraScale-2/Radeon-HD-6520G-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6530.yaml | 2 + .../TeraScale-2/Radeon-HD-6530D-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6530M.yaml | 2 + .../TeraScale-2/Radeon-HD-6550A.yaml | 2 + .../TeraScale-2/Radeon-HD-6550D-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6550M.yaml | 2 + .../TeraScale-2/Radeon-HD-6570-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-6570.yaml | 2 + .../Radeon-HD-6570M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6570M.yaml | 2 + .../TeraScale-2/Radeon-HD-6610.yaml | 2 + .../TeraScale-2/Radeon-HD-6610M.yaml | 2 + .../TeraScale-2/Radeon-HD-6620G-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-6625M.yaml | 2 + .../Radeon-HD-6630M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6630M.yaml | 2 + .../TeraScale-2/Radeon-HD-6650A.yaml | 2 + .../TeraScale-2/Radeon-HD-6650M.yaml | 2 + .../TeraScale-2/Radeon-HD-6670.yaml | 2 + .../TeraScale-2/Radeon-HD-6670A.yaml | 2 + .../TeraScale-2/Radeon-HD-6730M.yaml | 2 + .../TeraScale-2/Radeon-HD-6750.yaml | 2 + .../Radeon-HD-6750M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6750M.yaml | 2 + .../Radeon-HD-6770-Green-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6770.yaml | 2 + .../Radeon-HD-6770M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6770M.yaml | 2 + .../TeraScale-2/Radeon-HD-6790.yaml | 2 + .../TeraScale-2/Radeon-HD-6830M.yaml | 2 + .../Radeon-HD-6850-1440SP-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6850-X2.yaml | 2 + .../TeraScale-2/Radeon-HD-6850.yaml | 2 + .../TeraScale-2/Radeon-HD-6850M.yaml | 2 + .../Radeon-HD-6870-1600SP-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6870-X2.yaml | 2 + .../TeraScale-2/Radeon-HD-6870.yaml | 2 + .../TeraScale-2/Radeon-HD-6870M.yaml | 2 + .../TeraScale-2/Radeon-HD-6950M.yaml | 2 + .../Radeon-HD-6970M-Mac-Edition.yaml | 2 + .../TeraScale-2/Radeon-HD-6970M-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-HD-6970M-X2.yaml | 2 + .../TeraScale-2/Radeon-HD-6970M.yaml | 2 + .../TeraScale-2/Radeon-HD-6990M-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-HD-6990M.yaml | 2 + .../TeraScale-2/Radeon-HD-7290-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-7310-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-7330M.yaml | 2 + .../TeraScale-2/Radeon-HD-7340-IGP.yaml | 2 + .../TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml | 2 + .../TeraScale-2/Radeon-HD-7350-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7350M.yaml | 2 + .../TeraScale-2/Radeon-HD-7370M.yaml | 2 + .../TeraScale-2/Radeon-HD-7410M.yaml | 2 + .../TeraScale-2/Radeon-HD-7430M.yaml | 2 + .../TeraScale-2/Radeon-HD-7450-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7450A.yaml | 2 + .../TeraScale-2/Radeon-HD-7450M.yaml | 2 + .../TeraScale-2/Radeon-HD-7470-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7470A.yaml | 2 + .../TeraScale-2/Radeon-HD-7470M.yaml | 2 + .../TeraScale-2/Radeon-HD-7490M.yaml | 2 + .../TeraScale-2/Radeon-HD-7510-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7510M.yaml | 2 + .../TeraScale-2/Radeon-HD-7530M.yaml | 2 + .../TeraScale-2/Radeon-HD-7550M.yaml | 2 + .../TeraScale-2/Radeon-HD-7570-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7570.yaml | 2 + .../TeraScale-2/Radeon-HD-7570M.yaml | 2 + .../TeraScale-2/Radeon-HD-7590M.yaml | 2 + .../TeraScale-2/Radeon-HD-7610M.yaml | 2 + .../TeraScale-2/Radeon-HD-7630M.yaml | 2 + .../TeraScale-2/Radeon-HD-7650A.yaml | 2 + .../TeraScale-2/Radeon-HD-7650M-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-HD-7650M.yaml | 2 + .../TeraScale-2/Radeon-HD-7670-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-7670A.yaml | 2 + .../TeraScale-2/Radeon-HD-7670M-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-HD-7670M.yaml | 2 + .../TeraScale-2/Radeon-HD-7690M-Rebrand.yaml | 2 + .../Radeon-HD-7690M-XT-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-HD-7690M-XT.yaml | 2 + .../TeraScale-2/Radeon-HD-7690M.yaml | 2 + .../TeraScale-2/Radeon-HD-7720-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8350-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8450-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8470-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8490-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8510-OEM.yaml | 2 + .../TeraScale-2/Radeon-HD-8550-OEM.yaml | 2 + .../Radeon-HD-8570-OEM-Rebrand.yaml | 2 + .../TeraScale-2/Radeon-R5-220-OEM.yaml | 2 + .../TeraScale-2/Radeon-R5-230-OEM.yaml | 2 + .../TeraScale-2/Radeon-R5-230.yaml | 2 + .../TeraScale-2/Radeon-R5-235-OEM.yaml | 2 + .../TeraScale-2/Radeon-R5-235X-OEM.yaml | 2 + .../TeraScale-2/Radeon-R5-310-OEM.yaml | 2 + .../TeraScale-2/Radeon-R5-A220.yaml | 2 + .../GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml | 2 + specs/GPUs-CONSUMER/TeraScale-3.yaml | 1 + .../TeraScale-3/FirePro-A300.yaml | 2 + .../TeraScale-3/FirePro-A320.yaml | 2 + .../TeraScale-3/FirePro-V5900.yaml | 2 + .../TeraScale-3/FirePro-V7900-SDI.yaml | 2 + .../TeraScale-3/FirePro-V7900.yaml | 2 + .../TeraScale-3/Radeon-HD-6930.yaml | 2 + .../TeraScale-3/Radeon-HD-6950.yaml | 2 + .../TeraScale-3/Radeon-HD-6970-X2.yaml | 2 + .../TeraScale-3/Radeon-HD-6970.yaml | 2 + .../TeraScale-3/Radeon-HD-6990.yaml | 2 + .../TeraScale-3/Radeon-HD-7400G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7420G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7480D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7500G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7520G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7540D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7560D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7560G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7600G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7620G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7640G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7660D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-7660G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8310G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8350G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8370D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8410G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8450G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8470D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8510G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8550D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8550G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8570D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8610G-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8650D-IGP.yaml | 2 + .../TeraScale-3/Radeon-HD-8650G-IGP.yaml | 2 + specs/GPUs-CONSUMER/TeraScale.yaml | 1 + .../GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml | 2 + .../TeraScale/FireMV-2260-PCIe-x1.yaml | 2 + .../GPUs-CONSUMER/TeraScale/FireMV-2260.yaml | 2 + .../TeraScale/FirePro-2260-PCI.yaml | 2 + .../FirePro-2450-Multi-View-PCIe-x1.yaml | 2 + .../TeraScale/FirePro-2450-Multi-View.yaml | 2 + .../TeraScale/FirePro-M5725.yaml | 2 + .../TeraScale/FirePro-M7740.yaml | 2 + .../TeraScale/FirePro-RG220.yaml | 2 + .../TeraScale/FirePro-RG220A.yaml | 2 + .../TeraScale/FirePro-V3700.yaml | 2 + .../TeraScale/FirePro-V3750.yaml | 2 + .../TeraScale/FirePro-V5700.yaml | 2 + .../TeraScale/FirePro-V7750.yaml | 2 + .../TeraScale/FirePro-V7760.yaml | 2 + .../TeraScale/FirePro-V7770.yaml | 2 + .../TeraScale/FirePro-V8700-Duo.yaml | 2 + .../TeraScale/FirePro-V8700.yaml | 2 + .../TeraScale/FirePro-V8750.yaml | 2 + .../TeraScale/FireStream-9170.yaml | 2 + .../TeraScale/FireStream-9250.yaml | 2 + .../TeraScale/FireStream-9270.yaml | 2 + .../TeraScale/Mobility-FireGL-V5600.yaml | 2 + .../TeraScale/Mobility-FireGL-V5700.yaml | 2 + .../TeraScale/Mobility-FireGL-V5725.yaml | 2 + ...obility-Radeon-HD-2400-XT-Mac-Edition.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-2400-XT.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-2400.yaml | 2 + ...obility-Radeon-HD-2600-XT-Mac-Edition.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-2600-XT.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-2600.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-2700.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3410.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3430.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3450.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3470.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3650.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3670.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3850-X2.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3850.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3870-X2.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-3870.yaml | 2 + .../Mobility-Radeon-HD-4100-IGP.yaml | 2 + .../Mobility-Radeon-HD-4200-IGP.yaml | 2 + .../Mobility-Radeon-HD-4225-IGP.yaml | 2 + .../Mobility-Radeon-HD-4250-IGP.yaml | 2 + .../Mobility-Radeon-HD-4270-IGP.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4330.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4350.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4530.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4550.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4570.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4650.yaml | 2 + .../Mobility-Radeon-HD-4670-Mac-Edition.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4670.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4830.yaml | 2 + .../Mobility-Radeon-HD-4850-Mac-Edition.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4850-X2.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4850.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4860.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4870-X2.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-4870.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-5145.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-5165.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-530v.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-540v.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-545v.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-550v.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-560v.yaml | 2 + .../TeraScale/Mobility-Radeon-HD-565v.yaml | 2 + .../TeraScale/Radeon-3000-IGP.yaml | 2 + .../TeraScale/Radeon-3100-IGP.yaml | 2 + .../TeraScale/Radeon-3100-Mobile-IGP.yaml | 2 + .../GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml | 2 + .../TeraScale/Radeon-E4690-MXM.yaml | 2 + .../TeraScale/Radeon-E4690-PCIe.yaml | 2 + .../TeraScale/Radeon-HD-2350-PRO.yaml | 2 + .../TeraScale/Radeon-HD-2400-PRO-AGP.yaml | 2 + .../TeraScale/Radeon-HD-2400-PRO-PCI.yaml | 2 + .../TeraScale/Radeon-HD-2400-PRO.yaml | 2 + .../TeraScale/Radeon-HD-2400-XT.yaml | 2 + .../TeraScale/Radeon-HD-2400.yaml | 2 + .../TeraScale/Radeon-HD-2600-PRO-AGP.yaml | 2 + .../TeraScale/Radeon-HD-2600-PRO.yaml | 2 + .../TeraScale/Radeon-HD-2600-XT-AGP.yaml | 2 + .../Radeon-HD-2600-XT-Mac-Edition.yaml | 2 + .../TeraScale/Radeon-HD-2600-XT-X2.yaml | 2 + .../TeraScale/Radeon-HD-2600-XT.yaml | 2 + .../TeraScale/Radeon-HD-2900-GT.yaml | 2 + .../TeraScale/Radeon-HD-2900-PRO.yaml | 2 + .../TeraScale/Radeon-HD-2900-XT.yaml | 2 + .../TeraScale/Radeon-HD-2900-XTX.yaml | 2 + .../TeraScale/Radeon-HD-2950-PRO.yaml | 2 + .../TeraScale/Radeon-HD-2950-XTX.yaml | 2 + .../TeraScale/Radeon-HD-3200-IGP.yaml | 2 + .../TeraScale/Radeon-HD-3200-Mobile-IGP.yaml | 2 + .../TeraScale/Radeon-HD-3300-IGP.yaml | 2 + .../TeraScale/Radeon-HD-3410.yaml | 2 + .../TeraScale/Radeon-HD-3450-AGP.yaml | 2 + .../TeraScale/Radeon-HD-3450-PCI.yaml | 2 + .../TeraScale/Radeon-HD-3450-X2.yaml | 2 + .../TeraScale/Radeon-HD-3450.yaml | 2 + .../TeraScale/Radeon-HD-3470.yaml | 2 + .../TeraScale/Radeon-HD-3550.yaml | 2 + .../TeraScale/Radeon-HD-3570.yaml | 2 + .../TeraScale/Radeon-HD-3610.yaml | 2 + .../TeraScale/Radeon-HD-3650-AGP.yaml | 2 + .../TeraScale/Radeon-HD-3650.yaml | 2 + .../TeraScale/Radeon-HD-3690.yaml | 2 + .../TeraScale/Radeon-HD-3730.yaml | 2 + .../TeraScale/Radeon-HD-3750.yaml | 2 + .../TeraScale/Radeon-HD-3830.yaml | 2 + .../TeraScale/Radeon-HD-3850-AGP.yaml | 2 + .../TeraScale/Radeon-HD-3850-X2.yaml | 2 + .../TeraScale/Radeon-HD-3850-X3.yaml | 2 + .../TeraScale/Radeon-HD-3850.yaml | 2 + .../TeraScale/Radeon-HD-3870-AGP.yaml | 2 + .../TeraScale/Radeon-HD-3870-Mac-Edition.yaml | 2 + .../TeraScale/Radeon-HD-3870-X2.yaml | 2 + .../TeraScale/Radeon-HD-3870.yaml | 2 + .../TeraScale/Radeon-HD-4200-IGP.yaml | 2 + .../TeraScale/Radeon-HD-4250-IGP.yaml | 2 + .../TeraScale/Radeon-HD-4250.yaml | 2 + .../TeraScale/Radeon-HD-4290-IGP.yaml | 2 + .../TeraScale/Radeon-HD-4350-AGP.yaml | 2 + .../TeraScale/Radeon-HD-4350-PCI.yaml | 2 + .../TeraScale/Radeon-HD-4350-PCIe-x1.yaml | 2 + .../TeraScale/Radeon-HD-4350.yaml | 2 + .../TeraScale/Radeon-HD-4450.yaml | 2 + .../TeraScale/Radeon-HD-4520.yaml | 2 + .../TeraScale/Radeon-HD-4550.yaml | 2 + .../TeraScale/Radeon-HD-4570-Rebrand.yaml | 2 + .../TeraScale/Radeon-HD-4570.yaml | 2 + .../TeraScale/Radeon-HD-4580.yaml | 2 + .../TeraScale/Radeon-HD-4650-AGP.yaml | 2 + .../TeraScale/Radeon-HD-4650.yaml | 2 + .../TeraScale/Radeon-HD-4670-AGP.yaml | 2 + .../TeraScale/Radeon-HD-4670-X2.yaml | 2 + .../TeraScale/Radeon-HD-4670.yaml | 2 + .../TeraScale/Radeon-HD-4700.yaml | 2 + .../TeraScale/Radeon-HD-4710.yaml | 2 + .../TeraScale/Radeon-HD-4720.yaml | 2 + .../TeraScale/Radeon-HD-4730-OEM.yaml | 2 + .../TeraScale/Radeon-HD-4730.yaml | 2 + .../TeraScale/Radeon-HD-4750.yaml | 2 + .../TeraScale/Radeon-HD-4770.yaml | 2 + .../TeraScale/Radeon-HD-4810.yaml | 2 + .../TeraScale/Radeon-HD-4830.yaml | 2 + .../TeraScale/Radeon-HD-4850-X2.yaml | 2 + .../TeraScale/Radeon-HD-4850.yaml | 2 + .../TeraScale/Radeon-HD-4855.yaml | 2 + .../TeraScale/Radeon-HD-4860.yaml | 2 + .../TeraScale/Radeon-HD-4870-Mac-Edition.yaml | 2 + .../TeraScale/Radeon-HD-4870-X2.yaml | 2 + .../TeraScale/Radeon-HD-4870.yaml | 2 + .../TeraScale/Radeon-HD-4890.yaml | 2 + .../TeraScale/Radeon-Xpress-2100-IGP.yaml | 2 + .../TeraScale/Xbox-360-E-GPU.yaml | 2 + .../TeraScale/Xbox-360-GPU-65nm.yaml | 2 + .../TeraScale/Xbox-360-GPU-80nm.yaml | 2 + .../TeraScale/Xbox-360-GPU-90nm.yaml | 2 + .../TeraScale/Xbox-360-S-GPU.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0.yaml | 1 + .../Tesla-2.0/GeForce-205-OEM.yaml | 2 + .../Tesla-2.0/GeForce-210-OEM.yaml | 2 + .../Tesla-2.0/GeForce-210-PCI.yaml | 2 + .../Tesla-2.0/GeForce-210-Rev.-2.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml | 2 + .../Tesla-2.0/GeForce-310-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml | 2 + .../Tesla-2.0/GeForce-315-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml | 2 + .../Tesla-2.0/GeForce-320M-Mac-Edition.yaml | 2 + .../Tesla-2.0/GeForce-405-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml | 2 + .../Tesla-2.0/GeForce-505-OEM.yaml | 2 + .../Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml | 2 + .../Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml | 2 + .../Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml | 2 + .../Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml | 2 + .../Tesla-2.0/GeForce-G105M.yaml | 2 + .../Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml | 2 + .../Tesla-2.0/GeForce-G210M.yaml | 2 + .../Tesla-2.0/GeForce-GT-220-OEM.yaml | 2 + .../Tesla-2.0/GeForce-GT-220.yaml | 2 + .../Tesla-2.0/GeForce-GT-230M.yaml | 2 + .../Tesla-2.0/GeForce-GT-240.yaml | 2 + .../Tesla-2.0/GeForce-GT-240M.yaml | 2 + .../Tesla-2.0/GeForce-GT-320-OEM.yaml | 2 + .../Tesla-2.0/GeForce-GT-325M.yaml | 2 + .../Tesla-2.0/GeForce-GT-330-OEM.yaml | 2 + .../GeForce-GT-330M-Mac-Edition.yaml | 2 + .../Tesla-2.0/GeForce-GT-330M.yaml | 2 + .../Tesla-2.0/GeForce-GT-335M.yaml | 2 + .../Tesla-2.0/GeForce-GT-340-OEM.yaml | 2 + .../Tesla-2.0/GeForce-GT-415-OEM.yaml | 2 + .../Tesla-2.0/GeForce-GTS-250M.yaml | 2 + .../Tesla-2.0/GeForce-GTS-260M.yaml | 2 + .../Tesla-2.0/GeForce-GTS-350M.yaml | 2 + .../Tesla-2.0/GeForce-GTS-360M.yaml | 2 + .../GeForce-GTX-260-Core-216-Rev.-2.yaml | 2 + .../Tesla-2.0/GeForce-GTX-260-Core-216.yaml | 2 + .../Tesla-2.0/GeForce-GTX-260-OEM.yaml | 2 + .../Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml | 2 + .../Tesla-2.0/GeForce-GTX-260.yaml | 2 + .../Tesla-2.0/GeForce-GTX-275.yaml | 2 + .../Tesla-2.0/GeForce-GTX-280.yaml | 2 + .../GeForce-GTX-285-Mac-Edition.yaml | 2 + .../Tesla-2.0/GeForce-GTX-285-X2.yaml | 2 + .../Tesla-2.0/GeForce-GTX-285.yaml | 2 + .../Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml | 2 + .../Tesla-2.0/GeForce-GTX-295.yaml | 2 + .../GeForce-GTX-470-PhysX-Edition.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml | 2 + specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml | 2 + .../Tesla-2.0/Quadro-FX-1800M.yaml | 2 + .../Tesla-2.0/Quadro-FX-380-LP.yaml | 2 + .../Tesla-2.0/Quadro-FX-3800.yaml | 2 + .../Tesla-2.0/Quadro-FX-380M.yaml | 2 + .../Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml | 2 + .../Tesla-2.0/Quadro-FX-4800.yaml | 2 + .../Tesla-2.0/Quadro-FX-5800.yaml | 2 + .../Tesla-2.0/Quadro-FX-880M.yaml | 2 + .../Tesla-2.0/Quadro-Plex-2200-D2.yaml | 2 + .../Tesla-2.0/Quadro-Plex-2200-S4.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml | 2 + .../GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml | 2 + specs/GPUs-CONSUMER/Tesla.yaml | 1 + .../Tesla/GeForce-8100-+-nForce-720a.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml | 2 + .../Tesla/GeForce-8200M-G-mGPU-AMD.yaml | 2 + .../Tesla/GeForce-8200M-G-mGPU-Intel.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml | 2 + .../Tesla/GeForce-8400-GS-PCI.yaml | 2 + .../Tesla/GeForce-8400-GS-Rev.-2.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml | 2 + .../Tesla/GeForce-8600-GT-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml | 2 + .../Tesla/GeForce-8600-GTS-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml | 2 + .../Tesla/GeForce-8800-GS-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml | 2 + .../Tesla/GeForce-8800-GT-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml | 2 + .../Tesla/GeForce-8800-GTS-320.yaml | 2 + .../Tesla/GeForce-8800-GTS-512.yaml | 2 + .../Tesla/GeForce-8800-GTS-640.yaml | 2 + .../Tesla/GeForce-8800-GTS-Core-112.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml | 2 + .../Tesla/GeForce-8800-Ultra.yaml | 2 + .../Tesla/GeForce-8800M-GTS.yaml | 2 + .../Tesla/GeForce-8800M-GTX.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml | 2 + .../Tesla/GeForce-9100M-G-mGPU-AMD.yaml | 2 + .../Tesla/GeForce-9100M-G-mGPU-Intel.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml | 2 + .../Tesla/GeForce-9200M-GS-GDDR3.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml | 2 + .../Tesla/GeForce-9300-+-nForce-730i.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml | 2 + .../Tesla/GeForce-9300M-GS-GDDR3.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml | 2 + .../Tesla/GeForce-9400-GT-PCI.yaml | 2 + .../Tesla/GeForce-9400-GT-Rev.-2.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml | 2 + .../Tesla/GeForce-9500-GS-Rev.-2.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml | 2 + .../Tesla/GeForce-9500-GT-Mac-Edition.yaml | 2 + .../Tesla/GeForce-9500-GT-Rev.-2.yaml | 2 + .../Tesla/GeForce-9500-GT-Rev.-3.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml | 2 + .../Tesla/GeForce-9600-GS-OEM.yaml | 2 + .../Tesla/GeForce-9600-GSO-512.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml | 2 + .../Tesla/GeForce-9600-GT-Green-Edition.yaml | 2 + .../Tesla/GeForce-9600-GT-Mac-Edition.yaml | 2 + .../Tesla/GeForce-9600-GT-Rev.-2.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml | 2 + .../Tesla/GeForce-9600M-GT-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml | 2 + .../Tesla/GeForce-9700M-GTS.yaml | 2 + .../Tesla/GeForce-9800-GT-Rebrand.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml | 2 + .../Tesla/GeForce-9800-GTX+.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml | 2 + .../Tesla/GeForce-9800M-GTS.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml | 2 + .../Tesla/GeForce-GT-120-Mac-Edition.yaml | 2 + .../Tesla/GeForce-GT-120-OEM.yaml | 2 + .../Tesla/GeForce-GT-120M-Mac-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml | 2 + .../Tesla/GeForce-GT-130-Mac-Edition.yaml | 2 + .../Tesla/GeForce-GT-130-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml | 2 + .../Tesla/GeForce-GT-140-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml | 2 + .../Tesla/GeForce-GT-230-OEM.yaml | 2 + specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml | 2 + .../Tesla/GeForce-GT-240M-LE.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml | 2 + .../Tesla/GeForce-GTS-150-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml | 2 + .../Tesla/GeForce-GTS-240-OEM.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml | 2 + .../Tesla/GeForce-GTX-275-PhysX-Edition.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml | 2 + .../GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/ION-LE.yaml | 2 + specs/GPUs-CONSUMER/Tesla/ION.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml | 2 + .../Tesla/Quadro-FX-1700-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml | 2 + .../Tesla/Quadro-FX-4600-SDI.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml | 2 + .../Tesla/Quadro-FX-4700-X2.yaml | 2 + .../Tesla/Quadro-FX-5600-Mac-Edition.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml | 2 + .../GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml | 2 + .../Tesla/Quadro-Plex-1000-Model-IV.yaml | 2 + .../Tesla/Quadro-Plex-2100-D4.yaml | 2 + .../Tesla/Quadro-Plex-2100-S4.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml | 2 + specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml | 2 + specs/GPUs-CONSUMER/Turing.yaml | 1 + specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml | 2 + specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml | 2 + specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml | 2 + .../GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml | 2 + .../GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml | 2 + .../GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml | 2 + .../GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml | 2 + .../Turing/GeForce-GTX-1630.yaml | 2 + .../Turing/GeForce-GTX-1650-GDDR6.yaml | 2 + .../Turing/GeForce-GTX-1650-Max-Q.yaml | 2 + .../Turing/GeForce-GTX-1650-Mobile.yaml | 2 + .../Turing/GeForce-GTX-1650-SUPER.yaml | 2 + .../Turing/GeForce-GTX-1650-TU106.yaml | 2 + .../Turing/GeForce-GTX-1650-TU116.yaml | 2 + .../Turing/GeForce-GTX-1650-Ti-Max-Q.yaml | 2 + .../Turing/GeForce-GTX-1650-Ti-Mobile.yaml | 2 + .../Turing/GeForce-GTX-1650.yaml | 2 + .../Turing/GeForce-GTX-1660-SUPER.yaml | 2 + .../Turing/GeForce-GTX-1660-Ti-Max-Q.yaml | 2 + .../Turing/GeForce-GTX-1660-Ti-Mobile.yaml | 2 + .../Turing/GeForce-GTX-1660-Ti.yaml | 2 + .../Turing/GeForce-GTX-1660.yaml | 2 + .../Turing/GeForce-MX450-12W.yaml | 2 + .../Turing/GeForce-MX450-30.5W-10Gbps.yaml | 2 + .../Turing/GeForce-MX450-30.5W-8Gbps.yaml | 2 + specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml | 2 + .../Turing/GeForce-RTX-2060-12-GB.yaml | 2 + .../GeForce-RTX-2060-Max-Q-Refresh.yaml | 2 + .../Turing/GeForce-RTX-2060-Max-Q.yaml | 2 + .../GeForce-RTX-2060-Mobile-Refresh.yaml | 2 + .../Turing/GeForce-RTX-2060-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2060-SUPER-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2060-SUPER.yaml | 2 + .../Turing/GeForce-RTX-2060-TU104.yaml | 2 + .../Turing/GeForce-RTX-2060.yaml | 2 + .../GeForce-RTX-2070-Max-Q-Refresh.yaml | 2 + .../Turing/GeForce-RTX-2070-Max-Q.yaml | 2 + .../GeForce-RTX-2070-Mobile-Refresh.yaml | 2 + .../Turing/GeForce-RTX-2070-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml | 2 + .../Turing/GeForce-RTX-2070-SUPER-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2070-SUPER.yaml | 2 + .../Turing/GeForce-RTX-2070.yaml | 2 + .../GeForce-RTX-2080-Engineering-Sample.yaml | 2 + .../Turing/GeForce-RTX-2080-Max-Q.yaml | 2 + .../Turing/GeForce-RTX-2080-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml | 2 + .../Turing/GeForce-RTX-2080-SUPER-Mobile.yaml | 2 + .../Turing/GeForce-RTX-2080-SUPER.yaml | 2 + .../Turing/GeForce-RTX-2080-Ti-12-GB.yaml | 2 + .../Turing/GeForce-RTX-2080-Ti.yaml | 2 + .../Turing/GeForce-RTX-2080.yaml | 2 + .../Turing/Quadro-RTX-3000-Max-Q.yaml | 2 + .../Quadro-RTX-3000-Mobile-Refresh.yaml | 2 + .../Turing/Quadro-RTX-3000-Mobile.yaml | 2 + .../Turing/Quadro-RTX-3000-X2-Mobile.yaml | 2 + .../Turing/Quadro-RTX-4000-Max-Q.yaml | 2 + .../Turing/Quadro-RTX-4000-Mobile.yaml | 2 + .../GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml | 2 + .../Turing/Quadro-RTX-5000-Max-Q.yaml | 2 + .../Quadro-RTX-5000-Mobile-Refresh.yaml | 2 + .../Turing/Quadro-RTX-5000-Mobile.yaml | 2 + .../Turing/Quadro-RTX-5000-X2-Mobile.yaml | 2 + .../GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml | 2 + .../Turing/Quadro-RTX-6000-Mobile.yaml | 2 + .../Turing/Quadro-RTX-6000-Passive.yaml | 2 + .../GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml | 2 + .../Turing/Quadro-RTX-8000-Passive.yaml | 2 + .../GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml | 2 + .../Turing/Quadro-T1000-Max-Q.yaml | 2 + .../Turing/Quadro-T1000-Mobile-GDDR6.yaml | 2 + .../Turing/Quadro-T1000-Mobile.yaml | 2 + .../Turing/Quadro-T1200-Max-Q.yaml | 2 + .../Turing/Quadro-T1200-Mobile.yaml | 2 + .../Turing/Quadro-T2000-Max-Q.yaml | 2 + .../Turing/Quadro-T2000-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml | 2 + specs/GPUs-CONSUMER/Turing/T1000.yaml | 2 + specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml | 2 + specs/GPUs-CONSUMER/Turing/T400.yaml | 2 + specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml | 2 + specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml | 2 + specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml | 2 + specs/GPUs-CONSUMER/Turing/T600.yaml | 2 + specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml | 2 + .../GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml | 2 + specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml | 2 + .../GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml | 2 + specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml | 2 + specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml | 1 + .../All-In-Wonder-2006-PCIe-Edition.yaml | 2 + .../All-In-Wonder-X1800-XL.yaml | 2 + .../All-In-Wonder-X1900.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3300.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3350.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3400.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V5200.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7200.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7300.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7350.yaml | 2 + .../FireMV-2250-PCIe-x1.yaml | 2 + .../Ultra-Threaded-SE/FireMV-2250.yaml | 2 + .../Mobility-FireGL-V5200.yaml | 2 + .../Mobility-FireGL-V5250.yaml | 2 + .../Mobility-Radeon-HD-2300.yaml | 2 + .../Mobility-Radeon-X1300.yaml | 2 + .../Mobility-Radeon-X1350.yaml | 2 + .../Mobility-Radeon-X1400.yaml | 2 + .../Mobility-Radeon-X1450.yaml | 2 + .../Mobility-Radeon-X1600-Mac-Edition.yaml | 2 + .../Mobility-Radeon-X1600.yaml | 2 + .../Mobility-Radeon-X1700.yaml | 2 + .../Mobility-Radeon-X1800-XT.yaml | 2 + .../Mobility-Radeon-X1800.yaml | 2 + .../Mobility-Radeon-X1900.yaml | 2 + .../Mobility-Radeon-X2300-HD.yaml | 2 + .../Mobility-Radeon-X2300.yaml | 2 + .../Mobility-Radeon-X2500.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-CE.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-LE.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-PCI.yaml | 2 + .../Radeon-X1300-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-PRO.yaml | 2 + .../Radeon-X1300-XT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550-PCI.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550.yaml | 2 + .../Radeon-X1600-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-PRO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-SE.yaml | 2 + .../Radeon-X1600-XT-Dual.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-GT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-GTO.yaml | 2 + .../Radeon-X1650-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-PRO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-SE.yaml | 2 + .../Radeon-X1650-XT-AGP.yaml | 2 + .../Radeon-X1650-XT-Dual.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1700-FSC.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1700-SE.yaml | 2 + .../Radeon-X1800-CrossFire-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-GTO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-XL.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-XT.yaml | 2 + .../Radeon-X1900-CrossFire-Edition.yaml | 2 + .../Radeon-X1900-G5-Mac-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-GT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-XTX.yaml | 2 + .../Radeon-X1950-CrossFire-Edition.yaml | 2 + .../Radeon-X1950-GT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-GT.yaml | 2 + .../Radeon-X1950-PRO-AGP.yaml | 2 + .../Radeon-X1950-PRO-DUAL.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-PRO.yaml | 2 + .../Radeon-X1950-XT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-XT.yaml | 2 + .../Radeon-X1950-XTX-Uber-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-XTX.yaml | 2 + .../Ultra-Threaded-SE/Stream-Processor.yaml | 2 + .../Ultra-Threaded-SE/Wii-GPU.yaml | 2 + specs/GPUs-CONSUMER/VLIW-Vec4.yaml | 1 + .../GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml | 2 + .../GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml | 2 + .../GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml | 2 + .../GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml | 2 + specs/GPUs-CONSUMER/Volta.yaml | 1 + .../Volta/Jetson-AGX-Xavier-16-GB.yaml | 2 + .../Volta/Jetson-AGX-Xavier-32-GB.yaml | 2 + .../Volta/Jetson-Xavier-NX-16-GB.yaml | 2 + .../Volta/Jetson-Xavier-NX-8-GB.yaml | 2 + specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml | 2 + .../Volta/TITAN-V-CEO-Edition.yaml | 2 + specs/GPUs-CONSUMER/Volta/TITAN-V.yaml | 2 + .../GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml | 2 + .../GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml | 2 + .../Volta/Tesla-V100-DGXS-16-GB.yaml | 2 + .../Volta/Tesla-V100-DGXS-32-GB.yaml | 2 + .../GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml | 2 + .../Volta/Tesla-V100-PCIe-16-GB.yaml | 2 + .../Volta/Tesla-V100-PCIe-32-GB.yaml | 2 + .../Volta/Tesla-V100-SXM2-16-GB.yaml | 2 + .../Volta/Tesla-V100-SXM2-32-GB.yaml | 2 + .../Volta/Tesla-V100-SXM3-32-GB.yaml | 2 + .../Volta/Tesla-V100S-PCIe-32-GB.yaml | 2 + specs/GPUs-CONSUMER/Voodoo-Scalable.yaml | 1 + .../Voodoo-Scalable/Spectre-1000.yaml | 2 + .../Voodoo-Scalable/Spectre-2000.yaml | 2 + .../Voodoo-Scalable/Spectre-3000.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml | 2 + .../Voodoo4-2-4200-PCI-16-MB.yaml | 2 + .../Voodoo4-2-4200-PCI-32-MB.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4500-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4500-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4800-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5000-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5500-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5500-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo5-6000.yaml | 2 + specs/GPUs-CONSUMER/Wonder.yaml | 1 + .../Wonder/Color-Emulation-Card.yaml | 2 + .../GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml | 2 + .../GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml | 2 + .../GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml | 2 + .../Wonder/Graphics-Solution-Plus.yaml | 2 + .../Wonder/Graphics-Solution.yaml | 2 + .../Wonder/VGA-Improved-Performance.yaml | 2 + specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml | 2 + .../GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml | 2 + specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml | 2 + specs/GPUs-CONSUMER/XG4.yaml | 1 + specs/GPUs-CONSUMER/XG4/Volari-8300.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml | 2 + .../XG4/Volari-Duo-V5-Ultra.yaml | 2 + .../XG4/Volari-Duo-V8-Ultra.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V3.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V5.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml | 2 + specs/GPUs-CONSUMER/XG4/Volari-V8.yaml | 2 + specs/GPUs-CONSUMER/Xe-LPG.yaml | 1 + .../Xe-LPG/Arc-Graphics-112EU-Mobile.yaml | 2 + .../Xe-LPG/Arc-Graphics-128EU-Mobile.yaml | 2 + .../Xe-LPG/Arc-Graphics-48EU-Mobile.yaml | 2 + .../Xe-LPG/Arc-Graphics-64EU-Mobile.yaml | 2 + specs/GPUs-CONSUMER/i740.yaml | 3 +- specs/GPUs-CONSUMER/i740/i740-8-MB.yaml | 2 + specs/GPUs-CONSUMER/i740/i740-Graphics.yaml | 2 + specs/GPUs-CONSUMER/i740/i740.yaml | 4 +- src/css/part-selector.css | 3 + 2855 files changed, 5711 insertions(+), 2 deletions(-) delete mode 100644 gpu-arch-vendor.json create mode 100644 gpu-arch-vendor.yml diff --git a/gpu-arch-vendor.json b/gpu-arch-vendor.json deleted file mode 100644 index e69de29b..00000000 diff --git a/gpu-arch-vendor.yml b/gpu-arch-vendor.yml new file mode 100644 index 00000000..6c9e80be --- /dev/null +++ b/gpu-arch-vendor.yml @@ -0,0 +1,82 @@ +vendor={ + 'Mach':'AMD', + 'Rage 2':'ATI', + 'Rage 3':'ATI', + 'Ampere':'Nvidia', + 'GCN 1.0':'AMD', + 'Rage 4':'ATI', + 'R300':'ATI', + 'Ultra-Threaded SE':'ATI', + 'Rage 7':'ATI', + 'Rage 6':'ATI', + 'R400':'ATI', + 'Generation 12.7':'Intel', + 'Xe-LPG':'Intel', + 'Generation 12.5':'Intel', + 'GCN 5.0':'AMD', + 'Knights':'Intel', + 'Turing':'Nvidia', + 'Wonder':'ATI', + 'Generation 2.0':'Intel', + 'IBM':'ATI', + 'TeraScale':'AMD', + 'TeraScale 2':'AMD', + 'TeraScale 3':'AMD', + 'GCN 2.0':'AMD', + 'GCN 3.0':'AMD', + 'Rage 5':'ATI', + 'Celsius':'Nvidia', + 'Kelvin':'Nvidia', + 'Tesla 2.0':'Nvidia', + 'Fermi 2.0':'Nvidia', + 'Fermi':'Nvidia', + 'Kepler 2.0':'Nvidia', + 'Kepler':'Nvidia', + 'Maxwell':'Nvidia', + 'Curie':'Nvidia', + 'Tesla':'Nvidia', + 'Rankine':'Nvidia', + 'Pascal':'Nvidia', + 'Maxwell 2.0':'Nvidia', + 'Ada Lovelace':'Nvidia', + 'PowerVR SGX545':'Intel', + 'PowerVR SGX535':'Intel', + 'Generation 3.0':'Intel', + 'Generation 3.5':'Intel', + 'Generation 4.0':'Intel', + 'Generation 5.0':'Intel', + 'Generation 12.1':'Intel', + 'Hopper':'Nvidia', + 'Generation 7.0':'Intel', + 'Generation 6.0':'Intel', + 'Generation 7.5':'Intel', + 'Generation 5.75':'Intel', + 'Generation 8.0':'Intel', + 'Generation 9.0':'Intel', + 'Generation 9.5':'Intel', + 'i740':'Intel', + 'Generation 1.0':'Intel', + 'Generation 11.0':'Intel', + 'Generation 12.2':'Intel', + 'Volta':'Nvidia', + 'PX':'Matrox', + 'G200':'Matrox', + 'G400':'Matrox', + 'Parhelia':'Matrox', + 'G500':'Matrox', + 'GCN 4.0':'AMD', + 'RDNA 2.0':'AMD', + 'PowerVR Series5XT':'PowerVR', + 'G100':'Matrox', + 'MP':'Matrox', + 'RDNA 3.0':'AMD', + 'GCN 5.1':'AMD', + 'CDNA 1.0':'AMD', + 'CDNA 2.0':'AMD', + 'CDNA 3.0':'AMD', + 'RDNA 1.0':'AMD', + 'Fahrenheit':'Nvidia', + 'Voodoo Scalable':'3dfx', + 'VLIW Vec4':'Nvidia', + 'XG4':'XGI' +} \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace.yaml index 72c4eb29..d835b153 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022-09-20' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml index b96115a0..c81a1695 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4050 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml index fb0cd955..a9fe4476 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4050 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml index 2cb0500b..78a86e66 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4050 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml index bf33f30b..4d7dbbc5 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 AD106 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml index 04c7a7f7..3db5acbe 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml index 89f20fea..c0aab4c7 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml index 36bb7f3c..a497ca6b 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 Ti 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml index f815f944..f514447b 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 Ti 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml index cbef7680..eb503b92 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4060 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml index b607368b..ab3b03b3 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml index 32019203..f98b684a 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml index 9ae3c834..8813a6af 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml index b7054264..716cd120 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 Ti SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml index 0fd566e5..58f5da23 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml index ff030db9..3cf8b1cc 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml index b7068735..76816776 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml index bcb7cf60..6a27d657 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml index cd21ab29..fb07f652 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml index c3aa0a76..a803b74b 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml index d8d5f9ce..432a0a44 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml index 89e8b29c..d69db4a6 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4080 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml index 125c2b7c..0eae847d 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4090 D isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml index c4c92d5a..4b1f9b21 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4090 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml index 79522d2e..35644f29 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4090 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml index 1b04835d..bd02b1ca 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4090 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml index b252521f..03017497 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 4090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml index 57a9fd82..691ee049 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml @@ -3,6 +3,8 @@ humanName: L4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml index 6b8af827..a5612b2a 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml @@ -3,6 +3,8 @@ humanName: L40 CNX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml index 6fcc31e7..6cd0b427 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml @@ -3,6 +3,8 @@ humanName: L40 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml index cb653120..32a4e27e 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml @@ -3,6 +3,8 @@ humanName: L40G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml index e3ee7ba0..491f93ed 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml @@ -3,6 +3,8 @@ humanName: L40S isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml index fe4952d9..83ac09de 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml index 9dee2a19..318879cc 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Embedded Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml index ecd03fc0..d2105d14 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Max-Q Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml index 65211e29..4bc37928 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Mobile Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml index afb561be..f3d5a6de 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 3000 Mobile Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml index e0bee024..2f14e04f 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 3500 Embedded Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml index 5fb83253..25bdde5e 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 3500 Mobile Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml index d9e37cfb..afc914e9 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4000 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml index cbe1650c..e6bcc4b8 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4000 Mobile Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml index a17f5349..9f53c754 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4000 SFF Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml index 74eec6d4..c43c5f0e 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4500 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml index deaece92..445dcccc 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml index 5b9bebe9..c6483b5f 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Embedded Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml index 1db9af84..fbf207a3 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Max-Q Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml index 7a226b6a..86d93471 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Mobile Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml index 732bba3f..b8806948 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5880 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml index 5c9fbe97..cfeae2db 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 6000 Ada Generation isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml b/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml index 8bec9415..7ae90cc1 100644 --- a/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml +++ b/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml @@ -3,6 +3,8 @@ humanName: TITAN Ada isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ada Lovelace Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere.yaml b/specs/GPUs-CONSUMER/Ampere.yaml index 92f559f2..835fe186 100644 --- a/specs/GPUs-CONSUMER/Ampere.yaml +++ b/specs/GPUs-CONSUMER/Ampere.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2020-05-14' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml index e26f8a88..5e2dd5d2 100644 --- a/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml @@ -3,6 +3,8 @@ humanName: A10 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml index 083708a6..e9546d07 100644 --- a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml @@ -3,6 +3,8 @@ humanName: A100 PCIe 40 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml index 1fd87288..4cdbb613 100644 --- a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml @@ -3,6 +3,8 @@ humanName: A100 PCIe 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml index ee7b41f2..2839731d 100644 --- a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml @@ -3,6 +3,8 @@ humanName: A100 SXM4 40 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml index a7dec7b7..4aff54db 100644 --- a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml @@ -3,6 +3,8 @@ humanName: A100 SXM4 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A100X.yaml b/specs/GPUs-CONSUMER/Ampere/A100X.yaml index 6cc672e3..c5075765 100644 --- a/specs/GPUs-CONSUMER/Ampere/A100X.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A100X.yaml @@ -3,6 +3,8 @@ humanName: A100X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A10G.yaml b/specs/GPUs-CONSUMER/Ampere/A10G.yaml index a84f8db2..3f1084f8 100644 --- a/specs/GPUs-CONSUMER/Ampere/A10G.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A10G.yaml @@ -3,6 +3,8 @@ humanName: A10G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A10M.yaml b/specs/GPUs-CONSUMER/Ampere/A10M.yaml index a5825b01..0770b5dd 100644 --- a/specs/GPUs-CONSUMER/Ampere/A10M.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A10M.yaml @@ -3,6 +3,8 @@ humanName: A10M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml index 5ad940bb..ba787ab2 100644 --- a/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml @@ -3,6 +3,8 @@ humanName: A16 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml index aa2a1051..8ba68a92 100644 --- a/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml @@ -3,6 +3,8 @@ humanName: A2 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A2.yaml b/specs/GPUs-CONSUMER/Ampere/A2.yaml index d32d52c1..d4b3c0ac 100644 --- a/specs/GPUs-CONSUMER/Ampere/A2.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A2.yaml @@ -3,6 +3,8 @@ humanName: A2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml index 9ddf8118..8bb9235d 100644 --- a/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml @@ -3,6 +3,8 @@ humanName: A30 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/A30X.yaml b/specs/GPUs-CONSUMER/Ampere/A30X.yaml index c38feee7..da6330a1 100644 --- a/specs/GPUs-CONSUMER/Ampere/A30X.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A30X.yaml @@ -3,6 +3,8 @@ humanName: A30X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml b/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml index 7b1122d6..32fd51ae 100644 --- a/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml @@ -3,6 +3,8 @@ humanName: A40 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml index ae06b041..d467b934 100644 --- a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml @@ -3,6 +3,8 @@ humanName: A800 PCIe 40 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml index d3fec483..0bd7c605 100644 --- a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml @@ -3,6 +3,8 @@ humanName: A800 PCIe 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml index 36b5b6ab..80db06f6 100644 --- a/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml @@ -3,6 +3,8 @@ humanName: A800 SXM4 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml index f89b4a33..5a4c0572 100644 --- a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml @@ -3,6 +3,8 @@ humanName: CMP 170HX 10 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '280' diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml index d5c1710b..cbff3132 100644 --- a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml @@ -3,6 +3,8 @@ humanName: CMP 170HX 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '280' diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml index 50b98ace..576af8ec 100644 --- a/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml +++ b/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml @@ -3,6 +3,8 @@ humanName: CMP 70HX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml b/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml index add44350..6650877e 100644 --- a/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml +++ b/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml @@ -3,6 +3,8 @@ humanName: CMP 90HX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml b/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml index 9e359e2a..4ba77fcb 100644 --- a/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml +++ b/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml @@ -3,6 +3,8 @@ humanName: DRIVE A100 PROD isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml b/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml index 6e814f99..06b4fb12 100644 --- a/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml @@ -3,6 +3,8 @@ humanName: GRID A100A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml b/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml index 8cdf62d1..8e0d8368 100644 --- a/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml @@ -3,6 +3,8 @@ humanName: GRID A100B isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '432' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml index d41e5bdd..bbc8be78 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX570 A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml index 0fa91171..4d92f7f5 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX570 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml index 550ab1d6..d7dbf170 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2050 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml index 7314c5e7..6b166733 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2050 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml index 3fa64db6..2b84983f 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml index 220990e1..6a2c7ef9 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml index 1d9d2492..0ad3ba5d 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 8 GB GA107 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml index 865bc634..fcd5215f 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml index 9a05cd75..7ecc1f96 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Max-Q Refresh 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml index cb3010e8..17c359a1 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Max-Q Refresh 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml index 5620f2e9..d7c7ccfd 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml index c0b398d8..b4001e8b 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Mobile Refresh 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml index 40c7d4d8..cc7a5223 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Mobile Refresh 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml index ae11a0cd..1868423e 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml index 3024df5e..e4657a15 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml index 7a9a4663..9d5d5945 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml index dd3ac64b..60a2d076 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3050 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml index a23b3bc2..0413c47f 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 12 GB GA104 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml index 53c14e51..85f578c9 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml index 76828ceb..90ef122b 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 3840SP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml index bd986ae6..6a678c56 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 8 GB GA104 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml index d8e8a28f..a790aa14 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml index 8e85239e..6525a886 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml index 9a0bb6cb..70332379 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 Ti GA103 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml index a61e48b8..d8f39151 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 Ti GDDR6X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml index 75859f96..75ab2da9 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3060 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml index b631c592..d8d98b71 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml index d47a7b63..67faf7dc 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml index 0031bc48..fe0a1f7f 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Ti 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml index a069704f..ec966e84 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Ti 8 GB GA102 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml index 3cce9435..94082b8c 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml index a00a91ca..a34e2a64 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml index c1071be5..6237635e 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml index 8a0928a0..8005978d 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 TiM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml index 6586743a..b3907a0e 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml index 3fbe7d4d..ad589308 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml index 288e1c05..c882764e 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml index dd3bd5ab..1ad3be9b 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml index 8fb74a98..eb2aedb1 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Ti 20 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml index 984d1f98..396d35e7 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml index 2a29a764..f0465119 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml index 3c78d5ab..a6b9bc22 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml index fe3c7d98..f1230883 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3080 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml index 864c144b..d31c532e 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3090 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml index ba1e892a..8754f8d3 100644 --- a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml +++ b/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 3090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml index fc40f7fd..47880e14 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson AGX Orin 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml index 7582fd9d..d56dc5b3 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson AGX Orin 64 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml index 08449fd4..9117f32c 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Orin NX 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml index 62af3920..c486d33f 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Orin NX 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml index 7f62988e..d4e6d587 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Orin Nano 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml index 2133ac6d..439f4968 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Orin Nano 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml index 06883e09..b5f14736 100644 --- a/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml +++ b/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml @@ -3,6 +3,8 @@ humanName: PG506-207 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml index 469eb608..cf1a4ab9 100644 --- a/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml +++ b/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml @@ -3,6 +3,8 @@ humanName: PG506-217 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml index 92043f61..3feaef99 100644 --- a/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml +++ b/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml @@ -3,6 +3,8 @@ humanName: PG506-232 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml b/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml index 54084443..90e3ee6e 100644 --- a/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml +++ b/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml @@ -3,6 +3,8 @@ humanName: PG506-242 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 7 nm HLSL Shader Model: '224' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml index fe3db2c6..d8a0e7d4 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A1000 Embedded isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml index a172f7f0..9cf2d4f0 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml @@ -3,6 +3,8 @@ humanName: RTX A1000 Mobile 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml index 0c73c58f..ed414a56 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A1000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml index 70dc17af..619a3bef 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml index 8990bf37..d733116e 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 Embedded isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml index f6c84378..4e4c4e58 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml index 391d024c..22e075a9 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml index eba1a60d..b8291af2 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml index 66402779..4b6e15fe 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml @@ -3,6 +3,8 @@ humanName: RTX A3000 Mobile 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml index a6362b3d..73eb11e9 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A3000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml index bd6ae686..8cc2eb5e 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A4 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml index d0288403..39e7aebd 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml index f0fb590f..9f965d0a 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml index 8c0c861c..4bc220fc 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml index ae75a621..3f2cfa6b 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000H isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml index 1d3a200d..1d82fe43 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 Embedded isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml index 47948955..df490015 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml index d607e90a..4a860ec9 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml index feb4478e..c8184594 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml index 63684875..461bd121 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A500 Embedded isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml index fa83625d..85d6d516 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml index badd121c..0495c4d5 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml @@ -3,6 +3,8 @@ humanName: RTX A500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml index 389ca7ae..bc3d8f50 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000-12Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml index 82893f55..08604f52 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000-8Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml index f54a0ba5..d5993756 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml index c89f7ecc..dabdcccf 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml index 30fc5bbc..d3e0bbad 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml index 480c2e76..82c52e24 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5500 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml index b752df28..d62e4d57 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: RTX A5500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml index e3e0768f..8e0c59c0 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml @@ -3,6 +3,8 @@ humanName: RTX A5500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml index 5a9f005b..b82a6adb 100644 --- a/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml +++ b/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml @@ -3,6 +3,8 @@ humanName: RTX A6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Ampere Lithography: 8 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/CDNA-1.0.yaml b/specs/GPUs-CONSUMER/CDNA-1.0.yaml index 9eb514be..e1c00868 100644 --- a/specs/GPUs-CONSUMER/CDNA-1.0.yaml +++ b/specs/GPUs-CONSUMER/CDNA-1.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2020-11-16' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml index 6db96f6a..6210cdd0 100644 --- a/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml +++ b/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 1.0 Lithography: 7 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/CDNA-2.0.yaml b/specs/GPUs-CONSUMER/CDNA-2.0.yaml index 8ad18322..5218d060 100644 --- a/specs/GPUs-CONSUMER/CDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/CDNA-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2021-11-08' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml index 36b7d87f..c6270ead 100644 --- a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI200 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 2.0 Lithography: 6 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml index 48da7211..ad811cfb 100644 --- a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI210 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 2.0 Lithography: 6 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml index ef5a32f9..2f35cc94 100644 --- a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI250 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 2.0 Lithography: 6 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml index 9391f362..adc57dfd 100644 --- a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml +++ b/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI250X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 2.0 Lithography: 6 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/CDNA-3.0.yaml b/specs/GPUs-CONSUMER/CDNA-3.0.yaml index 024d6ecf..cf14ca2f 100644 --- a/specs/GPUs-CONSUMER/CDNA-3.0.yaml +++ b/specs/GPUs-CONSUMER/CDNA-3.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2023-01-04' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml index 121da670..b65b294e 100644 --- a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml +++ b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 3.0 Lithography: 5 nm HLSL Shader Model: '880' diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml index a622c9d6..c86b3648 100644 --- a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml +++ b/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI300X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: CDNA 3.0 Lithography: 5 nm HLSL Shader Model: '1216' diff --git a/specs/GPUs-CONSUMER/Celsius.yaml b/specs/GPUs-CONSUMER/Celsius.yaml index e574204a..a62f9dc2 100644 --- a/specs/GPUs-CONSUMER/Celsius.yaml +++ b/specs/GPUs-CONSUMER/Celsius.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '7.0' Vulkan Support: 'N/A' Release Date: '1999' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml index b5d9f459..08111cf3 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml @@ -3,6 +3,8 @@ humanName: GeForce 256 DDR isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 220 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml index 2ab855f5..7b36e830 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml @@ -3,6 +3,8 @@ humanName: GeForce 256 SDR isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 220 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml index f0af6eb0..20ab1240 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml index e2d8e640..01785914 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml @@ -3,6 +3,8 @@ humanName: GeForce PCX 4300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml index 4c162b97..e57be39a 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 GTS PRO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml index 296353e0..caf130a4 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 GTS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml index dede5dd2..858cc608 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 Go 100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml index a0ca48f3..f4afb705 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 Go 200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml index 5d7489a5..3fff3ee9 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml index f1397dec..cd7f5452 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX + nForce 220 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml index 3c23cc47..3fb852ef 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX + nForce 420 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml index 024b0a78..f9afcc61 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX 200 LP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml index 5d92c69d..27a7cf4a 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX 200 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml index cdca0dd6..1f539fc7 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX 200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml index 0c1e17bb..310693d6 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX 400 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml index 3dca67ed..c81a8ffc 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX 400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml index 7b1f4b8e..197a1074 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX DH Pro TV PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml index ead9ecff..c8e33c4e 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX DH Pro TV isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml index 2932a201..18476f2b 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml index b208ab4c..76daf957 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml index 5813e11c..a720462f 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 PRO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml index 3a35fd20..b57a1a83 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml index 439d2b13..4aaef45d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce2 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml index 9a51a510..9b380440 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 410 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml index f91de2a7..8dbde083 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 420 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml index 9a052956..320cfaa0 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 440 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml index cdd46626..7135ca2f 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 448 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml index 4cbbc83f..7f3d830d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 460 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml index bfe531da..2febe112 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 488 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml index 76b7c246..3ecb3c7c 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX + nForce2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml index d94d24ca..7df62881 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 4000 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml index ee6e43b8..4dd21780 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 4000 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml index 11ee642a..800e0285 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml index a91e1188..a3233f7e 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 420 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml index a96c0c76..02fbdcd9 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 420 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml index f5aafa0e..64e4aa06 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 440-8x isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml index 151321a0..5e0540b9 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 440 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml index 932f4e49..c4bc0dc5 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 440-SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml index c77f0029..99ca275f 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml +++ b/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 MX 440 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml index 262fb901..28763cb9 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 280 SD isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml index 3735948c..6b26ace0 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 50 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro.yaml index d45f70cd..7b92612b 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro.yaml @@ -3,6 +3,8 @@ humanName: Quadro isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 220 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml index f4fb3dfa..654ee1f9 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml @@ -3,6 +3,8 @@ humanName: Quadro2 Go isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml index 16fc6aac..748a812e 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml @@ -3,6 +3,8 @@ humanName: Quadro2 MXR Low Profile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml index bd9f81a7..7dcd40bf 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml @@ -3,6 +3,8 @@ humanName: Quadro2 MXR isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml index 9df54ac7..2c4ad022 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml @@ -3,6 +3,8 @@ humanName: Quadro2 Pro isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml index 32691048..94ebcea0 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 100 NVS PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml index 6559b40f..b6cd5747 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 100 NVS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml index e714c2db..21e420b8 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 200 NVS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml index 3861eee8..4bc9ca5d 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 380 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml index 4a7bf2c9..d8a5d0c3 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 400 NVS PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml index c1e01325..b7170951 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 500 Go GL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml index 60c52635..9d35a6c6 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 500 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml index 1be22dc0..0d8fc6fa 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 550 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml b/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml index df6351b4..3744d3dd 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml +++ b/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 580 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Celsius Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Curie.yaml b/specs/GPUs-CONSUMER/Curie.yaml index e8afa1d7..990b23b7 100644 --- a/specs/GPUs-CONSUMER/Curie.yaml +++ b/specs/GPUs-CONSUMER/Curie.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2003-12-22' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml index 0b5f70d6..a0ecad00 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6100 + nForce 400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml index 20957db7..5746e3f8 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6100 + nForce 405 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml index 98414f19..bf0607dd 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6100 + nForce 420 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml index 15a8f475..bc57f960 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6100 + nForce 430 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml index fc59e22c..48c3d753 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml index aa0c751e..bb71751f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6150 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml index 18e361c2..c518e099 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6150 SE + nForce 430 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml index 4219bd5e..309cc811 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6150 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml index ae4f27fb..5a130984 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 LE AGP 512 MB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml index a14b1754..6a10b93b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 LE AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml index b2d5cac8..cade9463 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 LE PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml index 164eff66..d8f18a29 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml index dac18d12..080e5756 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml index 4aa32dcf..396ebf77 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 SE TurboCache isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml index f7e95c6a..413402f9 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 TurboCache isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml index debb372c..267c690d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 X2 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml index b0aaf8f8..50c8ca7e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml index c20efaef..2b22f8f0 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml index a16d6319..dc8cadc7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml index bf69c3d0..82ac7e0b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 GT AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml index ac23cc8e..4f9e4e0d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 GT Dual isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml index c8ccb1dd..34a35e0e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml index 5c250e5a..b996f8cb 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 LE AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml index d9064659..badfe78b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml index 3b74cf8f..eb68a7bc 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 VE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml index 42dc3810..832adde1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml index 216df05a..dda581db 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6610 XL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml index dbf4deb9..8b014079 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6700 XL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml index f5b88130..ae6baf02 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml index eb859341..1da5a5bc 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 GT DDL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml index 89da383f..4ad72cc1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 GT Dual isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml index 38daa545..2411d919 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml index 2e9d0275..b43606ac 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 GTO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml index 83e0ab05..96ec85a4 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml index 72dd5450..82ee5968 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 Ultra DDL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml index 4c9c9e3c..31ea2dc7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml index 00402c19..ec4c7750 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 XE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml index 874ccf46..2415186c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 XT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml index aef80171..d08a8b91 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml @@ -3,6 +3,8 @@ humanName: GeForce 6800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml index 46e1ce26..68aa52a2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7000M + nForce 610M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml index 8d14e01d..50d8f7a3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7025 + nForce 630a isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml index f5ff923c..d973cac1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 + nForce 610i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml index 03c0b222..f3ff891b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 + nForce 620i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml index 659581f8..7750a4e3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 + nForce 630a isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml index fc629c06..2bb479a1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 + nForce 630i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml index d9666e9e..4cc30a5b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 PV + nForce 630a isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml index 072bc457..61e1e550 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7050 SE + nForce 630a isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml index 2b8f59fb..0972dbbb 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7100 + nForce 630i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml index aed7c36e..a62bd8cd 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7100 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml index 9a1f8d4b..e3c1ab32 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7150 + nForce 630i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml index 30154d09..cba99bf3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7150M + nForce 630M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml index c23f095a..469b91e4 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7200 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml index ba62ddd6..0e67b9a7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 GS Low Profile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml index 79b7be77..2072afef 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml index bd862a7f..480da8d5 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 GT AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml index 9505df5f..0d8bc631 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml index 50e4991d..0aa72a4d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml index 50727f9a..40ed51e0 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml index 746d3a55..d7a0cd55 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7300 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml index 23175b01..63e79d26 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7350 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml index 16bbedc0..20b51365 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7500 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml index 769f058d..2c7544a3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 GS AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml index 5b902bde..bb5cc199 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml index b43495c2..5256d9c4 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 GT AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml index 93cd0204..1228f2af 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml index 8be74833..2123220f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml index a7db37ac..806d59e6 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7600 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml index fe88f648..aa744ddb 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7650 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml index 716c69d0..80304174 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS+ 20Pipes AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml index a8e1cf07..5268670b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS+ 24Pipes AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml index b0c2c408..c4fe5610 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS+ AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml index be41f222..bc96ed0f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS 20Pipes AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml index cad148de..d1d3caa7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS 24Pipes AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml index 2ac8c008..7d0822d2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GS AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml index 4ca53d22..53becd1a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GT Dual isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml index 95aa5475..acba9fc6 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml index f9402c68..18201498 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GTX 512 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml index 813ebe70..99bb6a0f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7800 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml index 5425fee1..6865b971 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GS AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml index a9630a25..b1f4ec99 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml index 0dbe27b6..44e1b4a8 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml index d5074581..a1cc581b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GTO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml index 2ed64fce..baa48a97 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml index e24d105e..9b029c3e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7900 GX2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml index a4be5549..7ae33fc8 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7950 GT AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml index 5f2b9d6b..cacb3443 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7950 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml index de1f210b..a7cd4e50 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 7950 GX2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml index a7731869..655c4a5b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6100 + nForce Go 430 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml index 57173383..8d63b9ef 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6150 + nForce Go 430 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml index 84014bfa..2dde6d39 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6200 TE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml index 9c96c1ee..5fc57216 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml index ae73a633..f478f13d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6250 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml index f62540a5..a072531b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml index dcc0b052..cca53858 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6600 NPB 128M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml index b3c9f8d1..4fb1b5ce 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6600 TE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml index f9196378..67f731ef 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml index abb9615e..d5ab40b4 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6800 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml index 6941cd12..cca73d26 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 6800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml index 843eba99..6f238939 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml index 996df11b..94bf6549 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml index b392f414..b29de5c3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7300T isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml index 32e1daca..0006dcf6 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml index 849fedcf..104a216e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7400T isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml index af1a1fdc..5f5d093e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7450 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml index 08448624..eedd5a13 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7600 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml index cde24edc..770d2b69 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml index 136f4f05..72047aff 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml index da5d43d9..58b7a9ee 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7800 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml index 6953400a..51552afa 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml index 690fdb2c..349c5dde 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7900 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml index 7019be23..e3cc203f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7900 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml index 6d107ce1..b348d08b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7900 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml index f6ed7414..9881f266 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml +++ b/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce Go 7950 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml index 44affe4f..1ce2f97a 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml @@ -3,6 +3,8 @@ humanName: Playstation 3 GPU 28nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 28 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml index 248b7d80..793de680 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml @@ -3,6 +3,8 @@ humanName: Playstation 3 GPU 40nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 40 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml index 25cac643..4ba609da 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml @@ -3,6 +3,8 @@ humanName: Playstation 3 GPU 65nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 65 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml index 0b78345f..0b31b61d 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml @@ -3,6 +3,8 @@ humanName: Playstation 3 GPU 90nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml index 1bd0438f..9f407bc4 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml index ab1d7da7..0d28c05c 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml index 0ec3d9e8..f540393c 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml index f4680ed4..877482c3 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 2500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml index d73cfafe..087c19c1 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml index 47bded74..2383a04c 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3450 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml index 6d6d25c7..b00a4a9f 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 350 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml index 7b5be451..2c06c111 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml index cce74143..5ff638fa 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml index 52dc282f..41e5b9a8 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 350M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml index d02a9c34..1a48ac93 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4000 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml index 314e36e9..239f227d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml index effee3e4..1a56ddf1 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml index d7ddccf9..bb31616d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4400G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml index df29f99f..3e63be4a 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4500 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml index 1d4ca42d..85801ece 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4500 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml index da398f04..262a35e1 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml index 671026a8..07e3f0e4 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 540 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml index b0d3bba7..2279301a 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 550 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml index 60a3cec2..1eff24ab 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 5500 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml index 3401285e..f3e7ee88 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 5500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml index d4edb853..5f089fff 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 550M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml index b9f54c0d..24d20af9 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 560 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml index 091cfdc0..f87f5195 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX Go1400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 130 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml index ccfdf0d3..a6788c7f 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX Go540 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml index 8d6ad664..62a8bdd6 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 110M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml index bfb61498..bcf9aacb 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 120M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml index 4cc6795c..557e2c16 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 210S isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml index b00482ba..e58ffc04 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 285 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml index 8346b7b5..8646cc5d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 300M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml index 225ee985..9b58a724 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 440 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml index 7022d049..d3d9b3a3 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 440 PCIe x16 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml index 2e3c8c3d..eaa8a49d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 510M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml b/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml index 14066690..1b7c4083 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml +++ b/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 1000 Model II isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Curie Lithography: 110 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Fahrenheit.yaml b/specs/GPUs-CONSUMER/Fahrenheit.yaml index 71cd63f8..e41c94ec 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '5.0' Vulkan Support: 'N/A' Release Date: '1998-03-23' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml index 775f1f0f..0571b44b 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 350 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml index dea4445c..e68bcff1 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 M64 Vanta-16 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml index 1c4919cc..545911ee 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 M64 Vanta isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml index 544af0bf..83f8e364 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 M64 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml index 5f9ec559..d30ab910 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 PRO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml index c8012c9c..d31614c4 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml index d63f07b4..01491328 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml @@ -3,6 +3,8 @@ humanName: Riva TNT2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml index 8a492370..59bc0fef 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml +++ b/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml @@ -3,6 +3,8 @@ humanName: Vanta LT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fahrenheit Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0.yaml b/specs/GPUs-CONSUMER/Fermi-2.0.yaml index f2327897..27104cf4 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2010-11-09' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml index 2fab9c78..830e0568 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 410M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml index 977ee9ef..fcb38f61 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 510 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml index 3e464aaa..64572fff 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 605 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml index e9aad3b6..b739b713 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml @@ -3,6 +3,8 @@ humanName: GeForce 610 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml index a949be4f..6b6ba64d 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 610M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml index 7fd1166c..538282a3 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 620M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml index 0a5ab5ac..f38af0c3 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 705A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml index e0f4f2af..d8c08356 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 705M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml index b37dd754..2302d5af 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 710M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml index c1a4a6c9..ebbd34e8 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 720A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml index 7872fa54..b1c86da2 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 800A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml index 0a81c984..4b5f0c7b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 800M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml index 5b0bde4f..b2481c17 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 820A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml index 49b67762..880bf076 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 820M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml index 5b001a6a..d4ee0706 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml index 0f20096d..77ed1ae0 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml index 3f1a4fb9..028145bc 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml index 0940061d..e3ee67f1 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml index 49a4a1a8..e70b9182 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml index d48d1db9..d58aad20 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 545 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml index b6b68cd8..a57eed85 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 545 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml index bb8ea061..67f2337b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 550M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml index 3d0c58bd..c112cc8d 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 555M 2 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml index f5b9902e..0d2433f1 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 555M 3 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml index c5d62639..9cf4dddd 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 610 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml index beaf4a0f..453aec81 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 610 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml index 7e2b3592..5ed73c8e 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 610 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml index 869fbe51..a68a4b8e 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 610 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml index fb01d210..9efb71a7 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 620 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml index fd32181f..22ac7a26 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 625M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml index fde3cf51..bcd4025d 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 635M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml index f8ca01e3..19d31c15 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640 OEM Rebrand isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml index 3c2075e2..d064d4ec 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 645 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml index 39a1a6e7..85c60f9b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 705 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml index c6899b82..5b989756 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 710M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml index 4ec01c66..f9cb7be0 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 720A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml index a8fe5197..56d71630 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 720M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml index dbcc205f..4d0d048f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 450 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml index 7812f639..d476cf46 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 450 Rev. 3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml index 3c55643d..87772b01 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460 SE v2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml index c3907c74..69969f3f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460 v2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml index 3f30e325..5fab0528 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 550 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml index f5189e28..21e4116b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 555 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml index b0c31e52..8c499a84 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml index 21d4aae1..b8aeb03f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml index 8cfbfcbb..60b2a043 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 Ti 448 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml index 0ad3c3a7..c43ed8a0 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 Ti OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml index 484a4943..7d74af87 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml index 10b5e2e7..16626844 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml index cce42e8e..3047980f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 560M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml index e5db852a..3ee1b9af 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 570 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml index 2e6ba5d6..ce6c73f7 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 570 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml index 43651105..e0aa7708 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 570M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml index 930304df..2b7d422e 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 580 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml index a425b97b..a7eb7f6d 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 580 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml index 65c6d83b..6ef22920 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 580M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml index 813f4ecd..58b1fec8 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 590 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml index e42db0dc..67dc0b25 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 670M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml index 9033582d..445135be 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 675M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml index 539e2bce..bada2874 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml @@ -3,6 +3,8 @@ humanName: NVS 310 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml index 1328f0ec..55efcf24 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml @@ -3,6 +3,8 @@ humanName: NVS 315 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml index 8f67332d..6f2a571a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml @@ -3,6 +3,8 @@ humanName: NVS 4200M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml index 2d1046b2..986b0d17 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml @@ -3,6 +3,8 @@ humanName: NVS 5200M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml index 5fd2dcb8..ed5766d4 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 5010M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml index d0a67ce5..7b7f9abf 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml @@ -3,6 +3,8 @@ humanName: Quadro 7000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml index c5299464..3edaf862 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 7000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml index 37edea3b..980e043a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml @@ -3,6 +3,8 @@ humanName: Tesla C2075 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml index bddda03a..889b97dc 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml @@ -3,6 +3,8 @@ humanName: Tesla C2090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml index 286555a7..b6d81d21 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml @@ -3,6 +3,8 @@ humanName: Tesla M2075 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml index 113bf77e..3acbf656 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml @@ -3,6 +3,8 @@ humanName: Tesla M2090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml index 7c9d3002..d9278179 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml +++ b/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml @@ -3,6 +3,8 @@ humanName: Tesla X2090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi.yaml b/specs/GPUs-CONSUMER/Fermi.yaml index ec6e3bd9..4992eb3a 100644 --- a/specs/GPUs-CONSUMER/Fermi.yaml +++ b/specs/GPUs-CONSUMER/Fermi.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2010-03-26' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml index f6e55887..932200b4 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 615 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml index 00655def..bfa924f3 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 415M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml index 2547c377..6c0e664b 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 420 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml index 798ba0d1..443efb54 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 420M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml index 8272fd78..8909cc59 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 425M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml index e6ca5aa6..cf34817c 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 430 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml index 46c55df4..f6607879 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 430 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml index 44a9ff6d..99f8dfc7 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 430 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml index 9a864aa3..4960b0c1 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 435M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml index 0e57fcc4..f289eeff 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 440 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml index 15622eee..92fe6bd1 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 440 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml index 1b78c496..8cb04f7b 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 440 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml index 0c150deb..361da20a 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 445M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml index 904fa26f..93b1f2d1 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 520M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml index ad4a68ee..78d1c04d 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 525M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml index b62bd2ff..e78bfbcc 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 540M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml index ac52c010..dc7e6b0b 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 555M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml index 4f8f2ba1..67aef8ff 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 620 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml index d510db40..ecf9b9c5 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 620M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml index 434ab7f8..bd95e4a7 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 630 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml index 2dffebf3..2645f860 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 630M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml index 7fe62344..ad5ba35b 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640M LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml index 115d95df..ee0e063e 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 730 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml index 0e1133ec..c1bf36ad 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 450 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml index 4e7a2130..bd77db1e 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 450 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml index 95085107..2fbed9cd 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml index 1e00e67d..e7968bfc 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml index 7f21dc82..f834a840 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml index 17d63786..aa40e872 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 460M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml index c4c0b00e..b1ad1770 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 465 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml index 4ee284b7..3240f9a7 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 470 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml index 5aafceac..65778cc4 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 470 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml index 4b4b8b33..7c309936 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 470M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml index 65698131..e8f02123 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 480 Core 512 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml index 2afd8f70..3452f8c0 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 480 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml index e2a3953e..c66b8e12 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 480M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml index 4aa53659..b976838a 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 485M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml index 5463c049..8d475374 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml +++ b/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 490 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml b/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml index 5f322751..0abb10eb 100644 --- a/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml @@ -3,6 +3,8 @@ humanName: NVS 5400M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml index ca2866db..c814b2b5 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 1000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml index 6fe61f48..02939b33 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml @@ -3,6 +3,8 @@ humanName: Quadro 2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml index 2e561ef6..ec7e7b35 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml @@ -3,6 +3,8 @@ humanName: Quadro 2000D isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml index b5d8ec6d..d1fea638 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 2000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml index 9df760d9..1ee3aa5a 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml @@ -3,6 +3,8 @@ humanName: Quadro 3000M X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml index 548b6cc0..7c0f9ac8 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 3000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml index 2394052b..ab83afb6 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Quadro 4000 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml index f1ef86ae..09e1690b 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro 4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml index a9a8d06d..a3e45f7c 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 4000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml index c7e9c573..a9d44fe8 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro 5000 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml index 025a5c91..04b17f38 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml @@ -3,6 +3,8 @@ humanName: Quadro 5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml index f77cef95..2163324f 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 5000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml index 18d7fc36..4f3792df 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro 500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml index e1fe4ae4..689e4776 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml @@ -3,6 +3,8 @@ humanName: Quadro 600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml index 9edfcd3b..4a813ed2 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro 6000 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml b/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml index 767d74fd..cb1aa93a 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml @@ -3,6 +3,8 @@ humanName: Quadro 6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml index 09beb3f3..bc256fee 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml @@ -3,6 +3,8 @@ humanName: Tesla C2050 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml index ec3d694a..fc3b2f4a 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml @@ -3,6 +3,8 @@ humanName: Tesla C2070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml index 71891af2..f7eb8f34 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml @@ -3,6 +3,8 @@ humanName: Tesla M2050 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml index d150fc5c..87bce7f1 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml @@ -3,6 +3,8 @@ humanName: Tesla M2070-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml index c8e1c3e7..405e831d 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml @@ -3,6 +3,8 @@ humanName: Tesla M2070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml index 1ab6f0df..99cd09f8 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml @@ -3,6 +3,8 @@ humanName: Tesla S2050 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml b/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml index 7849a17b..062be1c7 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml +++ b/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml @@ -3,6 +3,8 @@ humanName: Tesla X2070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Fermi Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/G100.yaml b/specs/GPUs-CONSUMER/G100.yaml index 7ff3c644..4bb3e422 100644 --- a/specs/GPUs-CONSUMER/G100.yaml +++ b/specs/GPUs-CONSUMER/G100.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '3.0' Vulkan Support: 'N/A' Release Date: '1998' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml index bd33c187..af92fa5b 100644 --- a/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml +++ b/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml @@ -3,6 +3,8 @@ humanName: Productiva G100 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G100 Lithography: 350 nm DirectX Support: '3.0' diff --git a/specs/GPUs-CONSUMER/G200.yaml b/specs/GPUs-CONSUMER/G200.yaml index aa337947..72312b67 100644 --- a/specs/GPUs-CONSUMER/G200.yaml +++ b/specs/GPUs-CONSUMER/G200.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '5.0' Vulkan Support: 'N/A' Release Date: '1998' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml index 1db0f53e..1da188b1 100644 --- a/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml +++ b/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml @@ -3,6 +3,8 @@ humanName: Marvel G200 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 350 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml index 574aa04f..c9d71499 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml @@ -3,6 +3,8 @@ humanName: Millennium G200 SD isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 350 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml index e422d3a2..64702cf0 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml @@ -3,6 +3,8 @@ humanName: Millennium G200 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 350 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml index a6cceb91..1e8f8159 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml +++ b/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml @@ -3,6 +3,8 @@ humanName: Millennium G200A isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 250 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml index 66f6d3d0..6f9f499b 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml +++ b/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml @@ -3,6 +3,8 @@ humanName: Millennium G250 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 250 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml index c67092b7..b6dc77b9 100644 --- a/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml +++ b/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml @@ -3,6 +3,8 @@ humanName: Mystique G200 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G200 Lithography: 350 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/G400.yaml b/specs/GPUs-CONSUMER/G400.yaml index bffc758b..184d045b 100644 --- a/specs/GPUs-CONSUMER/G400.yaml +++ b/specs/GPUs-CONSUMER/G400.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0' Vulkan Support: 'N/A' Release Date: '1999-05-20' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml index 308cd03c..5ccb0a97 100644 --- a/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml +++ b/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml @@ -3,6 +3,8 @@ humanName: Marvel G400-TV isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml index 03a9e5de..04619b0b 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml @@ -3,6 +3,8 @@ humanName: Millennium G400 MAX isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml index f1d52426..21c582fc 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml @@ -3,6 +3,8 @@ humanName: Millennium G400 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml index 979bf730..7472a704 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml @@ -3,6 +3,8 @@ humanName: Millennium G450 LP isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml index 6a5e9a72..947563f1 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml @@ -3,6 +3,8 @@ humanName: Millennium G450 x2 MMS isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml index a0acec07..0c4f18d7 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml @@ -3,6 +3,8 @@ humanName: Millennium G450 x4 MMS isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml index 1812e1e2..b8284927 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml +++ b/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml @@ -3,6 +3,8 @@ humanName: Millennium G450 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G400 Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/G500.yaml b/specs/GPUs-CONSUMER/G500.yaml index 46c01b84..0acc0528 100644 --- a/specs/GPUs-CONSUMER/G500.yaml +++ b/specs/GPUs-CONSUMER/G500.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.0' Vulkan Support: 'N/A' Release Date: '2001-11-26' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml index f56c0011..e769dbf1 100644 --- a/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml +++ b/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Millennium G550 PCIe isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G500 Lithography: 180 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml index fae3ec74..221ee1a1 100644 --- a/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml +++ b/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml @@ -3,6 +3,8 @@ humanName: Millennium G550 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: G500 Lithography: 180 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/GCN-1.0.yaml b/specs/GPUs-CONSUMER/GCN-1.0.yaml index 6d59ae75..aeeb91fd 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.1' Vulkan Support: '1.2.170' Release Date: '2011-12-22' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml index dc20a191..4a02e930 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml @@ -3,6 +3,8 @@ humanName: AeroBox GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 16 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml index ce8387b3..8a37023e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml @@ -3,6 +3,8 @@ humanName: FirePro D300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml index 38566ca1..c1028b54 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml @@ -3,6 +3,8 @@ humanName: FirePro D500 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml index 08870265..4dec83f4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml @@ -3,6 +3,8 @@ humanName: FirePro D700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml index 8376db9a..af130bea 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml @@ -3,6 +3,8 @@ humanName: FirePro M3100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml index 244b07af..b880d533 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml @@ -3,6 +3,8 @@ humanName: FirePro M4000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml index 3177e174..bc53972c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml @@ -3,6 +3,8 @@ humanName: FirePro M4100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml index d843bb25..28dd6ab0 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml @@ -3,6 +3,8 @@ humanName: FirePro M4150 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml index 74150f31..47b6e15d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml @@ -3,6 +3,8 @@ humanName: FirePro M4170 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml index 9b266650..dc857173 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml @@ -3,6 +3,8 @@ humanName: FirePro M5100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml index 69f45711..2e1b1319 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml @@ -3,6 +3,8 @@ humanName: FirePro M6000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml index a41e3f54..33bc6c79 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml @@ -3,6 +3,8 @@ humanName: FirePro R5000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml index 4cf4b1f9..1c801ca6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml @@ -3,6 +3,8 @@ humanName: FirePro S10000 Passive 12GB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml index df98207e..e2415184 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml @@ -3,6 +3,8 @@ humanName: FirePro S10000 Passive isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml index 367d0c81..52d27831 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml @@ -3,6 +3,8 @@ humanName: FirePro S10000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml index 3b51f5c5..d0de2014 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml @@ -3,6 +3,8 @@ humanName: FirePro S4000X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml index ffd59587..08ae9e40 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml @@ -3,6 +3,8 @@ humanName: FirePro S7000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml index 7476d48b..9ab3f616 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml index 402c8c72..fb8c322f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9010 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml index 58a4a71c..2bf5528d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9050 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml index 999df9b3..34bd889b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W2100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml index d9d81d1c..346cadc6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml index 8cf9babe..eaa484ca 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml index 5da73b3f..141bcb01 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4130M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml index f8e89c34..6f0f7486 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4150M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml index a44f7667..23b94626 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4170M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml index f14ace06..ecf255f8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4190M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml index 9495405c..7d591462 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml @@ -3,6 +3,8 @@ humanName: FirePro W5000 DVI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml index 74b062db..4e2dcaa1 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml @@ -3,6 +3,8 @@ humanName: FirePro W5000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml index 34c62880..fd112779 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W5130M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml index 8fdff620..997d6800 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W5170M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml index 6addbbfa..db0ab240 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml @@ -3,6 +3,8 @@ humanName: FirePro W600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml index 3755e2ee..341f02c2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml @@ -3,6 +3,8 @@ humanName: FirePro W7000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml index 4da6da9e..2d85d31f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml @@ -3,6 +3,8 @@ humanName: FirePro W8000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml index 15bf31e5..6e757be5 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml @@ -3,6 +3,8 @@ humanName: FirePro W9000 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml index fc187b3c..9b066764 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml @@ -3,6 +3,8 @@ humanName: FirePro W9000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml index 3dbd34e0..c2d2f157 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml @@ -3,6 +3,8 @@ humanName: Radeon 520 Mobile DDR3 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml index 35cf8b19..40cb34bc 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml @@ -3,6 +3,8 @@ humanName: Radeon 520 Mobile GDDR5 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml index 79030564..ad7ffcd2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon 520 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml index 4cb2a288..60069f07 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 610 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml index 4e27643c..fdf82a0e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml @@ -3,6 +3,8 @@ humanName: Radeon E8860 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml index df1162d4..829abf54 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7730 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml index c58c5b4e..845c082f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7730M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml index a9b07c5f..746bb4af 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml index 17f23bf2..783b62ff 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7750M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml index 2e40d9c4..6d3c8881 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7770 GHz Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml index 0f4286ed..b828769a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7770M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml index a1e1f050..1216b723 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml index 896c19d5..e45a5e9c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7850M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml index 189a6476..f0a22b6f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7870 GHz Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml index 0e1ac3c8..527fcb92 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7870 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml index f4d82538..016732da 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7870M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml index 0ee7e1f6..d9d62d88 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950 Boost isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml index 13cd811e..4acb327c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml index dccc7c0d..84ee58ff 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950 Monica BIOS 1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml index e6269617..50b758d6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950 Monica BIOS 2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml index dcccb06c..5e50808a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml index a3322df6..48ee14ac 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7950M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml index e8ee6cdb..3969f0c6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7970 GHz Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml index 2f7fdd33..f78c9cbb 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7970 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml index 550c30a6..dcff5438 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7970 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml index 136c2b46..d54fbb96 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7970M X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml index 70d9db68..a0151e2f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7970M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml index 7eb073e1..6e084197 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7990 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml index 3237de46..e753d60f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8530M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml index 1be7115c..b1cb24ac 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8550M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml index a14882a4..8a3975be 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8570 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml index 72e99f77..41ce90a4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8570A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml index 073a1204..77e42551 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8570M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml index 9a25fdbb..4dc25748 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8590M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml index fefb4473..b57f9280 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8670 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml index 1dfd2914..df4e6f20 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8670A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml index 2697c694..ace4f7b4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8670M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml index 05c66e17..9bb1e06d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8690M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml index d0c9ddef..f490654f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8730 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml index e3bb9f23..32d40eff 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8730A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml index e35a3ead..6086b6ea 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8730M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml index 468746c7..372387c8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8740 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml index 6e1a79ee..b43f519f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8750A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml index 4c9641f0..a6ea2411 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8750M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml index dd698230..eb182d7d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8760 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml index 0373a433..936f5d4c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8770M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml index c74f73b1..3f313444 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8790M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml index d687c4b7..bf7b782b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8830M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml index ebc4baee..18fef9c8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8850M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml index a6021b39..a8486067 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8860 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml index 0df32683..9ef4350e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8870 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml index 070a2e86..01786b3e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8870M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml index 98f02ccf..659f9f65 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8950 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml index 83a07972..d0c2a7da 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8970 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml index ac7b530d..d9a7d31a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8970M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml index 0540c65a..63df3de9 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8990 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml index d0e36cb5..6dcbe4bc 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 240 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml index 5105fd52..83cbb94b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 340 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml index 2797538e..f22ed993 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 340X OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml index e34ca140..4cf1b790 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 430 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml index 7b0ad4ab..0b41e982 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 435 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml index c8328e4c..e3e84711 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A230 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml index e28aba0b..a04a21d7 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A240 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml index 6fad2383..ed23a2ea 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A320 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml index 5ec76a7a..8c33ba52 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A330 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml index e4087790..7bf2636a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A335 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml index 7cb8c99e..e3f6adeb 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M230 Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml index d289eac1..d58f48b9 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M230 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml index 154e490e..b9c60118 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M240 Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml index a7f0db7a..ac070685 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M240 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml index 35089fb6..d20ab8d4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M320 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml index e94d9596..fd12d32b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M330 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml index 326436fd..4f52adda 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M335 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml index 3c6bbcdb..2154db44 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M420 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml index 3c505b4b..40827198 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M430 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml index cda0d385..f5df6d7e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M435 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml index 82995235..ebc4ccaf 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R6 M340DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml index ea37c5b5..719f5073 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R6 M435DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml index 4e0347be..fcdd6f04 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 240 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml index 7bd3672b..74a89d40 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 240 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml index aab79ecd..91a28b60 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 250 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml index 06d20644..1ff0aa07 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 250 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml index b830975e..a4644c77 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 250E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml index a426cb83..c63b9a83 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 250X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml index bce086c2..856fb5ed 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 250XE isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml index f16e0cc7..5c88c2db 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 265 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml index 7477a9a7..37c4bc97 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 265X OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml index 20bf705f..ce8ef01e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 340 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml index 3466df3e..214f099a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 350 640SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml index b3aad1dd..cfb4bc07 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 350 Fake Card isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml index 94e52e60..b220dec6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 350 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml index 25c00839..5e62b1d7 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 350X OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml index 865f2090..fb4bd7b9 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 370 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml index 00d14d2e..37be7c9f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 430 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml index 5a9b0af5..9727404d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 435 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml index e75d1009..7795114c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 450 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml index 006407b1..12cb3dd5 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 A265 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml index 1fea7189..9e75da0b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M260DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml index ffbdf1c8..0d11371f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M260X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml index 81956ea2..bcd5f76d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M265DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml index 1383b727..97a7c4ff 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M270DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml index 26fecca5..83281754 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M340 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml index d20f786e..ea3e0548 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M365X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml index d71ec918..66f817c8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M370 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml index 95e378ad..5140f218 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M380 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml index 91d7cf0d..e22a2a9d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M465 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml index a4c52474..3f6bdf12 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M465X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml index ef6293ab..0ed3d4ce 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R8 M350DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml index b9a54196..dfaa44c5 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R8 M435DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml index 7553ba30..e0622aff 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 255 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml index a762d4ff..cdfb0e39 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 270 1024SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml index 05308a2a..29bda1ba 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 270 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml index fd4cafe0..f8f23e27 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 270X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml index 4bc334d1..81ae3f84 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 280 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml index 53f4ba03..25820254 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 280X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml index f3aa3d36..421c75cb 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 280X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml index 549b4b20..82ceac2a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 370 1024SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml index e91ad3f0..492f5c53 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 370 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml index 041c2995..d915817b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 370X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml index bb4796eb..3b20ed7f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 A375 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml index f4748970..1726a0f4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M275 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml index 782536cc..7a4fc27d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M275X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml index 2624b2b0..a3bc8242 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M290X Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml index 7779a9ba..9dde6409 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M290X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml index f17bb59e..0a4cd1c6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M360 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml index 9a53ac51..5ef5e693 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M365X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml index 3189f5a4..291a7367 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M370X Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml index 6e960ae7..37800ad1 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M375 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml index b026c100..2de4750e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M375X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml index e6048c04..c84069b8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M390 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml index 6ff23696..3d5a660b 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml @@ -3,6 +3,8 @@ humanName: Radeon Sky 500 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml index f9706440..0287be69 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml @@ -3,6 +3,8 @@ humanName: Radeon Sky 700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml index a6fa797e..fe78cee6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml @@ -3,6 +3,8 @@ humanName: Radeon Sky 900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml index 6cdee5e6..f4aa0775 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox One GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml index 52034206..a9a69e0c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox One S GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 1.0 Lithography: 16 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/GCN-2.0.yaml b/specs/GPUs-CONSUMER/GCN-2.0.yaml index 27853c5c..e09b4f00 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.0' Vulkan Support: '1.2.170' Release Date: '2013-03-22' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml index b98f357d..6e16a1b4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml @@ -3,6 +3,8 @@ humanName: FirePro M6100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml index da100014..8051d35a 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml index 28b16f93..f0ec037e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9150 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml index 5ec94e21..3a634b65 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9170 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml index 30ea2c0e..cde0a6a3 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml @@ -3,6 +3,8 @@ humanName: FirePro W4300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml index 44a81a77..7d44d6bc 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W5100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml index d82de806..4901c9f4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W6150M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml index a2ce539b..bea498bf 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W6170M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml index da2b1e94..5b793a67 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W8100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml index 7d18c0b0..95490608 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W9100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml index 83c8826e..80d40245 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml @@ -3,6 +3,8 @@ humanName: Playstation 4 GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '11.1*' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml index ba6729da..6b8f9a79 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml @@ -3,6 +3,8 @@ humanName: Playstation 4 Pro GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 16 nm Vulkan Support: '1.1' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml index 02d3c9ae..f082a29e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml @@ -3,6 +3,8 @@ humanName: Playstation 4 Slim GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 16 nm DirectX Support: '11.1*' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml index ceff877d..8c9221ae 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E8870 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml index ca19a3c9..889f1c4e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E8870 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml index dcf50df3..5a115cb9 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7790 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml index 71d17d02..cf050b8e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8180 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml index e77644ab..fe7cdc0d 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8210 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml index a8690e83..6537d4b0 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8210E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml index e80ace6f..c582717e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8240 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml index d46f2cf6..297f531b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8250 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml index 3890667a..f0b71de9 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8280 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml index e6891069..c49f5185 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8280 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml index 2c3a4f71..26c97a17 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8280E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml index 671d917f..d74bac65 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8330 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml index f96c1d54..85b1e70d 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8330E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml index 7d557b30..b55daf8b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8400 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml index 6a87126b..40d47102 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8400 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml index aa740f16..7c317c8a 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8400E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml index cf4a0e26..757ab18c 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8770 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml index 3e4f8629..ec0cacbb 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8950M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml index a0855fc8..075a3725 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R1E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml index 800d1a2c..77e35f39 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R2 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml index e5efdd1b..8ee0237b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R2E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml index caf9bde3..716a1bf9 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R3 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml index 4d8e21ec..73aba9d0 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R3E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml index 744576b0..3198bade 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R4E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml index fb621c66..d2c8ae19 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 260 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml index 50559734..991d4ea7 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 260X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml index 868f1584..2fdef9ce 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 360 896SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml index 10f2c8b2..734b24a9 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 360 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml index 1057f24e..9d5b51e1 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 360E isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml index eb59fae2..69508c20 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml index 427c74ed..d9b88365 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml index c2160d4a..f177b33f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 260 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml index 878da5cf..0fbc4df3 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 290 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml index e16e1c5d..1694ea72 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 290X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml index e12b63bd..bb562af2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 290X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml index 1924c4c9..612ea124 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 295X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml index 79f05273..a3a5487c 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 360 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml index 0f55f027..f2a4f95f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 390 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml index 092bb6ee..160d2d27 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 390 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml index 9b0ebb9f..32236b11 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 390X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml index 3a6ed377..1e7b1f70 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M270X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml index c63a4da9..e8acabdb 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M280X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml index 4b28a220..b8ff4436 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M380 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml index 91734659..27ecef74 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M380 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml index 680bf35c..bd28425a 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M385 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml index 0d90e638..575bcd00 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M385X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml index 1410cd81..46b1b02a 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml index d1eba86d..cf025fd6 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M470X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml index 3c524eed..0e8b5bfd 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 455 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml index 4762e2ad..044ce91b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox One X GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 2.0 Lithography: 16 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0.yaml b/specs/GPUs-CONSUMER/GCN-3.0.yaml index c1770679..204ff9b3 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.0' Vulkan Support: '1.2.170' Release Date: '2014' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml index 0ff8621b..1fe2869c 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml @@ -3,6 +3,8 @@ humanName: FirePro S7100X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml index 15a1b25e..d713f3d6 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml @@ -3,6 +3,8 @@ humanName: FirePro S7150 x2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml index de681680..32fe5637 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml @@ -3,6 +3,8 @@ humanName: FirePro S7150 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml index 5f1e19b2..4b096e7f 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml @@ -3,6 +3,8 @@ humanName: FirePro S9300 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml index 6a6db4a4..56b004a7 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml @@ -3,6 +3,8 @@ humanName: FirePro W7100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml index 09fb95ab..46e11a32 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml @@ -3,6 +3,8 @@ humanName: FirePro W7170M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml index d9de139e..aaece525 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml @@ -3,6 +3,8 @@ humanName: Radeon 530 Mobile DDR3 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml index b946938f..0d78e02d 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml @@ -3,6 +3,8 @@ humanName: Radeon 530 Mobile GDDR5 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml index a6a5c6b1..bba8b8c0 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 530X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml index f5402695..18a4f244 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 535 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml index e124e519..d0d027fd 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 620 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml index bedbb846..bca57632 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 625 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml index 48f862e8..973cee64 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon 625 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml index e27eeede..e64de99a 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml @@ -3,6 +3,8 @@ humanName: Radeon E8950 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml index 45613baa..c3617859 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI8 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml index 12371950..55fe35cc 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Duo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml index 8ace6826..7fa794f4 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro SSG isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml index 5b1054d5..3386a08f 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R4 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml index 586329fe..990d07b3 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A255 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml index fa903651..34a83563 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml index fe2a6bdf..4253c3db 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M255 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml index 781b7034..ab94e25d 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M315 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml index 87baef2e..384a1607 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M445 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml index f47b022a..7d450f00 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 M465 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml index 5808b713..ef8dca7b 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml index d1fc5b83..9697fb4c 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml index 0540782e..750576ad 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R6 M255DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml index f7b8593e..fd4f56ec 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R6 Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml index 8154c678..92102ea0 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R6E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml index 51ee9303..4c8f0651 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 A260 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml index 7ed645f2..fcb02996 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 A360 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml index 086768ce..dd4e2311 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M260 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml index 7583461e..648b852e 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M265 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml index 4fbf80a3..5bf821ed 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M350 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml index 2de4ccda..0574ecf7 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M360 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml index 403736bc..00f7403b 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M440 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml index dc08dfe3..c7d0ddbf 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M445 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml index 3c4ef0b3..f3ebeb20 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7 M460 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml index 6173df35..3f9858f9 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Radeon R7E Mobile Graphics isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml index d550c67d..071ba762 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R8 M365DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml index 311d5b32..722ba7de 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R8 M445DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml index fa5f955e..6a70d23e 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon R8 M535DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml index e1081587..a0d3d219 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 285 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml index d6c923cf..21cf5c77 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 285X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml index 528f995f..0d7da26e 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 380 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml index 2179e124..7cbd141c 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 380 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml index 77a69775..f495c938 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 380X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml index 453c09a1..fbde14f0 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 FURY X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml index 89b297bc..a1fb1fcc 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 FURY X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml index a62aae6d..c9705d6f 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 FURY isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml index bb3cfaab..c9aed067 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M295X Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml index e5d44f1e..72330006 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M295X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml index 916871c8..9491b468 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M390X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml index 0f7fceb1..1a752616 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M395 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml index 93200ca8..cdd4615a 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M395X Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml index aaf23470..55b96ac9 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M395X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml index 21c661dc..6cc7ee94 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 M485X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml index 11e53104..8a646936 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml +++ b/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml @@ -3,6 +3,8 @@ humanName: Radeon R9 Nano isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 3.0 Lithography: 28 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0.yaml b/specs/GPUs-CONSUMER/GCN-4.0.yaml index c3f48d99..7aaec15c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.0' Vulkan Support: '1.3' Release Date: '2016-06-29' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml b/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml index 6797a0fe..54ee3680 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml @@ -3,6 +3,8 @@ humanName: P30PH isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml index bb570a83..00e1b417 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 540 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml index 642ae2b8..9882414c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 540X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml index fa49e578..f4bbc318 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml @@ -3,6 +3,8 @@ humanName: Radeon 550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml index 323c757e..8dc0d846 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon 550X 640SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml index 2927ec47..63853174 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 550X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml index 0c70b31b..8d42b98c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml @@ -3,6 +3,8 @@ humanName: Radeon 550X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml index 67663133..95cb013f 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon 630 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml index 6320494d..b230d599 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9171 MCM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml index 97acaf60..29cdb053 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9172 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml index 1ef6eb09..9d75b117 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9173 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml index b65ad4b7..e1d1cd21 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9174 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml index aa7a38c9..244e265c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9175 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml index 67f443ef..5a6fd84f 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9260 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml index 10ac3d8e..1339655d 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9260 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml index f883ea06..03460071 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9390 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml index e7f6fb57..53ae359c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9550 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml index f4a092b5..f69dc43f 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E9560 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml index 8c42c787..832ef185 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI6 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml index 4dcc7212..fd6f02a1 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml index 857ff65a..eaed395c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 455 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml index df0a33bf..28d572e2 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 460 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml index eeefa132..f045c1e8 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 555 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml index 5b692070..fb543314 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 555X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml index 0efedae1..6727946b 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 560 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml index ce65d2a8..f504c179 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 560X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml index 52a40021..54b4da6c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml index 5ad80b78..f48954a7 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 570X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml index 31bc126a..b3910a97 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 575 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml index 95cd7fab..dcd2a5a9 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 575X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml index 110728d8..6efe769c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 580 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml index a42f1019..cab74e63 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 580X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml index 19a58c93..5dd7ce67 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Duo Polaris isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml index 0e2a539d..ac8cb081 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V5300X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml index 5a29b73e..492ce2d2 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V7300X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml index 6c3cfaef..96f230cf 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V7350X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml index af40ef21..bddd077e 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 2100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml index 2b3a5659..67dce982 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 3100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml index a2a67efa..a13c38b6 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 3200 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml index 7bc9bbcc..f69a2fb8 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 3200 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml index 87571aa1..2880261f 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 4100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml index acfc492e..a9d93261 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 4130 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml index 11f53c0a..0007b4b9 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 4150 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml index 56e0346a..bd93a5b4 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 4170 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml index 5b3d056c..efd55e66 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 5100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml index 5a811878..1e664fe2 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 7100 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml index 7a003af7..d804ae60 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 7100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml index 521300f3..9c8fef60 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 7130 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml index 6246c584..09396038 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX Vega M GL isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml index e917a5de..3826b49d 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 460 1024SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml index 0394a13b..1d8b5062 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 460 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml index 149e288a..d3b66a04 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 460 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml index 3a5d4fbb..3537fe85 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 470 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml index 55d02542..611efd38 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml index b77c3698..4483f0cc 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 470D isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml index 0e3b5150..cdd8baf6 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 480 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml index 7034b4be..3fb67fa2 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 480 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml index 03d60fe6..80761a85 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 540 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml index 7c37efbe..9fa40c8f 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 540X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml index f7e3abfa..ffffe08a 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550 512SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml index 6ef11d5b..60173ada 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550 640SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml index 769ee733..d73f46f7 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml index abba482e..9efd5bb2 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml index 87007d06..9cb1ab84 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550X 640SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml index 13ff590e..16a54fe0 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml index a7024e88..3f1df0d5 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 550X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml index 57626509..79305a46 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560 896SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml index eb31c055..788f18ce 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml index 8db9902e..e776e657 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml index d3cfc1c1..6723ff0a 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml index acfe7be7..6b964035 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560D isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml index 91832c81..56673aef 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560DX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml index fb07c380..f838ae09 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml index c07f6b76..c89f6a82 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 560X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml index c86dc025..02356093 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 570 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml index 7c4d1455..b59bdb22 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 570 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml index 97f7b924..fc371b93 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml index 24ab0652..d92e8266 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 570X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml index 72240ef9..919f0582 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580 2048SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml index 8c5d7245..1db08fa1 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml index 89e70406..eb128c1b 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml index bc69ddb1..ae5c6809 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml index 4ef0b286..cd28ddb5 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580G isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml index 1315a21c..b1a196df 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580X Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml index 0ba93978..31aec6b5 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 580X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml index 3b96853e..4503f410 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 590 GME isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml index cb30de9c..e64d8a45 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 590 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 12 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml index 930f0025..7df0ca5c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 640 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml index f06d94af..49cf9793 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 640 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml index 77a170e9..829bbe32 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega M GH isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml index d94917da..efac5ed6 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml +++ b/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega M GL isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 4.0 Lithography: 14 nm DirectX Support: '12.0' diff --git a/specs/GPUs-CONSUMER/GCN-5.0.yaml b/specs/GPUs-CONSUMER/GCN-5.0.yaml index a9704b18..d6d9cf28 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2017-06-27' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml index 37c2a77c..92c21d3a 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml @@ -3,6 +3,8 @@ humanName: Atari VCS 400 GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml index 5cdfc374..655816f1 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml @@ -3,6 +3,8 @@ humanName: Atari VCS 800 GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml index a0d98878..221e39fc 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI25 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml index 3ad86a1b..718e2635 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V320 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml index d521e1df..b40a045f 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V340 16 GB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml index 5839bd16..8124d753 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V340 8 GB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml index b469936e..915ac932 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 16 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml index 43d76f1b..77b1af94 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 20 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml index 639f7dfb..64f41628 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 48 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml index 2fbf254d..393783c5 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 56 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml index ceda7a35..01338a1d 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 64 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml index 827b3243..7acf5dc0 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega 64X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml index 39bf3a9f..46894433 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 8100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml index f9a62c51..c7531546 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 8200 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml index 581dd1c1..416b4595 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro WX 9100 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml index 43573180..430176fc 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 10 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml index 26190794..1e94d454 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 11 Embedded isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml index 517937ab..7c41b639 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 11 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml index 8a554369..ca1c1348 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 11 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml index 6d413e0c..1bf8e2d2 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 56 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml index bbac80e5..f417f943 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 56 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml index ba4e4231..3fb72a9d 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 64 Limited Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml index ee6c4a17..7ca4cfb3 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 64 Liquid Cooling isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml index 7c0b0e22..4d3c6c84 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega 64 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml index 0a54eaa1..b335ebbd 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX Vega Nano isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml index 1ac5ee1a..9158745b 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 10 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml index 2b15a9b3..38344dee 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 11 Embedded isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml index 084b6e08..3262cece 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 11 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml index 4f2d1798..faf9192b 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 3 Embedded isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml index 099aacfd..df0b834c 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 3 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml index 2b8bdeab..9ba1e455 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 3 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml index 4bdd4080..8a19414e 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 6 Embedded isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml index de0115b5..cd700a63 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 6 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml index a3a3d177..2cc465b0 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 8 Embedded isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml index 547e0f8b..361520e6 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 8 Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml index 2b663485..448740e3 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega 8 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml index c6e0e421..103fe8f8 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega Frontier Edition Watercooled isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml index 580ad8cb..1714fa4f 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon Vega Frontier Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml index aaafe6cf..05512ecd 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml @@ -3,6 +3,8 @@ humanName: Zhongshan Subor Z+ GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1.yaml b/specs/GPUs-CONSUMER/GCN-5.1.yaml index 367b545a..b30a0f0a 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2018-11-18' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml index e77259c0..c0e82f0c 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 320SP Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml index a6f9b5e4..06fc5cbd 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 384SP Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml index 968d3059..f87b7f72 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 384SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml index 8a7798aa..61d7eafe 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 448SP Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml index 7cfb49c5..11769319 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 448SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml index 96fff0f2..2109b821 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 512SP Mobile isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml index 412f5ef6..84125ec1 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 512SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml index 46b189d1..9f25a683 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI50 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml index 2433f328..e99d4b6e 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml @@ -3,6 +3,8 @@ humanName: Radeon Instinct MI60 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml index f7bf4066..36233944 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V420 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml index e518af06..e1452d51 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro VII isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml index e10c24f0..a854e9bf 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega II Duo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml index 9f2ca68d..e962fdff 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro Vega II isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml index 3358ef85..68f19a6c 100644 --- a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml +++ b/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml @@ -3,6 +3,8 @@ humanName: Radeon VII isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: GCN 5.1 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-1.0.yaml b/specs/GPUs-CONSUMER/Generation-1.0.yaml index b7416370..efe96b93 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '7.0' Vulkan Support: 'N/A' Release Date: '1998' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml index d42722b7..4660c31a 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i752 Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml index 8b19590e..562b68dd 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml @@ -3,6 +3,8 @@ humanName: i752 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml index 180632c3..e0f5541d 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i810 Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml index 48221ff9..e06ccc57 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i815 Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml index 782fa2cd..58368343 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i830M Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml index 885c3293..e30bc036 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i830MG Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 1.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-11.0.yaml b/specs/GPUs-CONSUMER/Generation-11.0.yaml index b8f19e55..73f6653a 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2019-05-29' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml index 9816094b..3ea3ca2c 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics G4 48EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml index 06fb645c..416fbba5 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics G7 64EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml index 88c934f2..7ecc29ab 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 24EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml index 174bcbd5..d70ca062 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 32EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml index 864345b7..23e3afd1 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics G1 32EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml index 447cd0a8..5668d4db 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics G4 48EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml index 69095545..698d3e13 100644 --- a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics G7 64EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 11.0 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1.yaml b/specs/GPUs-CONSUMER/Generation-12.1.yaml index 69e37c06..d0350a8d 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2020' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml b/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml index 39d4554c..6b526b22 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml @@ -3,6 +3,8 @@ humanName: H3C XG310 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml index 608a1242..6bcebef2 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe Graphics G4 48EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml index 6bb650a2..66928061 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe Graphics G7 80EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml index 23846544..e4e752ce 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe Graphics G7 96EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml index 730e86f9..c95e9542 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe MAX Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml index cf155012..13ad074c 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 16EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml index 6546c875..ec9d290e 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 16EU isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml index d629f2ad..7077dbc5 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 750 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml index f80f046b..091e58dd 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics P750 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml index d12721e0..1207e111 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml @@ -3,6 +3,8 @@ humanName: Xe DG1-SDV isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml index d5c85e64..e8d566c9 100644 --- a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml @@ -3,6 +3,8 @@ humanName: Xe DG1 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.1 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2.yaml b/specs/GPUs-CONSUMER/Generation-12.2.yaml index 9a825959..646a9ce8 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2022-01-04' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml index 46bef098..3ae5221b 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe Graphics 80EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml index 8dd7c239..66f62b5f 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Xe Graphics 96EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml index 8f2bcef8..34c6e542 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 48EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml index d8c8229f..09f13100 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 64EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml index 665d7aff..f79428e6 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 710 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml index cdfe19c6..2f6a395e 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 710 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml index 992777fd..6b87bf32 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 730 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml index f1a753d2..54b990c6 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 770 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml index 4ade1c3a..13c43158 100644 --- a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 770 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.2 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5.yaml b/specs/GPUs-CONSUMER/Generation-12.5.yaml index 07a68700..65f84924 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: 'N/A' Release Date: '2021' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml index 92a86894..c64315cf 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml @@ -3,6 +3,8 @@ humanName: Arctic Sound 1T isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml index 20c68533..d05b93d5 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml @@ -3,6 +3,8 @@ humanName: Arctic Sound 2T isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml index 742ea30c..ea8400fb 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml @@ -3,6 +3,8 @@ humanName: Arctic Sound-M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml index e009183a..3331d55a 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Max 1100 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml index d9e88a4d..adf92a31 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Max 1350 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml index e87fe666..61295051 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Max 1550 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml index 4e25b118..0b2f000f 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Max NEXT isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml index 5d0846f5..7ceb0a65 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Max Subsystem isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.5 Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-12.7.yaml b/specs/GPUs-CONSUMER/Generation-12.7.yaml index 0692d1de..d576219e 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml index bd534c97..c2b2e4c2 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml @@ -3,6 +3,8 @@ humanName: Arc A310 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml index 9a415d4f..8fb4a5fa 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml @@ -3,6 +3,8 @@ humanName: Arc A350 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml index 1a71bb2a..e92bad58 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml @@ -3,6 +3,8 @@ humanName: Arc A350M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml index f3e4f8e1..f8053a89 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml @@ -3,6 +3,8 @@ humanName: Arc A370M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml index 0ce0da61..c2eb4b9d 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml @@ -3,6 +3,8 @@ humanName: Arc A380M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml index 48c347bb..7cc16238 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml @@ -3,6 +3,8 @@ humanName: Arc A530M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml index b369f69c..7f60323a 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml @@ -3,6 +3,8 @@ humanName: Arc A550M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml index 1873c970..5cdad17e 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml @@ -3,6 +3,8 @@ humanName: Arc A570M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml index 8b45e0f6..11d6f355 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml @@ -3,6 +3,8 @@ humanName: Arc A580 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml index 49358ff6..4fcf2c4b 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml @@ -3,6 +3,8 @@ humanName: Arc A730M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml index 6806d1b6..6e85ad12 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml @@ -3,6 +3,8 @@ humanName: Arc A750 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml index d87c17f6..8db28757 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml @@ -3,6 +3,8 @@ humanName: Arc A770 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml index 3e93d940..e06b8bac 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml @@ -3,6 +3,8 @@ humanName: Arc A770M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml index 1efd716f..d15f89dc 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml @@ -3,6 +3,8 @@ humanName: Arc A780 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml index 57b5cb45..2517bacb 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml @@ -3,6 +3,8 @@ humanName: Arc Pro A30M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml index 741fee0d..5a19bb2c 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml @@ -3,6 +3,8 @@ humanName: Arc Pro A40 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml index d6cc5e2b..182fcbf3 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml @@ -3,6 +3,8 @@ humanName: Arc Pro A50 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml index fc6cfda2..f0fc7cde 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml @@ -3,6 +3,8 @@ humanName: Arc Pro A60 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml index a7109376..cc5f0a80 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml @@ -3,6 +3,8 @@ humanName: Arc Pro A60M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml index bed64249..c1b702fd 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Flex 140 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml index 76029b80..18f3df8c 100644 --- a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml +++ b/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml @@ -3,6 +3,8 @@ humanName: Data Center GPU Flex 170 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 12.7 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Generation-2.0.yaml b/specs/GPUs-CONSUMER/Generation-2.0.yaml index 3b567b3c..023a2297 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '7.0' Vulkan Support: 'N/A' Release Date: '2002' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml index d9b60c80..2ecc457c 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml +++ b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml @@ -3,6 +3,8 @@ humanName: Extreme Graphics 2 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 2.0 Lithography: 130 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml index 155328c0..66db0e73 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml @@ -3,6 +3,8 @@ humanName: Extreme Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 2.0 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml b/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml index c00d20eb..20fb9315 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i852GM Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 2.0 Lithography: 130 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Generation-3.0.yaml b/specs/GPUs-CONSUMER/Generation-3.0.yaml index 76f503e1..1ad1ca2b 100644 --- a/specs/GPUs-CONSUMER/Generation-3.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-3.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0c' Vulkan Support: 'N/A' Release Date: '2004-06-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml b/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml index 880ae398..c67fed8c 100644 --- a/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml +++ b/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml @@ -3,6 +3,8 @@ humanName: GMA 900 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 3.0 Lithography: 130 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-3.5.yaml b/specs/GPUs-CONSUMER/Generation-3.5.yaml index 6466535c..5a83be1f 100644 --- a/specs/GPUs-CONSUMER/Generation-3.5.yaml +++ b/specs/GPUs-CONSUMER/Generation-3.5.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0' Vulkan Support: 'N/A' Release Date: '2005-06-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml b/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml index f81af39d..386b7f55 100644 --- a/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml +++ b/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml @@ -3,6 +3,8 @@ humanName: GMA 950 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 3.5 Lithography: 90 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/Generation-4.0.yaml b/specs/GPUs-CONSUMER/Generation-4.0.yaml index 01e58781..f67be36d 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0c' Vulkan Support: 'N/A' Release Date: '2006-06-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml index e71d5ccf..36c4a805 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml @@ -3,6 +3,8 @@ humanName: GMA 3000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 90 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml index ec743b7c..d8dc91a1 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml @@ -3,6 +3,8 @@ humanName: GMA 3100 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 90 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml index 7c7213e5..90910161 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml @@ -3,6 +3,8 @@ humanName: GMA 3150 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 45 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml index 1d24e840..081e0645 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml @@ -3,6 +3,8 @@ humanName: GMA X3000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 90 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml index 47b14bf4..928aacb9 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml @@ -3,6 +3,8 @@ humanName: GMA X3100 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 90 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml index c6da43f0..1b540d62 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml +++ b/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml @@ -3,6 +3,8 @@ humanName: GMA X3500 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 4.0 Lithography: 90 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/Generation-5.0.yaml b/specs/GPUs-CONSUMER/Generation-5.0.yaml index a27ada15..bfb7704c 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.0' Vulkan Support: 'N/A' Release Date: '2008-06-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml index e9c37d30..48a9d624 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml @@ -3,6 +3,8 @@ humanName: GMA X4500 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml index 03969cdf..3accee4c 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml @@ -3,6 +3,8 @@ humanName: GMA X4500M isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml index 1ff2f808..323578a7 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml @@ -3,6 +3,8 @@ humanName: GMA X4500MHD isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml index a95c5da6..0b645fd4 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml @@ -3,6 +3,8 @@ humanName: GMA X4700MHD isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Generation-5.75.yaml b/specs/GPUs-CONSUMER/Generation-5.75.yaml index 3b4ed888..47cf8c0c 100644 --- a/specs/GPUs-CONSUMER/Generation-5.75.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.75.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2010-01-10' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml index 7522e94e..4def8b97 100644 --- a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 12EU isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.75 Lithography: 45 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml index d5b0f80d..cae41c2d 100644 --- a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 16EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 5.75 Lithography: 45 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-6.0.yaml b/specs/GPUs-CONSUMER/Generation-6.0.yaml index 91a23ead..68e65abb 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2011-02-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml index 9a792fb0..db588b66 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 2000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 6.0 Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml index 12629daf..6db467d1 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 3000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 6.0 Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml index 26db587a..ac7d2c52 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 3000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 6.0 Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml index 5b67c28c..e8b4a51d 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 6EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 6.0 Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml index 094816f4..06dc5586 100644 --- a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml +++ b/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P3000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 6.0 Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.0.yaml b/specs/GPUs-CONSUMER/Generation-7.0.yaml index 93dff845..0787eaf9 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: '1.0' Release Date: '2012-04-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml index 863cc1c6..743be495 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 32EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.0 Lithography: 22 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml index 9bc6a502..38659764 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.0 Lithography: 22 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml index d8d2f562..4300528c 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.0 Lithography: 22 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml index 27500b1b..afeab957 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 6EU isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.0 Lithography: 22 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml index 7f941e29..a2928ab3 100644 --- a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P4000 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.0 Lithography: 22 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Generation-7.5.yaml b/specs/GPUs-CONSUMER/Generation-7.5.yaml index 2217710a..df89a81b 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.1' Vulkan Support: '1.0' Release Date: '2013-04-29' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml index cc5d86f8..9ff75534 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 10EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml index cced1c81..be8c84ac 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 10EU isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml index f6bb1688..c3d176a2 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml index b9583d8c..8f343dba 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4400 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml index 4518d485..b72e9418 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4400 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml index e05f973d..785f1c2e 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4600 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml index a75df482..20431abd 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 4600 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml index d8f69e9b..69df4503 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 5000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml index bd96cd33..ce74c1ad 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P4600 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml index e6db9e15..56495fc2 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P4700 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml index 15faafd6..6a66d6f7 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Graphics 5100 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml index 1e187912..1401bc41 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics 5200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml index 705f6373..0318db9f 100644 --- a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml +++ b/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics 5200 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 7.5 Lithography: 22 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0.yaml b/specs/GPUs-CONSUMER/Generation-8.0.yaml index cf16e169..6e7a049a 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.1' Vulkan Support: '1.0' Release Date: '2014-09-05' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml index 75089d7c..90ed7a25 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 12EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml index 5c0e56f6..23310489 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 400 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml index b9cdbf4e..4d59916a 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 405 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml index 1d089f71..88ff2155 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 5300 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml index 1fdb0494..7a2c45a5 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 5500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml index b3c012b8..c86a4bb8 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 5600 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml index 9fea98c8..7aa33eec 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 6000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml index 7b7424dc..f83787bc 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P5700 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml index cdd2c471..430446c6 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Graphics 6100 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml index 5c6d53d6..d424c799 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics 6200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml index 958cd943..b088d1b8 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics 6200 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml index ea4ef161..a3caa563 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml +++ b/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics P6300 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 8.0 Lithography: 14 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0.yaml b/specs/GPUs-CONSUMER/Generation-9.0.yaml index eca11725..47cb2ba1 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2015-09-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml index 0c929de3..8db13e97 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml index 176a0a8c..fbd1ad36 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 505 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml index 68086cd9..08ae3bf8 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 510 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml index f8769336..edd1575e 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 510 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml index 2b73ef1e..edd4520c 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 515 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml index 3ced6086..7d39a896 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 520 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml index a17252ce..e73e590e 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 530 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml index d8d83d37..e040e4a4 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 530 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml index 689a028d..ff179164 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P530 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml index ea242842..b380aa81 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Graphics 540 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml index 3fc5eaf6..8f747c91 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Graphics 550 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml index 22918d1b..b1e27ca9 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics 580 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml index 6c989ae3..b35be0c4 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics P555 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml index 61d66d47..23351b04 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics P580 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml index 9233f123..261b1f20 100644 --- a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml @@ -3,6 +3,8 @@ humanName: Iris Pro Graphics P580 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.0 Lithography: 14 nm+ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5.yaml b/specs/GPUs-CONSUMER/Generation-9.5.yaml index daf88722..92b3d29b 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2016-08-05' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml index d826d34e..ad959f6e 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 610 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml index 5e97c00b..67eae48e 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 610 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml index 2b44060e..7bf8c9ff 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 615 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml index 9b1cdf1d..54f3547f 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 620 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml index cc69e777..74894a5e 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 630 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml index a4b0555a..13204933 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics 630 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml index c12fcf92..fb64a47a 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml @@ -3,6 +3,8 @@ humanName: HD Graphics P630 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml index 19394d9a..2cd864f7 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics 640 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml index 72137078..96f0c652 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics 645 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml index f634c1c4..7ecbaf4b 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics 650 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml index 7744de08..e7f7a0b6 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Iris Plus Graphics 655 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml index c8881da5..faf4f6e9 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 600 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml index 4d56edb7..dd73caf8 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 605 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml index d7a2e2bd..a0cf7e13 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 610 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml index 1b569eb5..5476503c 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 610 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml index a4a911fe..d5b19b00 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 615 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml index 76f58247..b1d9e1de 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 617 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml index 34adec36..9c703509 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 620 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml index ae7bc285..0afedfdd 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 630 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml index c7535a83..0ffd9e8f 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics 630 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml index b3817469..be7483e2 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics P630 Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml index a6baa9e5..91727b51 100644 --- a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml +++ b/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml @@ -3,6 +3,8 @@ humanName: UHD Graphics P630 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Generation 9.5 Lithography: 14 nm+++ DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Hopper.yaml b/specs/GPUs-CONSUMER/Hopper.yaml index 879fb7db..88853efb 100644 --- a/specs/GPUs-CONSUMER/Hopper.yaml +++ b/specs/GPUs-CONSUMER/Hopper.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2023-03-21' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml b/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml index e75f218f..ef662209 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml @@ -3,6 +3,8 @@ humanName: H100 CNX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '456' diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml index 15115868..6e44f93d 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml @@ -3,6 +3,8 @@ humanName: H100 PCIe 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '456' diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml index f5dfa599..06fdb65f 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml @@ -3,6 +3,8 @@ humanName: H100 PCIe 96 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '528' diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml index fedaefd9..6b94be59 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml @@ -3,6 +3,8 @@ humanName: H100 SXM5 64 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '528' diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml index a43330c0..bef8a403 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml @@ -3,6 +3,8 @@ humanName: H100 SXM5 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '528' diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml index 8ac9ea0b..e8a263d1 100644 --- a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml @@ -3,6 +3,8 @@ humanName: H100 SXM5 96 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '528' diff --git a/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml index 7df2da50..0b4f8db0 100644 --- a/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml @@ -3,6 +3,8 @@ humanName: H800 PCIe 80 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '456' diff --git a/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml b/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml index e77fcd7a..19534d10 100644 --- a/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml +++ b/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml @@ -3,6 +3,8 @@ humanName: H800 SXM5 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Hopper Lithography: 4 nm HLSL Shader Model: '528' diff --git a/specs/GPUs-CONSUMER/IBM.yaml b/specs/GPUs-CONSUMER/IBM.yaml index 68b9c71e..bd96eeb3 100644 --- a/specs/GPUs-CONSUMER/IBM.yaml +++ b/specs/GPUs-CONSUMER/IBM.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0' Vulkan Support: 'N/A' Release Date: '1999-03-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml index a05e551b..5ba618ca 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml @@ -3,6 +3,8 @@ humanName: Fire GL1 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: IBM Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml index 8d717b14..12ad4383 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml @@ -3,6 +3,8 @@ humanName: Fire GL2 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: IBM Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml index 4bfb0aa7..e6009378 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml @@ -3,6 +3,8 @@ humanName: Fire GL3 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: IBM Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml index 21b05b80..ce31001c 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml +++ b/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml @@ -3,6 +3,8 @@ humanName: Fire GL4 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: IBM Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Kelvin.yaml b/specs/GPUs-CONSUMER/Kelvin.yaml index fb340c0b..dfbc5d77 100644 --- a/specs/GPUs-CONSUMER/Kelvin.yaml +++ b/specs/GPUs-CONSUMER/Kelvin.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: '2001-02-27' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml index dc0b1731..225d4529 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml @@ -3,6 +3,8 @@ humanName: GeForce3 Ti200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml index 36a364bd..06f75442 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml @@ -3,6 +3,8 @@ humanName: GeForce3 Ti500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml index 113e3591..0615edf7 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml @@ -3,6 +3,8 @@ humanName: GeForce3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml index d3a60b72..eb2db130 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Go 4200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml index b84eb176..e090d0e3 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Ti 4200-8X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml index b73ece1e..97bddfba 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Ti 4200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml index 6594c439..248edb7f 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Ti 4400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml index d7a97857..c39e973e 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Ti 4600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml index 67b90afc..fccea991 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml @@ -3,6 +3,8 @@ humanName: GeForce4 Ti 4800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml index 4f368782..04afce9b 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml @@ -3,6 +3,8 @@ humanName: Quadro DCC isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml index 7e1f46a4..39d39eaf 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 700 Go GL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml index 200df6e8..edca7cc5 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 700 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml index 3c9cda25..4945b7e7 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 750 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml index 4340254a..601ff8ee 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 900 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml index 168ac9b8..5fc0972e 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml @@ -3,6 +3,8 @@ humanName: Quadro4 980 XGL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml index bb9a6cc1..d1f2db29 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml +++ b/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox GPU isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kelvin Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0.yaml b/specs/GPUs-CONSUMER/Kepler-2.0.yaml index 1f2b8966..e114591d 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: '1.2.175' Release Date: '2013-04-01' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml index b9a1dfca..81d4cd0b 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 710A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml index 1568fef1..33339d5e 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 805A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml index 95cd0ae8..accd160d 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 810A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml index b8c74fe1..b9f47e99 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 825M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml index df1ff697..4e9fc147 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 910M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml index dd592262..8cc4713c 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 920A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml index 61b43aa1..f63639ae 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 920M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml index 571be512..8eb0b6f0 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 630 Rev. 2 PCIe x8 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml index 97253d09..5e6d9a40 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 630 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml index 22ce0a14..6381d2ff 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 635 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml index 868a5036..2f459c08 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml index be54d150..59bbd4c5 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 710 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml index 8529b751..e460fe78 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 710 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml index 75e15b4c..e6876dc9 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 710 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml index 1fe3b778..dfc9779f 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 720 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml index 8f337142..793e4b8f 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 730A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml index 094d4b0e..ec9a71b0 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 735M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml index 2818b8a0..81c348ab 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml @@ -3,6 +3,8 @@ humanName: Jetson TK1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml index c7930d38..18a02980 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K510M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml index 2ea54109..9748e0ff 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K610M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml index 3c4af078..7cdfa2ad 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml +++ b/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml @@ -3,6 +3,8 @@ humanName: Tesla K80 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler 2.0 Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler.yaml b/specs/GPUs-CONSUMER/Kepler.yaml index 5f856090..79ff01ba 100644 --- a/specs/GPUs-CONSUMER/Kepler.yaml +++ b/specs/GPUs-CONSUMER/Kepler.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: '1.2.175' Release Date: '2012-03-22' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml index a3ac6ac8..0cda4a90 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml @@ -3,6 +3,8 @@ humanName: GRID K1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml index 2daae38f..26cb328b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml @@ -3,6 +3,8 @@ humanName: GRID K100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml index c2c3120b..c255be65 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K120Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml index 1fd9be8c..2e9c3d81 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K140Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml index 4c42331d..04399ae2 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K160Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml index 1547eaba..b9a62dc3 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K180Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml index 5c4dbbca..1180f461 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml @@ -3,6 +3,8 @@ humanName: GRID K2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml index cc23f219..234e6513 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml @@ -3,6 +3,8 @@ humanName: GRID K200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml index b521f915..9afe1d9a 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K220Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml index 46ad61f9..4b024dec 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K240Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml index 16f52d8a..8b6515b8 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K260Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml index 78bf7b6f..810d7873 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K280Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml index 1496a2ab..3313d087 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml @@ -3,6 +3,8 @@ humanName: GRID K340 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml index faa44c42..7fef2aab 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml @@ -3,6 +3,8 @@ humanName: GRID K500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml index 248acd49..1559bdad 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml @@ -3,6 +3,8 @@ humanName: GRID K520 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml index fa252bd0..3c23ebcc 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K520Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml index ea5b1434..ecd666ed 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K540Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml b/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml index 080017c0..03264be3 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml @@ -3,6 +3,8 @@ humanName: GRID K560Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml index 7533e8e2..314f8cdf 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 810M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml index bd1eeff7..a6fd2320 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 1030 GK107 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml index e5a7a1e1..063c7a27 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 630 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml index 2906b1b0..10e7f312 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml index 32c1cd3d..e646d3c6 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml index 026c4610..6d0adb39 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 640M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml index 00ed9c7c..cfccb689 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 645M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml index 290a1e36..ea55aec8 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 650M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml index 2e82d301..f2df7ab2 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 650M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml index 080415c9..a067a7af 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 720 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml index f84ba785..c587d6c0 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 730 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml index bbb9bb1c..f93b3dad 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 730M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml index 2a5e2693..13ebbcf1 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 740 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml index bc2f770e..c5edc966 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 740 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml index 17102aac..3ece450d 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 740M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml index 343f6f7f..f7d487a1 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 745A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml index e0515c37..bdef4570 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 745M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml index 45b2ea6a..e635af4f 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 750M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml index 4ef9b2cb..b1c4ca6c 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 750M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml index 82867300..7b28eadb 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 755M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml index b64fcd2c..d0baaf03 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 755M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml index 3d7fd463..a7de7ec3 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 645 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml index 956db8a7..8eeb3753 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 650 Ti Boost isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml index 4241528c..5dbe566b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 650 Ti OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml index 02cb5ed2..29a7a3d5 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 650 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml index 0f158cc7..feacd6bd 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 660 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml index 339f456d..2923c892 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 660 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml index 2a981781..d4c334b1 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 660 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml index fa6cd2fd..43382b43 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 660M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml index b4243602..4d7efd72 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 660M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml index 14517bf1..5850bae7 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 670 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml index 467e3e88..971e471f 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 670MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml index 9656a292..4d800468 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 675MX Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml index 91db2e12..3049175d 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 675MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml index 2143d6ef..8cdde3fd 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 680 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml index 6a9baf24..e60b648f 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 680 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml index 8e91f928..1b0fbc1e 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 680M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml index 9b10389a..61e0c7cf 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 680MX Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml index 8fccb9ea..db4d6cf4 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 690 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml index 47d837db..1d8f1b7e 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 750 Ti OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml index 38a6464a..50d09f7f 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 OEM Rebrand isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml index 8f9a115c..52a80061 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml index 4f4ad418..656669b3 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 Ti OEM Rebrand isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml index 257abc7e..438e5668 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 Ti OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml index 6403bfe7..f237d3ff 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml index e0401a95..75d8f2d4 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml index bb536923..2a35ea4c 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml index e1371494..af89389b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 760M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml index edbc8dc7..cb563465 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 765M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml index 058784aa..43dffbd1 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 770 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml index 498e3aef..30598d92 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 770M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml index 5cfa8e9a..2da5aec5 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 775M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml index 697f3458..4c90320b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml index 92a2a8a4..21b62f70 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml index d9875f75..1e4ceee6 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780 Ti 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml index 66143481..2ae241c9 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml index 329d7410..3a3e6901 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml index 08e7bba1..d3c10206 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml index 8be02483..bbac908e 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 780M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml index 15b30904..88707c2e 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 870M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml index b0b27d57..e5c11843 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 880M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml index e0c10bbc..c9da562f 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX TITAN BLACK isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml index db59ec1e..9c41a990 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX TITAN Z isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml index 0f4606c6..bfe3cf41 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml +++ b/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX TITAN isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml b/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml index 0f652823..29a0fdf2 100644 --- a/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml +++ b/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml @@ -3,6 +3,8 @@ humanName: NVS 1000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml b/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml index 24ae9fd1..19b5b75f 100644 --- a/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml +++ b/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml @@ -3,6 +3,8 @@ humanName: NVS 510 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml index 4c5fe395..f5eb220e 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml @@ -3,6 +3,8 @@ humanName: Quadro 410 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml index 0d2a69ef..f0b39031 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml @@ -3,6 +3,8 @@ humanName: Quadro 4100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml index 1c6d0357..e8ecca6f 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K1000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml index 8a39e179..fdaed5e5 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml index 3dfc3ffd..86755b45 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K1100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml index 10462286..df0a0701 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml index 992be5a8..3016f2b7 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2000D isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml index 2200d9f8..df774b1e 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2000M Embedded isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml index 468d5c33..b11c169b 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml index 04485743..e1c03265 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K200M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml index 6933ab3e..e6a8529d 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml index 5ef75018..5bedd9bf 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K3000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml index 85084532..82c7dcd0 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K3100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml index 278e5790..03e8b0c6 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro K4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml index 9e6c1fa1..0d2cab1c 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K4000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml index 2fd09be4..c718df35 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K4100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml index d882d275..7cce8609 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml @@ -3,6 +3,8 @@ humanName: Quadro K420 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml index 2da18b81..cdd6c7ad 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml @@ -3,6 +3,8 @@ humanName: Quadro K4200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml index e90f84a9..30e7dc46 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5000 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml index fe3dc203..bef2e800 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5000 SYNC isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml index 1a95f0db..2d5b6b85 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml index eeab12a0..9c8a557a 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml index 0f7e71ae..308e2415 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml index 636558f4..6b03f634 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml index a5cf2c33..30838ac9 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml @@ -3,6 +3,8 @@ humanName: Quadro K5200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml index 9585783b..a17bbbd0 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml @@ -3,6 +3,8 @@ humanName: Quadro K600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml index c728bb7e..5df4e031 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro K6000 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml index b7a1c0b3..7468b5c4 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml @@ -3,6 +3,8 @@ humanName: Quadro K6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml index cacd24e3..6a7b384e 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml @@ -3,6 +3,8 @@ humanName: Tesla K10 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml index 36a5e538..f48852eb 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml @@ -3,6 +3,8 @@ humanName: Tesla K20X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml index 74ecedaf..fffa654c 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml @@ -3,6 +3,8 @@ humanName: Tesla K20Xm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml index fea5d122..03971bf6 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml @@ -3,6 +3,8 @@ humanName: Tesla K20c isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml index f8b9384c..0bbffd0a 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml @@ -3,6 +3,8 @@ humanName: Tesla K20m isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml index b1f36734..c2e1703e 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml @@ -3,6 +3,8 @@ humanName: Tesla K20s isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml index 99b57f1c..eb311ff8 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40c isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml index 597f1736..9dace4d6 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40d isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml index 4826c809..912d15ab 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40m isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml index ef62a41a..e0625fa7 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40s isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml index 95168b14..b3e315d1 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40st isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml index b2a48912..4326aaa1 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml @@ -3,6 +3,8 @@ humanName: Tesla K40t isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.1' diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml b/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml index 65053e7d..945e32bf 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml +++ b/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml @@ -3,6 +3,8 @@ humanName: Tesla K8 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Kepler Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Knights.yaml b/specs/GPUs-CONSUMER/Knights.yaml index ce6056cb..3e5584dc 100644 --- a/specs/GPUs-CONSUMER/Knights.yaml +++ b/specs/GPUs-CONSUMER/Knights.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2010-05-31' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml b/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml index bc4183a3..5a55a0b7 100644 --- a/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml +++ b/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml @@ -3,6 +3,8 @@ humanName: Aubrey Isle isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 45 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml index f8f0381d..287754e8 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi 3120A isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml index 83221cfb..f4cf54bd 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi 5110P isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml index 31e9a3ff..54cb0e6d 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi 5120D isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml index c79d8302..77d33f1e 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi 7120P isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml index 5e66f9d8..e1b86202 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi 7120X isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml index b02b930a..8c678db7 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml +++ b/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml @@ -3,6 +3,8 @@ humanName: Xeon Phi SE10X isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Knights Lithography: 22 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/MP.yaml b/specs/GPUs-CONSUMER/MP.yaml index 7410de73..ba6fd55a 100644 --- a/specs/GPUs-CONSUMER/MP.yaml +++ b/specs/GPUs-CONSUMER/MP.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: '2004-12-17' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml index 6ba4e40f..2dae99fd 100644 --- a/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml +++ b/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml @@ -3,6 +3,8 @@ humanName: QID LP PCI isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: MP Lithography: 0 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml index fd385e7e..9375f229 100644 --- a/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml +++ b/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml @@ -3,6 +3,8 @@ humanName: QID LP PCIe isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: MP Lithography: 0 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/MP/QID-PRO.yaml index a8530074..7dab2287 100644 --- a/specs/GPUs-CONSUMER/MP/QID-PRO.yaml +++ b/specs/GPUs-CONSUMER/MP/QID-PRO.yaml @@ -3,6 +3,8 @@ humanName: QID PRO isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: MP Lithography: 0 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/MP/QID.yaml b/specs/GPUs-CONSUMER/MP/QID.yaml index d15741e2..6b5d9d86 100644 --- a/specs/GPUs-CONSUMER/MP/QID.yaml +++ b/specs/GPUs-CONSUMER/MP/QID.yaml @@ -3,6 +3,8 @@ humanName: QID isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: MP Lithography: 0 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Mach.yaml b/specs/GPUs-CONSUMER/Mach.yaml index 1a11d12b..de9b18c8 100644 --- a/specs/GPUs-CONSUMER/Mach.yaml +++ b/specs/GPUs-CONSUMER/Mach.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '1992' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml index 435cae41..51ce0e24 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage II+ DVD isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml index c22f6cfa..f3fe13d6 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage II isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml index ccf97dec..9f07acb3 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml +++ b/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml index a6b70ec7..dc8853c5 100644 --- a/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml @@ -3,6 +3,8 @@ humanName: 8514-Ultra isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml index 1f94b77e..94c24084 100644 --- a/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 3D Rage II+ DVD isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml index af3883b0..91e6e2a2 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml @@ -3,6 +3,8 @@ humanName: Graphics Pro Turbo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml index 4f301a73..f6c38d8f 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml @@ -3,6 +3,8 @@ humanName: Graphics Ultra Pro ISA isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml index 68c2a066..cfce3a7f 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml @@ -3,6 +3,8 @@ humanName: Graphics Ultra Pro PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml index ee09189a..1d37c76f 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml @@ -3,6 +3,8 @@ humanName: Graphics Ultra Pro VLB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml index da8d5212..c769a2a4 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml @@ -3,6 +3,8 @@ humanName: Graphics Ultra XLR VLB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml index b75f4da5..675a53b9 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Graphics Ultra isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml index 4d8abf6a..bbd68b3d 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml @@ -3,6 +3,8 @@ humanName: Graphics Vantage isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml index 39a0c986..c045df9d 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml @@ -3,6 +3,8 @@ humanName: Graphics Wonder PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml index 9cbb1a38..0bec35ca 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml @@ -3,6 +3,8 @@ humanName: Graphics Wonder VLB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 700 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml index 932a00b5..fc97c2cf 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml @@ -3,6 +3,8 @@ humanName: Graphics Xpression ISA isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml index 422045a5..da89f2de 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml +++ b/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml @@ -3,6 +3,8 @@ humanName: Graphics Xpression isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml index 0049d44e..140879ea 100644 --- a/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Rage LT PRO AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml index 589012f3..19fdb072 100644 --- a/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml +++ b/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml @@ -3,6 +3,8 @@ humanName: Video Xpression+ isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml index e766b546..0ff9ff58 100644 --- a/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml +++ b/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml @@ -3,6 +3,8 @@ humanName: Video Xpression isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/Mach/WinBoost.yaml index 23feb01f..e10b9639 100644 --- a/specs/GPUs-CONSUMER/Mach/WinBoost.yaml +++ b/specs/GPUs-CONSUMER/Mach/WinBoost.yaml @@ -3,6 +3,8 @@ humanName: WinBoost isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/Mach/WinCharger.yaml index e791401e..e390d184 100644 --- a/specs/GPUs-CONSUMER/Mach/WinCharger.yaml +++ b/specs/GPUs-CONSUMER/Mach/WinCharger.yaml @@ -3,6 +3,8 @@ humanName: WinCharger isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml index 0035030b..43573473 100644 --- a/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml +++ b/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml @@ -3,6 +3,8 @@ humanName: WinTurbo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: Mach Lithography: 600 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0.yaml index ec7ea366..c068cab8 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2014-09-19' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml index c379f191..36dfe505 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml @@ -3,6 +3,8 @@ humanName: GRID M6-8Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml index e6cb7a6a..e6e0099c 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml @@ -3,6 +3,8 @@ humanName: GRID M60-1Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml index 4ccad1f4..488c2ecd 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml @@ -3,6 +3,8 @@ humanName: GRID M60-2Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml index a0473c3a..f161eccc 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml @@ -3,6 +3,8 @@ humanName: GRID M60-4A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml index 54491e25..2d574868 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml @@ -3,6 +3,8 @@ humanName: GRID M60-8Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml index 14820e06..741c00ee 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 750 GM206 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml index 8fb94aaa..95bbecdd 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950 Low Power isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml index e3ce7167..8b16f9d9 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml index d8d40b0b..f60a561f 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml index 1afcdbeb..caa6eb06 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 960 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml index 8cb57622..efd641c8 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 960 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml index 6c471602..04f77387 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 965M 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml index 47db9f3c..e8816ed0 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 965M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml index 7ccad9e1..129631b1 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 970 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml index e550cbcc..0aca2113 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 970M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml index 54d68754..382ce836 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 980 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml index 61fd47ef..cfd760c2 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 980 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml index a0c0d8af..be6e982d 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 980 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml index ce8cf4c7..bebf3a96 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 980M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml index 5f6ed38f..843dfe9e 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX TITAN X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml index c0f0797c..0344564c 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml @@ -3,6 +3,8 @@ humanName: Jetson Nano isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 20 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml index 37976efa..10c84d9e 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml @@ -3,6 +3,8 @@ humanName: Jetson TX1 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 20 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml index ebdaa5ca..08914b92 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml @@ -3,6 +3,8 @@ humanName: Quadro M2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml index 4bb8bdd0..616262d7 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro M2200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml index 097c97af..dd4896c3 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml @@ -3,6 +3,8 @@ humanName: Quadro M3000 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml index d5c04e53..ae3ea088 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M3000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml index 0caced54..af88fa22 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro M4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml index ecc66fa6..5711a4a1 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M4000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml index 7c2b4dd6..8f738427 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml @@ -3,6 +3,8 @@ humanName: Quadro M5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml index 4f40dd53..47a967a3 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M5000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml index 650fa687..dcdad141 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro M5500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml index 5fedf8ee..fec220a8 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml @@ -3,6 +3,8 @@ humanName: Quadro M6000 24 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml index 9440c235..018ebd14 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml @@ -3,6 +3,8 @@ humanName: Quadro M6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml index ca50a47b..78b212af 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml @@ -3,6 +3,8 @@ humanName: Switch GPU 16nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml index 5a8c24f4c..0de8eabe 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml @@ -3,6 +3,8 @@ humanName: Switch GPU 20nm isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 20 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml index 262e2ad7..6cac0d89 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml @@ -3,6 +3,8 @@ humanName: Tesla M4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml index bb8248f5..8cb5cc5c 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla M40 24 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml index ea5cc928..58764dcf 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml @@ -3,6 +3,8 @@ humanName: Tesla M40 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml index 5bb8b92b..e7ca9037 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Tesla M6 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml index cec281cf..874e8a4f 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Tesla M6 X2 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml index 86878ba1..32f0d9ac 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml +++ b/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml @@ -3,6 +3,8 @@ humanName: Tesla M60 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell 2.0 Lithography: 28 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Maxwell.yaml b/specs/GPUs-CONSUMER/Maxwell.yaml index b83b1ac5..60ecb62d 100644 --- a/specs/GPUs-CONSUMER/Maxwell.yaml +++ b/specs/GPUs-CONSUMER/Maxwell.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: '1.3' Release Date: '2014-01-13' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml index 2668305b..79070b66 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml @@ -3,6 +3,8 @@ humanName: GRID M10-8Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml index b537c746..3a6a1e50 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml @@ -3,6 +3,8 @@ humanName: GRID M3-3020 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml b/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml index 2acc63ac..26ec1565 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml @@ -3,6 +3,8 @@ humanName: GRID M40 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml index ad3f272f..1b6b6d2d 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 830A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml index 359f74d8..1b4c62f5 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 830M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml index 287ac8fe..c52800cd 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 840A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml index e4c7c929..c64b06b8 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 840M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml index f878f76c..53f0a809 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 845M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml index 86d1b7b2..8110c824 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 920MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml index 3709f648..2a3b092c 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 930A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml index 36a97df8..a545b213 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 930M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml index c163254e..9abfebcb 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 940A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml index 79018572..2379985c 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 940M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml index 35dadd1c..71ab011c 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 940MX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml index 09901e94..7da5e30f 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml @@ -3,6 +3,8 @@ humanName: GeForce 945A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml index 87a8c824..168c3a94 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 945M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml index 4a30cb74..cce72316 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 745 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml index c72c73ff..909bb55c 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 750 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml index d7ae15ec..468eedc2 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 750 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml index b97056b2..4feb38e7 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 850A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml index a817ae22..88681dc5 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 850M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml index be92bb27..2900711a 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 860M OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml index 4d2dbcf5..0e90f88f 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 860M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml index daf3fd6a..30924871 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950A isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml index cf7ff59f..6a9dfffa 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml index b2d921e9..0399042f 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 950M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml index c1f7f2eb..5ed2356b 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 960M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml index c8c1457a..fedbbcd6 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX110 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml index e1cf01d3..1d068669 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX130 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml b/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml index 5786c821..e9b991d4 100644 --- a/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml @@ -3,6 +3,8 @@ humanName: NVS 810 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml index 5b3091b2..6cce1ca0 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml @@ -3,6 +3,8 @@ humanName: Quadro K1200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml index 8a8b390c..69dbc273 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml index 7cd6874c..831d1928 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K2200M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml index 858d217c..78f5ba07 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml @@ -3,6 +3,8 @@ humanName: Quadro K620 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml index 72392841..37a640f6 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml @@ -3,6 +3,8 @@ humanName: Quadro K620M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml index b848ac53..41a28479 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M1000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml index 9f8c610d..94114a94 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro M1200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml index d2afc0a5..1e7870bc 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M2000M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml index 6166e6c3..398d800e 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M500M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml index 54880a82..6c629a48 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro M520 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml index 0d83c4cc..7a824b59 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml @@ -3,6 +3,8 @@ humanName: Quadro M600M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml index da80ab24..954b2495 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro M620 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml b/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml index 4f8fb790..a0d58997 100644 --- a/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml +++ b/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml @@ -3,6 +3,8 @@ humanName: Tesla M10 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Maxwell Lithography: 28 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/PX.yaml b/specs/GPUs-CONSUMER/PX.yaml index 4fac8f12..9bc259f1 100644 --- a/specs/GPUs-CONSUMER/PX.yaml +++ b/specs/GPUs-CONSUMER/PX.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: 'Unknown' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml index d65ad13d..39a48ec8 100644 --- a/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml @@ -3,6 +3,8 @@ humanName: M9125 PCIe x16 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: PX Lithography: 90 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia.yaml b/specs/GPUs-CONSUMER/Parhelia.yaml index 13489b89..063337f8 100644 --- a/specs/GPUs-CONSUMER/Parhelia.yaml +++ b/specs/GPUs-CONSUMER/Parhelia.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: '2003' + Manufacturer: Matrox sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml index 5db77403..997f36d4 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Millenium P650 LP MDD PCIe isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml index f919cb93..0e591830 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Millenium P650 PCIe isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml index 9f3850a4..b21282f7 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml @@ -3,6 +3,8 @@ humanName: Millenium P650 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml index e402ecfc..cee0a93e 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml @@ -3,6 +3,8 @@ humanName: Millenium P750 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml index d017f3c6..dd50266f 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml @@ -3,6 +3,8 @@ humanName: Parhelia 128 MB isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml index 3bf54c91..ad471df1 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml @@ -3,6 +3,8 @@ humanName: Parhelia 256 MB isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml index 66a31e2c..3794f77d 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml @@ -3,6 +3,8 @@ humanName: Parhelia APVe isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml index d4c78c20..9ec26875 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml @@ -3,6 +3,8 @@ humanName: Parhelia DL256 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml index 05e6bd5f..0e0d9293 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml @@ -3,6 +3,8 @@ humanName: Parhelia HR256 isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml index 90e3974e..fabb3487 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml @@ -3,6 +3,8 @@ humanName: Parhelia PCI isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml index 7a9fc4bb..1d5098af 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml @@ -3,6 +3,8 @@ humanName: Parhelia Precision SDT isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml index 57da9529..d3bbcafc 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml +++ b/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml @@ -3,6 +3,8 @@ humanName: Parhelia Precision SGT isPart: true type: Graphics Card data: + Manufacturer: Matrox + Vendor: Matrox Architecture: Parhelia Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Pascal.yaml b/specs/GPUs-CONSUMER/Pascal.yaml index 2f80eebd..66095241 100644 --- a/specs/GPUs-CONSUMER/Pascal.yaml +++ b/specs/GPUs-CONSUMER/Pascal.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.2' Release Date: '2016' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml index 3f5c00e3..2c0b16d9 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 1010 DDR4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml index 92448552..82fa3107 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 1010 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml index 88de9ab1..a482e7cc 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 1030 DDR4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml index 089335e8..8b878c5f 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 1030 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml index 31ad0dc8..efb8d242 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 3 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml index 4116fb16..77e6c1d8 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml index 955a7978..796d2b2a 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml index eefbc739..3c287665 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml index 19c5113c..d2084d55 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml index 79155141..bd43bdcb 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml index 6601f7a5..f445bb0b 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1050 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml index 6f0ca0d9..93984a0f 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 3 GB GP104 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml index 58f7ad3a..ce68c140 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 3 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml index 1b490026..ed63f9a4 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 5 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml index beb22ad5..f5e5004c 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 6 GB 9Gbps isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml index b929d45f..ad479856 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 6 GB GDDR5X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml index 5d844c68..3080ed1c 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 6 GB GP104 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml index 0b1e83c0..9ce302f7 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 6 GB Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml index 673bfda0..419c3c46 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 6 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml index 9ea6a760..65240aaa 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 8 GB GDDR5X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml index 1c27cc8e..b7fe460f 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml index ee9f08c4..8519a7cf 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1060 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml index ff9ac309..8f8f2b42 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1070 GDDR5X isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml index fe16d08e..d7b84ba4 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1070 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml index aab33719..37a1ee92 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1070 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml index 70b8d21f..e9d73c37 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1070 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml index ed49b260..c5255876 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml index df7c0c87..1762c7e0 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 11Gbps isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml index 668ed4e0..0a4a9596 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml index d63c4f73..c4f7112e 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml index 2aa8966f..072faaaf 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 Ti 10 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml index a11ae044..f4801b7d 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 Ti 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml index 6e147daf..1cf02c37 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml index a86fe5c5..0d9ab907 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1080 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml index 63759979..505493d4 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX150 GP107 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml index 53cb348f..c1d831fa 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX150 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml index 2d1c66bd..f9f4155b 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX230 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml index 0f474a95..c388460c 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX250 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml index 05e4239d..7f9de24d 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX330 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml index 2d5735a0..0b2cae36 100644 --- a/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml +++ b/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX350 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml b/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml index 1cc54cbd..5eadcc9d 100644 --- a/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml @@ -3,6 +3,8 @@ humanName: Jetson TX2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P102-100.yaml b/specs/GPUs-CONSUMER/Pascal/P102-100.yaml index b30702d7..10162dc4 100644 --- a/specs/GPUs-CONSUMER/Pascal/P102-100.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P102-100.yaml @@ -3,6 +3,8 @@ humanName: P102-100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P102-101.yaml b/specs/GPUs-CONSUMER/Pascal/P102-101.yaml index 3eb3ebfb..c9209805 100644 --- a/specs/GPUs-CONSUMER/Pascal/P102-101.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P102-101.yaml @@ -3,6 +3,8 @@ humanName: P102-101 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P104-100.yaml b/specs/GPUs-CONSUMER/Pascal/P104-100.yaml index 90c110fe..3fb11c27 100644 --- a/specs/GPUs-CONSUMER/Pascal/P104-100.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P104-100.yaml @@ -3,6 +3,8 @@ humanName: P104-100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P104-101.yaml b/specs/GPUs-CONSUMER/Pascal/P104-101.yaml index 9d7c28ba..91013c1f 100644 --- a/specs/GPUs-CONSUMER/Pascal/P104-101.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P104-101.yaml @@ -3,6 +3,8 @@ humanName: P104-101 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P106-090.yaml b/specs/GPUs-CONSUMER/Pascal/P106-090.yaml index 4010b2be..1d70119b 100644 --- a/specs/GPUs-CONSUMER/Pascal/P106-090.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P106-090.yaml @@ -3,6 +3,8 @@ humanName: P106-090 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P106-100.yaml b/specs/GPUs-CONSUMER/Pascal/P106-100.yaml index b9284d95..b290f6e9 100644 --- a/specs/GPUs-CONSUMER/Pascal/P106-100.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P106-100.yaml @@ -3,6 +3,8 @@ humanName: P106-100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/P106M.yaml b/specs/GPUs-CONSUMER/Pascal/P106M.yaml index 9667debc..f07acc0b 100644 --- a/specs/GPUs-CONSUMER/Pascal/P106M.yaml +++ b/specs/GPUs-CONSUMER/Pascal/P106M.yaml @@ -3,6 +3,8 @@ humanName: P106M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml index 798d8b74..b5a34421 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml @@ -3,6 +3,8 @@ humanName: Quadro GP100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml index 8944b451..e45a9112 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P1000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml index d9d89f63..1c618bbb 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml @@ -3,6 +3,8 @@ humanName: Quadro P1000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml index f11f52f0..5aecc8cb 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P2000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml index 9a375ed2..2a623e6d 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml @@ -3,6 +3,8 @@ humanName: Quadro P2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml index 3ca34335..cf0ffefa 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml @@ -3,6 +3,8 @@ humanName: Quadro P2200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml index 3fc4ad23..05c31441 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P3000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml index f4af8afa..e6e8e060 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro P3200 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml index f70f5efb..cb302b46 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P3200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml index e8b91fbe..2cee1823 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml @@ -3,6 +3,8 @@ humanName: Quadro P400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml index f7d14059..6f5ea137 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro P4000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml index cebda7ee..4f3646fa 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P4000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml index 1049de1f..3b1475dd 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro P4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml index db8ddfe6..8601c0c8 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro P4200 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml index 804ff621..bdfaaa3c 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P4200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml index 7ca11b9d..e1157c0b 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml index 19991d1a..00ad9064 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P5000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml index 335c8502..e01b296f 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P5000 X2 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml index 1c6d2488..878eac5c 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml @@ -3,6 +3,8 @@ humanName: Quadro P5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml index 85ab6374..bbbaacc8 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro P520 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml index ca0f98fc..0e54075a 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P520 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml index 91df2d89..38ab8b33 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro P5200 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml index b49315bc..1ee90141 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P5200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml index 879b7434..e86d4bea 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P600 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml index cda1aa35..d1cfcd33 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml @@ -3,6 +3,8 @@ humanName: Quadro P600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml index d49d9754..aa933791 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml @@ -3,6 +3,8 @@ humanName: Quadro P6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml index 2e76c4d1..55284a1a 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro P620 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml index 80746c04..868bf4fd 100644 --- a/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml @@ -3,6 +3,8 @@ humanName: Quadro P620 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 14 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml index 88627e05..dad18261 100644 --- a/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml +++ b/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml @@ -3,6 +3,8 @@ humanName: TITAN X Pascal isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml index cca93878..e17f8382 100644 --- a/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml +++ b/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml @@ -3,6 +3,8 @@ humanName: TITAN Xp isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml index ed5df576..6191f571 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml @@ -3,6 +3,8 @@ humanName: Tesla P10 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml index e17c7c56..583e71ea 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml @@ -3,6 +3,8 @@ humanName: Tesla P100 DGXS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml index 152c1048..f57a0453 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla P100 PCIe 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml index 74c66c32..6bca0a22 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla P100 PCIe 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml index ef965580..0dda99d4 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml @@ -3,6 +3,8 @@ humanName: Tesla P100 SXM2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml index 88d4f6d0..bc599b18 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml @@ -3,6 +3,8 @@ humanName: Tesla P4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml index 259bd347..960de97b 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml @@ -3,6 +3,8 @@ humanName: Tesla P40 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml index 4a5617ff..8febe496 100644 --- a/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Tesla P6 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Pascal Lithography: 16 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml index ba0dedfa..551a5167 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2008-03-02' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml index 28f6a403..212a4e3a 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml @@ -3,6 +3,8 @@ humanName: GMA 500 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: PowerVR SGX535 Lithography: 130 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml index 9e35d7ad..55cfde60 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml @@ -3,6 +3,8 @@ humanName: GMA 600 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: PowerVR SGX535 Lithography: 45 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml index 95d487bc..f3cd02e1 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2008-10-01' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml index 7974a7ec..e5517d9c 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml @@ -3,6 +3,8 @@ humanName: GMA 3650 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: PowerVR SGX545 Lithography: 65 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml index da513892..36a63b37 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml @@ -3,6 +3,8 @@ humanName: GMA isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: PowerVR SGX545 Lithography: 32 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml b/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml index bead8957..59aa299f 100644 --- a/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2011-12-11' + Manufacturer: PowerVR sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml index 9d317893..df3d59c1 100644 --- a/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml +++ b/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml @@ -3,6 +3,8 @@ humanName: Playstation Vita GPU isPart: true type: Graphics Card data: + Manufacturer: PowerVR + Vendor: PowerVR Architecture: PowerVR Series5XT Lithography: 32 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/R300.yaml b/specs/GPUs-CONSUMER/R300.yaml index 1f0e2046..07249de7 100644 --- a/specs/GPUs-CONSUMER/R300.yaml +++ b/specs/GPUs-CONSUMER/R300.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0' Vulkan Support: 'N/A' Release Date: '2002-07-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml index c55c83a4..3a519f34 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 2006 AGP Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml index a2a14d37..b1055051 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml index 2d50aeb9..947a32c9 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml index 454e1d18..c8eb80a3 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9600 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml index a54d68d1..6bf17723 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml index 5cb7cee8..be642a27 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9700 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml index cef78411..f3167378 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9800 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml index 8993fbb2..6f4c6d74 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9800 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml b/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml index 8eb6ff61..6b437e40 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml index 3a258b35..a4fcf03a 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9500 Z1-128 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml index f7d7c9da..1d061362 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9600 T2-128 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml index 03ff00a5..b77338d0 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9600 T2-64S isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml index 7a4dac6e..24b83d3d 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9700 X1-128 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml index 11ff9e1b..605bc582 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9700 X1-256 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml index 410d98c9..cb2c2a4d 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9700 X1-256p isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml index 5bb22d8b..3b71136b 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9800 X2-256 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml index b76bb008..0c55692d 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml @@ -3,6 +3,8 @@ humanName: FireGL 9800 X2-256T isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml index 237480cd..2d6ea73b 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3100 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml index 48786569..01b6ce76 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml index e54fba61..d2b6bf12 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml +++ b/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml index e55c2a60..79aa00e9 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml +++ b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2400 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml index 292d2984..718b90d4 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2400 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml index 478d5cd6..f7b2fd14 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL T2 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml index 4396a6e1..78e153b6 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL T2e isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml index b9b257c1..0a79dad7 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V3100 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0b' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml index a72e9b10..7861b659 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V3200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0b' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml index 8a3cbf19..5e896f57 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml index 750d13d6..319b5bbb 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9550 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml index cbd3a746..175e3dc8 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9600 PRO Turbo isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml index 582b7965..f0a1a8c1 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml index 67e9e971..3d495a33 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml index e483a61e..8c36db40 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9700 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml index 095ea873..fc761f2c 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml index 7c13c701..f1e57f9d 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X300 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml index 9d9e81c6..c5dc93ea 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0b' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml index 4015f94d..da37eea9 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X600 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0b' diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml index 5f5fadbd..dd62270f 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0b' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml index 0e905e5a..01f3b25a 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9500 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml index 78350f86..f53e71bc 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml index 267f2bb9..af2aa525 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9550 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml index 64ae740e..6f747f3c 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9550 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml index 6415966e..a3a5092b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9550 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml index db8edaba..9996cb7b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml index 44a7132e..280395ae 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9600 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml index c4302042..24263cf0 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9600 TX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml index bc31d8bc..49711cc2 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9600 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml index 07e9e66d..126a6328 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml index b8fd4775..6ef420ff 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9700 PRO X4 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml index 6d884dab..336bbdb8 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9700 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml index 3d894a12..b707a271 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml index 10e6e90e..173589a4 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 PRO MAXX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml index b61f8e2b..d24d90b1 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 PRO Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml index 3b82b44e..02021c1b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml index e4c4ee6d..312b664e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml index c0bdf051..5127794b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 XT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml index e667127c..d7243a81 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml index ccc7ebef..e6ac098b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 XXL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml index bc36f5ab..219aa6ff 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 150 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml index 16fd6a7e..705e0b58 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1050 AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml index 55a52b60..2a94344a 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1050 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml index 0aa6476e..686b8d3b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X300 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml index f1fd96ca..f6acb6bd 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml @@ -3,6 +3,8 @@ humanName: Radeon X300 SE HyperMemory isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml index 34a277f1..17bf82da 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X300 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml index c674138c..e9267b49 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml @@ -3,6 +3,8 @@ humanName: Radeon X300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml index 1e55d2fa..12a7d63e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml @@ -3,6 +3,8 @@ humanName: Radeon X550 HyperMemory isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml index 32385b0a..5bcd1aca 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml @@ -3,6 +3,8 @@ humanName: Radeon X550 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml index 70cc5114..136f8b9e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml index d4726ff7..dd804197 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X600 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml index 80473c1f..923abf03 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X600 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml index 096d7586..23342ad6 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml @@ -3,6 +3,8 @@ humanName: Radeon X600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml index 9a67b5aa..7d13d9db 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 200M IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml index ed5b5051..2e86eb6e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1100 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml index 9c9986ad..2610b428 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1100 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml index b1868143..1e5725e1 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1150 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml index d1d268ef..186cf1f3 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1150 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml index a119c135..16238422 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 200 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml index 9b6ad6b8..4ada6938 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 200M IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R300 Lithography: 110 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/R400.yaml b/specs/GPUs-CONSUMER/R400.yaml index bf99f04a..d1f0b25d 100644 --- a/specs/GPUs-CONSUMER/R400.yaml +++ b/specs/GPUs-CONSUMER/R400.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.2' Vulkan Support: 'N/A' Release Date: '2004-03-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml index aa2b664d..42b1bbda 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X800 GT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml index 00fe7775..52197ed3 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X800 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml index deaa6324..fa0577f4 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X800 VE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml index 8f38d09a..eba9ee8d 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X800 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml index 7a22b7fe..9a8392e3 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml index 0c41b92d..9dcaf9c2 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml @@ -3,6 +3,8 @@ humanName: FireGL V5000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml index 9c807d3a..dd9a3a76 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml +++ b/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml @@ -3,6 +3,8 @@ humanName: FireGL V5100 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml index 2346f0b8..acd25d8d 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml +++ b/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7100 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml index 673d5dcc..df8bc2f7 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml +++ b/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml @@ -3,6 +3,8 @@ humanName: FireGL X3-256 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml index ab15df0d..1be3b740 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml index 32650f42..3aa54859 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml index ff232799..5ea3660d 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X700 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml index 6f8e4853..7a3785c4 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml index 064e6bef..97d11cab 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml index c0243c36..dc190898 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml index db8357fd..8ebc3856 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon 2100 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 55 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml index b1e3b70c..64f4dbd8 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X550 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml index d79807eb..953bf6ea 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon X550 XTX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml index 79e2abb3..1b4f6f96 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml index d3b1e62c..2e6a1ef1 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml index 2df47fef..3767d0d8 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml index 6dbf1c72..4b9e94af 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml index 92fe1102..df076444 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml index cd9e07a6..189f0a2c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml index 5396475f..c3b62a35 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml @@ -3,6 +3,8 @@ humanName: Radeon X700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml index 2f445b0b..d5e8063b 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml @@ -3,6 +3,8 @@ humanName: Radeon X740 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml index c82a7939..4d894d62 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 CrossFire Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml index b1f18953..36c93fb9 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 GT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml index 64087642..05715c59 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 GT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml index bcf2a880..cc4ec838 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 GTO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml index 47dac4c4..b2ce3106 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 GTO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml index ebe74164..1a59215f 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 GTO2 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml index d85ce5c0..ef9aa23a 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml index 6622c89f..b5c88eec 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml index b8a0f2c1..ae0c2cdf 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 SE AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml index 91a009a6..9fed0d2c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml index 25959a76..3108d25b 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 VE AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml index ce2a723e..5e01e299 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XL AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml index 0b15a327..0c4c02a4 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml index 77e6b3d2..a88a0db7 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml index 3ae039e9..892511cc 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml index b72b87e5..fdabea2c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XT Platinum AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml index c0946f85..21dac162 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XT Platinum isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml index f2830a36..cc615c52 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml index bc2bd760..bceade7a 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml @@ -3,6 +3,8 @@ humanName: Radeon X800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 110 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml index 785b46fc..b5d14ebf 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 CrossFire Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml index 65c39ecb..55f8b1a6 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml index a6954060..f9ec9c13 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml index 2dcd2962..1fea21d4 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 XT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml index adf745b2..e58559c6 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 XT Platinum AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml index 7456d17b..2b32478f 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 XT Platinum isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml index d31e5b1a..2bb0208b 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X850 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 130 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml index 2cc735cd..d1db5a2c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1200 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 80 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml index d4a49f48..207958e0 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1200 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 80 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml index 315855bc..db43335c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1250 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 80 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml index 238960d0..d50a0fd1 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1250 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 80 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml index d75fb92f..f7707978 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 1270 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: R400 Lithography: 80 nm DirectX Support: '9.2' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/RDNA-1.0.yaml index 328bfef9..7cc9d97d 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2019-07-07' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml index b246c86d..0a16b362 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml index 80e1fa8c..eb30f7eb 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5300M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml index 00a2017b..dc2c34b6 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5500 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml index 8c25c177..8f718cd7 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5500M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml index 2efc227b..7e2a64db 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5600M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml index a11f6d7c..c1d5e3b4 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5700 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml index dbd62742..2e866911 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro 5700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml index 52ea5e79..473957fd 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V520 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml index 5535ef77..7615a6af 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro V540 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml index 311f5705..b08612ff 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5300M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml index 4e607dc8..474d57b1 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5500 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml index d1dbd30b..09c8d32e 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5500M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml index a2885ff9..d9295fd8 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5500X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml index 96bf7984..ed173b30 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml index d7e842e8..51731f5d 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W5700X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml index e3d2bfbc..085078b6 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5300 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml index 9e831919..f93ac417 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5300 XT OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml index b677661a..75f6f1a2 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5300M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml index 8345c830..c4a4d029 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5500 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml index f7b65c6e..93cc8c22 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5500 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml index ca6323c4..14a70438 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5500M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml index 5ba5be13..29d1ff23 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5600 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml index 5a535236..d7859a79 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5600 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml index ae9ffd0c..4a582b1c 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5600M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml index abb60442..4cebd47c 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5700 XT 50th Anniversary isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml index ec6cca6d..b1f2bfd1 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5700 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml index 3d4a723e..f002dc61 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml index 9855ef48..8296c843 100644 --- a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 5700M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 1.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/RDNA-2.0.yaml index 75b741e7..6221c748 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2020-10-28' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml index 19258312..408328d7 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml @@ -3,6 +3,8 @@ humanName: Playstation 5 GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm Vulkan Support: '1.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml index 0f7f5db9..339d3a68 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 610M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml index 55a933ee..d569686e 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 660M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml index 87beb1a5..bc2b3e70 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 680M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml index 1bfb49b5..8d31c987 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Graphics 128SP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml index a5f8789c..b37780ce 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO V620 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml index ec2785c1..ad6386db 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W6300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml index aa725636..1908516a 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W6400 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml index 4d7ade55..1ab2de22 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W6600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml index 96176415..58d80a2d 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W6800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml index cf3f565f..d9e230a2 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6300M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml index bd38ecc3..d7e6b567 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6500M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml index 2bb78457..07ff2c8e 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6600M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml index 53f1ef46..5ce0d769 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6600X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml index 6336350c..7773a1d0 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6800X Duo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml index 5fad377d..14f93ff3 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6800X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml index 4b6f0d7b..0af0df98 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml @@ -3,6 +3,8 @@ humanName: Radeon Pro W6900X isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml index 01c0d4d8..2198a172 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml index d52c32a8..c55f3b28 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6300M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml index cf8a41a4..c25b9687 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6400 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml index b130c7b4..eb2e9fc3 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6450M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml index aab01aa6..d8c15742 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6500 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml index ad99e7dc..da1325ce 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6500M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml index f9b32865..e61dcbca 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6550M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml index 516b0aaf..c406b5e9 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6550S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml index e940127f..f8dadba1 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6600 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml index 686459de..44c439dd 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml index 4079a43e..65d376fd 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6600M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml index 52493a70..04d200fb 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6600S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml index 27015735..46fdee47 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6650 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml index a7322cf4..2849273c 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6650M XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml index 5084511a..ab7cc9c0 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6650M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml index a2dd511d..7a304282 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6700 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml index 588ba911..db1c9033 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml index e14a19e8..5189189f 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6700M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml index 0de6081c..49efb6e3 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6700S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml index ed91abad..fd0e0d8b 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6750 GRE 10 GB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml index dd5412dd..62530660 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6750 GRE 12 GB isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml index e59be77a..9b67083a 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6750 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml index 1e4ad390..8b2bc70b 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6800 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml index 0e6ffe83..01e72a6c 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml index df1ec462..920b3798 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6800M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml index 2db93f69..2564f05f 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6800S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml index 3f344441..14cc1691 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6850M XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml index 528782bf..d0bc4905 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6900 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml index 578be7f6..ec39c053 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6900 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml index a2b34842..d19c3a51 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 6950 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml index 74a7f7a7..55bc09fc 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml @@ -3,6 +3,8 @@ humanName: Steam Deck GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml index d7e153b8..d24a50f2 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml @@ -3,6 +3,8 @@ humanName: Steam Deck OLED GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 6 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml index ca455a5c..102d0052 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox Series S GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml index 1fdbdf73..2ebbbe57 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox Series X GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 2.0 Lithography: 7 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/RDNA-3.0.yaml index 012c70e2..36e23d7b 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022-11-03' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml index bde60e67..e22e4ea6 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml @@ -3,6 +3,8 @@ humanName: ROG Ally Extreme GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 4 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml index f2b08400..47017e7e 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml @@ -3,6 +3,8 @@ humanName: ROG Ally GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 4 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml index 9bf56dcb..d018eafe 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 740M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 4 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml index 67942b96..5707f2dd 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 760M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 4 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml index 3956d3b1..aab1405f 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml @@ -3,6 +3,8 @@ humanName: Radeon 780M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 4 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml index 7ca91a40..573226ad 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W7500 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml index 813f2386..07153728 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W7600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml index 581601c4..6afd491a 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W7700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml index f1a876ae..9b96f29f 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W7800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml index a0bf5a2b..98dcbd08 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml @@ -3,6 +3,8 @@ humanName: Radeon PRO W7900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml index 6b307c2a..7197638e 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7500 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml index c0b75657..ae1d3b7e 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7600 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml index ce9238e3..1da405e2 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml index 961b64cf..8ef66229 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7600M XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml index d3659c3f..81358925 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7600M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml index 32587c7e..a53d95d6 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7600S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml index 70ca4a0a..dd4d0fdd 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7700 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml index eea99613..3fb193f1 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml index 031197c6..5db624dd 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7700S isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 6 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml index 35c7a320..83700a8c 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7800 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml index eeb969c2..8442b3c4 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7900 GRE isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml index 1c4cf4b1..5c5602d0 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7900 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml index 8bccd1a5..98b65abf 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7900 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml index 0e4a6797..30c67e60 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7900M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml index 75a123d5..defd9009 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7950 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml index d50581c7..6a89f37b 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7950 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml index 983d904e..97c1fd3c 100644 --- a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml +++ b/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon RX 7990 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: RDNA 3.0 Lithography: 5 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Rage-2.yaml b/specs/GPUs-CONSUMER/Rage-2.yaml index 30d79182..e41fc2cf 100644 --- a/specs/GPUs-CONSUMER/Rage-2.yaml +++ b/specs/GPUs-CONSUMER/Rage-2.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '5.0' Vulkan Support: 'N/A' Release Date: '1997-04-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml index 9a07cfbe..0d3aa67b 100644 --- a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage IIC AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 2 Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml index 3a4131a6..f5948ee0 100644 --- a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage IIC PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 2 Lithography: 500 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/Rage-3.yaml b/specs/GPUs-CONSUMER/Rage-3.yaml index 053965f2..e9af3b42 100644 --- a/specs/GPUs-CONSUMER/Rage-3.yaml +++ b/specs/GPUs-CONSUMER/Rage-3.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0' Vulkan Support: 'N/A' Release Date: '1997-03-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml index 5f2d9fe3..9913844d 100644 --- a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 3 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml index 8dfbfc24..68686b92 100644 --- a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml @@ -3,6 +3,8 @@ humanName: 3D Rage PRO PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 3 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml index fd2db152..30d3abd4 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml @@ -3,6 +3,8 @@ humanName: Rage PRO Turbo AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 3 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml index e398f5e4..75b8947d 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml @@ -3,6 +3,8 @@ humanName: Rage PRO Turbo PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 3 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml index 58c7633d..18d88d23 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml @@ -3,6 +3,8 @@ humanName: Rage XL PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 3 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4.yaml b/specs/GPUs-CONSUMER/Rage-4.yaml index 6c16c13c..3d019beb 100644 --- a/specs/GPUs-CONSUMER/Rage-4.yaml +++ b/specs/GPUs-CONSUMER/Rage-4.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0' Vulkan Support: 'N/A' Release Date: '1998-08-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml index bb69b539..70211e3d 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 128 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml index e052e754..dd923498 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 128 PRO Ultra isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml index e4f44bbf..5b9a9152 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 128 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml index fd10dd95..61c4311b 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 128 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml index 5d39cb08..c80f2069 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 GL PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml index 510fdb43..2888fc2c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 GL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml index 78bef00c..e8ec0e26 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 PRO Ultra GL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml index 70eb452f..d7d95f81 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 PRO Ultra isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml index 579fa1b3..d669e613 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml index 479e22a7..545c5bf4 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 Ultra isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml index b8c724cf..b039663c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 VR AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml index d74d4546..88fd0995 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml @@ -3,6 +3,8 @@ humanName: Rage 128 VR PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml index f3b2d3bd..05ab6f1d 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml @@ -3,6 +3,8 @@ humanName: Rage Fury MAXX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml index ce00324d..d84ea750 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml @@ -3,6 +3,8 @@ humanName: Rage Fury isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml index 696a5c7f..45b17aa3 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility 128 AGP 2X isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml index 6e65de24..c2a80d07 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility 128 AGP 4X isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml index 7d196418..f4207a6f 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-CL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml index 6bd2fca5..7eafb552 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml index b23f8026..c8a25892 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-M1 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml index 80504aa8..35056044 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-M3 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml index 2e6cf3be..a07da485 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-M4 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml index 1113b168..1bd0886c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml +++ b/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml @@ -3,6 +3,8 @@ humanName: Rage Mobility-P isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 4 Lithography: 350 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-5.yaml b/specs/GPUs-CONSUMER/Rage-5.yaml index a7ee5a93..3b9f69cf 100644 --- a/specs/GPUs-CONSUMER/Rage-5.yaml +++ b/specs/GPUs-CONSUMER/Rage-5.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0+' Vulkan Support: 'N/A' Release Date: '2000-08-24' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml index 59447186..6002d717 100644 --- a/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml +++ b/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml @@ -3,6 +3,8 @@ humanName: GameCube GPU isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 5 Lithography: 180 nm DirectX Support: '6.0+' diff --git a/specs/GPUs-CONSUMER/Rage-6.yaml b/specs/GPUs-CONSUMER/Rage-6.yaml index a1d67bec..781da695 100644 --- a/specs/GPUs-CONSUMER/Rage-6.yaml +++ b/specs/GPUs-CONSUMER/Rage-6.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '7.0' Vulkan Support: 'N/A' Release Date: '2000-04-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml index 72fe011a..acc5ef0d 100644 --- a/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder Radeon 7200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml b/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml index 493a277f..c1af3a67 100644 --- a/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml @@ -3,6 +3,8 @@ humanName: ES1000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml index 953898e7..fc84870f 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 7000 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml index f1081595..88db38ed 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 7000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml index ff6752e6..f7e7bbd2 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon-P isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml index 476e3546..e72392ea 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml index 0b42c973..760b838e 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7000 Mac Edition PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml index b1cc3a64..159d8fe3 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7000 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml index fdc8fd52..294ff795 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7000 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml index 45faf8e5..db1f6b52 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml index b6cba342..265c5c37 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7200 64 MB isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml index 4f3d77e0..fac990af 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml index fd76e26f..cc5387a7 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml @@ -3,6 +3,8 @@ humanName: Radeon DDR MAXX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml index 592447b2..b0536d99 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon DDR VIVO OEM isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml index 94f5ddb4..7fab7036 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon DDR VIVO SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml index 7ae1c0fa..15da4d77 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml @@ -3,6 +3,8 @@ humanName: Radeon DDR VIVO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml index 2771ee9c..32b1b98d 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml @@ -3,6 +3,8 @@ humanName: Radeon DDR isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml index 9c45a5bf..b145d484 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 320 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml index 0f444ebc..5594e8d6 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 320M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml index 638f1da3..55de98e4 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 330M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml index 0488b7cf..6f01e632 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 340 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml index 7737e894..07319499 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 340M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml index 6c55456a..38d8e37e 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 345M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml index 36fd094d..a68dfeae 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml @@ -3,6 +3,8 @@ humanName: Radeon IGP 350M isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml index f497f73c..b06ad033 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml index 842fe519..59986162 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon SDR PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml index 268c37cc..1aa9c04f 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml @@ -3,6 +3,8 @@ humanName: Radeon SDR isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml index 6d3150c8..afab59f2 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon VE AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml index a5fecdc6..c516e911 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon VE PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 6 Lithography: 180 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7.yaml b/specs/GPUs-CONSUMER/Rage-7.yaml index 68bc38d3..2cec4065 100644 --- a/specs/GPUs-CONSUMER/Rage-7.yaml +++ b/specs/GPUs-CONSUMER/Rage-7.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: '2001-08-14' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml index b6e6da4c..5e15576d 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9000 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml index 76e02b5a..0bf07da6 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9200 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml index c3b7e7aa..2697cf48 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 9200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml index d00781f1..58752270 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder Radeon 7500 VE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml index 9623bf1e..ab24056b 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder Radeon 7500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml index 082adfa5..5c49cc6c 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder Radeon 8500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml index e88f9772..cbb67d6e 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder Radeon 8500DV isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml index 259dc8e6..deb112f4 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml @@ -3,6 +3,8 @@ humanName: FireGL 8700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml index 482fe9f5..196e376e 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml @@ -3,6 +3,8 @@ humanName: FireGL 8800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml index aed1cf9d..edbc5707 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2200 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml index 4482d89d..26952337 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL 7800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml index 8d6dcaa6..9e07fe4b 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL 9000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml index 3d0c6442..67135ef2 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 7500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml index ea7f8e08..517dbbaf 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 7500C isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml index 922b1eeb..3b4f15af 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9000 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml index 312bd039..b88ee15b 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml index b8372f03..03b6daec 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9100 IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml index 5d7194a6..2c4c687a 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9100 PRO IGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml index a4c3a40d..8144d076 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon 9200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml index 410ff103..863865ca 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7500 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml index 1d549347..5beb24a3 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7500 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml index 98d66d7d..33bb55c6 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml @@ -3,6 +3,8 @@ humanName: Radeon 7500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '7.0' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml index 6006abfb..d5e9d025 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 8500 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml index af736c0a..4f0969d7 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml @@ -3,6 +3,8 @@ humanName: Radeon 8500 X4 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml index 27e491b0..c0d7f4c8 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon 8500 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml index 24428b04..4fdd984f 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml @@ -3,6 +3,8 @@ humanName: Radeon 8500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml index f14dba1d..0cadc64d 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9000 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml index 65c59d31..9f0f5120 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9000 PRO Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml index c61a55bd..74f648b1 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9000 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml index dbf95994..388d1ce1 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9000 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml index 978763da..b0717a4e 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9100 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml index e8d4acbe..34b87f17 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9100 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml index 86aac056..71759202 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml index da62598a..b9e539bd 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml index 6d440098..c4ab7a69 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml index 0becdc26..390e6664 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 SE PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml index d049c08d..79c4d89b 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml index 523cf07d..ea529aa2 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml index 0a963ad0..5c5dd4b7 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9250 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml index ca9132a0..fb834bf9 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml +++ b/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml @@ -3,6 +3,8 @@ humanName: Radeon 9250 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Rage 7 Lithography: 150 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/Rankine.yaml b/specs/GPUs-CONSUMER/Rankine.yaml index 3619113f..88793620 100644 --- a/specs/GPUs-CONSUMER/Rankine.yaml +++ b/specs/GPUs-CONSUMER/Rankine.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0a' Vulkan Support: 'N/A' Release Date: '2003-01-21' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml index 75bb8306..3c9322b5 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml index f12f0fa5..e9a436e4 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml index b848abc4..04766421 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml index 93abcaca..c1bc0150 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml index eb02b4ba..64aff4e9 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 Ultra Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml index 986c1576..ca8c27f0 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml index bef423a1..7caa8574 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml index 6db8f34a..26d66b4e 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5500 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml index 86330de9..cc0660c7 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml index 4bc012fc..8bee6756 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5600 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml index 3e436fbf..b85d7160 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5600 XT PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml index 0c773725..c715f817 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5600 XT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml index 1d56c59a..fc7abb54 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml index 03fad821..f34e4abe 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 EP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml index 8537a0b4..f8430c2f 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 Engineering Sample isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml index 88f938ff..d6c352f4 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml index 12899913..16ca2e57 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml index da33fbd0..4028bfbd 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 VE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml index eba5bdb9..d8bae8dd 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml index a59eb724..7063493d 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5800 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml index 10f305ba..089c4f90 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml index 3057744c..e3081971 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5900 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml index 9abce6cd..5f3fdfeb 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5900 XT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml index 3166bbf4..dd6e43cb 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5900 ZT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml index cac6101a..77a4ecdc 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5900 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml index 1d37837f..8e8a6181 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX 5950 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml index d4506c4f..239c6c36 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml index de20f37a..e4ceefa8 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5200 32M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml index 24028fc3..880dc511 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5200 64M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml index a8152567..4becc0e7 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5200 NPB 32M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml index 673df8f9..0939d04d 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5200 NPB 64M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml index 14bc4a84..cd5c66f0 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml index 68104d17..936d5d9b 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5250 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml index 89c83285..a7dd5c6a 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml index 26b336b8..d74d64e4 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5350 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml index d2b34f79..96bc76a2 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml index b2663d9f..85fa3a60 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5650 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml index a08c3fa3..569e794d 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml @@ -3,6 +3,8 @@ humanName: GeForce FX Go5700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml index b853c35f..2e71df7f 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml @@ -3,6 +3,8 @@ humanName: GeForce PCX 5300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml index 9a1efaaf..47267e48 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml @@ -3,6 +3,8 @@ humanName: GeForce PCX 5750 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml index eb0114ec..579e939a 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml @@ -3,6 +3,8 @@ humanName: GeForce PCX 5900 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml index de900be7..6e08acd2 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml +++ b/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml @@ -3,6 +3,8 @@ humanName: GeForce PCX 5950 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml index 071fe2f1..f0c5280e 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml index b273c939..65bb37fe 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml index 753f3aec..ffbce07a 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml index 5043e293..77a3ebb1 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 2000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml index ceebd7bc..d48fe203 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml index 83759656..f9a0f867 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3000G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml index 61f33b16..564f2ddb 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 330 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml index cf344d83..8edc98a0 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 500 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml index 7b93ffd6..9af79b47 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 600 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml index 9158b453..985fb72f 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml index 0cb56656..a0de2379 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX Go1000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml index 7db39370..bb4f3bab 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX Go700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 130 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml index a9b21690..30722045 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 280 AGP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml index 18f0d8d0..7ec3d2ee 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 280 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml index 7c9aaa63..2341c84a 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 280 PCIe isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml index 0ff804d6..cf1a822a 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml +++ b/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 55 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Rankine Lithography: 150 nm DirectX Support: '9.0a' diff --git a/specs/GPUs-CONSUMER/TeraScale-2.yaml b/specs/GPUs-CONSUMER/TeraScale-2.yaml index 2e576490..4293a327 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2009-09-23' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml index 36952f6c..d3156ff2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2270 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml index c3d516cb..b61bc051 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2270 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml index f0a0eee1..181fd8e2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2460 Multi-View isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml index dcf452f9..7f6c1d70 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml @@ -3,6 +3,8 @@ humanName: FirePro M2000 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml index 963f9698..1d2a9ef8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml @@ -3,6 +3,8 @@ humanName: FirePro M3900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml index 6a837e2d..99c8d963 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml @@ -3,6 +3,8 @@ humanName: FirePro M5800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml index 19e40c16..515886a6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml @@ -3,6 +3,8 @@ humanName: FirePro M5950 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml index f590741f..176c6cb7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml @@ -3,6 +3,8 @@ humanName: FirePro M7820 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml index ec45b37c..271a649c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml @@ -3,6 +3,8 @@ humanName: FirePro M8900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml index b5733114..2c245cd5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V3800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml index afb603d8..7f3d7783 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml @@ -3,6 +3,8 @@ humanName: FirePro V3900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml index ff1276a1..6c4c1bb8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V4800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml index 91fa11df..648f8023 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml @@ -3,6 +3,8 @@ humanName: FirePro V4900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml index 92362e51..eebb5a8f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml @@ -3,6 +3,8 @@ humanName: FirePro V5800 DVI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml index da9193ee..f27b4737 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V5800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml index f36b2beb..740ac1a2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml index 68a3cb03..207aeaef 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7800P isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml index 5b852241..9a9edfab 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V8800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml index d3278a26..ac429d61 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml @@ -3,6 +3,8 @@ humanName: FirePro V9800 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml index 409f796e..db08a111 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml @@ -3,6 +3,8 @@ humanName: FirePro V9800P isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml index fdd99645..ed327111 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml @@ -3,6 +3,8 @@ humanName: FireStream 9350 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml index 58753945..d0489ae1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml @@ -3,6 +3,8 @@ humanName: FireStream 9370 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml index 0c79d05f..e7a10fb9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5430 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml index 125b5672..c400a348 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml index b3662b97..f88e06db 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml index 37e2092e..2021acaa 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml index 90ecb3fd..722ab2af 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml index 99c91e6a..fffb4fdd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5670 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml index 90e49485..49348921 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5730 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml index 9a1e6feb..f6b1ae9d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml index 8477f0aa..2ad3c1f6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5770 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml index dcf121a0..e3cd22d7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5830 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml index 912d5a42..34a7320e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5850 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml index 77384381..c8bb6154 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml index 83a56a64..d8d2c748 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml index 3d298ef3..ef2046fb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml @@ -3,6 +3,8 @@ humanName: Radeon E6460 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml index 7d5bdcf0..8cb3a2b7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml @@ -3,6 +3,8 @@ humanName: Radeon E6465 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml index 52f34fce..a7b94747 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E6760 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml index f21955d3..768425f2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E6760 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml index a6b3b500..f7cff7de 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5450 PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml index f3231750..f0f8883c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5450 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml index f2bf0a18..d8c5cda9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml index c6e7fcde..ff1b7c3e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml index b99af489..331d9d1e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5490 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml index b373f0b1..9aaae50b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5530 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml index 9e00cda0..45d9c72c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml index 480464dc..af7cdc7c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5570 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml index 94abbb29..a4dfeaed 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml index f12087e8..95400040 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5630 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml index e03af560..edcef486 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5670 640SP Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml index c46f4b9f..7d3f5a4a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5670 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml index e953c33e..538771a1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5690 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml index 0ebbd8cf..4b956a04 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5730 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml index fd46028c..0702f5a6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml index 2af1d737..27e6e856 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5770 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml index f26f7db8..d7cf4dc9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5770 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml index c2d4a696..b893b3aa 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5770 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml index c57bbcd2..e346e11c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5830 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml index da9cf1cf..708da067 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml index d806cad6..c5c2c536 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5870 Eyefinity 6 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml index 0b569921..34ee1dda 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5870 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml index b5a959ed..b4a2ce8d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml index 6460c083..c7bc9139 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5950 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml index 13e7abaa..6af12d2f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 5970 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml index 5566c145..3f3adb91 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6230 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml index c9311c72..fc1907d7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6250 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml index aca562c2..1ee94a92 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6250 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml index 498c8348..bb5ecede 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6290 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml index 178585c4..9bd459ac 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6290 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml index 5bc92ccc..065713dd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6310 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml index 0ac52b32..12a13563 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6320 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml index 8f06a7bb..7bce3275 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6330M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml index 77a2cdd9..67f4327b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6350 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml index 14e25850..ef1b5b91 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6350A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml index d99aaac0..c60d0ae6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6350M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml index 820f391a..d0478086 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6370D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml index 17f730fd..7b23775e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6370M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml index 6e406d2d..d416e014 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6380G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml index 8190dabe..130b1f93 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6390 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml index b4a31a70..3a3adb80 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6410D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml index 0b1df307..c8f6ffdb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6430M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml index 9c4f39f4..8901892d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6450 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml index 28e4d3b6..76e71cdb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml index a6b74e51..b7318469 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6450A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml index ac63114f..aabc4491 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6450M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml index 1b7201c0..a963939a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6470M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml index b1396e47..5261165e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6480G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml index 1c305eb5..da125550 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6490 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml index f02c7779..d23a2a87 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6490M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml index acf5822b..0ac8e5cf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6490M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml index 59350fe9..e8259c4d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6510 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml index a15dba0a..0d52f1d3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6520G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml index d6c3b9b3..61af5150 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6530 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml index c354604e..aced6e95 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6530D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml index 016e148c..82ddf51e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6530M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml index 697bd40c..1880eb99 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6550A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml index fd1032fb..9d9e90c2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6550D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml index 0d6746f6..697071d0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6550M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml index ad2779f7..937f5481 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6570 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml index 3463a1c4..9f57075b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml index 0eb022bb..85d49234 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6570M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml index 6d810a49..1ab69fe3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6570M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml index de13e8d8..e227d5e9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6610 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml index a1e41cf3..78af9421 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6610M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml index 5503d724..ca3bcc21 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6620G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml index 7ae08a5b..b2f6edb5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6625M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml index 2774b9ff..fa2838f6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6630M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml index f04df7dd..46806976 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6630M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml index cbe92297..e889a2c2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6650A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml index 50802341..90df3f90 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6650M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml index 6bd91c2b..39516e98 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6670 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml index e5b74f1a..284334b9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6670A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml index d897e15d..97238f5f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6730M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml index 5a4e458c..e14803fd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml index 05026681..bb0f973d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6750M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml index 7017ca50..22bccebf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6750M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml index 14bf249c..6647dc3e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6770 Green Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml index a7e83596..7a858c44 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6770 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml index dc2e8528..bfca351b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6770M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml index 4b68593e..00a87a0c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6770M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml index 6b02ff1f..e715c8eb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6790 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml index 0d1e0b3b..a09e684a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6830M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml index e71c84c3..c0f36544 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6850 1440SP Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml index e967cc8c..bc66ef0b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6850 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml index 83923c54..241de030 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml index accf7914..129bb359 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6850M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml index 30a7c800..c227afce 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6870 1600SP Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml index 79ecfabe..a5806668 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6870 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml index 71eb62d5..a90e364c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml index 8b6aaad4..13786d3d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6870M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml index cec6e77b..f1a01b22 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6950M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml index 5b10c1b5..b2ea5d1b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml index a970514a..a6ca7f7a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970M Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml index eaac8605..f9e87c0f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970M X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml index 826d3967..34fda852 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml index dbf9644d..49bc1727 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6990M Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml index ceea92bb..a8677e84 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6990M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml index 4fbe78ee..1c8d4885 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7290 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml index 22072d46..7b60ce9a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7310 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml index 443efe80..397261ae 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7330M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml index 89d26603..8642b2b0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7340 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml index e53d3771..69e79384 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7350 OEM PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml index 7d0ecbb0..d44e3472 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7350 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml index 7f495b64..37737667 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7350M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml index 3d74df36..fed32dbf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7370M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml index c125e48c..15604910 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7410M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml index 81672f0f..d77b528a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7430M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml index 7ab6a7e9..edd1e4d6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7450 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml index 3dafba71..03b4ced0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7450A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml index 64fb539e..68ca325c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7450M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml index fd482e6f..b4c1b682 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7470 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml index 268b661e..405061c2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7470A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml index c03bfc2e..d83dbd88 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7470M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml index 791bb98d..71a95110 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7490M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml index d6876633..b11eaa6e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7510 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml index 34850b14..34ac8520 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7510M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml index 74664b6e..2058c8fe 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7530M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml index 5f7ddab0..b8781fbb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7550M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml index 5f6096d0..49e34f38 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7570 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml index b4e25895..63d6eb85 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml index eccfffc3..e9ad0332 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7570M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml index de8e4a3f..86afc0ea 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7590M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml index 35a26bd2..b0f300bc 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7610M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml index 56240080..44749a38 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7630M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml index 9e988b09..94390223 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7650A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml index 9d1b8477..ac99d558 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7650M Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml index c0987572..742fde8a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7650M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml index 801583bb..4d45e19a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7670 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml index e04a7585..45ecc5e0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7670A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml index 4f75da0c..78e16e20 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7670M Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml index 8d676931..83034898 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7670M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml index 08fbbf51..d0a0ee72 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7690M Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml index 6d8fe638..5294c9d6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7690M XT Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml index 5a0f2850..1c2236a3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7690M XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml index c23bb616..bbf64ba1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7690M isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml index b624d5ef..53c30502 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7720 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml index d0aab08d..0a587fc3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8350 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml index 5b262d9e..00c894ea 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8450 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml index a94f1405..0552bd00 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8470 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml index a0d4c3c2..cddcf19b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8490 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml index 738274fe..f8e82b07 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8510 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml index dd6bb085..451ac968 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8550 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml index c4e02d47..19901a0a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8570 OEM Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml index c985a25f..4194bda1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 220 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml index ee81e214..f6c76e5d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 230 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml index 9e3c2188..5ded22ca 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 230 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml index 5dbbd704..929ba43e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 235 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml index 7f2e6a7a..40bc7eec 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 235X OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml index 90a928f7..c7129ab3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 310 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml index c34b614d..6c7bd223 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml @@ -3,6 +3,8 @@ humanName: Radeon R5 A220 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml index 83bc3f68..bb5feab3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml @@ -3,6 +3,8 @@ humanName: Wii U GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 2 Lithography: 40 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/TeraScale-3.yaml b/specs/GPUs-CONSUMER/TeraScale-3.yaml index fe357ba0..aa101aae 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2010-12-14' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml index a3fd2cc5..e0159505 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml @@ -3,6 +3,8 @@ humanName: FirePro A300 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml index 5eb964c2..f4cdd728 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml @@ -3,6 +3,8 @@ humanName: FirePro A320 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml index c849ab2b..454aa1eb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml @@ -3,6 +3,8 @@ humanName: FirePro V5900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml index f57781b0..55cf95d0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7900 SDI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml index 51158df0..10d3fb91 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7900 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml index 241579b6..7811bef1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6930 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml index 6bda662a..80c98823 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6950 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml index 58ae5df7..6846ed40 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml index 9dce37d8..bf48c9a1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6970 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml index debd889e..7a3295f1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 6990 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml index 6d97fd03..474de761 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7400G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml index 58b77ccf..35561a1c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7420G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml index bda55294..40115b4a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7480D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml index 0e1eea44..650f0c60 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7500G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml index a445dd3f..a9beb0c1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7520G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml index d7097cc2..df806758 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7540D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml index 4a321e61..3e905bda 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7560D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml index 8ed60fe0..238f3356 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7560G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml index 202d4aab..5288e003 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7600G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml index 5ca5a666..fcc926ca 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7620G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml index 49539a6b..f1f25e0c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7640G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml index 812879d9..096ffefe 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7660D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml index 2040d2cb..99120c9c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 7660G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml index 494e5779..cc8244f1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8310G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml index f0546042..9a7c4e8f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8350G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml index 98275568..97f0211e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8370D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml index c6defe4e..50a43eaf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8410G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml index 3b4c8db0..c880a6ae 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8450G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml index 10f37498..a63397dd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8470D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml index bccb5067..410dfbe0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8510G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml index 27c04192..f04d0861 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8550D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml index 84458082..3e25a669 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8550G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml index 3bf62952..dabe0aef 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8570D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml index 383eb365..08309a1c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8610G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml index a972d4f9..2b642e30 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8650D IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml index 4520d6a4..bb5ed0a2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 8650G IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale 3 Lithography: 32 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/TeraScale.yaml b/specs/GPUs-CONSUMER/TeraScale.yaml index 354faaa8..6a78248d 100644 --- a/specs/GPUs-CONSUMER/TeraScale.yaml +++ b/specs/GPUs-CONSUMER/TeraScale.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2005-11-22' + Manufacturer: AMD sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml index 2a6cae3e..90931be7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml index 873f1f4d..cf163e41 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml @@ -3,6 +3,8 @@ humanName: FireGL V5600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml index 86a59113..e5f45713 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml index 20bcdfbb..24fd8c9c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml index 860a04f6..1d3ad7b2 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml @@ -3,6 +3,8 @@ humanName: FireGL V8600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml index 7f5859b0..da0732fe 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml @@ -3,6 +3,8 @@ humanName: FireGL V8650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml index e81651cd..ca9b04a3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2260 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml index 31997524..9393ca90 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2260 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml index 27fe9d4b..2dee3095 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2260 PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml index 5480a126..471daab9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2450 Multi-View PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml index 47b5735e..e8e7f611 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml @@ -3,6 +3,8 @@ humanName: FirePro 2450 Multi-View isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml index ea63f7d7..41714424 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml @@ -3,6 +3,8 @@ humanName: FirePro M5725 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml index 8e69796e..d3b7a70c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml @@ -3,6 +3,8 @@ humanName: FirePro M7740 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml index 3301451b..c89618fa 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml @@ -3,6 +3,8 @@ humanName: FirePro RG220 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml index f3a20a50..00ec9a7f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml @@ -3,6 +3,8 @@ humanName: FirePro RG220A isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml index daf03cd0..6d352e77 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml @@ -3,6 +3,8 @@ humanName: FirePro V3700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml index e1b03416..ed07417a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml @@ -3,6 +3,8 @@ humanName: FirePro V3750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml index 7b323ab2..c55d2945 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml @@ -3,6 +3,8 @@ humanName: FirePro V5700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml index 772b85d9..f8e32db5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml index f1897d4b..44f9a4ff 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7760 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml index b6fd7d68..e5a1c14a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml @@ -3,6 +3,8 @@ humanName: FirePro V7770 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml index c620d106..1bca0c39 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml @@ -3,6 +3,8 @@ humanName: FirePro V8700 Duo isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml index 35653d57..fd4aa642 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml @@ -3,6 +3,8 @@ humanName: FirePro V8700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml index 26dba68f..82ccbcfc 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml @@ -3,6 +3,8 @@ humanName: FirePro V8750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml index 4c4690c9..bf6876f5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml @@ -3,6 +3,8 @@ humanName: FireStream 9170 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml index ac4840f5..8c3ee313 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml @@ -3,6 +3,8 @@ humanName: FireStream 9250 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml b/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml index 980c58b3..3a8ba718 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml @@ -3,6 +3,8 @@ humanName: FireStream 9270 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml index 7f44d56a..b41a227c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml index 58673d70..17582af1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml index c14603bc..4e3b7c23 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5725 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml index 47fbb6e8..0e52f52f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2400 XT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml index be5b2e4c..3323a154 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2400 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml index afcdb084..47c9bd3e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2400 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml index c36197e4..8b8b8a60 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2600 XT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml index e7e71558..33a4fc25 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2600 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml index e78b78cf..56e30773 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2600 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml index dbf812e8..69b78dc4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml index d79e2086..fb9b520b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3410 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml index eb66cdca..7b3c53ad 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3430 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml index 8b839cfa..d33ef697 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml index 1edd0820..5a76c064 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml index ecdaa328..5b9e028c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml index 9b3e550f..56c1e73b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3670 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml index 601e8e04..b8addd3e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3850 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml index 2ea4b082..fbc13cbf 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml index 015b5e72..c63aac69 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3870 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml index 1327501f..7c6d4704 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 3870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml index d33391f5..2c16bad6 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4100 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml index 5ed27149..c13c5fcb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4200 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml index 5bca9143..c5ea9b6d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4225 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml index 55c9e0f5..837c3628 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4250 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml index dc5dc3ec..9aeaf814 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4270 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml index 6fbd39c0..faa55629 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4330 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml index c2fd3575..b704fe08 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4350 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml index f0c90bb7..d9bb00f8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4530 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml index 747eab7b..da3556da 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml index 659d52a0..8c0916cd 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml index b875345b..1165f6ed 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml index aee27c49..27c2d064 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4670 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml index ba480df3..23ddd2c5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4670 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml index 0d2184c4..73f0d423 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4830 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml index f8e59f1f..76936a05 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4850 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml index 80f83ccf..809aa112 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4850 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml index 3edcb13b..89b44426 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml index 8798afb1..dca19d80 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4860 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml index 195c1663..32b7d26e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4870 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml index 4e4e9cfd..ee81817e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 4870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml index 0c53b876..a6f25959 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5145 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml index 2e2fd1ad..992fd347 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 5165 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml index a6dd6701..34c91c60 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 530v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml index 44f1cfe4..71e2590b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 540v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml index 8b0270b7..c3f55727 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 545v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml index 01545d57..a11e3f82 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 550v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml index c18af698..af3b9829 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 560v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml index 237d2c4a..5ec4c249 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 565v isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml index 6acfc21e..d37ea48a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon 3000 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml index 7b5e9316..ee715209 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon 3100 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml index c6adb66f..1807bc5e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon 3100 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml index 65581c4a..99a28272 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml @@ -3,6 +3,8 @@ humanName: Radeon E2400 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml index 3cf29a1e..855cba82 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml @@ -3,6 +3,8 @@ humanName: Radeon E4690 MXM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml index 52178974..1fa9cb50 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml @@ -3,6 +3,8 @@ humanName: Radeon E4690 PCIe isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml index 6a152048..6ff4e5ac 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2350 PRO isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml index 1413f5bf..632ecd58 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2400 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml index 93d4d637..570f23a4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2400 PRO PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml index 385e2cfa..20acaa69 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2400 PRO isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml index fbdc782b..866afd44 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2400 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml index 6df62e49..dcc0c592 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2400 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml index 5b67cd4e..da1a0829 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml index aa1524d1..d15078f2 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 PRO isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml index 84513c14..a66fa751 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 XT AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml index a40d3b5a..0ac78724 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 XT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml index d7b50260..db480444 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 XT X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml index 2e8828be..52c486a7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2600 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml index 5fcdcbe5..9cac1384 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2900 GT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml index a16dc8a4..97c40896 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2900 PRO isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml index 284739b9..ee3d2892 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2900 XT isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml index eb9747f8..69692215 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2900 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml index b4dbfa98..d3bedc69 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2950 PRO isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml index f83447c8..2fd36716 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 2950 XTX isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml index 6e3e5ec8..79a85e27 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3200 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml index f05037b6..a5669816 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3200 Mobile IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml index af171ba4..15230969 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3300 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml index d1bf59f5..93e0f533 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3410 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml index 923ffe25..0bee640d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3450 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml index f1ceb60c..c4a4317e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3450 PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml index dea0cd42..7a5c7b9f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3450 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml index 94c25859..a1f16bd9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml index 40502131..d2c61594 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3470 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml index bfb973e7..fc71c269 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml index 060b258e..529979d9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml index 74d21d1f..1fcac4c4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3610 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml index fddf9c00..0269fc56 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3650 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml index 0b4c6b93..9fbef9d7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml index 11e0c4b2..1fa6947c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3690 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml index 0734bbf9..b1c19ba9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3730 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml index 8bbcd0aa..b6d5d295 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml index d197f61d..4ae19fc6 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3830 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml index a81d0f59..75415d27 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3850 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml index 038c606f..3cba32eb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3850 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml index 3f738e79..76342a56 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3850 X3 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml index fc7f1c18..0883ca72 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml index ebc1ce8d..f30bd9fb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3870 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml index 3e7b3493..b817f07e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3870 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml index 126bd414..5e45c070 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3870 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml index aac56ac6..a5ec78bc 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 3870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml index 96c2914f..46daaafc 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4200 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml index 22e22c50..2b13a391 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4250 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml index bac0d67d..8fcb5890 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4250 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml index 43f3ec0b..bdcdca5d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4290 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml index 833a1ea0..905181de 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4350 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml index b40ba097..b18b0286 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4350 PCI isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml index 8cb94495..9e39c8a4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4350 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml index f5dc5f63..499a3973 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4350 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml index 3d4e29bb..c345da4f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4450 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml index 3f27e62e..d57e3556 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4520 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml index 380ac312..85f6bf98 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4550 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml index 011b6d46..f9122559 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4570 Rebrand isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml index 1be185ff..86df7134 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4570 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml index 5e977d6b..3cd205f4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4580 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml index d4bf2de5..f1776b41 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4650 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml index ec61825f..de7bd017 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4650 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml index 83a03fbe..258889b1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4670 AGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml index 146efd7c..b41f74ae 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4670 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml index d77ac340..69739587 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4670 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml index 4ad5943e..55f6fd16 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4700 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml index 11e098a8..5b1a6171 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4710 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml index 240c6e32..288e340d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4720 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml index 51afd067..44323cd5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4730 OEM isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml index 4995c15e..0c4d3c11 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4730 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml index 9a68b126..ea7d9675 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4750 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml index b58c178f..3a35aec1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4770 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml index b0605979..1828b0e4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4810 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml index 31ac69b0..bcdc6f24 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4830 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml index 2ba4bead..b1c1ff6c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4850 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml index 82ccc51f..45058e43 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4850 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml index aa775bf0..f7039c21 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4855 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml index 9b104850..f8600d1c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4860 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml index ce60c1ac..5b6171f1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4870 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml index 8205b181..707e6fc4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4870 X2 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml index 273f6002..2a90257d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4870 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml index 88b432d5..30699fe7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml @@ -3,6 +3,8 @@ humanName: Radeon HD 4890 isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 55 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml b/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml index 046937f4..22c54ea3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon Xpress 2100 IGP isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml index 94b74e8d..01e54e67 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox 360 E GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 45 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml index 85e67756..706ee99b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml @@ -3,6 +3,8 @@ humanName: Xbox 360 GPU 65nm isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 65 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml index 12d33aeb..f5b5287d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml @@ -3,6 +3,8 @@ humanName: Xbox 360 GPU 80nm isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml index 82bcfbfb..105e3f4c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml @@ -3,6 +3,8 @@ humanName: Xbox 360 GPU 90nm isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml index 7a3e7c3c..7dc58243 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml @@ -3,6 +3,8 @@ humanName: Xbox 360 S GPU isPart: true type: Graphics Card data: + Manufacturer: AMD + Vendor: AMD Architecture: TeraScale Lithography: 45 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0.yaml b/specs/GPUs-CONSUMER/Tesla-2.0.yaml index 58477bbc..2e6f317a 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.1' Vulkan Support: 'N/A' Release Date: '2007-04-17' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml index dc287bab..a9ff73a8 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 205 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml index aefcb992..b20c7970 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 210 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml index 6ec30160..053457db 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 210 PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml index 265b0cab..90591382 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 210 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml index a392a7c4..d320104b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml @@ -3,6 +3,8 @@ humanName: GeForce 210 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml index 64483849..a99fb8f1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 305M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml index c5b56fd2..24ed8d43 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 310 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml index af536682..a05d9e21 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 310M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml index d0fcad1d..77bf2435 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 315 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml index e232e9fe..68ade453 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 315M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml index 3455d757..02d78452 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 320M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml index beef56f8..840c446b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 405 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml index b6ddc407..9b3ed4bc 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 405M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml index 45830862..aa764aac 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 505 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml index 8cb17dfe..89bc04eb 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 GS PCI Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml index 9ab3f701..aa0d3091 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 GS Rev. 3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml index 7381dbfc..e6339882 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300 GS Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml index daac5346..f19ae441 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400 GT Rev. 3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml index 5cc5f0dc..192608ba 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G105M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml index 0f3fc945..57dc4142 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce G210 OEM Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml index c81b2890..2bc51a3e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G210M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml index f82bdcf7..fe2924f1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 220 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml index b8000c28..502c00de 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 220 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml index 81506359..5594f4ac 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 230M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml index ae29e2db..e277208e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 240 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml index 602ca016..f4d8f2c8 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 240M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml index 1952d0a5..8e951679 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 320 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml index 5f6220e4..0894ba4d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 325M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml index 941ad6f6..abf9f035 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 330 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml index 9fbc5a00..2f2ba790 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 330M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml index 74a86538..c7c7c438 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 330M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml index 8d7d3b09..d14a9194 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 335M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml index 617ad046..01d06dd3 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 340 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml index 6a775b83..935077b0 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 415 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml index e2af4ee9..99160785 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 250M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml index 90050bb4..c85643d4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 260M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml index 7be82750..ce8e1b14 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 350M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml index 66366c9c..2f11452e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 360M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml index aa367505..292f35cf 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260 Core 216 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml index df5b7dbe..0f537f7e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260 Core 216 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml index 6d8e350f..64f18ea5 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml index 8a1ae232..3d2a774c 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260 Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml index edfdefe9..02400ded 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml index fbe9eefd..d86da7d0 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 275 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml index 4ab939be..4f45352c 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 280 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml index 6575c983..f42d88c6 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 285 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml index 1ad17e56..e22ff694 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 285 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml index 215fc000..757b595d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 285 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml index 00486d55..35c8d040 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 295 Single PCB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml index 193a9f19..2357abba 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 295 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml index cb1dad0a..ddf22808 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 470 PhysX Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '11.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml index 081f60f7..eb733f9e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml @@ -3,6 +3,8 @@ humanName: ION 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml index a56ae18b..e6e62f59 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml @@ -3,6 +3,8 @@ humanName: NVS 2100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml index 80c31b7d..5494caab 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml @@ -3,6 +3,8 @@ humanName: NVS 300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml index f5e5116f..05af743b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml @@ -3,6 +3,8 @@ humanName: NVS 3100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml index d0011749..c4aee940 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml @@ -3,6 +3,8 @@ humanName: NVS 5100M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml index a3f195c7..1326815d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml @@ -3,6 +3,8 @@ humanName: Quadro 400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml index 2785d0dc..9374e867 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml @@ -3,6 +3,8 @@ humanName: Quadro CX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml index 3a4dd2b9..8d74b472 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1800M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml index f83ea8d9..29cd2389 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 380 LP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml index 622b9132..4d638169 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml index df874fda..1385d79c 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 380M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml index aa38e9c7..e85a428d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4800 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml index 656f3008..0f646813 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml index bcfa83a6..673d136a 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 5800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml index efd4aab9..5bf8cb85 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 880M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 40 nm DirectX Support: '10.1' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml index f9621cde..0b985701 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 2200 D2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml index 6ca0aa43..d7f56645 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 2200 S4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml index 75224a0e..fdf17754 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml @@ -3,6 +3,8 @@ humanName: Tesla C1060 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml index 77af45f6..c9e29286 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml @@ -3,6 +3,8 @@ humanName: Tesla C1080 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml index e0b9af3b..54cb8b0d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml @@ -3,6 +3,8 @@ humanName: Tesla M1060 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml index d2f640af..c59f3c29 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml @@ -3,6 +3,8 @@ humanName: Tesla S1070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml index 9f4d28b4..d7b343f4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml +++ b/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml @@ -3,6 +3,8 @@ humanName: Tesla S1075 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla 2.0 Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla.yaml b/specs/GPUs-CONSUMER/Tesla.yaml index 75eb600f..f9b963b6 100644 --- a/specs/GPUs-CONSUMER/Tesla.yaml +++ b/specs/GPUs-CONSUMER/Tesla.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '10.0' Vulkan Support: 'N/A' Release Date: '2006-11-08' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml index 9db83841..7f4c5e95 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8100 + nForce 720a isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml index 48073274..c0c17a29 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml index d66e4167..a37c8c5f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8200M G mGPU AMD isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml index b5338e52..fa16d141 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8200M G mGPU Intel isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml index 4bd2bf41..7957a896 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8300 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml index 5cfd91a8..fe900989 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8300 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml index a5f44604..184598b1 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 GS PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml index e0ea3bb7..54262fcf 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 GS Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml index 374b0a17..51d5db7e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml index 8e6cf03c..49a792d0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml index 818d809d..15902f38 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml index c8b69150..3f072dfb 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400M G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml index ce9309a5..f8ad1d2f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml index e6e2c313..d3a1131e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8400M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml index 37b97267..69851197 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8500 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml index 266a9b0e..cd89063c 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml index 6c222dea..93f4e6a8 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml index 524e6585..f14c63e9 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml index 9899273d..43ca7114 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600 GTS Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml index aafabb7c..429a6253 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600 GTS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml index d838eb33..3dc54add 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml index 29ded2f4..b1f08206 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8600M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml index d0cf1945..b4ccf681 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8700M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml index 4692534d..ad5920e8 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GS Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml index 8bfccb13..31d6043e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml index c00a1c00..7d30ab87 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml index f5c69b2e..50ec2677 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml index bd1f87de..a7654e87 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GTS 320 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml index 52b138a0..3439bd12 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GTS 512 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml index df2fd9a8..4b406ee6 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GTS 640 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml index 1d1e1239..d668787d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GTS Core 112 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml index 72930a4a..0e172f1a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml index 3e9b4dec..ecdfca03 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800 Ultra isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml index 0bd8307e..256c335f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800M GTS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml index 1b651f99..6c8374e0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 8800M GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml index fefee0a5..041f8606 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml index 1a645ada..09fbce35 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9100M G mGPU AMD isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml index 6e4d46d7..953ff7ae 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9100M G mGPU Intel isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml index c134cd50..2ca432b3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml index d3765978..d8369493 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9200M GS GDDR3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml index d160d54a..e3bd9ed3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9200M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml index 8d0ae872..7e719f22 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9200M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml index 1d2d7f0f..94a4e739 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300 + nForce 730i isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml index f49961e7..f0e0400a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300 GE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml index d5de6501..90fb909a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml index 4fc6194a..5472059f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300 SE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml index 9ca094ca..67039a62 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300M G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml index 103d6f51..501e01b2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300M GS GDDR3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml index 987a554e..c015737e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9300M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml index de1bae1b..b7a35ca0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400 GT PCI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml index 754e678b..e7ec4e9f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400 GT Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml index 00dba1f7..0b41b972 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml index 8da6ae13..6affae92 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml index 394f5dc4..4cf70c7b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400M G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml index b5bfa787..f0095624 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9400M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml index 8fd60b92..a2b70850 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GS Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml index a58a52d4..9e35f1cb 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml index e73937f4..8578e6f2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml index b289126c..492c37d4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GT Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml index dff8191c..0fd06ea3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GT Rev. 3 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml index 2b15c1ac..b30826f4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml index 64920cae..cf5b1c22 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500M G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml index 97230c20..d031bbc4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9500M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml index 7f3fa825..b4453084 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GS OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml index abb617d0..a71c5001 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GSO 512 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml index 7dcb257a..ce3948a3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GSO isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml index 3e5b0e4a..4ab705a2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GT Green Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml index 583eee59..1061cdf7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml index 969607f5..7563922e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GT Rev. 2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml index 9d2171c8..23eea921 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml index f87ee51f..d9dc3b94 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml index 61b5a0c0..ae711849 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml index 80361e84..8c2c14ec 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600M GT Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml index ba84f18e..ec710f2f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9600M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml index 498fd3a5..0c2c987f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9650M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml index b440dda4..280f67a9 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9650M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml index 740e59ab..7b8f1343 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9700M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml index c0971a23..afbab4bd 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9700M GTS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml index 8fc602c2..d78706e4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800 GT Rebrand isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml index 17d5a434..961d4c59 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800 GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml index 645846fe..7f89621c 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800 GTX+ isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml index 1d377923..8febd234 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800 GTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml index adc6fa16..48feb289 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800 GX2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml index 4e36c771..af177ead 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800M GS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml index 0763e650..89705979 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800M GT isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml index 27b015ad..3aad9e5d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800M GTS isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml index 6d4b22dd..d7bbacad 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml @@ -3,6 +3,8 @@ humanName: GeForce 9800S isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml index 87c7d768..b5be2b3f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce G100 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml index 5045c41d..20c59761 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G102M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml index ab001078..1ed99797 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G103M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml index ba239962..3a42da26 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G110M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml index edc192b0..fb45d430 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml @@ -3,6 +3,8 @@ humanName: GeForce G205M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml index 34f80628..4df4c6ea 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce G210 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml index 8b74538c..a67b5a12 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 120 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml index eea520eb..a7602e84 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 120 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml index b2fa8089..839430ee 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 120M Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml index c86bb5d7..337fffb5 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 120M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml index 2b44f2ef..f9255112 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 130 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml index 770bdd5e..8a8796eb 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 130 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml index ff961303..52870784 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 130M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml index 8d350ed5..c1bf3476 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 140 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml index 700fad47..f71866f9 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 220M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml index d27b7280..ef734d97 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 230 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml index 341045d3..be248d9c 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 230 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml index 44bcc5d1..f7f8c290 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 240M LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml index 24832e6e..5bc80b9e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GT 320M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml index 059e7b70..8ece8240 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 150 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml index 6be730d6..8ab2dd03 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 150M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml index d69d4e0a..6bd40ad7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 160M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml index 9b42ac54..72a53cd7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 240 OEM isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml index 76ca60e9..72105bfa 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTS 250 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml index e64d5c9d..370f1e6d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 260M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml index 7fa3e40f..0029244d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 275 PhysX Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml index 6ef235ce..5eb0f419 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 280M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml index 12b8d9a5..aaa51e0a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 285M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml b/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml index d3fe0c89..f188f785 100644 --- a/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml +++ b/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml @@ -3,6 +3,8 @@ humanName: ION LE isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/ION.yaml b/specs/GPUs-CONSUMER/Tesla/ION.yaml index 65237efa..3cea608b 100644 --- a/specs/GPUs-CONSUMER/Tesla/ION.yaml +++ b/specs/GPUs-CONSUMER/Tesla/ION.yaml @@ -3,6 +3,8 @@ humanName: ION isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml index 117fdc3d..073f4ae6 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1600M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml index 5206896e..ea8641a4 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1700 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml index c99aef6d..8470bcbf 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml index 8f630d14..7f4ef034 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1700M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml index 487411c1..f6d38f5f 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 1800 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml index e819be9c..cd98573b 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 2700M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml index e58a94c7..2f27434d 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 2800M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml index 66ff9925..3bef48ab 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3600M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml index cc7a0835..89cf07aa 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 360M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml index 7f8dcc0b..2b825564 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 370 LP isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml index 78f5d3a4..86fb0095 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 370 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml index db18fb05..a8cce9d1 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3700 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml index c36ed42e..a63581d0 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3700M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml index db91e094..9f3c8e38 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 370M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml index 72d17755..3c03b8be 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 380 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml index c5666cbf..4b0dd05b 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 3800M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml index 6e8f12b8..c7bc61b9 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4600 SDI isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml index 522759ed..37cc0404 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml index 80d1f5c8..3610dc3f 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 470 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml index 163e97b6..08c17b50 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 4700 X2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml index f456c82b..80088946 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 5600 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml index 9eae8218..490a44ed 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 5600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml index b67e482b..adac2e33 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 570 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml index a1742a5f..176a6d3f 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 570M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml index c71fc762..1a818d1e 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 580 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 55 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml index 03bab8ee..b2391d32 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml @@ -3,6 +3,8 @@ humanName: Quadro FX 770M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml index f48f33d6..3ed51ebe 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 130M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml index 541d2482..bce6f23a 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 135M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml index bdd35eb5..9de05110 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 140M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml index b77420ad..e7b77ef6 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 150M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml index 87f59304..0ff12c95 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 160M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml index 9f771247..ba5579aa 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 290 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml index 76703fb5..8c084fd1 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 295 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml index 47620461..546b877b 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 320M isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 80 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml index 0616abb0..ea9ea2d0 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 420 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml index 82cddc83..0a4b8081 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml @@ -3,6 +3,8 @@ humanName: Quadro NVS 450 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml index 3c095a56..b3ba251a 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 1000 Model IV isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml index 8e2c32df..2ac7b2cd 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 2100 D4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml index 8e3a3eb6..3001dd27 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml @@ -3,6 +3,8 @@ humanName: Quadro Plex 2100 S4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml b/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml index 694953a2..f15547b7 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml @@ -3,6 +3,8 @@ humanName: Quadro VX 200 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 65 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml index e5cc2843..8f6afac1 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml @@ -3,6 +3,8 @@ humanName: Tesla C870 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml index 0b899b1f..ece94166 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml @@ -3,6 +3,8 @@ humanName: Tesla D870 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml b/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml index 56103234..6565eaf4 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml +++ b/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml @@ -3,6 +3,8 @@ humanName: Tesla S870 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Tesla Lithography: 90 nm DirectX Support: '10.0' diff --git a/specs/GPUs-CONSUMER/Turing.yaml b/specs/GPUs-CONSUMER/Turing.yaml index b0945688..829c2e81 100644 --- a/specs/GPUs-CONSUMER/Turing.yaml +++ b/specs/GPUs-CONSUMER/Turing.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2018-08-13' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml index 25f66ea8..b13cc4de 100644 --- a/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml +++ b/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml @@ -3,6 +3,8 @@ humanName: CMP 30HX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml index b0ee65e1..05e27e5a 100644 --- a/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml +++ b/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml @@ -3,6 +3,8 @@ humanName: CMP 40HX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml b/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml index 8e95850b..9374ada1 100644 --- a/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml +++ b/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml @@ -3,6 +3,8 @@ humanName: CMP 50HX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml index 4b555df2..9dc6b58d 100644 --- a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml @@ -3,6 +3,8 @@ humanName: GRID RTX T10-16 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml index 6c57b8b5..5e8d3454 100644 --- a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml @@ -3,6 +3,8 @@ humanName: GRID RTX T10-2 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml index 88ebeb0b..4a370fdd 100644 --- a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml @@ -3,6 +3,8 @@ humanName: GRID RTX T10-4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml index 0763fb31..76082f44 100644 --- a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml +++ b/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml @@ -3,6 +3,8 @@ humanName: GRID RTX T10-8 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml index 636ce6e0..0fb713a8 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1630 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml index 4b52b807..e2e3084f 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 GDDR6 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml index 981aa891..dedc897a 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml index 4825a267..bd9d343c 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml index 2fe2d49d..21eb5746 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml index 9fec5529..a8ad85cc 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 TU106 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml index c2ec740a..2dcfd431 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 TU116 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml index e7017cde..fa505279 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml index d2328d40..6635a2da 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml index 1d6cb670..d3f45c4a 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1650 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml index 5f42a3dd..4f420401 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1660 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml index b3e859f0..697eaa39 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1660 Ti Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml index 24d7df71..974302e0 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1660 Ti Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml index 75a78d1c..72b81adb 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1660 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml index 05d7beaa..38958604 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml @@ -3,6 +3,8 @@ humanName: GeForce GTX 1660 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml index 5b16063d..15aac5ca 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX450 12W isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml index e6056627..5fabdd09 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX450 30.5W 10Gbps isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml index 35b77705..27e6475b 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX450 30.5W 8Gbps isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml index 8d6212fb..7b474417 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml @@ -3,6 +3,8 @@ humanName: GeForce MX550 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml index ceaddd4a..b3b96561 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml index f981bf64..33f1ba11 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 Max-Q Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml index 500fc678..76e28796 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml index 3e1939a3..06af8c5e 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 Mobile Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml index 87c9a6cf..63fa0619 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml index 17a43ced..07af755f 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 SUPER Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml index 6c944a44..ebee8e2c 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml index 275613ef..ad368a1a 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 TU104 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml index e18f215f..46e179e0 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2060 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml index 6457812d..0394e786 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 Max-Q Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml index e41ef42f..26ba01f9 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml index 1141a750..6e915e7d 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 Mobile Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml index 6392e714..9cb96100 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml index c5ac0a6b..4144f567 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 SUPER Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml index ffad7b35..27dfb7f3 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 SUPER Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml index c69a8c84..5e67b0d5 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml index e06a8e6d..fbda583e 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2070 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml index 6548245c..f929897e 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 Engineering Sample isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml index e80cf4c2..43551000 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml index e50db2a9..19801bbc 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml index 7253f8a8..bffacf04 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 SUPER Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml index 7d25485f..75367f64 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 SUPER Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml index 507c63f4..142b9b5e 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 SUPER isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml index 44e8fff3..54e60527 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 Ti 12 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml index a24a6b36..6801531c 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 Ti isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml index 24a038a5..30088c4f 100644 --- a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml +++ b/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml @@ -3,6 +3,8 @@ humanName: GeForce RTX 2080 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml index 3e1fd03c..2c034b6c 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 3000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml index f06178b3..026f2eb7 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 3000 Mobile Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml index 353ee42d..65c64d13 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 3000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml index 03707871..5eb185a3 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 3000 X2 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml index d4b0d3f9..6a98f4be 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 4000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml index 7fa46f91..3b4ba546 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 4000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml index 2e38033c..0f5a6493 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 4000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml index a0796545..610fd467 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 5000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml index 24612270..683529ec 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 5000 Mobile Refresh isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml index 23492641..a6655fa7 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 5000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml index ccfb8492..63a54446 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 5000 X2 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml index 152e191b..8caa598a 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 5000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml index 283123ab..20f7dbb8 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 6000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml index 60319333..dd12a357 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 6000 Passive isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml index 30b0c29a..0ad3a726 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 6000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml index 99adbc98..12b2ad94 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 8000 Passive isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml index ba2b610e..b245f193 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml @@ -3,6 +3,8 @@ humanName: Quadro RTX 8000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml index 1b85fc86..2bba3db9 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro T1000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml index 2f3474b5..b2ac87ec 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml @@ -3,6 +3,8 @@ humanName: Quadro T1000 Mobile GDDR6 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml index 8d5272a9..9a1e6ee8 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro T1000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml index 4287f777..7d257b0c 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro T1200 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml index 03ee0812..53a4d04e 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro T1200 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml index 3859427c..8e2884cc 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: Quadro T2000 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml index de95085c..038b111d 100644 --- a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Quadro T2000 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml b/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml index 9b4a997d..6286b4bc 100644 --- a/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml @@ -3,6 +3,8 @@ humanName: T1000 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T1000.yaml b/specs/GPUs-CONSUMER/Turing/T1000.yaml index a875e643..20ccb422 100644 --- a/specs/GPUs-CONSUMER/Turing/T1000.yaml +++ b/specs/GPUs-CONSUMER/Turing/T1000.yaml @@ -3,6 +3,8 @@ humanName: T1000 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml b/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml index d913ef8f..e4b7f6ac 100644 --- a/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml @@ -3,6 +3,8 @@ humanName: T400 4 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T400.yaml b/specs/GPUs-CONSUMER/Turing/T400.yaml index 2d184a38..909a93a1 100644 --- a/specs/GPUs-CONSUMER/Turing/T400.yaml +++ b/specs/GPUs-CONSUMER/Turing/T400.yaml @@ -3,6 +3,8 @@ humanName: T400 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml index ef0031de..f1199925 100644 --- a/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: T500 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml index eee093e0..2abae92f 100644 --- a/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml @@ -3,6 +3,8 @@ humanName: T500 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml index 241ef282..9bff0493 100644 --- a/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml @@ -3,6 +3,8 @@ humanName: T550 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml b/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml index 75d358c5..b70a65ff 100644 --- a/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml @@ -3,6 +3,8 @@ humanName: T600 Max-Q isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml b/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml index fea29e72..ff3ae1dc 100644 --- a/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml @@ -3,6 +3,8 @@ humanName: T600 Mobile isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/T600.yaml b/specs/GPUs-CONSUMER/Turing/T600.yaml index 343d2705..d40c6a07 100644 --- a/specs/GPUs-CONSUMER/Turing/T600.yaml +++ b/specs/GPUs-CONSUMER/Turing/T600.yaml @@ -3,6 +3,8 @@ humanName: T600 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml b/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml index 30550145..c7647f57 100644 --- a/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml +++ b/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml @@ -3,6 +3,8 @@ humanName: TITAN RTX isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml index 4f49ab8f..84a70562 100644 --- a/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla T10 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml index 8eb6a75a..942fa544 100644 --- a/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml @@ -3,6 +3,8 @@ humanName: Tesla T4 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml index de4f8a6c..899f27aa 100644 --- a/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla T40 24 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml b/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml index d949c213..78bd6cf8 100644 --- a/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml +++ b/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml @@ -3,6 +3,8 @@ humanName: Tesla T4G isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Turing Lithography: 12 nm DirectX Support: '12.2' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml index 81ebd27b..1d7a3026 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2005-10-01' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml index 82541ab7..03fce271 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder 2006 PCIe Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml index 8e9447e4..3939e0d2 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X1800 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml index 597954ef..624d7965 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml @@ -3,6 +3,8 @@ humanName: All-In-Wonder X1900 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml index d2d98590..df2c525d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml index 4c76d00f..5ab15e8d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3350 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml index b226787a..d96289d4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml @@ -3,6 +3,8 @@ humanName: FireGL V3400 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml index 75f22c43..5589823a 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml @@ -3,6 +3,8 @@ humanName: FireGL V5200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml index 661db713..ead01744 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml index bb953d84..5ec68364 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml index 5899e80f..a13b2007 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml @@ -3,6 +3,8 @@ humanName: FireGL V7350 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml index febfb603..a70731fa 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2250 PCIe x1 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml index 693ea18a..5c76782a 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml @@ -3,6 +3,8 @@ humanName: FireMV 2250 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml index 926a39a0..e0b22e30 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5200 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml index c58efd20..4c666adb 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml @@ -3,6 +3,8 @@ humanName: Mobility FireGL V5250 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml index ea54cca5..e9c1892d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon HD 2300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml index 0acdbae4..617049d9 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml index c9f72dcf..c8eaf6c7 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1350 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml index f4ec8ce7..ef76bce3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1400 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml index 7c878b99..dbc0a0d9 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1450 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml index a18570ad..17ffe9ee 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1600 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml index 8e733447..ff0a1156 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml index 6d018c29..25120b39 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1700 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml index a73344c5..e59344a1 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml index df8bbbc8..a1dd384b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml index e6128c62..78361498 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X1900 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml index 372ade64..2bfeaf48 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X2300 HD isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml index 7f765dd5..b6feadf8 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X2300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml index 13d50f1f..60aec73b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml @@ -3,6 +3,8 @@ humanName: Mobility Radeon X2500 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml index 5f6f94a4..cfba780c 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml index 7bec02b4..69f76ad7 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 CE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml index 31800f13..c3afb572 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 LE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml index f087f578..e2944a0b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml index a5659f32..417a20ca 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml index 7d340f8e..3b752de3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml index 4af86a38..a0c77455 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 XT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml index 997b6dc0..2d21f28f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml index aaa78daa..448364c7 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1300 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml index 8e0baa75..c4cebfcf 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1550 AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml index d55ffd5d..6ede786e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1550 PCI isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml index 091e37a8..ed08b2eb 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1550 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml index d9f18685..34c8a26b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml index 134ac1a4..918f57d9 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml index 9efebee6..9ea31620 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml index ed4ac5c7..442875d4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 XT Dual isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml index f61db98e..c9023c18 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml index ceb32bd1..e297f50e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1600 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml index 0ce74ef5..317aaca3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml index e409087a..9fb35e03 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 GT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml index 3e35b813..92bb7e5d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 GTO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml index ab72eef8..109e69fc 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml index 16aa5cd9..f1c44442 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml index 9a9c48de..0b2b7bf4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml index f0722546..9f317d26 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 XT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml index 78a30d98..dbd073ca 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 XT Dual isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml index 8800d64b..4245f78f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml index 7464ce1b..c313a922 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1650 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml index c48d6fb3..edb81b6b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1700 FSC isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml index 1f84b869..373afac4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1700 SE isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml index 72e6fe86..6a920f2f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1800 CrossFire Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml index 24e3a995..91ad86fa 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1800 GTO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml index d115c261..2fba79e6 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1800 GTO2 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml index 1ef619b1..03b547e5 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1800 XL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml index ecc4f596..afadf203 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1800 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml index 4733fc31..f9d521af 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1900 CrossFire Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml index 21f01864..8ff2c888 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1900 G5 Mac Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml index 02c91e44..dbac8258 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1900 GT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml index 94022e32..bc5c223e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1900 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml index 70e8f0f2..81178ff5 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1900 XTX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml index 5d5a4347..a0b7b3a0 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 CrossFire Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml index 0a5963d2..a4b5cf9f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 GT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml index 06b6db93..78642f07 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 GT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml index a0629257..879bfa43 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 PRO AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml index 78f65429..14c03ec6 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 PRO DUAL isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml index 77038023..ea17b086 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 PRO isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 80 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml index 981c05ce..b3007428 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 XT AGP isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml index f340667e..c228f8d8 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 XT isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml index ae5863f4..bb148184 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 XTX Uber Edition isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml index 19951eeb..4dc297a4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml @@ -3,6 +3,8 @@ humanName: Radeon X1950 XTX isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml index b62c42c9..9528770a 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml @@ -3,6 +3,8 @@ humanName: Stream Processor isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm DirectX Support: '9.3' diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml index 9dd4d980..cb408717 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml +++ b/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml @@ -3,6 +3,8 @@ humanName: Wii GPU isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Ultra-Threaded SE Lithography: 90 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4.yaml index fb5fcb7b..9978e24c 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4.yaml +++ b/specs/GPUs-CONSUMER/VLIW-Vec4.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2010-06-03' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml index b3fe5bbc..9379fc7c 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml @@ -3,6 +3,8 @@ humanName: Tegra 2 GPU isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: VLIW Vec4 Lithography: 40 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml index d50aa0e1..908d4dc2 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml @@ -3,6 +3,8 @@ humanName: Tegra 3 GPU isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: VLIW Vec4 Lithography: 40 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml index d3601fa6..0aa1180e 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml @@ -3,6 +3,8 @@ humanName: Tegra 4 GPU isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: VLIW Vec4 Lithography: 28 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml index 2da0e296..6bcbf127 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml +++ b/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml @@ -3,6 +3,8 @@ humanName: Tegra 4i GPU isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: VLIW Vec4 Lithography: 28 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Volta.yaml b/specs/GPUs-CONSUMER/Volta.yaml index 8d816082..978c37eb 100644 --- a/specs/GPUs-CONSUMER/Volta.yaml +++ b/specs/GPUs-CONSUMER/Volta.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2017-06-21' + Manufacturer: Nvidia sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml index 5dc32dde..9efee71c 100644 --- a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson AGX Xavier 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml index a5cacb4a..47f8c52e 100644 --- a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson AGX Xavier 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml index 7152c953..6e35ff1e 100644 --- a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Xavier NX 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml index 3d7acb9f..0092fc7e 100644 --- a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml @@ -3,6 +3,8 @@ humanName: Jetson Xavier NX 8 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml index 435e7b74..90878d67 100644 --- a/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml +++ b/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml @@ -3,6 +3,8 @@ humanName: Quadro GV100 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml b/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml index d4bb2278..7978ff21 100644 --- a/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml +++ b/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml @@ -3,6 +3,8 @@ humanName: TITAN V CEO Edition isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml b/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml index ac3ef0ac..30507705 100644 --- a/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml +++ b/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml @@ -3,6 +3,8 @@ humanName: TITAN V isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml index 29d6f2f0..4426f04e 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml @@ -3,6 +3,8 @@ humanName: Tesla PG500-216 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml index dba9287b..19bc19a7 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml @@ -3,6 +3,8 @@ humanName: Tesla PG503-216 isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml index 3927405d..89de67a5 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 DGXS 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml index a39fdca8..f6e4469c 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 DGXS 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml index 8b5e1983..07b20f8a 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 FHHL isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml index 1dd15e0a..71197057 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 PCIe 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml index 9ad7f3a4..a911e11d 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 PCIe 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml index 4ce4101d..17ce6f38 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 SXM2 16 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml index dc29cc0e..855570f6 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 SXM2 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml index 3da5c02e..9514ea20 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100 SXM3 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml index ea7ba0b7..abd6df11 100644 --- a/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml @@ -3,6 +3,8 @@ humanName: Tesla V100S PCIe 32 GB isPart: true type: Graphics Card data: + Manufacturer: Nvidia + Vendor: Nvidia Architecture: Volta Lithography: 12 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml index 8baad877..c50d8716 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '6.0' Vulkan Support: 'N/A' Release Date: '2000-06-22' + Manufacturer: 3dfx sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml index bb5ff741..3ab85ec1 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml @@ -3,6 +3,8 @@ humanName: Spectre 1000 isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml index ed912a95..5e904fde 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml @@ -3,6 +3,8 @@ humanName: Spectre 2000 isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml index 21a97a0b..da50beec 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml @@ -3,6 +3,8 @@ humanName: Spectre 3000 isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '8.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml index c23cb352..351be441 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4-2 4000 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml index 122df6cc..86e8a2d4 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4-2 4200 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml index 31fb76cd..02257477 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4-2 4200 PCI 16 MB isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml index 1df20e7e..4dc37ee4 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4-2 4200 PCI 32 MB isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml index 3f5333b7..a4d5a6e0 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4-2 4800 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 180 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml index e68da2eb..d94c7fbb 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4 4000 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml index 71896eff..f9c4d432 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4 4500 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml index 819e3cfc..940dad94 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4 4500 PCI isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml index a348cea0..11c04909 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo4 4800 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml index d045a2a5..196301a6 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo5 5000 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml index 6a3d72ee..da9e6a31 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml @@ -3,6 +3,8 @@ humanName: Voodoo5 5000 PCI isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml index 4c2cfd61..aaffab3c 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml @@ -3,6 +3,8 @@ humanName: Voodoo5 5500 AGP isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml index 214119c7..2d11c527 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml @@ -3,6 +3,8 @@ humanName: Voodoo5 5500 PCI isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml index af74c4ad..ae8a3820 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml +++ b/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml @@ -3,6 +3,8 @@ humanName: Voodoo5 6000 isPart: true type: Graphics Card data: + Manufacturer: 3dfx + Vendor: 3dfx Architecture: Voodoo Scalable Lithography: 250 nm DirectX Support: '6.0' diff --git a/specs/GPUs-CONSUMER/Wonder.yaml b/specs/GPUs-CONSUMER/Wonder.yaml index 5f67ba32..b52dd9dc 100644 --- a/specs/GPUs-CONSUMER/Wonder.yaml +++ b/specs/GPUs-CONSUMER/Wonder.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '' Vulkan Support: 'N/A' Release Date: '1986-08-04' + Manufacturer: ATI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml index a5548b2c..835efaac 100644 --- a/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml +++ b/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml @@ -3,6 +3,8 @@ humanName: Color Emulation Card isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml index cc79080a..477c3b9b 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml @@ -3,6 +3,8 @@ humanName: EGA Wonder 480 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml index 527f366b..f77793e5 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml @@ -3,6 +3,8 @@ humanName: EGA Wonder 800+ isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml index c1349242..fa1cef82 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml +++ b/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml @@ -3,6 +3,8 @@ humanName: EGA Wonder 800 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml index 409bced1..61d05748 100644 --- a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml +++ b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml @@ -3,6 +3,8 @@ humanName: Graphics Solution Plus isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml index 45e1cb1f..45b9031e 100644 --- a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml +++ b/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml @@ -3,6 +3,8 @@ humanName: Graphics Solution isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml index 322a2c03..f5f456e0 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml @@ -3,6 +3,8 @@ humanName: VGA Improved Performance isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml index 61130842..1d67910b 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml @@ -3,6 +3,8 @@ humanName: VGA Wonder+ isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml index e8c17e89..b7cd272a 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml @@ -3,6 +3,8 @@ humanName: VGA Wonder XL24 isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml index 55b9d12b..d4e9bc1c 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml +++ b/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml @@ -3,6 +3,8 @@ humanName: VGA Wonder isPart: true type: Graphics Card data: + Manufacturer: ATI + Vendor: ATI Architecture: Wonder Lithography: 800 nm Vulkan Support: 'N/A' diff --git a/specs/GPUs-CONSUMER/XG4.yaml b/specs/GPUs-CONSUMER/XG4.yaml index edbca9d9..e8cf9ee2 100644 --- a/specs/GPUs-CONSUMER/XG4.yaml +++ b/specs/GPUs-CONSUMER/XG4.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '9.0' Vulkan Support: 'N/A' Release Date: '2003-09-15' + Manufacturer: XGI sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml index 6f60fb1c..d528fc77 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml @@ -3,6 +3,8 @@ humanName: Volari 8300 isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml index 61eb1a06..188437f8 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml @@ -3,6 +3,8 @@ humanName: Volari 8600 XT isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 110 nm DirectX Support: '9.0c' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml index 32c6f080..cbc84503 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Volari Duo V5 Ultra isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml index 59690985..17709479 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Volari Duo V8 Ultra isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml index e581fa17..3ebeb743 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml @@ -3,6 +3,8 @@ humanName: Volari V3 XT isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml index bcd1273e..d7c921e7 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml @@ -3,6 +3,8 @@ humanName: Volari V3 isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '8.1' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml index ba4d90eb..c32a98a6 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Volari V5 Ultra isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml index 2b7a1aeb..37ed71c0 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml @@ -3,6 +3,8 @@ humanName: Volari V5 isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml index 4a1738a7..a6e44f0a 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml @@ -3,6 +3,8 @@ humanName: Volari V8 Ultra isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml index a752b7d5..d74fe785 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml +++ b/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml @@ -3,6 +3,8 @@ humanName: Volari V8 isPart: true type: Graphics Card data: + Manufacturer: XGI + Vendor: XGI Architecture: XG4 Lithography: 130 nm DirectX Support: '9.0' diff --git a/specs/GPUs-CONSUMER/Xe-LPG.yaml b/specs/GPUs-CONSUMER/Xe-LPG.yaml index 82ec0568..a4973c88 100644 --- a/specs/GPUs-CONSUMER/Xe-LPG.yaml +++ b/specs/GPUs-CONSUMER/Xe-LPG.yaml @@ -8,6 +8,7 @@ data: DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2023-12-14' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml index 0e3f0be4..529f6070 100644 --- a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Arc Graphics 112EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Xe-LPG Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml index 47808c08..3b2d7a8c 100644 --- a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Arc Graphics 128EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Xe-LPG Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml index 2b3b8258..0e5ea95b 100644 --- a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Arc Graphics 48EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Xe-LPG Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml index 586540d9..4cbd46ab 100644 --- a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml @@ -3,6 +3,8 @@ humanName: Arc Graphics 64EU Mobile isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: Xe-LPG Lithography: 10 nm DirectX Support: '12.1' diff --git a/specs/GPUs-CONSUMER/i740.yaml b/specs/GPUs-CONSUMER/i740.yaml index 8a0dea53..872839c4 100644 --- a/specs/GPUs-CONSUMER/i740.yaml +++ b/specs/GPUs-CONSUMER/i740.yaml @@ -1,4 +1,4 @@ -name: i740 +name: i740-part humanName: i740 type: Graphics Architecture isPart: false @@ -8,6 +8,7 @@ data: DirectX Support: '5.0' Vulkan Support: 'N/A' Release Date: '1998' + Manufacturer: Intel sections: - header: WHOLE RANGE members: diff --git a/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml index 12b8dbfe..b0e8b7c5 100644 --- a/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml +++ b/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml @@ -3,6 +3,8 @@ humanName: i740 8 MB isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: i740 Lithography: 150 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml b/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml index eed76a05..28f5ac15 100644 --- a/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml +++ b/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml @@ -3,6 +3,8 @@ humanName: i740 Graphics isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: i740 Lithography: 150 nm DirectX Support: '5.0' diff --git a/specs/GPUs-CONSUMER/i740/i740.yaml b/specs/GPUs-CONSUMER/i740/i740.yaml index 8a84fdfb..744debad 100644 --- a/specs/GPUs-CONSUMER/i740/i740.yaml +++ b/specs/GPUs-CONSUMER/i740/i740.yaml @@ -1,8 +1,10 @@ -name: i740 +name: i740-part humanName: i740 isPart: true type: Graphics Card data: + Manufacturer: Intel + Vendor: Intel Architecture: i740 Lithography: 150 nm DirectX Support: '5.0' diff --git a/src/css/part-selector.css b/src/css/part-selector.css index 63af4888..2cf0c537 100755 --- a/src/css/part-selector.css +++ b/src/css/part-selector.css @@ -49,6 +49,9 @@ body { .part.intel { border-left: 5px solid hsl(200, 90%, 50%); } +.part.nvidia { + border-left: 5px solid #76B900; +} .part-padding { padding: 10px; overflow: none; From 2a61f814aefce67b833f987d50ac112d2a1a53d1 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 27 Jul 2024 23:50:36 +0100 Subject: [PATCH 11/41] organise data, add to row-data --- specs/GPUs-CONSUMER-3dfx.yaml | 12 ++ specs/GPUs-CONSUMER-AMD.yaml | 27 +++++ specs/GPUs-CONSUMER-ATI.yaml | 22 ++++ specs/GPUs-CONSUMER-Intel.yaml | 34 ++++++ specs/GPUs-CONSUMER-Matrox.yaml | 18 +++ specs/GPUs-CONSUMER-Nvidia.yaml | 31 +++++ specs/GPUs-CONSUMER-PowerVR.yaml | 12 ++ specs/GPUs-CONSUMER-XGI.yaml | 12 ++ specs/GPUs-CONSUMER.yaml | 106 ------------------ .../{ => 3dfx}/Voodoo-Scalable.yaml | 0 .../Voodoo-Scalable/Spectre-1000.yaml | 2 + .../Voodoo-Scalable/Spectre-2000.yaml | 2 + .../Voodoo-Scalable/Spectre-3000.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml | 2 + .../Voodoo4-2-4200-PCI-16-MB.yaml | 2 + .../Voodoo4-2-4200-PCI-32-MB.yaml | 2 + .../Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4500-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4500-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo4-4800-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5000-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5000-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5500-AGP.yaml | 2 + .../Voodoo-Scalable/Voodoo5-5500-PCI.yaml | 2 + .../Voodoo-Scalable/Voodoo5-6000.yaml | 2 + specs/GPUs-CONSUMER/{ => AMD}/CDNA-1.0.yaml | 0 .../CDNA-1.0/Radeon-Instinct-MI100.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0.yaml | 0 .../CDNA-2.0/Radeon-Instinct-MI200.yaml | 0 .../CDNA-2.0/Radeon-Instinct-MI210.yaml | 0 .../CDNA-2.0/Radeon-Instinct-MI250.yaml | 0 .../CDNA-2.0/Radeon-Instinct-MI250X.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/CDNA-3.0.yaml | 0 .../CDNA-3.0/Radeon-Instinct-MI300.yaml | 0 .../CDNA-3.0/Radeon-Instinct-MI300X.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0.yaml | 0 .../{ => AMD}/GCN-1.0/AeroBox-GPU.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-D300.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-D500.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-D700.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-M3100.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-M4000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-M4100.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-M4150.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-M4170.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-M5100.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-M6000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-R5000.yaml | 1 + .../GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 0 .../GCN-1.0/FirePro-S10000-Passive.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-S10000.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-S4000X.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-S7000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-S9000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-S9010.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-S9050.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W2100.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W4000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W4100.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W4130M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W4150M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W4170M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W4190M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W5000-DVI.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W5000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W5130M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W5170M.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W600.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W7000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W8000.yaml | 1 + .../{ => AMD}/GCN-1.0/FirePro-W9000-X2.yaml | 0 .../{ => AMD}/GCN-1.0/FirePro-W9000.yaml | 1 + .../GCN-1.0/Radeon-520-Mobile-DDR3.yaml | 1 + .../GCN-1.0/Radeon-520-Mobile-GDDR5.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-520-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-610-Mobile.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-E8860.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-7730.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7730M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-7750.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7750M.yaml | 1 + .../GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7770M.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7850.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7850M.yaml | 1 + .../GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7870-XT.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-7870M.yaml | 1 + .../GCN-1.0/Radeon-HD-7950-Boost.yaml | 0 .../GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml | 1 + .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml | 1 + .../GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7950.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7950M.yaml | 1 + .../GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-7970-X2.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7970.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7970M-X2.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7970M.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-7990.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8530M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8550M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8570-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8570A.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8570M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8590M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8670-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8670A.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8670M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8690M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8730-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8730A.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8730M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8740-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8750A.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8750M.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8760-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8770M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8790M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8830M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8850M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8860-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8870-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8870M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8950-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8970-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-HD-8970M.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-HD-8990-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-240-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-340-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-340X-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R5-430-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-435-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R5-A230.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-A240.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-A320.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-A330.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R5-A335.yaml | 1 + .../GCN-1.0/Radeon-R5-M230-Rebrand.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M230.yaml | 0 .../GCN-1.0/Radeon-R5-M240-Rebrand.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M240.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M320.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M330.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M335.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R5-M420.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M430.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R5-M435.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R6-M340DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R6-M435DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-240-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-240.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-250-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-250.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-250E.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-250X.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-250XE.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-265.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-265X-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-340-OEM.yaml | 0 .../GCN-1.0/Radeon-R7-350-640SP.yaml | 1 + .../GCN-1.0/Radeon-R7-350-Fake-Card.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-350-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-350X-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-370.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-430-OEM.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-435-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-450-OEM.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-A265.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M260DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M260X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M265DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M270DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M340.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M365X.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-M370.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M380.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R7-M465.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R7-M465X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R8-M350DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R8-M435DX.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-255-OEM.yaml | 0 .../GCN-1.0/Radeon-R9-270-1024SP.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-270.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-270X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-280.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-280X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-280X2.yaml | 0 .../GCN-1.0/Radeon-R9-370-1024SP.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-370.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-370X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-A375.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-R9-M275.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M275X.yaml | 0 .../GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M290X.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M360.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M365X.yaml | 0 .../GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M375.yaml | 0 .../{ => AMD}/GCN-1.0/Radeon-R9-M375X.yaml | 0 .../GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-Sky-500.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-Sky-700.yaml | 1 + .../{ => AMD}/GCN-1.0/Radeon-Sky-900.yaml | 0 .../{ => AMD}/GCN-1.0/Xbox-One-GPU.yaml | 1 + .../{ => AMD}/GCN-1.0/Xbox-One-S-GPU.yaml | 1 + specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0.yaml | 0 .../{ => AMD}/GCN-2.0/FirePro-M6100.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-S9100.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-S9150.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-S9170.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W4300.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W5100.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W6150M.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W6170M.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W8100.yaml | 1 + .../{ => AMD}/GCN-2.0/FirePro-W9100.yaml | 1 + .../{ => AMD}/GCN-2.0/Playstation-4-GPU.yaml | 1 + .../GCN-2.0/Playstation-4-Pro-GPU.yaml | 1 + .../GCN-2.0/Playstation-4-Slim-GPU.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-E8870-MXM.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-E8870-PCIe.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-7790.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8180-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8210-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8210E.yaml | 1 + .../GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8250-IGP.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-HD-8280-IGP.yaml | 1 + .../GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8280E.yaml | 1 + .../GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8330E.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8400-IGP.yaml | 1 + .../GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8400E.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8770-OEM.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-HD-8950M.yaml | 1 + .../GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R2-Mobile-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R3-Mobile-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R7-260.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R7-260X.yaml | 1 + .../GCN-2.0/Radeon-R7-360-896SP.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R7-360.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R7-360E.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R7-Graphics.yaml | 1 + .../GCN-2.0/Radeon-R7-Mobile-Graphics.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-260-OEM.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-290.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-290X.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-290X2.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-295X2.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-360-OEM.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-390-X2.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-390.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-390X.yaml | 1 + .../{ => AMD}/GCN-2.0/Radeon-R9-M270X.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M280X.yaml | 0 .../GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M380.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M385.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M385X.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M470.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-R9-M470X.yaml | 0 .../{ => AMD}/GCN-2.0/Radeon-RX-455-OEM.yaml | 1 + .../{ => AMD}/GCN-2.0/Xbox-One-X-GPU.yaml | 1 + specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0.yaml | 0 .../{ => AMD}/GCN-3.0/FirePro-S7100X.yaml | 1 + .../{ => AMD}/GCN-3.0/FirePro-S7150-x2.yaml | 1 + .../{ => AMD}/GCN-3.0/FirePro-S7150.yaml | 1 + .../{ => AMD}/GCN-3.0/FirePro-S9300-X2.yaml | 1 + .../{ => AMD}/GCN-3.0/FirePro-W7100.yaml | 1 + .../{ => AMD}/GCN-3.0/FirePro-W7170M.yaml | 1 + .../GCN-3.0/Radeon-530-Mobile-DDR3.yaml | 0 .../GCN-3.0/Radeon-530-Mobile-GDDR5.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-530X-Mobile.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-535-Mobile.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-620-Mobile.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-625-Mobile.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-625-OEM.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-E8950.yaml | 0 .../GCN-3.0/Radeon-Instinct-MI8.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-Pro-Duo.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-Pro-SSG.yaml | 0 .../GCN-3.0/Radeon-R4-Mobile-Graphics.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R5-A255.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R5-Graphics.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R5-M255.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R5-M315.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R5-M445.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R5-M465.yaml | 0 .../GCN-3.0/Radeon-R5-Mobile-Graphics.yaml | 0 .../GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R6-M255DX.yaml | 0 .../GCN-3.0/Radeon-R6-Mobile-Graphics.yaml | 0 .../GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-A260.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-A360.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M260.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M265.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M350.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M360.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M440.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R7-M445.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R7-M460.yaml | 0 .../GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R8-M365DX.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R8-M445DX.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R8-M535DX.yaml | 0 .../{ => AMD}/GCN-3.0/Radeon-R9-285.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-285X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-380-OEM.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-380.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-380X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-FURY-X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-FURY-X2.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-FURY.yaml | 1 + .../GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-M295X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-M390X.yaml | 1 + .../GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml | 1 + .../GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-M395X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-M485X.yaml | 1 + .../{ => AMD}/GCN-3.0/Radeon-R9-Nano.yaml | 1 + specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0.yaml | 0 .../{ => AMD}/GCN-4.0/P30PH.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-540-Mobile.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-540X-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-550.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-550X-640SP.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-550X-Mobile.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-550X.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-630-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9171-MCM.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9172-MXM.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9173-PCIe.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9174-MXM.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9175-PCIe.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9260-MXM.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-E9260-PCIe.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9390-PCIe.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9550-MXM.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-E9560-PCIe.yaml | 0 .../GCN-4.0/Radeon-Instinct-MI6.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-450.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-455.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-460.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-555.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-555X.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-560.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-560X.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-570.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-570X.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-575.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-575X.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-580.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-580X.yaml | 0 .../GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-V5300X.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-V7300X.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-V7350X2.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-2100.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-3100.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-3200.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-4100.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-5100.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-Pro-WX-7100.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml | 0 .../GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml | 0 .../GCN-4.0/Radeon-RX-460-1024SP.yaml | 0 .../GCN-4.0/Radeon-RX-460-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-460.yaml | 0 .../GCN-4.0/Radeon-RX-470-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-470.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-470D.yaml | 0 .../GCN-4.0/Radeon-RX-480-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-480.yaml | 0 .../GCN-4.0/Radeon-RX-540-Mobile.yaml | 1 + .../GCN-4.0/Radeon-RX-540X-Mobile.yaml | 0 .../GCN-4.0/Radeon-RX-550-512SP.yaml | 0 .../GCN-4.0/Radeon-RX-550-640SP.yaml | 0 .../GCN-4.0/Radeon-RX-550-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-550.yaml | 0 .../GCN-4.0/Radeon-RX-550X-640SP.yaml | 0 .../GCN-4.0/Radeon-RX-550X-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-550X.yaml | 0 .../GCN-4.0/Radeon-RX-560-896SP.yaml | 0 .../GCN-4.0/Radeon-RX-560-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-560-XT.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-560.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-560D.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-560DX.yaml | 0 .../GCN-4.0/Radeon-RX-560X-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-560X.yaml | 0 .../GCN-4.0/Radeon-RX-570-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-570-X2.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-570.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-570X.yaml | 0 .../GCN-4.0/Radeon-RX-580-2048SP.yaml | 0 .../GCN-4.0/Radeon-RX-580-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-580-OEM.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-580.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-580G.yaml | 0 .../GCN-4.0/Radeon-RX-580X-Mobile.yaml | 1 + .../{ => AMD}/GCN-4.0/Radeon-RX-580X.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-590-GME.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-590.yaml | 0 .../GCN-4.0/Radeon-RX-640-Mobile.yaml | 0 .../{ => AMD}/GCN-4.0/Radeon-RX-640-OEM.yaml | 1 + .../GCN-4.0/Radeon-RX-Vega-M-GH.yaml | 0 .../GCN-4.0/Radeon-RX-Vega-M-GL.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0.yaml | 0 .../{ => AMD}/GCN-5.0/Atari-VCS-400-GPU.yaml | 0 .../{ => AMD}/GCN-5.0/Atari-VCS-800-GPU.yaml | 0 .../GCN-5.0/Radeon-Instinct-MI25.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-V320.yaml | 0 .../GCN-5.0/Radeon-Pro-V340-16-GB.yaml | 0 .../GCN-5.0/Radeon-Pro-V340-8-GB.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-Vega-16.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-Vega-20.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-Vega-48.yaml | 1 + .../{ => AMD}/GCN-5.0/Radeon-Pro-Vega-56.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-Vega-64.yaml | 0 .../GCN-5.0/Radeon-Pro-Vega-64X.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-WX-8100.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-WX-8200.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Pro-WX-9100.yaml | 0 .../GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml | 0 .../GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml | 0 .../GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-RX-Vega-11.yaml | 0 .../GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-RX-Vega-56.yaml | 0 .../Radeon-RX-Vega-64-Limited-Edition.yaml | 0 .../Radeon-RX-Vega-64-Liquid-Cooling.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-RX-Vega-64.yaml | 0 .../GCN-5.0/Radeon-RX-Vega-Nano.yaml | 0 .../GCN-5.0/Radeon-Vega-10-Mobile.yaml | 0 .../GCN-5.0/Radeon-Vega-11-Embedded.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Vega-11.yaml | 0 .../GCN-5.0/Radeon-Vega-3-Embedded.yaml | 0 .../GCN-5.0/Radeon-Vega-3-Mobile.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Vega-3.yaml | 0 .../GCN-5.0/Radeon-Vega-6-Embedded.yaml | 0 .../GCN-5.0/Radeon-Vega-6-Mobile.yaml | 0 .../GCN-5.0/Radeon-Vega-8-Embedded.yaml | 0 .../GCN-5.0/Radeon-Vega-8-Mobile.yaml | 0 .../{ => AMD}/GCN-5.0/Radeon-Vega-8.yaml | 0 ...eon-Vega-Frontier-Edition-Watercooled.yaml | 0 .../GCN-5.0/Radeon-Vega-Frontier-Edition.yaml | 0 .../GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml | 1 + specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1.yaml | 0 .../GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml | 0 .../GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml | 0 .../GCN-5.1/Radeon-Graphics-384SP.yaml | 0 .../GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml | 0 .../GCN-5.1/Radeon-Graphics-448SP.yaml | 0 .../GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml | 0 .../GCN-5.1/Radeon-Graphics-512SP.yaml | 0 .../GCN-5.1/Radeon-Instinct-MI50.yaml | 0 .../GCN-5.1/Radeon-Instinct-MI60.yaml | 0 .../{ => AMD}/GCN-5.1/Radeon-Pro-V420.yaml | 0 .../{ => AMD}/GCN-5.1/Radeon-Pro-VII.yaml | 0 .../GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml | 0 .../{ => AMD}/GCN-5.1/Radeon-Pro-Vega-II.yaml | 0 .../{ => AMD}/GCN-5.1/Radeon-VII.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/Mach.yaml | 0 .../{ => AMD}/Mach/3D-Rage-II+-DVD.yaml | 2 + .../{ => AMD}/Mach/3D-Rage-II.yaml | 2 + .../GPUs-CONSUMER/{ => AMD}/Mach/3D-Rage.yaml | 2 + .../{ => AMD}/Mach/8514-Ultra.yaml | 2 + .../Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml | 2 + .../{ => AMD}/Mach/Graphics-Pro-Turbo.yaml | 2 + .../Mach/Graphics-Ultra-Pro-ISA.yaml | 2 + .../Mach/Graphics-Ultra-Pro-PCI.yaml | 2 + .../Mach/Graphics-Ultra-Pro-VLB.yaml | 2 + .../Mach/Graphics-Ultra-XLR-VLB.yaml | 2 + .../{ => AMD}/Mach/Graphics-Ultra.yaml | 2 + .../{ => AMD}/Mach/Graphics-Vantage.yaml | 2 + .../{ => AMD}/Mach/Graphics-Wonder-PCI.yaml | 2 + .../{ => AMD}/Mach/Graphics-Wonder-VLB.yaml | 2 + .../Mach/Graphics-Xpression-ISA.yaml | 2 + .../{ => AMD}/Mach/Graphics-Xpression.yaml | 2 + .../{ => AMD}/Mach/Rage-LT-PRO-AGP.yaml | 2 + .../{ => AMD}/Mach/Video-Xpression+.yaml | 2 + .../{ => AMD}/Mach/Video-Xpression.yaml | 2 + .../{ => AMD}/Mach/WinBoost.yaml | 2 + .../{ => AMD}/Mach/WinCharger.yaml | 2 + .../{ => AMD}/Mach/WinTurbo.yaml | 2 + specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-5300.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-5300M.yaml | 0 .../RDNA-1.0/Radeon-Pro-5500-XT.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-5500M.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-5600M.yaml | 0 .../RDNA-1.0/Radeon-Pro-5700-XT.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-5700.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-V520.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-V540.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5300M.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5500.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5500M.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5500X.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5700.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-Pro-W5700X.yaml | 0 .../RDNA-1.0/Radeon-RX-5300-OEM.yaml | 0 .../RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5300M.yaml | 0 .../RDNA-1.0/Radeon-RX-5500-OEM.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5500-XT.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5500M.yaml | 0 .../RDNA-1.0/Radeon-RX-5600-OEM.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5600-XT.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5600M.yaml | 0 .../Radeon-RX-5700-XT-50th-Anniversary.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5700-XT.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5700.yaml | 0 .../{ => AMD}/RDNA-1.0/Radeon-RX-5700M.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0.yaml | 0 .../{ => AMD}/RDNA-2.0/Playstation-5-GPU.yaml | 1 + .../{ => AMD}/RDNA-2.0/Radeon-610M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-660M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-680M.yaml | 0 .../RDNA-2.0/Radeon-Graphics-128SP.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-PRO-V620.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-PRO-W6300.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-PRO-W6400.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-PRO-W6600.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-PRO-W6800.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6300M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6500M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6600M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6600X.yaml | 0 .../RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6800X.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-Pro-W6900X.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6300.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6300M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6400.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6450M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6500-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6500M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6550M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6550S.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6600-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6600.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6600M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6600S.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6650-XT.yaml | 0 .../RDNA-2.0/Radeon-RX-6650M-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6650M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6700-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6700.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6700M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6700S.yaml | 0 .../RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml | 0 .../RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6750-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6800-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6800.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6800M.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6800S.yaml | 0 .../RDNA-2.0/Radeon-RX-6850M-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6900-XT.yaml | 0 .../RDNA-2.0/Radeon-RX-6900-XTX.yaml | 0 .../{ => AMD}/RDNA-2.0/Radeon-RX-6950-XT.yaml | 0 .../{ => AMD}/RDNA-2.0/Steam-Deck-GPU.yaml | 0 .../RDNA-2.0/Steam-Deck-OLED-GPU.yaml | 0 .../{ => AMD}/RDNA-2.0/Xbox-Series-S-GPU.yaml | 1 + .../{ => AMD}/RDNA-2.0/Xbox-Series-X-GPU.yaml | 1 + specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0.yaml | 0 .../RDNA-3.0/ROG-Ally-Extreme-GPU.yaml | 0 .../{ => AMD}/RDNA-3.0/ROG-Ally-GPU.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-740M.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-760M.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-780M.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-PRO-W7500.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-PRO-W7600.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-PRO-W7700.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-PRO-W7800.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-PRO-W7900.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7500-XT.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7600-XT.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7600.yaml | 0 .../RDNA-3.0/Radeon-RX-7600M-XT.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7600M.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7600S.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7700-XT.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7700.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7700S.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7800-XT.yaml | 0 .../RDNA-3.0/Radeon-RX-7900-GRE.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7900-XT.yaml | 0 .../RDNA-3.0/Radeon-RX-7900-XTX.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7900M.yaml | 0 .../{ => AMD}/RDNA-3.0/Radeon-RX-7950-XT.yaml | 0 .../RDNA-3.0/Radeon-RX-7950-XTX.yaml | 0 .../RDNA-3.0/Radeon-RX-7990-XTX.yaml | 0 .../GPUs-CONSUMER/{ => AMD}/TeraScale-2.yaml | 0 .../TeraScale-2/FirePro-2270-PCIe-x1.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-2270.yaml | 1 + .../TeraScale-2/FirePro-2460-Multi-View.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M2000.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M3900.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M5800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M5950.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M7820.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-M8900.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V3800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V3900.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V4800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V4900.yaml | 1 + .../TeraScale-2/FirePro-V5800-DVI.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V5800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V7800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V7800P.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V8800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V9800.yaml | 1 + .../{ => AMD}/TeraScale-2/FirePro-V9800P.yaml | 1 + .../TeraScale-2/FireStream-9350.yaml | 1 + .../TeraScale-2/FireStream-9370.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5430.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5450.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5470.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5570.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5650.yaml | 1 + .../Mobility-Radeon-HD-5670-Mac-Edition.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5730.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5750.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5770.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5830.yaml | 1 + .../Mobility-Radeon-HD-5850-Mac-Edition.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5850.yaml | 1 + .../TeraScale-2/Mobility-Radeon-HD-5870.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-E6460.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-E6465.yaml | 1 + .../TeraScale-2/Radeon-E6760-MXM.yaml | 1 + .../TeraScale-2/Radeon-E6760-PCIe.yaml | 1 + .../TeraScale-2/Radeon-HD-5450-PCI.yaml | 1 + .../TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5450.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5470.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5490.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5530.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5550.yaml | 1 + .../TeraScale-2/Radeon-HD-5570-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5570.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5630.yaml | 1 + .../Radeon-HD-5670-640SP-Edition.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5670.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5690.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5730.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5750.yaml | 1 + .../Radeon-HD-5770-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-5770-X2.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5770.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5830.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5850.yaml | 1 + .../Radeon-HD-5870-Eyefinity-6.yaml | 1 + .../Radeon-HD-5870-Mac-Edition.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5870.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5950.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-5970.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6230.yaml | 1 + .../TeraScale-2/Radeon-HD-6250-IGP.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6250.yaml | 1 + .../TeraScale-2/Radeon-HD-6290-IGP.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6290.yaml | 1 + .../TeraScale-2/Radeon-HD-6310-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6320-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6330M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6350.yaml | 1 + .../TeraScale-2/Radeon-HD-6350A.yaml | 1 + .../TeraScale-2/Radeon-HD-6350M.yaml | 1 + .../TeraScale-2/Radeon-HD-6370D-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6370M.yaml | 1 + .../TeraScale-2/Radeon-HD-6380G-IGP.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6390.yaml | 1 + .../TeraScale-2/Radeon-HD-6410D-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6430M.yaml | 1 + .../TeraScale-2/Radeon-HD-6450-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6450.yaml | 1 + .../TeraScale-2/Radeon-HD-6450A.yaml | 1 + .../TeraScale-2/Radeon-HD-6450M.yaml | 1 + .../TeraScale-2/Radeon-HD-6470M.yaml | 1 + .../TeraScale-2/Radeon-HD-6480G-IGP.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6490.yaml | 1 + .../Radeon-HD-6490M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6490M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6510.yaml | 1 + .../TeraScale-2/Radeon-HD-6520G-IGP.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6530.yaml | 1 + .../TeraScale-2/Radeon-HD-6530D-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6530M.yaml | 1 + .../TeraScale-2/Radeon-HD-6550A.yaml | 1 + .../TeraScale-2/Radeon-HD-6550D-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6550M.yaml | 1 + .../TeraScale-2/Radeon-HD-6570-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6570.yaml | 1 + .../Radeon-HD-6570M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6570M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6610.yaml | 1 + .../TeraScale-2/Radeon-HD-6610M.yaml | 1 + .../TeraScale-2/Radeon-HD-6620G-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-6625M.yaml | 1 + .../Radeon-HD-6630M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6630M.yaml | 1 + .../TeraScale-2/Radeon-HD-6650A.yaml | 1 + .../TeraScale-2/Radeon-HD-6650M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6670.yaml | 1 + .../TeraScale-2/Radeon-HD-6670A.yaml | 1 + .../TeraScale-2/Radeon-HD-6730M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6750.yaml | 1 + .../Radeon-HD-6750M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6750M.yaml | 1 + .../Radeon-HD-6770-Green-Edition.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6770.yaml | 1 + .../Radeon-HD-6770M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6770M.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6790.yaml | 1 + .../TeraScale-2/Radeon-HD-6830M.yaml | 1 + .../Radeon-HD-6850-1440SP-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6850-X2.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6850.yaml | 1 + .../TeraScale-2/Radeon-HD-6850M.yaml | 1 + .../Radeon-HD-6870-1600SP-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6870-X2.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-6870.yaml | 1 + .../TeraScale-2/Radeon-HD-6870M.yaml | 1 + .../TeraScale-2/Radeon-HD-6950M.yaml | 1 + .../Radeon-HD-6970M-Mac-Edition.yaml | 1 + .../TeraScale-2/Radeon-HD-6970M-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-HD-6970M-X2.yaml | 1 + .../TeraScale-2/Radeon-HD-6970M.yaml | 1 + .../TeraScale-2/Radeon-HD-6990M-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-HD-6990M.yaml | 1 + .../TeraScale-2/Radeon-HD-7290-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-7310-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-7330M.yaml | 1 + .../TeraScale-2/Radeon-HD-7340-IGP.yaml | 1 + .../TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml | 1 + .../TeraScale-2/Radeon-HD-7350-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-7350M.yaml | 1 + .../TeraScale-2/Radeon-HD-7370M.yaml | 1 + .../TeraScale-2/Radeon-HD-7410M.yaml | 1 + .../TeraScale-2/Radeon-HD-7430M.yaml | 1 + .../TeraScale-2/Radeon-HD-7450-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-7450A.yaml | 1 + .../TeraScale-2/Radeon-HD-7450M.yaml | 1 + .../TeraScale-2/Radeon-HD-7470-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-7470A.yaml | 1 + .../TeraScale-2/Radeon-HD-7470M.yaml | 0 .../TeraScale-2/Radeon-HD-7490M.yaml | 1 + .../TeraScale-2/Radeon-HD-7510-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-7510M.yaml | 1 + .../TeraScale-2/Radeon-HD-7530M.yaml | 1 + .../TeraScale-2/Radeon-HD-7550M.yaml | 0 .../TeraScale-2/Radeon-HD-7570-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-HD-7570.yaml | 1 + .../TeraScale-2/Radeon-HD-7570M.yaml | 1 + .../TeraScale-2/Radeon-HD-7590M.yaml | 1 + .../TeraScale-2/Radeon-HD-7610M.yaml | 1 + .../TeraScale-2/Radeon-HD-7630M.yaml | 1 + .../TeraScale-2/Radeon-HD-7650A.yaml | 1 + .../TeraScale-2/Radeon-HD-7650M-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-HD-7650M.yaml | 1 + .../TeraScale-2/Radeon-HD-7670-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-7670A.yaml | 1 + .../TeraScale-2/Radeon-HD-7670M-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-HD-7670M.yaml | 1 + .../TeraScale-2/Radeon-HD-7690M-Rebrand.yaml | 1 + .../Radeon-HD-7690M-XT-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-HD-7690M-XT.yaml | 1 + .../TeraScale-2/Radeon-HD-7690M.yaml | 1 + .../TeraScale-2/Radeon-HD-7720-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8350-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8450-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8470-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8490-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8510-OEM.yaml | 1 + .../TeraScale-2/Radeon-HD-8550-OEM.yaml | 1 + .../Radeon-HD-8570-OEM-Rebrand.yaml | 1 + .../TeraScale-2/Radeon-R5-220-OEM.yaml | 1 + .../TeraScale-2/Radeon-R5-230-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-R5-230.yaml | 1 + .../TeraScale-2/Radeon-R5-235-OEM.yaml | 1 + .../TeraScale-2/Radeon-R5-235X-OEM.yaml | 1 + .../TeraScale-2/Radeon-R5-310-OEM.yaml | 1 + .../{ => AMD}/TeraScale-2/Radeon-R5-A220.yaml | 1 + .../{ => AMD}/TeraScale-2/Wii-U-GPU.yaml | 1 + .../GPUs-CONSUMER/{ => AMD}/TeraScale-3.yaml | 0 .../{ => AMD}/TeraScale-3/FirePro-A300.yaml | 0 .../{ => AMD}/TeraScale-3/FirePro-A320.yaml | 0 .../{ => AMD}/TeraScale-3/FirePro-V5900.yaml | 1 + .../TeraScale-3/FirePro-V7900-SDI.yaml | 1 + .../{ => AMD}/TeraScale-3/FirePro-V7900.yaml | 1 + .../{ => AMD}/TeraScale-3/Radeon-HD-6930.yaml | 1 + .../{ => AMD}/TeraScale-3/Radeon-HD-6950.yaml | 1 + .../TeraScale-3/Radeon-HD-6970-X2.yaml | 1 + .../{ => AMD}/TeraScale-3/Radeon-HD-6970.yaml | 1 + .../{ => AMD}/TeraScale-3/Radeon-HD-6990.yaml | 1 + .../TeraScale-3/Radeon-HD-7400G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7420G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7480D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-7500G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7520G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7540D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-7560D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-7560G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7600G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7620G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7640G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-7660D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-7660G-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-8310G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8350G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8370D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-8410G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8450G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8470D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-8510G-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-8550D-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8550G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8570D-IGP.yaml | 1 + .../TeraScale-3/Radeon-HD-8610G-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8650D-IGP.yaml | 0 .../TeraScale-3/Radeon-HD-8650G-IGP.yaml | 0 specs/GPUs-CONSUMER/{ => AMD}/TeraScale.yaml | 0 .../{ => AMD}/TeraScale/FireGL-V3600.yaml | 1 + .../{ => AMD}/TeraScale/FireGL-V5600.yaml | 1 + .../{ => AMD}/TeraScale/FireGL-V7600.yaml | 1 + .../{ => AMD}/TeraScale/FireGL-V7700.yaml | 1 + .../{ => AMD}/TeraScale/FireGL-V8600.yaml | 1 + .../{ => AMD}/TeraScale/FireGL-V8650.yaml | 1 + .../TeraScale/FireMV-2260-PCIe-x1.yaml | 1 + .../{ => AMD}/TeraScale/FireMV-2260.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-2260-PCI.yaml | 1 + .../FirePro-2450-Multi-View-PCIe-x1.yaml | 1 + .../TeraScale/FirePro-2450-Multi-View.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-M5725.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-M7740.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-RG220.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-RG220A.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V3700.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V3750.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V5700.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V7750.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V7760.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V7770.yaml | 1 + .../TeraScale/FirePro-V8700-Duo.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V8700.yaml | 1 + .../{ => AMD}/TeraScale/FirePro-V8750.yaml | 1 + .../{ => AMD}/TeraScale/FireStream-9170.yaml | 1 + .../{ => AMD}/TeraScale/FireStream-9250.yaml | 1 + .../{ => AMD}/TeraScale/FireStream-9270.yaml | 1 + .../TeraScale/Mobility-FireGL-V5600.yaml | 1 + .../TeraScale/Mobility-FireGL-V5700.yaml | 1 + .../TeraScale/Mobility-FireGL-V5725.yaml | 1 + ...obility-Radeon-HD-2400-XT-Mac-Edition.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-2400-XT.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-2400.yaml | 1 + ...obility-Radeon-HD-2600-XT-Mac-Edition.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-2600-XT.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-2600.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-2700.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3410.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3430.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3450.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3470.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3650.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3670.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3850-X2.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3850.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3870-X2.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-3870.yaml | 1 + .../Mobility-Radeon-HD-4100-IGP.yaml | 1 + .../Mobility-Radeon-HD-4200-IGP.yaml | 1 + .../Mobility-Radeon-HD-4225-IGP.yaml | 1 + .../Mobility-Radeon-HD-4250-IGP.yaml | 0 .../Mobility-Radeon-HD-4270-IGP.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4330.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4350.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4530.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4550.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4570.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4650.yaml | 1 + .../Mobility-Radeon-HD-4670-Mac-Edition.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4670.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4830.yaml | 1 + .../Mobility-Radeon-HD-4850-Mac-Edition.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4850-X2.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4850.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4860.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4870-X2.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-4870.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-5145.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-5165.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-530v.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-540v.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-545v.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-550v.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-560v.yaml | 1 + .../TeraScale/Mobility-Radeon-HD-565v.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-3000-IGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-3100-IGP.yaml | 1 + .../TeraScale/Radeon-3100-Mobile-IGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-E2400.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-E4690-MXM.yaml | 1 + .../TeraScale/Radeon-E4690-PCIe.yaml | 1 + .../TeraScale/Radeon-HD-2350-PRO.yaml | 1 + .../TeraScale/Radeon-HD-2400-PRO-AGP.yaml | 1 + .../TeraScale/Radeon-HD-2400-PRO-PCI.yaml | 1 + .../TeraScale/Radeon-HD-2400-PRO.yaml | 1 + .../TeraScale/Radeon-HD-2400-XT.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-2400.yaml | 1 + .../TeraScale/Radeon-HD-2600-PRO-AGP.yaml | 1 + .../TeraScale/Radeon-HD-2600-PRO.yaml | 1 + .../TeraScale/Radeon-HD-2600-XT-AGP.yaml | 1 + .../Radeon-HD-2600-XT-Mac-Edition.yaml | 1 + .../TeraScale/Radeon-HD-2600-XT-X2.yaml | 1 + .../TeraScale/Radeon-HD-2600-XT.yaml | 1 + .../TeraScale/Radeon-HD-2900-GT.yaml | 1 + .../TeraScale/Radeon-HD-2900-PRO.yaml | 1 + .../TeraScale/Radeon-HD-2900-XT.yaml | 1 + .../TeraScale/Radeon-HD-2900-XTX.yaml | 1 + .../TeraScale/Radeon-HD-2950-PRO.yaml | 1 + .../TeraScale/Radeon-HD-2950-XTX.yaml | 1 + .../TeraScale/Radeon-HD-3200-IGP.yaml | 1 + .../TeraScale/Radeon-HD-3200-Mobile-IGP.yaml | 1 + .../TeraScale/Radeon-HD-3300-IGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3410.yaml | 1 + .../TeraScale/Radeon-HD-3450-AGP.yaml | 1 + .../TeraScale/Radeon-HD-3450-PCI.yaml | 1 + .../TeraScale/Radeon-HD-3450-X2.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3450.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3470.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3550.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3570.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3610.yaml | 1 + .../TeraScale/Radeon-HD-3650-AGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3650.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3690.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3730.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3750.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3830.yaml | 1 + .../TeraScale/Radeon-HD-3850-AGP.yaml | 1 + .../TeraScale/Radeon-HD-3850-X2.yaml | 1 + .../TeraScale/Radeon-HD-3850-X3.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3850.yaml | 1 + .../TeraScale/Radeon-HD-3870-AGP.yaml | 1 + .../TeraScale/Radeon-HD-3870-Mac-Edition.yaml | 1 + .../TeraScale/Radeon-HD-3870-X2.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-3870.yaml | 1 + .../TeraScale/Radeon-HD-4200-IGP.yaml | 1 + .../TeraScale/Radeon-HD-4250-IGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4250.yaml | 1 + .../TeraScale/Radeon-HD-4290-IGP.yaml | 1 + .../TeraScale/Radeon-HD-4350-AGP.yaml | 1 + .../TeraScale/Radeon-HD-4350-PCI.yaml | 1 + .../TeraScale/Radeon-HD-4350-PCIe-x1.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4350.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4450.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4520.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4550.yaml | 1 + .../TeraScale/Radeon-HD-4570-Rebrand.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4570.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4580.yaml | 1 + .../TeraScale/Radeon-HD-4650-AGP.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4650.yaml | 1 + .../TeraScale/Radeon-HD-4670-AGP.yaml | 1 + .../TeraScale/Radeon-HD-4670-X2.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4670.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4700.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4710.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4720.yaml | 1 + .../TeraScale/Radeon-HD-4730-OEM.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4730.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4750.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4770.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4810.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4830.yaml | 1 + .../TeraScale/Radeon-HD-4850-X2.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4850.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4855.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4860.yaml | 1 + .../TeraScale/Radeon-HD-4870-Mac-Edition.yaml | 1 + .../TeraScale/Radeon-HD-4870-X2.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4870.yaml | 1 + .../{ => AMD}/TeraScale/Radeon-HD-4890.yaml | 1 + .../TeraScale/Radeon-Xpress-2100-IGP.yaml | 1 + .../{ => AMD}/TeraScale/Xbox-360-E-GPU.yaml | 1 + .../TeraScale/Xbox-360-GPU-65nm.yaml | 1 + .../TeraScale/Xbox-360-GPU-80nm.yaml | 1 + .../TeraScale/Xbox-360-GPU-90nm.yaml | 1 + .../{ => AMD}/TeraScale/Xbox-360-S-GPU.yaml | 1 + specs/GPUs-CONSUMER/{ => ATI}/IBM.yaml | 0 .../GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL1.yaml | 2 + .../GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL2.yaml | 2 + .../GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL3.yaml | 2 + .../GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL4.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/R300.yaml | 0 .../R300/All-In-Wonder-2006-AGP-Edition.yaml | 2 + .../{ => ATI}/R300/All-In-Wonder-9500.yaml | 2 + .../R300/All-In-Wonder-9600-PRO.yaml | 2 + .../{ => ATI}/R300/All-In-Wonder-9600-XT.yaml | 2 + .../{ => ATI}/R300/All-In-Wonder-9600.yaml | 2 + .../R300/All-In-Wonder-9700-PRO.yaml | 2 + .../R300/All-In-Wonder-9800-PRO.yaml | 2 + .../{ => ATI}/R300/All-In-Wonder-9800-SE.yaml | 2 + .../R300/All-In-Wonder-X600-PRO.yaml | 2 + .../{ => ATI}/R300/FireGL-9500-Z1-128.yaml | 2 + .../{ => ATI}/R300/FireGL-9600-T2-128.yaml | 2 + .../{ => ATI}/R300/FireGL-9600-T2-64S.yaml | 2 + .../{ => ATI}/R300/FireGL-9700-X1-128.yaml | 2 + .../{ => ATI}/R300/FireGL-9700-X1-256.yaml | 2 + .../{ => ATI}/R300/FireGL-9700-X1-256p.yaml | 2 + .../{ => ATI}/R300/FireGL-9800-X2-256.yaml | 2 + .../{ => ATI}/R300/FireGL-9800-X2-256T.yaml | 2 + .../{ => ATI}/R300/FireGL-V3100.yaml | 2 + .../{ => ATI}/R300/FireGL-V3200.yaml | 2 + .../{ => ATI}/R300/FireMV-2200.yaml | 2 + .../{ => ATI}/R300/FireMV-2400-PCI.yaml | 2 + .../{ => ATI}/R300/FireMV-2400-PCIe-x1.yaml | 2 + .../{ => ATI}/R300/Mobility-FireGL-T2.yaml | 2 + .../{ => ATI}/R300/Mobility-FireGL-T2e.yaml | 2 + .../{ => ATI}/R300/Mobility-FireGL-V3100.yaml | 2 + .../{ => ATI}/R300/Mobility-FireGL-V3200.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-9500.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-9550.yaml | 2 + .../R300/Mobility-Radeon-9600-PRO-Turbo.yaml | 2 + .../R300/Mobility-Radeon-9600-PRO.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-9600.yaml | 2 + .../R300/Mobility-Radeon-9700-SE.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-9700.yaml | 2 + .../R300/Mobility-Radeon-X300-IGP.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-X300.yaml | 2 + .../R300/Mobility-Radeon-X600-SE.yaml | 2 + .../{ => ATI}/R300/Mobility-Radeon-X600.yaml | 2 + .../{ => ATI}/R300/Radeon-9500-PRO.yaml | 2 + .../{ => ATI}/R300/Radeon-9500.yaml | 2 + .../{ => ATI}/R300/Radeon-9550-SE.yaml | 2 + .../{ => ATI}/R300/Radeon-9550-XT.yaml | 2 + .../{ => ATI}/R300/Radeon-9550.yaml | 2 + .../{ => ATI}/R300/Radeon-9600-PRO.yaml | 2 + .../{ => ATI}/R300/Radeon-9600-SE.yaml | 2 + .../{ => ATI}/R300/Radeon-9600-TX.yaml | 2 + .../{ => ATI}/R300/Radeon-9600-XT.yaml | 2 + .../{ => ATI}/R300/Radeon-9600.yaml | 2 + .../{ => ATI}/R300/Radeon-9700-PRO-X4.yaml | 2 + .../{ => ATI}/R300/Radeon-9700-PRO.yaml | 2 + .../{ => ATI}/R300/Radeon-9700.yaml | 2 + .../{ => ATI}/R300/Radeon-9800-PRO-MAXX.yaml | 2 + .../R300/Radeon-9800-PRO-Mac-Edition.yaml | 2 + .../{ => ATI}/R300/Radeon-9800-PRO.yaml | 2 + .../{ => ATI}/R300/Radeon-9800-SE.yaml | 2 + .../R300/Radeon-9800-XT-Mac-Edition.yaml | 2 + .../{ => ATI}/R300/Radeon-9800-XT.yaml | 2 + .../{ => ATI}/R300/Radeon-9800-XXL.yaml | 2 + .../{ => ATI}/R300/Radeon-9800.yaml | 2 + .../{ => ATI}/R300/Radeon-X1050-AGP.yaml | 2 + .../{ => ATI}/R300/Radeon-X1050.yaml | 2 + .../{ => ATI}/R300/Radeon-X300-LE.yaml | 2 + .../R300/Radeon-X300-SE-HyperMemory.yaml | 2 + .../{ => ATI}/R300/Radeon-X300-SE.yaml | 2 + .../{ => ATI}/R300/Radeon-X300.yaml | 2 + .../R300/Radeon-X550-HyperMemory.yaml | 2 + .../{ => ATI}/R300/Radeon-X550.yaml | 2 + .../{ => ATI}/R300/Radeon-X600-PRO.yaml | 2 + .../{ => ATI}/R300/Radeon-X600-SE.yaml | 2 + .../{ => ATI}/R300/Radeon-X600-XT.yaml | 2 + .../{ => ATI}/R300/Radeon-X600.yaml | 2 + .../R300/Radeon-Xpress--200M-IGP.yaml | 2 + .../R300/Radeon-Xpress-1100-IGP.yaml | 2 + .../R300/Radeon-Xpress-1100-Mobile-IGP.yaml | 2 + .../R300/Radeon-Xpress-1150-IGP.yaml | 2 + .../R300/Radeon-Xpress-1150-Mobile-IGP.yaml | 2 + .../{ => ATI}/R300/Radeon-Xpress-200-IGP.yaml | 2 + .../R300/Radeon-Xpress-200M-IGP.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/R400.yaml | 0 .../{ => ATI}/R400/All-In-Wonder-X800-GT.yaml | 2 + .../{ => ATI}/R400/All-In-Wonder-X800-SE.yaml | 2 + .../{ => ATI}/R400/All-In-Wonder-X800-VE.yaml | 2 + .../{ => ATI}/R400/All-In-Wonder-X800-XL.yaml | 2 + .../{ => ATI}/R400/All-In-Wonder-X800-XT.yaml | 2 + .../{ => ATI}/R400/FireGL-V5000.yaml | 2 + .../{ => ATI}/R400/FireGL-V5100.yaml | 2 + .../{ => ATI}/R400/FireGL-V7100.yaml | 2 + .../{ => ATI}/R400/FireGL-X3-256.yaml | 2 + .../{ => ATI}/R400/Mobility-FireGL-V5000.yaml | 2 + .../{ => ATI}/R400/Mobility-Radeon-9800.yaml | 2 + .../R400/Mobility-Radeon-X700-XL.yaml | 2 + .../{ => ATI}/R400/Mobility-Radeon-X700.yaml | 2 + .../R400/Mobility-Radeon-X800-XT.yaml | 2 + .../{ => ATI}/R400/Mobility-Radeon-X800.yaml | 2 + .../{ => ATI}/R400/Radeon-2100-IGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X550-XT.yaml | 2 + .../{ => ATI}/R400/Radeon-X550-XTX.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-LE.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-PRO-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-PRO.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-SE.yaml | 2 + .../{ => ATI}/R400/Radeon-X700-XT.yaml | 2 + .../{ => ATI}/R400/Radeon-X700.yaml | 2 + .../{ => ATI}/R400/Radeon-X740-XL.yaml | 2 + .../R400/Radeon-X800-CrossFire-Edition.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-GT-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-GT.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-GTO-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-GTO.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-GTO2.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-PRO-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-PRO.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-SE-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-SE.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-VE-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-XL-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-XL.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-XT-AGP.yaml | 2 + .../R400/Radeon-X800-XT-Mac-Edition.yaml | 2 + .../R400/Radeon-X800-XT-Platinum-AGP.yaml | 2 + .../R400/Radeon-X800-XT-Platinum.yaml | 2 + .../{ => ATI}/R400/Radeon-X800-XT.yaml | 2 + .../{ => ATI}/R400/Radeon-X800.yaml | 2 + .../R400/Radeon-X850-CrossFire-Edition.yaml | 2 + .../{ => ATI}/R400/Radeon-X850-PRO-AGP.yaml | 2 + .../{ => ATI}/R400/Radeon-X850-PRO.yaml | 2 + .../{ => ATI}/R400/Radeon-X850-XT-AGP.yaml | 2 + .../R400/Radeon-X850-XT-Platinum-AGP.yaml | 2 + .../R400/Radeon-X850-XT-Platinum.yaml | 2 + .../{ => ATI}/R400/Radeon-X850-XT.yaml | 2 + .../R400/Radeon-Xpress-1200-IGP.yaml | 2 + .../R400/Radeon-Xpress-1200-Mobile-IGP.yaml | 2 + .../R400/Radeon-Xpress-1250-IGP.yaml | 2 + .../R400/Radeon-Xpress-1250-Mobile-IGP.yaml | 2 + .../R400/Radeon-Xpress-1270-Mobile-IGP.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-2.yaml | 0 .../{ => ATI}/Rage-2/3D-Rage-IIC-AGP.yaml | 2 + .../{ => ATI}/Rage-2/3D-Rage-IIC-PCI.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-3.yaml | 0 .../{ => ATI}/Rage-3/3D-Rage-PRO-AGP.yaml | 2 + .../{ => ATI}/Rage-3/3D-Rage-PRO-PCI.yaml | 2 + .../{ => ATI}/Rage-3/Rage-PRO-Turbo-AGP.yaml | 2 + .../{ => ATI}/Rage-3/Rage-PRO-Turbo-PCI.yaml | 2 + .../{ => ATI}/Rage-3/Rage-XL-PCI.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-4.yaml | 0 .../Rage-4/All-In-Wonder-128-PCI.yaml | 2 + .../Rage-4/All-In-Wonder-128-PRO-Ultra.yaml | 2 + .../Rage-4/All-In-Wonder-128-PRO.yaml | 2 + .../{ => ATI}/Rage-4/All-In-Wonder-128.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-GL-PCI.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-GL.yaml | 2 + .../Rage-4/Rage-128-PRO-Ultra-GL.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-PRO-Ultra.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-PRO.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-Ultra.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-VR-AGP.yaml | 2 + .../{ => ATI}/Rage-4/Rage-128-VR-PCI.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Fury-MAXX.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Fury.yaml | 2 + .../Rage-4/Rage-Mobility-128-AGP-2X.yaml | 2 + .../Rage-4/Rage-Mobility-128-AGP-4X.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-CL.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-M.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-M1.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-M3.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-M4.yaml | 2 + .../{ => ATI}/Rage-4/Rage-Mobility-P.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-5.yaml | 0 .../{ => ATI}/Rage-5/GameCube-GPU.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-6.yaml | 0 .../Rage-6/All-In-Wonder-Radeon-7200.yaml | 2 + .../{ => ATI}/Rage-6/ES1000.yaml | 2 + .../Rage-6/Mobility-Radeon-7000-IGP.yaml | 2 + .../Rage-6/Mobility-Radeon-7000.yaml | 2 + .../{ => ATI}/Rage-6/Mobility-Radeon-P.yaml | 2 + .../{ => ATI}/Rage-6/Mobility-Radeon.yaml | 2 + .../Rage-6/Radeon-7000-Mac-Edition-PCI.yaml | 2 + .../Rage-6/Radeon-7000-Mac-Edition.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-7000-PCI.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-7000.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-7200-64-MB.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-7200.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-DDR-MAXX.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-DDR-VIVO-OEM.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-DDR-VIVO-SE.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-DDR-VIVO.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-DDR.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-320.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-320M.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-330M.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-340.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-340M.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-345M.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-IGP-350M.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-LE.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-SDR-PCI.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-SDR.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-VE-AGP.yaml | 2 + .../{ => ATI}/Rage-6/Radeon-VE-PCI.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Rage-7.yaml | 0 .../Rage-7/All-In-Wonder-9000-PRO.yaml | 2 + .../Rage-7/All-In-Wonder-9200-SE.yaml | 2 + .../{ => ATI}/Rage-7/All-In-Wonder-9200.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-7500-VE.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-7500.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-8500.yaml | 2 + .../Rage-7/All-In-Wonder-Radeon-8500DV.yaml | 2 + .../{ => ATI}/Rage-7/FireGL-8700.yaml | 2 + .../{ => ATI}/Rage-7/FireGL-8800.yaml | 2 + .../{ => ATI}/Rage-7/FireMV-2200-PCI.yaml | 2 + .../Rage-7/Mobility-FireGL-7800.yaml | 2 + .../Rage-7/Mobility-FireGL-9000.yaml | 2 + .../Rage-7/Mobility-Radeon-7500.yaml | 2 + .../Rage-7/Mobility-Radeon-7500C.yaml | 2 + .../Rage-7/Mobility-Radeon-9000-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9000.yaml | 2 + .../Rage-7/Mobility-Radeon-9100-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml | 2 + .../Rage-7/Mobility-Radeon-9200.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-7500-LE.yaml | 2 + .../Rage-7/Radeon-7500-Mac-Edition.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-7500.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-8500-LE.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-8500-X4.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-8500-XT.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-8500.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9000-LE.yaml | 2 + .../Rage-7/Radeon-9000-PRO-Mac-Edition.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9000-PRO.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9000.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9100-PCI.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9100.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200-LE.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200-PCI.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200-PRO.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200-SE-PCI.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200-SE.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9200.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9250-PCI.yaml | 2 + .../{ => ATI}/Rage-7/Radeon-9250.yaml | 2 + .../{ => ATI}/Ultra-Threaded-SE.yaml | 0 .../All-In-Wonder-2006-PCIe-Edition.yaml | 2 + .../All-In-Wonder-X1800-XL.yaml | 2 + .../All-In-Wonder-X1900.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3300.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3350.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V3400.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V5200.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7200.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7300.yaml | 2 + .../Ultra-Threaded-SE/FireGL-V7350.yaml | 2 + .../FireMV-2250-PCIe-x1.yaml | 2 + .../Ultra-Threaded-SE/FireMV-2250.yaml | 2 + .../Mobility-FireGL-V5200.yaml | 2 + .../Mobility-FireGL-V5250.yaml | 2 + .../Mobility-Radeon-HD-2300.yaml | 2 + .../Mobility-Radeon-X1300.yaml | 2 + .../Mobility-Radeon-X1350.yaml | 2 + .../Mobility-Radeon-X1400.yaml | 2 + .../Mobility-Radeon-X1450.yaml | 2 + .../Mobility-Radeon-X1600-Mac-Edition.yaml | 2 + .../Mobility-Radeon-X1600.yaml | 2 + .../Mobility-Radeon-X1700.yaml | 2 + .../Mobility-Radeon-X1800-XT.yaml | 2 + .../Mobility-Radeon-X1800.yaml | 2 + .../Mobility-Radeon-X1900.yaml | 2 + .../Mobility-Radeon-X2300-HD.yaml | 2 + .../Mobility-Radeon-X2300.yaml | 2 + .../Mobility-Radeon-X2500.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-CE.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-LE.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-PCI.yaml | 2 + .../Radeon-X1300-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-PRO.yaml | 2 + .../Radeon-X1300-XT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1300.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550-PCI.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1550.yaml | 2 + .../Radeon-X1600-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-PRO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-SE.yaml | 2 + .../Radeon-X1600-XT-Dual.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1600.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-GT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-GTO.yaml | 2 + .../Radeon-X1650-PRO-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-PRO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-SE.yaml | 2 + .../Radeon-X1650-XT-AGP.yaml | 2 + .../Radeon-X1650-XT-Dual.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1650.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1700-FSC.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1700-SE.yaml | 2 + .../Radeon-X1800-CrossFire-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-GTO.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-XL.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1800-XT.yaml | 2 + .../Radeon-X1900-CrossFire-Edition.yaml | 2 + .../Radeon-X1900-G5-Mac-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-GT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-XT.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1900-XTX.yaml | 2 + .../Radeon-X1950-CrossFire-Edition.yaml | 2 + .../Radeon-X1950-GT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-GT.yaml | 2 + .../Radeon-X1950-PRO-AGP.yaml | 2 + .../Radeon-X1950-PRO-DUAL.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-PRO.yaml | 2 + .../Radeon-X1950-XT-AGP.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-XT.yaml | 2 + .../Radeon-X1950-XTX-Uber-Edition.yaml | 2 + .../Ultra-Threaded-SE/Radeon-X1950-XTX.yaml | 2 + .../Ultra-Threaded-SE/Stream-Processor.yaml | 2 + .../{ => ATI}/Ultra-Threaded-SE/Wii-GPU.yaml | 2 + specs/GPUs-CONSUMER/{ => ATI}/Wonder.yaml | 0 .../Wonder/Color-Emulation-Card.yaml | 2 + .../{ => ATI}/Wonder/EGA-Wonder-480.yaml | 2 + .../{ => ATI}/Wonder/EGA-Wonder-800+.yaml | 2 + .../{ => ATI}/Wonder/EGA-Wonder-800.yaml | 2 + .../Wonder/Graphics-Solution-Plus.yaml | 2 + .../{ => ATI}/Wonder/Graphics-Solution.yaml | 2 + .../Wonder/VGA-Improved-Performance.yaml | 2 + .../{ => ATI}/Wonder/VGA-Wonder+.yaml | 2 + .../{ => ATI}/Wonder/VGA-Wonder-XL24.yaml | 2 + .../{ => ATI}/Wonder/VGA-Wonder.yaml | 2 + .../{ => Intel}/Generation-1.0.yaml | 0 .../Generation-1.0/i752-Graphics.yaml | 2 + .../{ => Intel}/Generation-1.0/i752.yaml | 2 + .../Generation-1.0/i810-Graphics.yaml | 2 + .../Generation-1.0/i815-Graphics.yaml | 2 + .../Generation-1.0/i830M-Graphics.yaml | 1 + .../Generation-1.0/i830MG-Graphics.yaml | 1 + .../{ => Intel}/Generation-11.0.yaml | 0 .../Iris-Plus-Graphics-G4-48EU-Mobile.yaml | 0 .../Iris-Plus-Graphics-G7-64EU-Mobile.yaml | 0 .../UHD-Graphics-24EU-Mobile.yaml | 0 .../UHD-Graphics-32EU-Mobile.yaml | 0 .../UHD-Graphics-G1-32EU-Mobile.yaml | 0 .../UHD-Graphics-G4-48EU-Mobile.yaml | 0 .../UHD-Graphics-G7-64EU-Mobile.yaml | 0 .../{ => Intel}/Generation-12.1.yaml | 0 .../Generation-12.1/H3C-XG310.yaml | 0 .../Iris-Xe-Graphics-G4-48EU-Mobile.yaml | 0 .../Iris-Xe-Graphics-G7-80EU-Mobile.yaml | 0 .../Iris-Xe-Graphics-G7-96EU-Mobile.yaml | 0 .../Generation-12.1/Iris-Xe-MAX-Graphics.yaml | 0 .../UHD-Graphics-16EU-Mobile.yaml | 0 .../Generation-12.1/UHD-Graphics-16EU.yaml | 0 .../Generation-12.1/UHD-Graphics-750.yaml | 0 .../Generation-12.1/UHD-Graphics-P750.yaml | 0 .../Generation-12.1/Xe-DG1-SDV.yaml | 0 .../{ => Intel}/Generation-12.1/Xe-DG1.yaml | 0 .../{ => Intel}/Generation-12.2.yaml | 0 .../Iris-Xe-Graphics-80EU-Mobile.yaml | 0 .../Iris-Xe-Graphics-96EU-Mobile.yaml | 0 .../UHD-Graphics-48EU-Mobile.yaml | 0 .../UHD-Graphics-64EU-Mobile.yaml | 0 .../UHD-Graphics-710-Mobile.yaml | 0 .../Generation-12.2/UHD-Graphics-710.yaml | 0 .../Generation-12.2/UHD-Graphics-730.yaml | 0 .../UHD-Graphics-770-Mobile.yaml | 0 .../Generation-12.2/UHD-Graphics-770.yaml | 0 .../{ => Intel}/Generation-12.5.yaml | 0 .../Generation-12.5/Arctic-Sound-1T.yaml | 1 + .../Generation-12.5/Arctic-Sound-2T.yaml | 1 + .../Generation-12.5/Arctic-Sound-M.yaml | 1 + .../Data-Center-GPU-Max-1100.yaml | 0 .../Data-Center-GPU-Max-1350.yaml | 0 .../Data-Center-GPU-Max-1550.yaml | 0 .../Data-Center-GPU-Max-NEXT.yaml | 0 .../Data-Center-GPU-Max-Subsystem.yaml | 0 .../{ => Intel}/Generation-12.7.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A310.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A350.yaml | 0 .../Generation-12.7/Arc-A350M.yaml | 0 .../Generation-12.7/Arc-A370M.yaml | 0 .../Generation-12.7/Arc-A380M.yaml | 0 .../Generation-12.7/Arc-A530M.yaml | 0 .../Generation-12.7/Arc-A550M.yaml | 0 .../Generation-12.7/Arc-A570M.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A580.yaml | 0 .../Generation-12.7/Arc-A730M.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A750.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A770.yaml | 0 .../Generation-12.7/Arc-A770M.yaml | 0 .../{ => Intel}/Generation-12.7/Arc-A780.yaml | 0 .../Generation-12.7/Arc-Pro-A30M.yaml | 0 .../Generation-12.7/Arc-Pro-A40.yaml | 0 .../Generation-12.7/Arc-Pro-A50.yaml | 0 .../Generation-12.7/Arc-Pro-A60.yaml | 0 .../Generation-12.7/Arc-Pro-A60M.yaml | 0 .../Data-Center-GPU-Flex-140.yaml | 0 .../Data-Center-GPU-Flex-170.yaml | 0 .../{ => Intel}/Generation-2.0.yaml | 0 .../Generation-2.0/Extreme-Graphics-2.yaml | 1 + .../Generation-2.0/Extreme-Graphics.yaml | 2 + .../Generation-2.0/i852GM-Graphics.yaml | 1 + .../{ => Intel}/Generation-3.0.yaml | 0 .../{ => Intel}/Generation-3.0/GMA-900.yaml | 2 + .../{ => Intel}/Generation-3.5.yaml | 0 .../{ => Intel}/Generation-3.5/GMA-950.yaml | 1 + .../{ => Intel}/Generation-4.0.yaml | 0 .../{ => Intel}/Generation-4.0/GMA-3000.yaml | 2 + .../{ => Intel}/Generation-4.0/GMA-3100.yaml | 2 + .../{ => Intel}/Generation-4.0/GMA-3150.yaml | 1 + .../{ => Intel}/Generation-4.0/GMA-X3000.yaml | 2 + .../{ => Intel}/Generation-4.0/GMA-X3100.yaml | 2 + .../{ => Intel}/Generation-4.0/GMA-X3500.yaml | 2 + .../{ => Intel}/Generation-5.0.yaml | 0 .../{ => Intel}/Generation-5.0/GMA-X4500.yaml | 1 + .../Generation-5.0/GMA-X4500M.yaml | 1 + .../Generation-5.0/GMA-X4500MHD.yaml | 1 + .../Generation-5.0/GMA-X4700MHD.yaml | 1 + .../{ => Intel}/Generation-5.75.yaml | 0 .../Generation-5.75/HD-Graphics-12EU.yaml | 1 + .../HD-Graphics-16EU-Mobile.yaml | 0 .../{ => Intel}/Generation-6.0.yaml | 0 .../Generation-6.0/HD-Graphics-2000.yaml | 0 .../HD-Graphics-3000-Mobile.yaml | 0 .../Generation-6.0/HD-Graphics-3000.yaml | 0 .../HD-Graphics-6EU-Mobile.yaml | 0 .../Generation-6.0/HD-Graphics-P3000.yaml | 0 .../{ => Intel}/Generation-7.0.yaml | 0 .../HD-Graphics-32EU-Mobile.yaml | 0 .../HD-Graphics-4000-Mobile.yaml | 0 .../Generation-7.0/HD-Graphics-4000.yaml | 0 .../Generation-7.0/HD-Graphics-6EU.yaml | 0 .../Generation-7.0/HD-Graphics-P4000.yaml | 0 .../{ => Intel}/Generation-7.5.yaml | 0 .../HD-Graphics-10EU-Mobile.yaml | 0 .../Generation-7.5/HD-Graphics-10EU.yaml | 0 .../HD-Graphics-4200-Mobile.yaml | 0 .../HD-Graphics-4400-Mobile.yaml | 0 .../Generation-7.5/HD-Graphics-4400.yaml | 0 .../HD-Graphics-4600-Mobile.yaml | 0 .../Generation-7.5/HD-Graphics-4600.yaml | 0 .../HD-Graphics-5000-Mobile.yaml | 0 .../Generation-7.5/HD-Graphics-P4600.yaml | 0 .../Generation-7.5/HD-Graphics-P4700.yaml | 0 .../Iris-Graphics-5100-Mobile.yaml | 0 .../Iris-Pro-Graphics-5200-Mobile.yaml | 0 .../Iris-Pro-Graphics-5200.yaml | 0 .../{ => Intel}/Generation-8.0.yaml | 0 .../HD-Graphics-12EU-Mobile.yaml | 1 + .../HD-Graphics-400-Mobile.yaml | 0 .../HD-Graphics-405-Mobile.yaml | 0 .../HD-Graphics-5300-Mobile.yaml | 0 .../HD-Graphics-5500-Mobile.yaml | 0 .../HD-Graphics-5600-Mobile.yaml | 0 .../HD-Graphics-6000-Mobile.yaml | 0 .../Generation-8.0/HD-Graphics-P5700.yaml | 0 .../Iris-Graphics-6100-Mobile.yaml | 0 .../Iris-Pro-Graphics-6200-Mobile.yaml | 0 .../Iris-Pro-Graphics-6200.yaml | 0 .../Iris-Pro-Graphics-P6300.yaml | 0 .../{ => Intel}/Generation-9.0.yaml | 0 .../HD-Graphics-500-Mobile.yaml | 0 .../HD-Graphics-505-Mobile.yaml | 0 .../HD-Graphics-510-Mobile.yaml | 0 .../Generation-9.0/HD-Graphics-510.yaml | 0 .../HD-Graphics-515-Mobile.yaml | 0 .../HD-Graphics-520-Mobile.yaml | 0 .../HD-Graphics-530-Mobile.yaml | 0 .../Generation-9.0/HD-Graphics-530.yaml | 0 .../Generation-9.0/HD-Graphics-P530.yaml | 0 .../Iris-Graphics-540-Mobile.yaml | 0 .../Iris-Graphics-550-Mobile.yaml | 0 .../Iris-Pro-Graphics-580-Mobile.yaml | 0 .../Iris-Pro-Graphics-P555.yaml | 0 .../Iris-Pro-Graphics-P580-Mobile.yaml | 0 .../Iris-Pro-Graphics-P580.yaml | 0 .../{ => Intel}/Generation-9.5.yaml | 0 .../HD-Graphics-610-Mobile.yaml | 0 .../Generation-9.5/HD-Graphics-610.yaml | 0 .../HD-Graphics-615-Mobile.yaml | 0 .../HD-Graphics-620-Mobile.yaml | 0 .../HD-Graphics-630-Mobile.yaml | 0 .../Generation-9.5/HD-Graphics-630.yaml | 0 .../HD-Graphics-P630-Mobile.yaml | 0 .../Iris-Plus-Graphics-640-Mobile.yaml | 0 .../Iris-Plus-Graphics-645-Mobile.yaml | 0 .../Iris-Plus-Graphics-650-Mobile.yaml | 0 .../Iris-Plus-Graphics-655-Mobile.yaml | 0 .../UHD-Graphics-600-Mobile.yaml | 0 .../UHD-Graphics-605-Mobile.yaml | 0 .../UHD-Graphics-610-Mobile.yaml | 0 .../Generation-9.5/UHD-Graphics-610.yaml | 0 .../UHD-Graphics-615-Mobile.yaml | 0 .../UHD-Graphics-617-Mobile.yaml | 0 .../UHD-Graphics-620-Mobile.yaml | 0 .../UHD-Graphics-630-Mobile.yaml | 0 .../Generation-9.5/UHD-Graphics-630.yaml | 0 .../UHD-Graphics-P630-Mobile.yaml | 0 .../Generation-9.5/UHD-Graphics-P630.yaml | 0 specs/GPUs-CONSUMER/{ => Intel}/Knights.yaml | 0 .../{ => Intel}/Knights/Aubrey-Isle.yaml | 1 + .../{ => Intel}/Knights/Xeon-Phi-3120A.yaml | 1 + .../{ => Intel}/Knights/Xeon-Phi-5110P.yaml | 1 + .../{ => Intel}/Knights/Xeon-Phi-5120D.yaml | 1 + .../{ => Intel}/Knights/Xeon-Phi-7120P.yaml | 0 .../{ => Intel}/Knights/Xeon-Phi-7120X.yaml | 0 .../{ => Intel}/Knights/Xeon-Phi-SE10X.yaml | 1 + .../{ => Intel}/PowerVR-SGX535.yaml | 0 .../{ => Intel}/PowerVR-SGX535/GMA-500.yaml | 1 + .../{ => Intel}/PowerVR-SGX535/GMA-600.yaml | 1 + .../{ => Intel}/PowerVR-SGX545.yaml | 0 .../{ => Intel}/PowerVR-SGX545/GMA-3650.yaml | 1 + .../{ => Intel}/PowerVR-SGX545/GMA.yaml | 2 + specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG.yaml | 0 .../Xe-LPG/Arc-Graphics-112EU-Mobile.yaml | 0 .../Xe-LPG/Arc-Graphics-128EU-Mobile.yaml | 0 .../Xe-LPG/Arc-Graphics-48EU-Mobile.yaml | 0 .../Xe-LPG/Arc-Graphics-64EU-Mobile.yaml | 0 specs/GPUs-CONSUMER/{ => Intel}/i740.yaml | 4 +- .../{ => Intel}/i740/i740-8-MB.yaml | 2 + .../{ => Intel}/i740/i740-Graphics.yaml | 2 + .../GPUs-CONSUMER/{ => Intel}/i740/i740.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/G100.yaml | 0 .../{ => Matrox}/G100/Productiva-G100.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/G200.yaml | 0 .../{ => Matrox}/G200/Marvel-G200.yaml | 2 + .../{ => Matrox}/G200/Millennium-G200-SD.yaml | 2 + .../{ => Matrox}/G200/Millennium-G200.yaml | 2 + .../{ => Matrox}/G200/Millennium-G200A.yaml | 2 + .../{ => Matrox}/G200/Millennium-G250.yaml | 2 + .../{ => Matrox}/G200/Mystique-G200.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/G400.yaml | 0 .../{ => Matrox}/G400/Marvel-G400-TV.yaml | 2 + .../G400/Millennium-G400-MAX.yaml | 2 + .../{ => Matrox}/G400/Millennium-G400.yaml | 2 + .../{ => Matrox}/G400/Millennium-G450-LP.yaml | 2 + .../G400/Millennium-G450-x2-MMS.yaml | 2 + .../G400/Millennium-G450-x4-MMS.yaml | 2 + .../{ => Matrox}/G400/Millennium-G450.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/G500.yaml | 0 .../G500/Millennium-G550-PCIe.yaml | 2 + .../{ => Matrox}/G500/Millennium-G550.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/MP.yaml | 0 .../{ => Matrox}/MP/QID-LP-PCI.yaml | 2 + .../{ => Matrox}/MP/QID-LP-PCIe.yaml | 2 + .../{ => Matrox}/MP/QID-PRO.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/MP/QID.yaml | 2 + specs/GPUs-CONSUMER/{ => Matrox}/PX.yaml | 0 .../{ => Matrox}/PX/M9125-PCIe-x16.yaml | 2 + .../GPUs-CONSUMER/{ => Matrox}/Parhelia.yaml | 0 .../Parhelia/Millenium-P650-LP-MDD-PCIe.yaml | 2 + .../Parhelia/Millenium-P650-PCIe.yaml | 2 + .../{ => Matrox}/Parhelia/Millenium-P650.yaml | 2 + .../{ => Matrox}/Parhelia/Millenium-P750.yaml | 2 + .../Parhelia/Parhelia-128-MB.yaml | 2 + .../Parhelia/Parhelia-256-MB.yaml | 2 + .../{ => Matrox}/Parhelia/Parhelia-APVe.yaml | 2 + .../{ => Matrox}/Parhelia/Parhelia-DL256.yaml | 2 + .../{ => Matrox}/Parhelia/Parhelia-HR256.yaml | 2 + .../{ => Matrox}/Parhelia/Parhelia-PCI.yaml | 2 + .../Parhelia/Parhelia-Precision-SDT.yaml | 2 + .../Parhelia/Parhelia-Precision-SGT.yaml | 2 + .../{ => Nvidia}/Ada-Lovelace.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4050.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4060-AD106.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml | 0 .../GeForce-RTX-4060-Ti-16-GB.yaml | 0 .../GeForce-RTX-4060-Ti-8-GB.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4060.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml | 0 .../GeForce-RTX-4070-Ti-SUPER.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4070-Ti.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4070.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080-Ti.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4080.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4090-D.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4090-Ti.yaml | 0 .../Ada-Lovelace/GeForce-RTX-4090.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/L4.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/L40-CNX.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/L40.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/L40G.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/L40S.yaml | 0 .../Ada-Lovelace/RTX-2000-Ada-Generation.yaml | 0 .../RTX-2000-Embedded-Ada-Generation.yaml | 0 .../RTX-2000-Max-Q-Ada-Generation.yaml | 0 .../RTX-2000-Mobile-Ada-Generation.yaml | 0 .../RTX-3000-Mobile-Ada-Generation.yaml | 0 .../RTX-3500-Embedded-Ada-Generation.yaml | 0 .../RTX-3500-Mobile-Ada-Generation.yaml | 0 .../Ada-Lovelace/RTX-4000-Ada-Generation.yaml | 0 .../RTX-4000-Mobile-Ada-Generation.yaml | 0 .../RTX-4000-SFF-Ada-Generation.yaml | 0 .../Ada-Lovelace/RTX-4500-Ada-Generation.yaml | 0 .../Ada-Lovelace/RTX-5000-Ada-Generation.yaml | 0 .../RTX-5000-Embedded-Ada-Generation.yaml | 0 .../RTX-5000-Max-Q-Ada-Generation.yaml | 0 .../RTX-5000-Mobile-Ada-Generation.yaml | 0 .../Ada-Lovelace/RTX-5880-Ada-Generation.yaml | 0 .../Ada-Lovelace/RTX-6000-Ada-Generation.yaml | 0 .../{ => Nvidia}/Ada-Lovelace/TITAN-Ada.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Ampere.yaml | 0 .../{ => Nvidia}/Ampere/A10-PCIe.yaml | 0 .../{ => Nvidia}/Ampere/A100-PCIe-40-GB.yaml | 0 .../{ => Nvidia}/Ampere/A100-PCIe-80-GB.yaml | 0 .../{ => Nvidia}/Ampere/A100-SXM4-40-GB.yaml | 0 .../{ => Nvidia}/Ampere/A100-SXM4-80-GB.yaml | 0 .../{ => Nvidia}/Ampere/A100X.yaml | 0 .../{ => Nvidia}/Ampere/A10G.yaml | 0 .../{ => Nvidia}/Ampere/A10M.yaml | 0 .../{ => Nvidia}/Ampere/A16-PCIe.yaml | 0 .../{ => Nvidia}/Ampere/A2-PCIe.yaml | 0 .../GPUs-CONSUMER/{ => Nvidia}/Ampere/A2.yaml | 0 .../{ => Nvidia}/Ampere/A30-PCIe.yaml | 0 .../{ => Nvidia}/Ampere/A30X.yaml | 0 .../{ => Nvidia}/Ampere/A40-PCIe.yaml | 0 .../{ => Nvidia}/Ampere/A800-PCIe-40-GB.yaml | 0 .../{ => Nvidia}/Ampere/A800-PCIe-80-GB.yaml | 0 .../{ => Nvidia}/Ampere/A800-SXM4-80-GB.yaml | 0 .../{ => Nvidia}/Ampere/CMP-170HX-10-GB.yaml | 0 .../{ => Nvidia}/Ampere/CMP-170HX-8-GB.yaml | 0 .../{ => Nvidia}/Ampere/CMP-70HX.yaml | 0 .../{ => Nvidia}/Ampere/CMP-90HX.yaml | 0 .../{ => Nvidia}/Ampere/DRIVE-A100-PROD.yaml | 0 .../{ => Nvidia}/Ampere/GRID-A100A.yaml | 0 .../{ => Nvidia}/Ampere/GRID-A100B.yaml | 0 .../{ => Nvidia}/Ampere/GeForce-MX570-A.yaml | 0 .../{ => Nvidia}/Ampere/GeForce-MX570.yaml | 0 .../Ampere/GeForce-RTX-2050-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-2050-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3050-4-GB.yaml | 0 .../Ampere/GeForce-RTX-3050-6-GB.yaml | 0 .../Ampere/GeForce-RTX-3050-8-GB-GA107.yaml | 0 .../Ampere/GeForce-RTX-3050-8-GB.yaml | 0 .../GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml | 0 .../GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml | 0 .../Ampere/GeForce-RTX-3050-Max-Q.yaml | 0 .../GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml | 0 .../GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml | 0 .../Ampere/GeForce-RTX-3050-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3050-OEM.yaml | 0 .../Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3050-Ti-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3060-12-GB-GA104.yaml | 0 .../Ampere/GeForce-RTX-3060-12-GB.yaml | 0 .../Ampere/GeForce-RTX-3060-3840SP.yaml | 0 .../Ampere/GeForce-RTX-3060-8-GB-GA104.yaml | 0 .../Ampere/GeForce-RTX-3060-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3060-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3060-Ti-GA103.yaml | 0 .../Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml | 0 .../Ampere/GeForce-RTX-3060-Ti.yaml | 0 .../Ampere/GeForce-RTX-3070-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3070-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3070-Ti-16-GB.yaml | 0 .../GeForce-RTX-3070-Ti-8-GB-GA102.yaml | 0 .../Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3070-Ti-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3070-Ti.yaml | 0 .../Ampere/GeForce-RTX-3070-TiM.yaml | 0 .../{ => Nvidia}/Ampere/GeForce-RTX-3070.yaml | 0 .../Ampere/GeForce-RTX-3080-12-GB.yaml | 0 .../Ampere/GeForce-RTX-3080-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3080-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3080-Ti-20-GB.yaml | 0 .../Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml | 0 .../Ampere/GeForce-RTX-3080-Ti-Mobile.yaml | 0 .../Ampere/GeForce-RTX-3080-Ti.yaml | 0 .../{ => Nvidia}/Ampere/GeForce-RTX-3080.yaml | 0 .../Ampere/GeForce-RTX-3090-Ti.yaml | 0 .../{ => Nvidia}/Ampere/GeForce-RTX-3090.yaml | 0 .../Ampere/Jetson-AGX-Orin-32-GB.yaml | 1 + .../Ampere/Jetson-AGX-Orin-64-GB.yaml | 1 + .../Ampere/Jetson-Orin-NX-16-GB.yaml | 1 + .../Ampere/Jetson-Orin-NX-8-GB.yaml | 1 + .../Ampere/Jetson-Orin-Nano-4-GB.yaml | 1 + .../Ampere/Jetson-Orin-Nano-8-GB.yaml | 1 + .../{ => Nvidia}/Ampere/PG506-207.yaml | 0 .../{ => Nvidia}/Ampere/PG506-217.yaml | 0 .../{ => Nvidia}/Ampere/PG506-232.yaml | 0 .../{ => Nvidia}/Ampere/PG506-242.yaml | 0 .../Ampere/RTX-A1000-Embedded.yaml | 0 .../Ampere/RTX-A1000-Mobile-6-GB.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A1000-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A2000-12-GB.yaml | 0 .../Ampere/RTX-A2000-Embedded.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A2000-Max-Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A2000-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A2000.yaml | 0 .../Ampere/RTX-A3000-Mobile-12-GB.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A3000-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4000-Max-Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4000-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4000.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4000H.yaml | 0 .../Ampere/RTX-A4500-Embedded.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4500-Max-Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4500-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A4500.yaml | 0 .../Ampere/RTX-A500-Embedded.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A500-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A500.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5000-12Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5000-8Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5000-Max-Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5000-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5000.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5500-Max-Q.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5500-Mobile.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A5500.yaml | 0 .../{ => Nvidia}/Ampere/RTX-A6000.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Celsius.yaml | 0 .../{ => Nvidia}/Celsius/GeForce-256-DDR.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce-256-SDR.yaml | 2 + .../Celsius/GeForce-6200-AGP.yaml | 2 + .../Celsius/GeForce-PCX-4300.yaml | 2 + .../Celsius/GeForce2-GTS-PRO.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-GTS.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-Go-100.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-Go-200.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-Go.yaml | 2 + .../Celsius/GeForce2-MX-+-nForce-220.yaml | 2 + .../Celsius/GeForce2-MX-+-nForce-420.yaml | 2 + .../Celsius/GeForce2-MX-200-LP.yaml | 2 + .../Celsius/GeForce2-MX-200-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-MX-200.yaml | 2 + .../Celsius/GeForce2-MX-400-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-MX-400.yaml | 2 + .../Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml | 2 + .../Celsius/GeForce2-MX-DH-Pro-TV.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-MX-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-MX.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-PRO.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-Ti.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce2-Ultra.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-410-Go.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-420-Go.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-440-Go.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-448-Go.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-460-Go.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-488-Go.yaml | 2 + .../Celsius/GeForce4-MX-+-nForce2.yaml | 2 + .../Celsius/GeForce4-MX-4000-PCI.yaml | 2 + .../Celsius/GeForce4-MX-4000-Rev.-2.yaml | 2 + .../Celsius/GeForce4-MX-4000.yaml | 2 + .../Celsius/GeForce4-MX-420-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-MX-420.yaml | 2 + .../Celsius/GeForce4-MX-440-8x.yaml | 2 + .../Celsius/GeForce4-MX-440-Mac-Edition.yaml | 2 + .../Celsius/GeForce4-MX-440-SE.yaml | 2 + .../{ => Nvidia}/Celsius/GeForce4-MX-440.yaml | 2 + .../Celsius/Quadro-NVS-280-SD.yaml | 2 + .../Celsius/Quadro-NVS-50-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro2-Go.yaml | 2 + .../Celsius/Quadro2-MXR-Low-Profile.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro2-MXR.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro2-Pro.yaml | 2 + .../Celsius/Quadro4-100-NVS-PCI.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-100-NVS.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-200-NVS.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-380-XGL.yaml | 2 + .../Celsius/Quadro4-400-NVS-PCI.yaml | 2 + .../Celsius/Quadro4-500-Go-GL.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-500-XGL.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-550-XGL.yaml | 2 + .../{ => Nvidia}/Celsius/Quadro4-580-XGL.yaml | 2 + specs/GPUs-CONSUMER/{ => Nvidia}/Curie.yaml | 0 .../Curie/GeForce-6100-+-nForce-400.yaml | 2 + .../Curie/GeForce-6100-+-nForce-405.yaml | 2 + .../Curie/GeForce-6100-+-nForce-420.yaml | 2 + .../Curie/GeForce-6100-+-nForce-430.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6100.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6150-LE.yaml | 2 + .../Curie/GeForce-6150-SE-+-nForce-430.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6150.yaml | 2 + .../Curie/GeForce-6200-LE-AGP-512-MB.yaml | 2 + .../Curie/GeForce-6200-LE-AGP.yaml | 2 + .../Curie/GeForce-6200-LE-PCI.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6200-LE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6200-PCI.yaml | 2 + .../Curie/GeForce-6200-SE-TurboCache.yaml | 2 + .../Curie/GeForce-6200-TurboCache.yaml | 2 + .../Curie/GeForce-6200-X2-PCI.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6200.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6500.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6600-AGP.yaml | 2 + .../Curie/GeForce-6600-GT-AGP.yaml | 2 + .../Curie/GeForce-6600-GT-Dual.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6600-GT.yaml | 2 + .../Curie/GeForce-6600-LE-AGP.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6600-LE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6600-VE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6600.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6610-XL.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6700-XL.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-GS.yaml | 2 + .../Curie/GeForce-6800-GT-DDL.yaml | 2 + .../Curie/GeForce-6800-GT-Dual.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-GTO.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-LE.yaml | 2 + .../Curie/GeForce-6800-Ultra-DDL.yaml | 2 + .../Curie/GeForce-6800-Ultra.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-XE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800-XT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-6800.yaml | 2 + .../Curie/GeForce-7000M-+-nForce-610M.yaml | 2 + .../Curie/GeForce-7025-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-+-nForce-610i.yaml | 2 + .../Curie/GeForce-7050-+-nForce-620i.yaml | 1 + .../Curie/GeForce-7050-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-+-nForce-630i.yaml | 1 + .../Curie/GeForce-7050-PV-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7050-SE-+-nForce-630a.yaml | 2 + .../Curie/GeForce-7100-+-nForce-630i.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7100-GS.yaml | 2 + .../Curie/GeForce-7150-+-nForce-630i.yaml | 2 + .../Curie/GeForce-7150M-+-nForce-630M.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7200-GS.yaml | 2 + .../Curie/GeForce-7300-GS-Low-Profile.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7300-GS.yaml | 2 + .../Curie/GeForce-7300-GT-AGP.yaml | 2 + .../Curie/GeForce-7300-GT-Mac-Edition.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7300-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7300-LE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7300-SE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7350-LE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7500-LE.yaml | 2 + .../Curie/GeForce-7600-GS-AGP.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7600-GS.yaml | 2 + .../Curie/GeForce-7600-GT-AGP.yaml | 2 + .../Curie/GeForce-7600-GT-Mac-Edition.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7600-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7600-LE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7650-GS.yaml | 2 + .../Curie/GeForce-7800-GS+-20Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS+-24Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS+-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-20Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-24Pipes-AGP.yaml | 2 + .../Curie/GeForce-7800-GS-AGP.yaml | 2 + .../Curie/GeForce-7800-GT-Dual.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7800-GT.yaml | 2 + .../Curie/GeForce-7800-GTX-512.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7800-GTX.yaml | 2 + .../Curie/GeForce-7900-GS-AGP.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7900-GS.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7900-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7900-GTO.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7900-GTX.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7900-GX2.yaml | 2 + .../Curie/GeForce-7950-GT-AGP.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7950-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-7950-GX2.yaml | 2 + .../GeForce-Go-6100-+-nForce-Go-430.yaml | 2 + .../GeForce-Go-6150-+-nForce-Go-430.yaml | 2 + .../Curie/GeForce-Go-6200-TE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-6200.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-6250.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-6400.yaml | 2 + .../Curie/GeForce-Go-6600-NPB-128M.yaml | 2 + .../Curie/GeForce-Go-6600-TE.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-6600.yaml | 2 + .../Curie/GeForce-Go-6800-Ultra.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-6800.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7200.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7300.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7300T.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7400.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7400T.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7450.yaml | 2 + .../Curie/GeForce-Go-7600-GT.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7600.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7700.yaml | 2 + .../Curie/GeForce-Go-7800-GTX.yaml | 2 + .../{ => Nvidia}/Curie/GeForce-Go-7800.yaml | 2 + .../Curie/GeForce-Go-7900-GS.yaml | 2 + .../Curie/GeForce-Go-7900-GTX.yaml | 2 + .../Curie/GeForce-Go-7900-SE.yaml | 2 + .../Curie/GeForce-Go-7950-GTX.yaml | 2 + .../Curie/Playstation-3-GPU-28nm.yaml | 2 + .../Curie/Playstation-3-GPU-40nm.yaml | 2 + .../Curie/Playstation-3-GPU-65nm.yaml | 2 + .../Curie/Playstation-3-GPU-90nm.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-1400.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-1500.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-1500M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-2500M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-3400.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-3450.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-350.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-3500.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-3500M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-350M.yaml | 2 + .../Curie/Quadro-FX-4000-SDI.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-4000.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-4400.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-4400G.yaml | 2 + .../Curie/Quadro-FX-4500-SDI.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-4500-X2.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-4500.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-540.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-550.yaml | 2 + .../Curie/Quadro-FX-5500-SDI.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-5500.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-550M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-560.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-Go1400.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-FX-Go540.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-110M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-120M.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-210S.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-285.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-300M.yaml | 2 + .../Curie/Quadro-NVS-440-PCIe-x1.yaml | 2 + .../Curie/Quadro-NVS-440-PCIe-x16.yaml | 2 + .../{ => Nvidia}/Curie/Quadro-NVS-510M.yaml | 2 + .../Curie/Quadro-Plex-1000-Model-II.yaml | 2 + .../{ => Nvidia}/Fahrenheit.yaml | 0 .../{ => Nvidia}/Fahrenheit/Riva-TNT.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64-Vanta.yaml | 2 + .../Fahrenheit/Riva-TNT2-M64.yaml | 2 + .../Fahrenheit/Riva-TNT2-PRO.yaml | 2 + .../Fahrenheit/Riva-TNT2-Ultra.yaml | 2 + .../{ => Nvidia}/Fahrenheit/Riva-TNT2.yaml | 2 + .../{ => Nvidia}/Fahrenheit/Vanta-LT.yaml | 2 + .../GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0.yaml | 0 .../{ => Nvidia}/Fermi-2.0/GeForce-410M.yaml | 1 + .../Fermi-2.0/GeForce-510-OEM.yaml | 1 + .../Fermi-2.0/GeForce-605-OEM.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-610.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-610M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-620M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-705A.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-705M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-710M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-720A.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-800A.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-800M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-820A.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/GeForce-820M.yaml | 1 + .../Fermi-2.0/GeForce-GT-520-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-520-PCI.yaml | 1 + .../Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml | 1 + .../Fermi-2.0/GeForce-GT-520.yaml | 1 + .../Fermi-2.0/GeForce-GT-520MX.yaml | 1 + .../Fermi-2.0/GeForce-GT-545-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-545.yaml | 1 + .../Fermi-2.0/GeForce-GT-550M.yaml | 1 + .../Fermi-2.0/GeForce-GT-555M-2-GB.yaml | 1 + .../Fermi-2.0/GeForce-GT-555M-3-GB.yaml | 1 + .../Fermi-2.0/GeForce-GT-610-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-610-PCI.yaml | 1 + .../Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml | 1 + .../Fermi-2.0/GeForce-GT-610.yaml | 1 + .../Fermi-2.0/GeForce-GT-620-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-625M.yaml | 1 + .../Fermi-2.0/GeForce-GT-635M.yaml | 1 + .../Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml | 1 + .../Fermi-2.0/GeForce-GT-645-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-705-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GT-710M.yaml | 1 + .../Fermi-2.0/GeForce-GT-720A.yaml | 1 + .../Fermi-2.0/GeForce-GT-720M.yaml | 1 + .../Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml | 1 + .../Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml | 1 + .../Fermi-2.0/GeForce-GTX-460-SE-v2.yaml | 1 + .../Fermi-2.0/GeForce-GTX-460-v2.yaml | 1 + .../Fermi-2.0/GeForce-GTX-550-Ti.yaml | 1 + .../Fermi-2.0/GeForce-GTX-555-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560-SE.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560-Ti-448.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560-Ti.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560.yaml | 1 + .../Fermi-2.0/GeForce-GTX-560M.yaml | 1 + .../Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml | 1 + .../Fermi-2.0/GeForce-GTX-570.yaml | 1 + .../Fermi-2.0/GeForce-GTX-570M.yaml | 1 + .../Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml | 1 + .../Fermi-2.0/GeForce-GTX-580.yaml | 1 + .../Fermi-2.0/GeForce-GTX-580M.yaml | 1 + .../Fermi-2.0/GeForce-GTX-590.yaml | 1 + .../Fermi-2.0/GeForce-GTX-670M.yaml | 1 + .../Fermi-2.0/GeForce-GTX-675M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/NVS-310.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/NVS-315.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/NVS-4200M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/NVS-5200M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Quadro-5010M.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Quadro-7000.yaml | 1 + .../Fermi-2.0/Quadro-Plex-7000.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Tesla-C2075.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Tesla-C2090.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Tesla-M2075.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Tesla-M2090.yaml | 1 + .../{ => Nvidia}/Fermi-2.0/Tesla-X2090.yaml | 1 + specs/GPUs-CONSUMER/{ => Nvidia}/Fermi.yaml | 0 .../{ => Nvidia}/Fermi/GeForce-615-OEM.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-415M.yaml | 1 + .../Fermi/GeForce-GT-420-OEM.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-420M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-425M.yaml | 1 + .../Fermi/GeForce-GT-430-OEM.yaml | 1 + .../Fermi/GeForce-GT-430-PCI.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-430.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-435M.yaml | 1 + .../Fermi/GeForce-GT-440-Mac-Edition.yaml | 1 + .../Fermi/GeForce-GT-440-OEM.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-440.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-445M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-520M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-525M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-540M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-555M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-620.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-620M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-630.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-630M.yaml | 1 + .../Fermi/GeForce-GT-640M-LE.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GT-730.yaml | 1 + .../Fermi/GeForce-GTS-450-OEM.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTS-450.yaml | 1 + .../Fermi/GeForce-GTX-460-SE.yaml | 1 + .../Fermi/GeForce-GTX-460-X2.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-460.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-460M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-465.yaml | 1 + .../Fermi/GeForce-GTX-470-X2.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-470.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-470M.yaml | 1 + .../Fermi/GeForce-GTX-480-Core-512.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-480.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-480M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-485M.yaml | 1 + .../{ => Nvidia}/Fermi/GeForce-GTX-490.yaml | 1 + .../{ => Nvidia}/Fermi/NVS-5400M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-1000M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-2000.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-2000D.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-2000M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-3000M-X2.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-3000M.yaml | 1 + .../Fermi/Quadro-4000-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-4000.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-4000M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-5000-SDI.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-5000.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-5000M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-500M.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-600.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-6000-SDI.yaml | 1 + .../{ => Nvidia}/Fermi/Quadro-6000.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-C2050.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-C2070.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-M2050.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-M2070-Q.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-M2070.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-S2050.yaml | 1 + .../{ => Nvidia}/Fermi/Tesla-X2070.yaml | 1 + specs/GPUs-CONSUMER/{ => Nvidia}/Hopper.yaml | 0 .../{ => Nvidia}/Hopper/H100-CNX.yaml | 0 .../{ => Nvidia}/Hopper/H100-PCIe-80-GB.yaml | 0 .../{ => Nvidia}/Hopper/H100-PCIe-96-GB.yaml | 0 .../{ => Nvidia}/Hopper/H100-SXM5-64-GB.yaml | 0 .../{ => Nvidia}/Hopper/H100-SXM5-80-GB.yaml | 0 .../{ => Nvidia}/Hopper/H100-SXM5-96-GB.yaml | 0 .../{ => Nvidia}/Hopper/H800-PCIe-80-GB.yaml | 0 .../{ => Nvidia}/Hopper/H800-SXM5.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin.yaml | 0 .../{ => Nvidia}/Kelvin/GeForce3-Ti200.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce3-Ti500.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce3.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce4-Go-4200.yaml | 2 + .../Kelvin/GeForce4-Ti-4200-8X.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce4-Ti-4200.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce4-Ti-4400.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce4-Ti-4600.yaml | 2 + .../{ => Nvidia}/Kelvin/GeForce4-Ti-4800.yaml | 2 + .../{ => Nvidia}/Kelvin/Quadro-DCC.yaml | 2 + .../Kelvin/Quadro4-700-Go-GL.yaml | 2 + .../{ => Nvidia}/Kelvin/Quadro4-700-XGL.yaml | 2 + .../{ => Nvidia}/Kelvin/Quadro4-750-XGL.yaml | 2 + .../{ => Nvidia}/Kelvin/Quadro4-900-XGL.yaml | 2 + .../{ => Nvidia}/Kelvin/Quadro4-980-XGL.yaml | 2 + .../{ => Nvidia}/Kelvin/Xbox-GPU.yaml | 2 + .../{ => Nvidia}/Kepler-2.0.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-710A.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-805A.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-810A.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-825M.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-910M.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-920A.yaml | 0 .../{ => Nvidia}/Kepler-2.0/GeForce-920M.yaml | 0 .../GeForce-GT-630-Rev.-2-PCIe-x8.yaml | 1 + .../Kepler-2.0/GeForce-GT-630-Rev.-2.yaml | 1 + .../Kepler-2.0/GeForce-GT-635-OEM.yaml | 1 + .../Kepler-2.0/GeForce-GT-640-Rev.-2.yaml | 1 + .../Kepler-2.0/GeForce-GT-710-OEM.yaml | 1 + .../Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml | 1 + .../Kepler-2.0/GeForce-GT-710.yaml | 1 + .../Kepler-2.0/GeForce-GT-720.yaml | 1 + .../Kepler-2.0/GeForce-GT-730A.yaml | 0 .../Kepler-2.0/GeForce-GT-735M.yaml | 0 .../{ => Nvidia}/Kepler-2.0/Jetson-TK1.yaml | 0 .../{ => Nvidia}/Kepler-2.0/Quadro-K510M.yaml | 0 .../{ => Nvidia}/Kepler-2.0/Quadro-K610M.yaml | 0 .../{ => Nvidia}/Kepler-2.0/Tesla-K80.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Kepler.yaml | 0 .../{ => Nvidia}/Kepler/GRID-K1.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K100.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K120Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K140Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K160Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K180Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K2.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K200.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K220Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K240Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K260Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K280Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K340.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K500.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K520.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K520Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K540Q.yaml | 1 + .../{ => Nvidia}/Kepler/GRID-K560Q.yaml | 1 + .../{ => Nvidia}/Kepler/GeForce-810M.yaml | 0 .../Kepler/GeForce-GT-1030-GK107.yaml | 1 + .../Kepler/GeForce-GT-630-OEM.yaml | 1 + .../Kepler/GeForce-GT-640-OEM.yaml | 1 + .../Kepler/GeForce-GT-640M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-640M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-645M.yaml | 0 .../Kepler/GeForce-GT-650M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-650M.yaml | 0 .../Kepler/GeForce-GT-720-OEM.yaml | 1 + .../Kepler/GeForce-GT-730-OEM.yaml | 1 + .../{ => Nvidia}/Kepler/GeForce-GT-730M.yaml | 0 .../Kepler/GeForce-GT-740-OEM.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-740.yaml | 1 + .../{ => Nvidia}/Kepler/GeForce-GT-740M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-745A.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-745M.yaml | 0 .../Kepler/GeForce-GT-750M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-750M.yaml | 0 .../Kepler/GeForce-GT-755M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GT-755M.yaml | 0 .../Kepler/GeForce-GTX-645-OEM.yaml | 1 + .../Kepler/GeForce-GTX-650-Ti-Boost.yaml | 0 .../Kepler/GeForce-GTX-650-Ti-OEM.yaml | 1 + .../{ => Nvidia}/Kepler/GeForce-GTX-650.yaml | 1 + .../Kepler/GeForce-GTX-660-OEM.yaml | 0 .../Kepler/GeForce-GTX-660-Ti.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-660.yaml | 0 .../Kepler/GeForce-GTX-660M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-660M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-670.yaml | 0 .../Kepler/GeForce-GTX-670MX.yaml | 0 .../Kepler/GeForce-GTX-675MX-Mac-Edition.yaml | 0 .../Kepler/GeForce-GTX-675MX.yaml | 1 + .../Kepler/GeForce-GTX-680-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-680.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-680M.yaml | 0 .../Kepler/GeForce-GTX-680MX-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-690.yaml | 0 .../Kepler/GeForce-GTX-750-Ti-OEM.yaml | 0 .../Kepler/GeForce-GTX-760-OEM-Rebrand.yaml | 0 .../Kepler/GeForce-GTX-760-OEM.yaml | 0 .../GeForce-GTX-760-Ti-OEM-Rebrand.yaml | 0 .../Kepler/GeForce-GTX-760-Ti-OEM.yaml | 0 .../Kepler/GeForce-GTX-760-X2.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-760.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-760A.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-760M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-765M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-770.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-770M.yaml | 0 .../Kepler/GeForce-GTX-775M-Mac-Edition.yaml | 0 .../Kepler/GeForce-GTX-780-6-GB.yaml | 0 .../Kepler/GeForce-GTX-780-Rev.-2.yaml | 0 .../Kepler/GeForce-GTX-780-Ti-6-GB.yaml | 0 .../Kepler/GeForce-GTX-780-Ti.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-780.yaml | 0 .../Kepler/GeForce-GTX-780M-Mac-Edition.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-780M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-870M.yaml | 0 .../{ => Nvidia}/Kepler/GeForce-GTX-880M.yaml | 0 .../Kepler/GeForce-GTX-TITAN-BLACK.yaml | 0 .../Kepler/GeForce-GTX-TITAN-Z.yaml | 0 .../Kepler/GeForce-GTX-TITAN.yaml | 0 .../{ => Nvidia}/Kepler/NVS-1000.yaml | 1 + .../{ => Nvidia}/Kepler/NVS-510.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-410.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-4100.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K1000M.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K1100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K2000.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K2000D.yaml | 1 + .../Kepler/Quadro-K2000M-Embedded.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K2000M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K200M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K2100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K3000M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K3100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K4000.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K4000M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K4100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K420.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K4200.yaml | 0 .../Kepler/Quadro-K5000-Mac-Edition.yaml | 1 + .../Kepler/Quadro-K5000-SYNC.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K5000.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K5000M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K500M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K5100M.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K5200.yaml | 0 .../{ => Nvidia}/Kepler/Quadro-K600.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K6000-SDI.yaml | 1 + .../{ => Nvidia}/Kepler/Quadro-K6000.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K10.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K20X.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K20Xm.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K20c.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K20m.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K20s.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K40c.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K40d.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K40m.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K40s.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K40st.yaml | 1 + .../{ => Nvidia}/Kepler/Tesla-K40t.yaml | 0 .../{ => Nvidia}/Kepler/Tesla-K8.yaml | 0 .../{ => Nvidia}/Maxwell-2.0.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/GRID-M6-8Q.yaml | 1 + .../{ => Nvidia}/Maxwell-2.0/GRID-M60-1Q.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/GRID-M60-2Q.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/GRID-M60-4A.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/GRID-M60-8Q.yaml | 0 .../Maxwell-2.0/GeForce-GTX-750-GM206.yaml | 0 .../GeForce-GTX-950-Low-Power.yaml | 0 .../Maxwell-2.0/GeForce-GTX-950-OEM.yaml | 0 .../Maxwell-2.0/GeForce-GTX-950.yaml | 0 .../Maxwell-2.0/GeForce-GTX-960-OEM.yaml | 0 .../Maxwell-2.0/GeForce-GTX-960.yaml | 0 .../Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml | 0 .../Maxwell-2.0/GeForce-GTX-965M.yaml | 0 .../Maxwell-2.0/GeForce-GTX-970.yaml | 0 .../Maxwell-2.0/GeForce-GTX-970M.yaml | 0 .../Maxwell-2.0/GeForce-GTX-980-Mobile.yaml | 0 .../Maxwell-2.0/GeForce-GTX-980-Ti.yaml | 0 .../Maxwell-2.0/GeForce-GTX-980.yaml | 0 .../Maxwell-2.0/GeForce-GTX-980M.yaml | 0 .../Maxwell-2.0/GeForce-GTX-TITAN-X.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/Jetson-Nano.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/Jetson-TX1.yaml | 1 + .../Maxwell-2.0/Quadro-M2000.yaml | 0 .../Maxwell-2.0/Quadro-M2200-Mobile.yaml | 0 .../Maxwell-2.0/Quadro-M3000-SE.yaml | 0 .../Maxwell-2.0/Quadro-M3000M.yaml | 0 .../Maxwell-2.0/Quadro-M4000.yaml | 1 + .../Maxwell-2.0/Quadro-M4000M.yaml | 0 .../Maxwell-2.0/Quadro-M5000.yaml | 0 .../Maxwell-2.0/Quadro-M5000M.yaml | 0 .../Maxwell-2.0/Quadro-M5500-Mobile.yaml | 0 .../Maxwell-2.0/Quadro-M6000-24-GB.yaml | 0 .../Maxwell-2.0/Quadro-M6000.yaml | 0 .../Maxwell-2.0/Switch-GPU-16nm.yaml | 0 .../Maxwell-2.0/Switch-GPU-20nm.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/Tesla-M4.yaml | 0 .../Maxwell-2.0/Tesla-M40-24-GB.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/Tesla-M40.yaml | 0 .../Maxwell-2.0/Tesla-M6-Mobile.yaml | 0 .../Maxwell-2.0/Tesla-M6-X2-Mobile.yaml | 0 .../{ => Nvidia}/Maxwell-2.0/Tesla-M60.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell.yaml | 0 .../{ => Nvidia}/Maxwell/GRID-M10-8Q.yaml | 0 .../{ => Nvidia}/Maxwell/GRID-M3-3020.yaml | 0 .../{ => Nvidia}/Maxwell/GRID-M40.yaml | 1 + .../{ => Nvidia}/Maxwell/GeForce-830A.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-830M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-840A.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-840M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-845M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-920MX.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-930A.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-930M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-940A.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-940M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-940MX.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-945A.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-945M.yaml | 0 .../Maxwell/GeForce-GTX-745-OEM.yaml | 1 + .../Maxwell/GeForce-GTX-750-Ti.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-GTX-750.yaml | 0 .../Maxwell/GeForce-GTX-850A.yaml | 0 .../Maxwell/GeForce-GTX-850M.yaml | 1 + .../Maxwell/GeForce-GTX-860M-OEM.yaml | 0 .../Maxwell/GeForce-GTX-860M.yaml | 0 .../Maxwell/GeForce-GTX-950A.yaml | 0 .../Maxwell/GeForce-GTX-950M-Mac-Edition.yaml | 0 .../Maxwell/GeForce-GTX-950M.yaml | 0 .../Maxwell/GeForce-GTX-960M.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-MX110.yaml | 0 .../{ => Nvidia}/Maxwell/GeForce-MX130.yaml | 0 .../{ => Nvidia}/Maxwell/NVS-810.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-K1200.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-K2200.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-K2200M.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-K620.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-K620M.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-M1000M.yaml | 0 .../Maxwell/Quadro-M1200-Mobile.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-M2000M.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-M500M.yaml | 0 .../Maxwell/Quadro-M520-Mobile.yaml | 0 .../{ => Nvidia}/Maxwell/Quadro-M600M.yaml | 0 .../Maxwell/Quadro-M620-Mobile.yaml | 0 .../{ => Nvidia}/Maxwell/Tesla-M10.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Pascal.yaml | 0 .../Pascal/GeForce-GT-1010-DDR4.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-GT-1010.yaml | 0 .../Pascal/GeForce-GT-1030-DDR4.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-GT-1030.yaml | 0 .../Pascal/GeForce-GTX-1050-3-GB.yaml | 0 .../Pascal/GeForce-GTX-1050-Max-Q.yaml | 0 .../Pascal/GeForce-GTX-1050-Mobile.yaml | 0 .../Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml | 0 .../Pascal/GeForce-GTX-1050-Ti-Mobile.yaml | 0 .../Pascal/GeForce-GTX-1050-Ti.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-GTX-1050.yaml | 0 .../Pascal/GeForce-GTX-1060-3-GB-GP104.yaml | 0 .../Pascal/GeForce-GTX-1060-3-GB.yaml | 0 .../Pascal/GeForce-GTX-1060-5-GB.yaml | 0 .../Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml | 0 .../Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml | 0 .../Pascal/GeForce-GTX-1060-6-GB-GP104.yaml | 0 .../Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml | 0 .../Pascal/GeForce-GTX-1060-6-GB.yaml | 0 .../Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml | 0 .../Pascal/GeForce-GTX-1060-Max-Q.yaml | 0 .../Pascal/GeForce-GTX-1060-Mobile.yaml | 0 .../Pascal/GeForce-GTX-1070-GDDR5X.yaml | 0 .../Pascal/GeForce-GTX-1070-Max-Q.yaml | 0 .../Pascal/GeForce-GTX-1070-Mobile.yaml | 0 .../Pascal/GeForce-GTX-1070-Ti.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-GTX-1070.yaml | 0 .../Pascal/GeForce-GTX-1080-11Gbps.yaml | 0 .../Pascal/GeForce-GTX-1080-Max-Q.yaml | 0 .../Pascal/GeForce-GTX-1080-Mobile.yaml | 0 .../Pascal/GeForce-GTX-1080-Ti-10-GB.yaml | 0 .../Pascal/GeForce-GTX-1080-Ti-12-GB.yaml | 0 .../Pascal/GeForce-GTX-1080-Ti.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-GTX-1080.yaml | 0 .../Pascal/GeForce-MX150-GP107.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-MX150.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-MX230.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-MX250.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-MX330.yaml | 0 .../{ => Nvidia}/Pascal/GeForce-MX350.yaml | 0 .../{ => Nvidia}/Pascal/Jetson-TX2.yaml | 1 + .../{ => Nvidia}/Pascal/P102-100.yaml | 0 .../{ => Nvidia}/Pascal/P102-101.yaml | 0 .../{ => Nvidia}/Pascal/P104-100.yaml | 0 .../{ => Nvidia}/Pascal/P104-101.yaml | 0 .../{ => Nvidia}/Pascal/P106-090.yaml | 0 .../{ => Nvidia}/Pascal/P106-100.yaml | 0 .../{ => Nvidia}/Pascal/P106M.yaml | 1 + .../{ => Nvidia}/Pascal/Quadro-GP100.yaml | 0 .../Pascal/Quadro-P1000-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P1000.yaml | 0 .../Pascal/Quadro-P2000-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P2000.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P2200.yaml | 0 .../Pascal/Quadro-P3000-Mobile.yaml | 0 .../Pascal/Quadro-P3200-Max-Q.yaml | 0 .../Pascal/Quadro-P3200-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P400.yaml | 0 .../Pascal/Quadro-P4000-Max-Q.yaml | 0 .../Pascal/Quadro-P4000-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P4000.yaml | 0 .../Pascal/Quadro-P4200-Max-Q.yaml | 0 .../Pascal/Quadro-P4200-Mobile.yaml | 0 .../Pascal/Quadro-P500-Mobile.yaml | 0 .../Pascal/Quadro-P5000-Mobile.yaml | 0 .../Pascal/Quadro-P5000-X2-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P5000.yaml | 0 .../Pascal/Quadro-P520-Max-Q.yaml | 0 .../Pascal/Quadro-P520-Mobile.yaml | 0 .../Pascal/Quadro-P5200-Max-Q.yaml | 0 .../Pascal/Quadro-P5200-Mobile.yaml | 0 .../Pascal/Quadro-P600-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P600.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P6000.yaml | 0 .../Pascal/Quadro-P620-Mobile.yaml | 0 .../{ => Nvidia}/Pascal/Quadro-P620.yaml | 0 .../{ => Nvidia}/Pascal/TITAN-X-Pascal.yaml | 0 .../{ => Nvidia}/Pascal/TITAN-Xp.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P10.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P100-DGXS.yaml | 0 .../Pascal/Tesla-P100-PCIe-12-GB.yaml | 0 .../Pascal/Tesla-P100-PCIe-16-GB.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P100-SXM2.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P4.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P40.yaml | 0 .../{ => Nvidia}/Pascal/Tesla-P6-Mobile.yaml | 0 specs/GPUs-CONSUMER/{ => Nvidia}/Rankine.yaml | 0 .../{ => Nvidia}/Rankine/GeForce-FX-5100.yaml | 2 + .../Rankine/GeForce-FX-5200-LE.yaml | 2 + .../Rankine/GeForce-FX-5200-PCI.yaml | 2 + .../Rankine/GeForce-FX-5200-Rev.-2.yaml | 2 + .../GeForce-FX-5200-Ultra-Mac-Edition.yaml | 2 + .../Rankine/GeForce-FX-5200-Ultra.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5200.yaml | 2 + .../Rankine/GeForce-FX-5500-PCI.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5500.yaml | 2 + .../Rankine/GeForce-FX-5600-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5600-XT-PCI.yaml | 2 + .../Rankine/GeForce-FX-5600-XT.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5600.yaml | 2 + .../Rankine/GeForce-FX-5700-EP.yaml | 2 + .../GeForce-FX-5700-Engineering-Sample.yaml | 2 + .../Rankine/GeForce-FX-5700-LE.yaml | 2 + .../Rankine/GeForce-FX-5700-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5700-VE.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5700.yaml | 2 + .../Rankine/GeForce-FX-5800-Ultra.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5800.yaml | 2 + .../Rankine/GeForce-FX-5900-Ultra.yaml | 2 + .../Rankine/GeForce-FX-5900-XT.yaml | 2 + .../Rankine/GeForce-FX-5900-ZT.yaml | 2 + .../{ => Nvidia}/Rankine/GeForce-FX-5900.yaml | 2 + .../Rankine/GeForce-FX-5950-Ultra.yaml | 2 + .../Rankine/GeForce-FX-Go5100.yaml | 2 + .../Rankine/GeForce-FX-Go5200-32M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-64M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-NPB-32M.yaml | 2 + .../Rankine/GeForce-FX-Go5200-NPB-64M.yaml | 2 + .../Rankine/GeForce-FX-Go5200.yaml | 2 + .../Rankine/GeForce-FX-Go5250.yaml | 2 + .../Rankine/GeForce-FX-Go5300.yaml | 2 + .../Rankine/GeForce-FX-Go5350.yaml | 2 + .../Rankine/GeForce-FX-Go5600.yaml | 2 + .../Rankine/GeForce-FX-Go5650.yaml | 2 + .../Rankine/GeForce-FX-Go5700.yaml | 2 + .../Rankine/GeForce-PCX-5300.yaml | 2 + .../Rankine/GeForce-PCX-5750.yaml | 2 + .../Rankine/GeForce-PCX-5900.yaml | 2 + .../Rankine/GeForce-PCX-5950.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-1000.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-1100.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-1300.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-2000.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-3000.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-3000G.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-330.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-500.yaml | 2 + .../Rankine/Quadro-FX-600-PCI.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-700.yaml | 2 + .../Rankine/Quadro-FX-Go1000.yaml | 2 + .../{ => Nvidia}/Rankine/Quadro-FX-Go700.yaml | 2 + .../Rankine/Quadro-NVS-280-AGP.yaml | 2 + .../Rankine/Quadro-NVS-280-PCI.yaml | 2 + .../Rankine/Quadro-NVS-280-PCIe.yaml | 2 + .../Rankine/Quadro-NVS-55-PCI.yaml | 2 + .../GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0.yaml | 0 .../Tesla-2.0/GeForce-205-OEM.yaml | 1 + .../Tesla-2.0/GeForce-210-OEM.yaml | 1 + .../Tesla-2.0/GeForce-210-PCI.yaml | 1 + .../Tesla-2.0/GeForce-210-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-210.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-305M.yaml | 1 + .../Tesla-2.0/GeForce-310-OEM.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-310M.yaml | 1 + .../Tesla-2.0/GeForce-315-OEM.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-315M.yaml | 1 + .../Tesla-2.0/GeForce-320M-Mac-Edition.yaml | 1 + .../Tesla-2.0/GeForce-405-OEM.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-405M.yaml | 1 + .../Tesla-2.0/GeForce-505-OEM.yaml | 1 + .../Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml | 1 + .../Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml | 1 + .../Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml | 1 + .../Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-G105M.yaml | 1 + .../Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/GeForce-G210M.yaml | 1 + .../Tesla-2.0/GeForce-GT-220-OEM.yaml | 1 + .../Tesla-2.0/GeForce-GT-220.yaml | 1 + .../Tesla-2.0/GeForce-GT-230M.yaml | 1 + .../Tesla-2.0/GeForce-GT-240.yaml | 1 + .../Tesla-2.0/GeForce-GT-240M.yaml | 1 + .../Tesla-2.0/GeForce-GT-320-OEM.yaml | 1 + .../Tesla-2.0/GeForce-GT-325M.yaml | 1 + .../Tesla-2.0/GeForce-GT-330-OEM.yaml | 1 + .../GeForce-GT-330M-Mac-Edition.yaml | 1 + .../Tesla-2.0/GeForce-GT-330M.yaml | 1 + .../Tesla-2.0/GeForce-GT-335M.yaml | 1 + .../Tesla-2.0/GeForce-GT-340-OEM.yaml | 1 + .../Tesla-2.0/GeForce-GT-415-OEM.yaml | 1 + .../Tesla-2.0/GeForce-GTS-250M.yaml | 1 + .../Tesla-2.0/GeForce-GTS-260M.yaml | 1 + .../Tesla-2.0/GeForce-GTS-350M.yaml | 1 + .../Tesla-2.0/GeForce-GTS-360M.yaml | 1 + .../GeForce-GTX-260-Core-216-Rev.-2.yaml | 1 + .../Tesla-2.0/GeForce-GTX-260-Core-216.yaml | 1 + .../Tesla-2.0/GeForce-GTX-260-OEM.yaml | 1 + .../Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml | 1 + .../Tesla-2.0/GeForce-GTX-260.yaml | 1 + .../Tesla-2.0/GeForce-GTX-275.yaml | 1 + .../Tesla-2.0/GeForce-GTX-280.yaml | 1 + .../GeForce-GTX-285-Mac-Edition.yaml | 1 + .../Tesla-2.0/GeForce-GTX-285-X2.yaml | 1 + .../Tesla-2.0/GeForce-GTX-285.yaml | 1 + .../Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml | 1 + .../Tesla-2.0/GeForce-GTX-295.yaml | 1 + .../GeForce-GTX-470-PhysX-Edition.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/ION-2.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/NVS-2100M.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/NVS-300.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/NVS-3100M.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/NVS-5100M.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Quadro-400.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Quadro-CX.yaml | 1 + .../Tesla-2.0/Quadro-FX-1800M.yaml | 1 + .../Tesla-2.0/Quadro-FX-380-LP.yaml | 1 + .../Tesla-2.0/Quadro-FX-3800.yaml | 1 + .../Tesla-2.0/Quadro-FX-380M.yaml | 1 + .../Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml | 1 + .../Tesla-2.0/Quadro-FX-4800.yaml | 1 + .../Tesla-2.0/Quadro-FX-5800.yaml | 1 + .../Tesla-2.0/Quadro-FX-880M.yaml | 1 + .../Tesla-2.0/Quadro-Plex-2200-D2.yaml | 1 + .../Tesla-2.0/Quadro-Plex-2200-S4.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Tesla-C1060.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Tesla-C1080.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Tesla-M1060.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Tesla-S1070.yaml | 1 + .../{ => Nvidia}/Tesla-2.0/Tesla-S1075.yaml | 1 + specs/GPUs-CONSUMER/{ => Nvidia}/Tesla.yaml | 0 .../Tesla/GeForce-8100-+-nForce-720a.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8200.yaml | 1 + .../Tesla/GeForce-8200M-G-mGPU-AMD.yaml | 1 + .../Tesla/GeForce-8200M-G-mGPU-Intel.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8300-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8300.yaml | 1 + .../Tesla/GeForce-8400-GS-PCI.yaml | 1 + .../Tesla/GeForce-8400-GS-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400-SE.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400M-G.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400M-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8400M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8500-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8600-GS.yaml | 1 + .../Tesla/GeForce-8600-GT-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8600-GT.yaml | 1 + .../Tesla/GeForce-8600-GTS-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8600-GTS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8600M-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8600M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8700M-GT.yaml | 1 + .../Tesla/GeForce-8800-GS-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8800-GS.yaml | 1 + .../Tesla/GeForce-8800-GT-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8800-GT.yaml | 1 + .../Tesla/GeForce-8800-GTS-320.yaml | 1 + .../Tesla/GeForce-8800-GTS-512.yaml | 1 + .../Tesla/GeForce-8800-GTS-640.yaml | 1 + .../Tesla/GeForce-8800-GTS-Core-112.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8800-GTX.yaml | 1 + .../Tesla/GeForce-8800-Ultra.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8800M-GTS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-8800M-GTX.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9100.yaml | 1 + .../Tesla/GeForce-9100M-G-mGPU-AMD.yaml | 1 + .../Tesla/GeForce-9100M-G-mGPU-Intel.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9200.yaml | 1 + .../Tesla/GeForce-9200M-GS-GDDR3.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9200M-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9200M.yaml | 1 + .../Tesla/GeForce-9300-+-nForce-730i.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9300-GE.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9300-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9300-SE.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9300M-G.yaml | 1 + .../Tesla/GeForce-9300M-GS-GDDR3.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9300M-GS.yaml | 1 + .../Tesla/GeForce-9400-GT-PCI.yaml | 1 + .../Tesla/GeForce-9400-GT-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9400-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9400.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9400M-G.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9400M.yaml | 1 + .../Tesla/GeForce-9500-GS-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9500-GS.yaml | 1 + .../Tesla/GeForce-9500-GT-Mac-Edition.yaml | 1 + .../Tesla/GeForce-9500-GT-Rev.-2.yaml | 1 + .../Tesla/GeForce-9500-GT-Rev.-3.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9500-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9500M-G.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9500M-GS.yaml | 1 + .../Tesla/GeForce-9600-GS-OEM.yaml | 1 + .../Tesla/GeForce-9600-GSO-512.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9600-GSO.yaml | 1 + .../Tesla/GeForce-9600-GT-Green-Edition.yaml | 1 + .../Tesla/GeForce-9600-GT-Mac-Edition.yaml | 1 + .../Tesla/GeForce-9600-GT-Rev.-2.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9600-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9600-GTX.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9600M-GS.yaml | 1 + .../Tesla/GeForce-9600M-GT-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9600M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9650M-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9650M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9700M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9700M-GTS.yaml | 1 + .../Tesla/GeForce-9800-GT-Rebrand.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800-GTX+.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800-GTX.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800-GX2.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800M-GS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800M-GT.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800M-GTS.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-9800S.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G100-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G102M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G103M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G110M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G205M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-G210-OEM.yaml | 1 + .../Tesla/GeForce-GT-120-Mac-Edition.yaml | 1 + .../Tesla/GeForce-GT-120-OEM.yaml | 1 + .../Tesla/GeForce-GT-120M-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GT-120M.yaml | 1 + .../Tesla/GeForce-GT-130-Mac-Edition.yaml | 1 + .../Tesla/GeForce-GT-130-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GT-130M.yaml | 1 + .../Tesla/GeForce-GT-140-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GT-220M.yaml | 1 + .../Tesla/GeForce-GT-230-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GT-230.yaml | 1 + .../Tesla/GeForce-GT-240M-LE.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GT-320M.yaml | 1 + .../Tesla/GeForce-GTS-150-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTS-150M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTS-160M.yaml | 1 + .../Tesla/GeForce-GTS-240-OEM.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTS-250.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTX-260M.yaml | 1 + .../Tesla/GeForce-GTX-275-PhysX-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTX-280M.yaml | 1 + .../{ => Nvidia}/Tesla/GeForce-GTX-285M.yaml | 1 + .../{ => Nvidia}/Tesla/ION-LE.yaml | 1 + .../GPUs-CONSUMER/{ => Nvidia}/Tesla/ION.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-1600M.yaml | 1 + .../Tesla/Quadro-FX-1700-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-1700.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-1700M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-1800.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-2700M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-2800M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-3600M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-360M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-370-LP.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-370.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-3700.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-3700M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-370M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-380.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-3800M.yaml | 1 + .../Tesla/Quadro-FX-4600-SDI.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-4600.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-470.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-4700-X2.yaml | 1 + .../Tesla/Quadro-FX-5600-Mac-Edition.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-5600.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-570.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-570M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-580.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-FX-770M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-130M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-135M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-140M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-150M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-160M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-290.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-295.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-320M.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-420.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-NVS-450.yaml | 1 + .../Tesla/Quadro-Plex-1000-Model-IV.yaml | 1 + .../Tesla/Quadro-Plex-2100-D4.yaml | 1 + .../Tesla/Quadro-Plex-2100-S4.yaml | 1 + .../{ => Nvidia}/Tesla/Quadro-VX-200.yaml | 1 + .../{ => Nvidia}/Tesla/Tesla-C870.yaml | 1 + .../{ => Nvidia}/Tesla/Tesla-D870.yaml | 1 + .../{ => Nvidia}/Tesla/Tesla-S870.yaml | 1 + specs/GPUs-CONSUMER/{ => Nvidia}/Turing.yaml | 0 .../{ => Nvidia}/Turing/CMP-30HX.yaml | 0 .../{ => Nvidia}/Turing/CMP-40HX.yaml | 0 .../{ => Nvidia}/Turing/CMP-50HX.yaml | 0 .../{ => Nvidia}/Turing/GRID-RTX-T10-16.yaml | 0 .../{ => Nvidia}/Turing/GRID-RTX-T10-2.yaml | 0 .../{ => Nvidia}/Turing/GRID-RTX-T10-4.yaml | 0 .../{ => Nvidia}/Turing/GRID-RTX-T10-8.yaml | 0 .../{ => Nvidia}/Turing/GeForce-GTX-1630.yaml | 0 .../Turing/GeForce-GTX-1650-GDDR6.yaml | 0 .../Turing/GeForce-GTX-1650-Max-Q.yaml | 0 .../Turing/GeForce-GTX-1650-Mobile.yaml | 0 .../Turing/GeForce-GTX-1650-SUPER.yaml | 0 .../Turing/GeForce-GTX-1650-TU106.yaml | 0 .../Turing/GeForce-GTX-1650-TU116.yaml | 0 .../Turing/GeForce-GTX-1650-Ti-Max-Q.yaml | 0 .../Turing/GeForce-GTX-1650-Ti-Mobile.yaml | 0 .../{ => Nvidia}/Turing/GeForce-GTX-1650.yaml | 0 .../Turing/GeForce-GTX-1660-SUPER.yaml | 0 .../Turing/GeForce-GTX-1660-Ti-Max-Q.yaml | 0 .../Turing/GeForce-GTX-1660-Ti-Mobile.yaml | 0 .../Turing/GeForce-GTX-1660-Ti.yaml | 0 .../{ => Nvidia}/Turing/GeForce-GTX-1660.yaml | 0 .../Turing/GeForce-MX450-12W.yaml | 0 .../Turing/GeForce-MX450-30.5W-10Gbps.yaml | 0 .../Turing/GeForce-MX450-30.5W-8Gbps.yaml | 0 .../{ => Nvidia}/Turing/GeForce-MX550.yaml | 0 .../Turing/GeForce-RTX-2060-12-GB.yaml | 0 .../GeForce-RTX-2060-Max-Q-Refresh.yaml | 0 .../Turing/GeForce-RTX-2060-Max-Q.yaml | 0 .../GeForce-RTX-2060-Mobile-Refresh.yaml | 0 .../Turing/GeForce-RTX-2060-Mobile.yaml | 0 .../Turing/GeForce-RTX-2060-SUPER-Mobile.yaml | 0 .../Turing/GeForce-RTX-2060-SUPER.yaml | 0 .../Turing/GeForce-RTX-2060-TU104.yaml | 0 .../{ => Nvidia}/Turing/GeForce-RTX-2060.yaml | 0 .../GeForce-RTX-2070-Max-Q-Refresh.yaml | 0 .../Turing/GeForce-RTX-2070-Max-Q.yaml | 0 .../GeForce-RTX-2070-Mobile-Refresh.yaml | 0 .../Turing/GeForce-RTX-2070-Mobile.yaml | 0 .../Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml | 0 .../Turing/GeForce-RTX-2070-SUPER-Mobile.yaml | 0 .../Turing/GeForce-RTX-2070-SUPER.yaml | 0 .../{ => Nvidia}/Turing/GeForce-RTX-2070.yaml | 0 .../GeForce-RTX-2080-Engineering-Sample.yaml | 0 .../Turing/GeForce-RTX-2080-Max-Q.yaml | 0 .../Turing/GeForce-RTX-2080-Mobile.yaml | 0 .../Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml | 0 .../Turing/GeForce-RTX-2080-SUPER-Mobile.yaml | 0 .../Turing/GeForce-RTX-2080-SUPER.yaml | 0 .../Turing/GeForce-RTX-2080-Ti-12-GB.yaml | 0 .../Turing/GeForce-RTX-2080-Ti.yaml | 0 .../{ => Nvidia}/Turing/GeForce-RTX-2080.yaml | 0 .../Turing/Quadro-RTX-3000-Max-Q.yaml | 0 .../Quadro-RTX-3000-Mobile-Refresh.yaml | 0 .../Turing/Quadro-RTX-3000-Mobile.yaml | 0 .../Turing/Quadro-RTX-3000-X2-Mobile.yaml | 0 .../Turing/Quadro-RTX-4000-Max-Q.yaml | 0 .../Turing/Quadro-RTX-4000-Mobile.yaml | 0 .../{ => Nvidia}/Turing/Quadro-RTX-4000.yaml | 0 .../Turing/Quadro-RTX-5000-Max-Q.yaml | 0 .../Quadro-RTX-5000-Mobile-Refresh.yaml | 0 .../Turing/Quadro-RTX-5000-Mobile.yaml | 0 .../Turing/Quadro-RTX-5000-X2-Mobile.yaml | 0 .../{ => Nvidia}/Turing/Quadro-RTX-5000.yaml | 0 .../Turing/Quadro-RTX-6000-Mobile.yaml | 0 .../Turing/Quadro-RTX-6000-Passive.yaml | 0 .../{ => Nvidia}/Turing/Quadro-RTX-6000.yaml | 0 .../Turing/Quadro-RTX-8000-Passive.yaml | 0 .../{ => Nvidia}/Turing/Quadro-RTX-8000.yaml | 0 .../Turing/Quadro-T1000-Max-Q.yaml | 0 .../Turing/Quadro-T1000-Mobile-GDDR6.yaml | 0 .../Turing/Quadro-T1000-Mobile.yaml | 0 .../Turing/Quadro-T1200-Max-Q.yaml | 0 .../Turing/Quadro-T1200-Mobile.yaml | 0 .../Turing/Quadro-T2000-Max-Q.yaml | 0 .../Turing/Quadro-T2000-Mobile.yaml | 0 .../{ => Nvidia}/Turing/T1000-8-GB.yaml | 0 .../{ => Nvidia}/Turing/T1000.yaml | 0 .../{ => Nvidia}/Turing/T400-4-GB.yaml | 0 .../{ => Nvidia}/Turing/T400.yaml | 0 .../{ => Nvidia}/Turing/T500-Max-Q.yaml | 0 .../{ => Nvidia}/Turing/T500-Mobile.yaml | 0 .../{ => Nvidia}/Turing/T550-Mobile.yaml | 0 .../{ => Nvidia}/Turing/T600-Max-Q.yaml | 0 .../{ => Nvidia}/Turing/T600-Mobile.yaml | 0 .../{ => Nvidia}/Turing/T600.yaml | 0 .../{ => Nvidia}/Turing/TITAN-RTX.yaml | 0 .../{ => Nvidia}/Turing/Tesla-T10-16-GB.yaml | 0 .../{ => Nvidia}/Turing/Tesla-T4.yaml | 0 .../{ => Nvidia}/Turing/Tesla-T40-24-GB.yaml | 0 .../{ => Nvidia}/Turing/Tesla-T4G.yaml | 0 .../GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4.yaml | 0 .../{ => Nvidia}/VLIW-Vec4/Tegra-2-GPU.yaml | 1 + .../{ => Nvidia}/VLIW-Vec4/Tegra-3-GPU.yaml | 1 + .../{ => Nvidia}/VLIW-Vec4/Tegra-4-GPU.yaml | 2 + .../{ => Nvidia}/VLIW-Vec4/Tegra-4i-GPU.yaml | 2 + specs/GPUs-CONSUMER/{ => Nvidia}/Volta.yaml | 0 .../Volta/Jetson-AGX-Xavier-16-GB.yaml | 0 .../Volta/Jetson-AGX-Xavier-32-GB.yaml | 0 .../Volta/Jetson-Xavier-NX-16-GB.yaml | 0 .../Volta/Jetson-Xavier-NX-8-GB.yaml | 0 .../{ => Nvidia}/Volta/Quadro-GV100.yaml | 0 .../Volta/TITAN-V-CEO-Edition.yaml | 0 .../{ => Nvidia}/Volta/TITAN-V.yaml | 0 .../{ => Nvidia}/Volta/Tesla-PG500-216.yaml | 0 .../{ => Nvidia}/Volta/Tesla-PG503-216.yaml | 0 .../Volta/Tesla-V100-DGXS-16-GB.yaml | 0 .../Volta/Tesla-V100-DGXS-32-GB.yaml | 0 .../{ => Nvidia}/Volta/Tesla-V100-FHHL.yaml | 0 .../Volta/Tesla-V100-PCIe-16-GB.yaml | 0 .../Volta/Tesla-V100-PCIe-32-GB.yaml | 0 .../Volta/Tesla-V100-SXM2-16-GB.yaml | 0 .../Volta/Tesla-V100-SXM2-32-GB.yaml | 0 .../Volta/Tesla-V100-SXM3-32-GB.yaml | 0 .../Volta/Tesla-V100S-PCIe-32-GB.yaml | 0 .../{ => PowerVR}/PowerVR-Series5XT.yaml | 0 .../Playstation-Vita-GPU.yaml | 2 + specs/GPUs-CONSUMER/{ => XGI}/XG4.yaml | 0 .../{ => XGI}/XG4/Volari-8300.yaml | 2 + .../{ => XGI}/XG4/Volari-8600-XT.yaml | 2 + .../{ => XGI}/XG4/Volari-Duo-V5-Ultra.yaml | 2 + .../{ => XGI}/XG4/Volari-Duo-V8-Ultra.yaml | 2 + .../{ => XGI}/XG4/Volari-V3-XT.yaml | 2 + .../{ => XGI}/XG4/Volari-V3.yaml | 2 + .../{ => XGI}/XG4/Volari-V5-Ultra.yaml | 2 + .../{ => XGI}/XG4/Volari-V5.yaml | 2 + .../{ => XGI}/XG4/Volari-V8-Ultra.yaml | 2 + .../{ => XGI}/XG4/Volari-V8.yaml | 2 + specs/Root.yaml | 21 +++- src/css/part-selector.css | 6 + src/js/pure.js | 8 +- src/js/row-data.js | 32 ++++++ 2865 files changed, 2669 insertions(+), 113 deletions(-) create mode 100755 specs/GPUs-CONSUMER-3dfx.yaml create mode 100755 specs/GPUs-CONSUMER-AMD.yaml create mode 100755 specs/GPUs-CONSUMER-ATI.yaml create mode 100755 specs/GPUs-CONSUMER-Intel.yaml create mode 100755 specs/GPUs-CONSUMER-Matrox.yaml create mode 100755 specs/GPUs-CONSUMER-Nvidia.yaml create mode 100755 specs/GPUs-CONSUMER-PowerVR.yaml create mode 100755 specs/GPUs-CONSUMER-XGI.yaml delete mode 100755 specs/GPUs-CONSUMER.yaml rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable.yaml (100%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Spectre-1000.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Spectre-2000.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Spectre-3000.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-4000-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-4500-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-4500-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo4-4800-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo5-5000-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo5-5000-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo5-5500-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo5-5500-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => 3dfx}/Voodoo-Scalable/Voodoo5-6000.yaml (91%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-1.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-1.0/Radeon-Instinct-MI100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0/Radeon-Instinct-MI200.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0/Radeon-Instinct-MI210.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0/Radeon-Instinct-MI250.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-2.0/Radeon-Instinct-MI250X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-3.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-3.0/Radeon-Instinct-MI300.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/CDNA-3.0/Radeon-Instinct-MI300X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/AeroBox-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-D300.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-D500.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-D700.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M3100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M4000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M4100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M4150.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M4170.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M5100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-M6000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-R5000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S10000-Passive-12GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S10000-Passive.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S10000.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S4000X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S7000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S9000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S9010.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-S9050.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W2100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4130M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4150M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4170M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W4190M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W5000-DVI.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W5000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W5130M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W5170M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W600.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W7000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W8000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W9000-X2.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/FirePro-W9000.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-520-Mobile-DDR3.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-520-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-610-Mobile.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-E8860.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7730.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7730M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7750M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7770M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7850.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7850M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7870-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7870M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950-Boost.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7950M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7970-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7970.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7970M-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7970M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-7990.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8530M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8550M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8570-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8570A.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8570M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8590M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8670-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8670A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8670M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8690M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8730-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8730A.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8730M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8740-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8750A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8750M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8760-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8770M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8790M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8830M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8850M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8860-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8870-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8870M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8950-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8970-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8970M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-HD-8990-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-240-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-340-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-340X-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-430-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-435-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-A230.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-A240.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-A320.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-A330.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-A335.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M230-Rebrand.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M230.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M240-Rebrand.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M240.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M320.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M330.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M335.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M420.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M430.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R5-M435.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R6-M340DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R6-M435DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-240-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-240.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-250-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-250.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-250E.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-250X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-250XE.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-265.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-265X-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-340-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-350-640SP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-350-Fake-Card.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-350-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-350X-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-370.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-430-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-435-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-450-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-A265.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M260DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M260X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M265DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M270DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M340.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M365X.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M370.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M380.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M465.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R7-M465X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R8-M350DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R8-M435DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-255-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-270-1024SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-270.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-270X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-280.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-280X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-280X2.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-370-1024SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-370.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-370X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-A375.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M275.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M275X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M290X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M360.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M365X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M375.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M375X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-Sky-500.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-Sky-700.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Radeon-Sky-900.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Xbox-One-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-1.0/Xbox-One-S-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-M6100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-S9100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-S9150.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-S9170.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W4300.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W5100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W6150M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W6170M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W8100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/FirePro-W9100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Playstation-4-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Playstation-4-Pro-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Playstation-4-Slim-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-E8870-MXM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-E8870-PCIe.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-7790.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8180-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8210-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8210E.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8250-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8280-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8280E.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8330E.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8400-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8400E.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8770-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-HD-8950M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-260.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-260X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-360-896SP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-360.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-360E.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-Graphics.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-260-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-290.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-290X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-290X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-295X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-360-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-390-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-390.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-390X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M270X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M280X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M380.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M385.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M385X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M470.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-R9-M470X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Radeon-RX-455-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-2.0/Xbox-One-X-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-S7100X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-S7150-x2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-S7150.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-S9300-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-W7100.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/FirePro-W7170M.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-530-Mobile-DDR3.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-530X-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-535-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-620-Mobile.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-625-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-625-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-E8950.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-Instinct-MI8.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-Pro-Duo.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-Pro-SSG.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-A255.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-M255.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-M315.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-M445.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-M465.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R6-M255DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-A260.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-A360.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M260.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M265.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M350.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M360.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M440.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M445.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7-M460.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R8-M365DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R8-M445DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R8-M535DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-285.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-285X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-380-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-380.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-380X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-FURY-X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-FURY-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-FURY.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M295X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M390X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M395X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-M485X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-3.0/Radeon-R9-Nano.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/P30PH.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-540-Mobile.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-540X-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-550.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-550X-640SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-550X-Mobile.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-550X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-630-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9171-MCM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9172-MXM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9173-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9174-MXM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9175-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9260-MXM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9260-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9390-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9550-MXM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-E9560-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Instinct-MI6.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-450.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-455.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-460.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-555.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-555X.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-560.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-560X.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-570.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-570X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-575.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-575X.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-580.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-580X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-V5300X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-V7300X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-V7350X2.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-2100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-3100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-3200.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-4100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-5100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-7100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-460-1024SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-460-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-460.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-470-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-470.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-470D.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-480-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-480.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-540-Mobile.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-540X-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550-512SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550-640SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550X-640SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550X-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-550X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560-896SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560D.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560DX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560X-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-560X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-570-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-570-X2.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-570.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-570X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580-2048SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580G.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580X-Mobile.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-580X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-590-GME.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-590.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-640-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-640-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-Vega-M-GH.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-4.0/Radeon-RX-Vega-M-GL.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Atari-VCS-400-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Atari-VCS-800-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Instinct-MI25.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-V320.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-V340-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-V340-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-16.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-20.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-48.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-56.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-64.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-Vega-64X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-WX-8100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-WX-8200.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Pro-WX-9100.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-11.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-56.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-64.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-RX-Vega-Nano.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-10-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-11-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-11.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-3-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-3-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-3.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-6-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-6-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-8-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-8-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-8.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-384SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-448SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Graphics-512SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Instinct-MI50.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Instinct-MI60.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Pro-V420.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Pro-VII.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-Pro-Vega-II.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/GCN-5.1/Radeon-VII.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/3D-Rage-II+-DVD.yaml (91%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/3D-Rage-II.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/3D-Rage.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/8514-Ultra.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml (91%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Pro-Turbo.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Ultra-Pro-ISA.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Ultra-Pro-PCI.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Ultra-Pro-VLB.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Ultra-XLR-VLB.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Ultra.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Vantage.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Wonder-PCI.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Wonder-VLB.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Xpression-ISA.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Graphics-Xpression.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Rage-LT-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Video-Xpression+.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/Video-Xpression.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/WinBoost.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/WinCharger.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/Mach/WinTurbo.yaml (90%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5300.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5300M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5500-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5700-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-5700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-V520.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-V540.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5300M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5500.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5500X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-Pro-W5700X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5300-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5300M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5500-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5500-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5600-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5600-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5700-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-1.0/Radeon-RX-5700M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Playstation-5-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-610M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-660M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-680M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Graphics-128SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-PRO-V620.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-PRO-W6300.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-PRO-W6400.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-PRO-W6600.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-PRO-W6800.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6300M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6600X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6800X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-Pro-W6900X.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6300.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6300M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6400.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6450M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6500-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6550M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6550S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6600-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6600.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6600S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6650-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6650M-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6650M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6700-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6700M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6700S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6750-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6800-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6800.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6800M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6800S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6850M-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6900-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6900-XTX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Radeon-RX-6950-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Steam-Deck-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Steam-Deck-OLED-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Xbox-Series-S-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-2.0/Xbox-Series-X-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/ROG-Ally-GPU.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-740M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-760M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-780M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-PRO-W7500.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-PRO-W7600.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-PRO-W7700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-PRO-W7800.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-PRO-W7900.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7500-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7600-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7600.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7600M-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7600S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7700-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7700.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7700S.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7800-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7900-GRE.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7900-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7900-XTX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7900M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7950-XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7950-XTX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/RDNA-3.0/Radeon-RX-7990-XTX.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-2270-PCIe-x1.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-2270.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-2460-Multi-View.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M2000.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M3900.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M5800.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M5950.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M7820.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-M8900.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V3800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V3900.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V4800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V4900.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V5800-DVI.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V5800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V7800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V7800P.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V8800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V9800.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FirePro-V9800P.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FireStream-9350.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/FireStream-9370.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5430.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5450.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5470.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5570.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5650.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5730.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5750.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5770.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5830.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5850.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Mobility-Radeon-HD-5870.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-E6460.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-E6465.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-E6760-MXM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-E6760-PCIe.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5450-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5450.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5470.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5490.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5530.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5550.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5570-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5570.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5630.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5670.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5690.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5730.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5770-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5770.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5830.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5850.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5870.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5950.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-5970.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6230.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6250-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6250.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6290-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6290.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6310-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6320-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6330M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6350.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6350A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6350M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6370D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6370M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6380G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6390.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6410D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6430M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6450-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6450.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6450A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6450M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6470M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6480G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6490.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6490M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6510.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6520G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6530.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6530D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6530M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6550A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6550D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6550M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6570-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6570.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6570M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6610.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6610M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6620G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6625M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6630M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6650A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6650M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6670.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6670A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6730M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6750M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6770.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6770M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6790.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6830M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6850-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6850.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6850M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6870-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6870.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6870M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6950M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6970M-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6970M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-6990M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7290-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7310-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7330M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7340-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7350-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7350M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7370M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7410M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7430M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7450-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7450A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7450M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7470-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7470A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7470M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7490M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7510-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7510M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7530M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7550M.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7570-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7570.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7570M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7590M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7610M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7630M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7650A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7650M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7670-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7670A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7670M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7690M-XT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7690M.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-7720-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8350-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8450-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8470-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8490-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8510-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8550-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-220-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-230-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-230.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-235-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-235X-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-310-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Radeon-R5-A220.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-2/Wii-U-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/FirePro-A300.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/FirePro-A320.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/FirePro-V5900.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/FirePro-V7900-SDI.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/FirePro-V7900.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-6930.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-6950.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-6970-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-6970.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-6990.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7400G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7420G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7480D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7500G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7520G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7540D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7560D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7560G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7600G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7620G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7640G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7660D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-7660G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8310G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8350G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8370D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8410G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8450G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8470D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8510G-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8550D-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8550G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8570D-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8610G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8650D-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale-3/Radeon-HD-8650G-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V3600.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V5600.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V7600.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V7700.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V8600.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireGL-V8650.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireMV-2260-PCIe-x1.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireMV-2260.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-2260-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-2450-Multi-View.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-M5725.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-M7740.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-RG220.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-RG220A.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V3700.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V3750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V5700.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V7750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V7760.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V7770.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V8700-Duo.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V8700.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FirePro-V8750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireStream-9170.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireStream-9250.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/FireStream-9270.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-FireGL-V5600.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-FireGL-V5700.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-FireGL-V5725.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2400-XT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2400.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2600-XT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2600.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-2700.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3410.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3430.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3450.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3470.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3650.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3670.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3850-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3850.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3870-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-3870.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml (100%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4330.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4350.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4530.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4550.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4570.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4650.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4670.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4830.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4850-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4850.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4860.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4870-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-4870.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-5145.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-5165.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-530v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-540v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-545v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-550v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-560v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Mobility-Radeon-HD-565v.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-3000-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-3100-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-3100-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-E2400.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-E4690-MXM.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-E4690-PCIe.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2350-PRO.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2400-PRO-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2400-PRO-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2400-PRO.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2400-XT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2400.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-PRO-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-PRO.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-XT-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-XT-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2600-XT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2900-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2900-PRO.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2900-XT.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2900-XTX.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2950-PRO.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-2950-XTX.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3200-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3300-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3410.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3450-AGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3450-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3450-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3450.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3470.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3550.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3570.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3610.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3650-AGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3650.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3690.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3730.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3750.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3830.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3850-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3850-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3850-X3.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3850.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3870-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3870-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3870-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-3870.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4200-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4250-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4250.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4290-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4350-AGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4350-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4350-PCIe-x1.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4350.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4450.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4520.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4550.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4570-Rebrand.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4570.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4580.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4650-AGP.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4650.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4670-AGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4670-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4670.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4700.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4710.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4720.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4730-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4730.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4750.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4770.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4810.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4830.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4850-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4850.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4855.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4860.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4870-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4870-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4870.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-HD-4890.yaml (96%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Radeon-Xpress-2100-IGP.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Xbox-360-E-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Xbox-360-GPU-65nm.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Xbox-360-GPU-80nm.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Xbox-360-GPU-90nm.yaml (95%) rename specs/GPUs-CONSUMER/{ => AMD}/TeraScale/Xbox-360-S-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => ATI}/IBM.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL1.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL2.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL3.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/IBM/Fire-GL4.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-2006-AGP-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9600-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9600.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9700-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9800-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-9800-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/All-In-Wonder-X600-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9500-Z1-128.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9600-T2-128.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9600-T2-64S.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9700-X1-128.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9700-X1-256.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9700-X1-256p.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9800-X2-256.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-9800-X2-256T.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-V3100.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireGL-V3200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireMV-2200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireMV-2400-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/FireMV-2400-PCIe-x1.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-FireGL-T2.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-FireGL-T2e.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-FireGL-V3100.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-FireGL-V3200.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9500.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9550.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9600-PRO-Turbo.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9600-PRO.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9600.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9700-SE.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-9700.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-X300-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-X300.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-X600-SE.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Mobility-Radeon-X600.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9500-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9550-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9550-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9550.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9600-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9600-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9600-TX.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9600.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9700-PRO-X4.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9700-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9700.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-PRO-MAXX.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-PRO-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-PRO.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-XT-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800-XXL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-9800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X1050-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X1050.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X300-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X300-SE-HyperMemory.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X300-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X550-HyperMemory.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X550.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X600-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X600-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-X600.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress--200M-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-1100-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-1100-Mobile-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-1150-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-1150-Mobile-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-200-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R300/Radeon-Xpress-200M-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/All-In-Wonder-X800-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/All-In-Wonder-X800-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/All-In-Wonder-X800-VE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/All-In-Wonder-X800-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/All-In-Wonder-X800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/FireGL-V5000.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/FireGL-V5100.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/FireGL-V7100.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/FireGL-X3-256.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-FireGL-V5000.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-Radeon-9800.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-Radeon-X700-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-Radeon-X700.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-Radeon-X800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Mobility-Radeon-X800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-2100-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X550-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X550-XTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-PRO.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X700.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X740-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-CrossFire-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-GTO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-GTO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-GTO2.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-SE-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-VE-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XL-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XT-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XT-Platinum-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XT-Platinum.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-CrossFire-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-XT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-XT-Platinum-AGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-XT-Platinum.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-X850-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-Xpress-1200-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-Xpress-1200-Mobile-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-Xpress-1250-IGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-Xpress-1250-Mobile-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/R400/Radeon-Xpress-1270-Mobile-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-2.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-2/3D-Rage-IIC-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-2/3D-Rage-IIC-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3/3D-Rage-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3/3D-Rage-PRO-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3/Rage-PRO-Turbo-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3/Rage-PRO-Turbo-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-3/Rage-XL-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/All-In-Wonder-128-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/All-In-Wonder-128-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/All-In-Wonder-128.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-GL-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-GL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-PRO-Ultra-GL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-PRO-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-VR-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-128-VR-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Fury-MAXX.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Fury.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-128-AGP-2X.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-128-AGP-4X.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-CL.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-M1.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-M3.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-M4.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-4/Rage-Mobility-P.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-5.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-5/GameCube-GPU.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/All-In-Wonder-Radeon-7200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/ES1000.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Mobility-Radeon-7000-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Mobility-Radeon-7000.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Mobility-Radeon-P.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Mobility-Radeon.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7000-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7000-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7000.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7200-64-MB.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-7200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-DDR-MAXX.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-DDR-VIVO-OEM.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-DDR-VIVO-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-DDR-VIVO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-DDR.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-320.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-320M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-330M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-340.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-340M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-345M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-IGP-350M.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-SDR-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-SDR.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-VE-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-6/Radeon-VE-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-9000-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-9200-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-9200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-Radeon-7500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-Radeon-8500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/All-In-Wonder-Radeon-8500DV.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/FireGL-8700.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/FireGL-8800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/FireMV-2200-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-FireGL-7800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-FireGL-9000.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-7500.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-7500C.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-9000-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-9000.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-9100-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Mobility-Radeon-9200.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-7500-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-7500-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-7500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-8500-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-8500-X4.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-8500-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-8500.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9000-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9000-PRO.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9000.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9100-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9100.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200-SE-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9250-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Rage-7/Radeon-9250.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V3300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V3350.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V3400.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V5200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V7200.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V7300.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireGL-V7350.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/FireMV-2250.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-CE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1300.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1550.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1600.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1650.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1700-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1800-XL.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1900-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1900-XT.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Stream-Processor.yaml (92%) rename specs/GPUs-CONSUMER/{ => ATI}/Ultra-Threaded-SE/Wii-GPU.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder.yaml (100%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/Color-Emulation-Card.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/EGA-Wonder-480.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/EGA-Wonder-800+.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/EGA-Wonder-800.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/Graphics-Solution-Plus.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/Graphics-Solution.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/VGA-Improved-Performance.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/VGA-Wonder+.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/VGA-Wonder-XL24.yaml (90%) rename specs/GPUs-CONSUMER/{ => ATI}/Wonder/VGA-Wonder.yaml (90%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i752-Graphics.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i752.yaml (90%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i810-Graphics.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i815-Graphics.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i830M-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-1.0/i830MG-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/H3C-XG310.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Iris-Xe-MAX-Graphics.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/UHD-Graphics-16EU.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/UHD-Graphics-750.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/UHD-Graphics-P750.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Xe-DG1-SDV.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.1/Xe-DG1.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-710-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-710.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-730.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-770-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.2/UHD-Graphics-770.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Arctic-Sound-1T.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Arctic-Sound-2T.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Arctic-Sound-M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Data-Center-GPU-Max-1100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Data-Center-GPU-Max-1350.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Data-Center-GPU-Max-1550.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A310.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A350.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A350M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A370M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A380M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A530M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A550M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A570M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A580.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A730M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A750.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A770.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A770M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-A780.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-Pro-A30M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-Pro-A40.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-Pro-A50.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-Pro-A60.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Arc-Pro-A60M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Data-Center-GPU-Flex-140.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-12.7/Data-Center-GPU-Flex-170.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-2.0/Extreme-Graphics-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-2.0/Extreme-Graphics.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-2.0/i852GM-Graphics.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-3.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-3.0/GMA-900.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-3.5.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-3.5/GMA-950.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-3000.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-3100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-3150.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-X3000.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-X3100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-4.0/GMA-X3500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.0/GMA-X4500.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.0/GMA-X4500M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.0/GMA-X4500MHD.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.0/GMA-X4700MHD.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.75.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.75/HD-Graphics-12EU.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-5.75/HD-Graphics-16EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0/HD-Graphics-2000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0/HD-Graphics-3000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0/HD-Graphics-3000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0/HD-Graphics-6EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-6.0/HD-Graphics-P3000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0/HD-Graphics-32EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0/HD-Graphics-4000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0/HD-Graphics-4000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0/HD-Graphics-6EU.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.0/HD-Graphics-P4000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-10EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-10EU.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-4200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-4400-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-4400.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-4600-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-4600.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-5000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-P4600.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/HD-Graphics-P4700.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/Iris-Graphics-5100-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-7.5/Iris-Pro-Graphics-5200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-12EU-Mobile.yaml (96%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-400-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-405-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-5300-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-5500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-5600-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-6000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/HD-Graphics-P5700.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/Iris-Graphics-6100-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/Iris-Pro-Graphics-6200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-8.0/Iris-Pro-Graphics-P6300.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-505-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-510-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-510.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-515-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-520-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-530-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-530.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/HD-Graphics-P530.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Graphics-540-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Graphics-550-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Pro-Graphics-P555.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.0/Iris-Pro-Graphics-P580.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-610-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-610.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-615-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-620-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-630-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-630.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/HD-Graphics-P630-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-600-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-605-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-610-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-610.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-615-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-617-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-620-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-630-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-630.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-P630-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Generation-9.5/UHD-Graphics-P630.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Aubrey-Isle.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-3120A.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-5110P.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-5120D.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-7120P.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-7120X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Knights/Xeon-Phi-SE10X.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX535.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX535/GMA-500.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX535/GMA-600.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX545.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX545/GMA-3650.yaml (95%) rename specs/GPUs-CONSUMER/{ => Intel}/PowerVR-SGX545/GMA.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Intel}/i740.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/i740/i740-8-MB.yaml (90%) rename specs/GPUs-CONSUMER/{ => Intel}/i740/i740-Graphics.yaml (91%) rename specs/GPUs-CONSUMER/{ => Intel}/i740/i740.yaml (90%) rename specs/GPUs-CONSUMER/{ => Matrox}/G100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/G100/Productiva-G100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Marvel-G200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Millennium-G200-SD.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Millennium-G200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Millennium-G200A.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Millennium-G250.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G200/Mystique-G200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Marvel-G400-TV.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G400-MAX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G450-LP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G450-x2-MMS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G450-x4-MMS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G400/Millennium-G450.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G500.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/G500/Millennium-G550-PCIe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/G500/Millennium-G550.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/MP.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/MP/QID-LP-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/MP/QID-LP-PCIe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/MP/QID-PRO.yaml (90%) rename specs/GPUs-CONSUMER/{ => Matrox}/MP/QID.yaml (90%) rename specs/GPUs-CONSUMER/{ => Matrox}/PX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/PX/M9125-PCIe-x16.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia.yaml (100%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Millenium-P650-PCIe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Millenium-P650.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Millenium-P750.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-128-MB.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-256-MB.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-APVe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-DL256.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-HR256.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-Precision-SDT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Matrox}/Parhelia/Parhelia-Precision-SGT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4050.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4060.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4070.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4080.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4090-D.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/GeForce-RTX-4090.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/L4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/L40-CNX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/L40.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/L40G.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/L40S.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-2000-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-4000-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-4500-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-5000-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-5880-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/RTX-6000-Ada-Generation.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ada-Lovelace/TITAN-Ada.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A10-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A100-PCIe-40-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A100-PCIe-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A100-SXM4-40-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A100-SXM4-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A100X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A10G.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A10M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A16-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A2-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A30-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A30X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A40-PCIe.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A800-PCIe-40-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A800-PCIe-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/A800-SXM4-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/CMP-170HX-10-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/CMP-170HX-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/CMP-70HX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/CMP-90HX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/DRIVE-A100-PROD.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GRID-A100A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GRID-A100B.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-MX570-A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-MX570.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-2050-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-2050-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-4-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-3840SP.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-Ti-GA103.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3060-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070-TiM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3070.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3080.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3090-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/GeForce-RTX-3090.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-AGX-Orin-32-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-AGX-Orin-64-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-Orin-NX-16-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-Orin-NX-8-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-Orin-Nano-4-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/Jetson-Orin-Nano-8-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/PG506-207.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/PG506-217.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/PG506-232.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/PG506-242.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A1000-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A1000-Mobile-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A1000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A2000-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A2000-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A2000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A2000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A2000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A3000-Mobile-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A3000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4000H.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4500-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4500-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A4500.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A500-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A500.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5000-12Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5000-8Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5500-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A5500.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Ampere/RTX-A6000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce-256-DDR.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce-256-SDR.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce-6200-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce-PCX-4300.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-GTS-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-GTS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-Go-100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-Go-200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-Go.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-+-nForce-220.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-+-nForce-420.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-200-LP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-200-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-400-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-DH-Pro-TV.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-MX.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-Ti.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce2-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-410-Go.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-420-Go.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-440-Go.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-448-Go.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-460-Go.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-488-Go.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-+-nForce2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-4000-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-4000-Rev.-2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-4000.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-420-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-420.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-440-8x.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-440-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-440-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/GeForce4-MX-440.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro-NVS-280-SD.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro-NVS-50-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro2-Go.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro2-MXR-Low-Profile.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro2-MXR.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro2-Pro.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-100-NVS-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-100-NVS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-200-NVS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-380-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-400-NVS-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-500-Go-GL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-500-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-550-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Celsius/Quadro4-580-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6100-+-nForce-400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6100-+-nForce-405.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6100-+-nForce-420.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6100-+-nForce-430.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6150-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6150-SE-+-nForce-430.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6150.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-LE-AGP-512-MB.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-LE-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-LE-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-SE-TurboCache.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-TurboCache.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200-X2-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-GT-Dual.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-LE-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600-VE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6610-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6700-XL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-GT-DDL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-GT-Dual.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-GTO.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-Ultra-DDL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-XE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-6800.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7000M-+-nForce-610M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7025-+-nForce-630a.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-+-nForce-610i.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-+-nForce-620i.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-+-nForce-630a.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-+-nForce-630i.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-PV-+-nForce-630a.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7050-SE-+-nForce-630a.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7100-+-nForce-630i.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7100-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7150-+-nForce-630i.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7150M-+-nForce-630M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7200-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-GS-Low-Profile.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-GT-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7300-SE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7350-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7500-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-GS-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-GT-Mac-Edition.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7600-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7650-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS+-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS-20Pipes-AGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS-24Pipes-AGP.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GS-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GT-Dual.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GT.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GTX-512.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7800-GTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GS-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GTO.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7900-GX2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7950-GT-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7950-GT.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-7950-GX2.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6200-TE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6250.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6600-NPB-128M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6600-TE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6800-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-6800.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7300.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7300T.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7400T.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7450.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7600-GT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7700.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7800-GTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7800.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7900-GS.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7900-GTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7900-SE.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/GeForce-Go-7950-GTX.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Playstation-3-GPU-28nm.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Playstation-3-GPU-40nm.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Playstation-3-GPU-65nm.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Playstation-3-GPU-90nm.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-1400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-1500.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-1500M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-2500M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-3400.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-3450.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-350.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-3500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-3500M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-350M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4000-SDI.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4000.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4400G.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4500-SDI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4500-X2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-4500.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-540.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-550.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-5500-SDI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-5500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-550M.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-560.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-Go1400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-FX-Go540.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-110M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-120M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-210S.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-285.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-300M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-440-PCIe-x1.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-440-PCIe-x16.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-NVS-510M.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Curie/Quadro-Plex-1000-Model-II.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2-M64-Vanta.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2-M64.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2-PRO.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Riva-TNT2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fahrenheit/Vanta-LT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-410M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-510-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-605-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-610.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-610M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-620M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-705A.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-705M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-710M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-720A.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-800A.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-800M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-820A.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-820M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-520-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-520-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-520.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-520MX.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-545-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-545.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-550M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-555M-2-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-555M-3-GB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-610-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-610-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-610.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-620-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-625M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-635M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-645-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-705-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-710M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-720A.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GT-720M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-460-v2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-550-Ti.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-555-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560-SE.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560-Ti.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-560M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-570.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-570M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-580.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-580M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-590.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-670M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/GeForce-GTX-675M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/NVS-310.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/NVS-315.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/NVS-4200M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/NVS-5200M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Quadro-5010M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Quadro-7000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Quadro-Plex-7000.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Tesla-C2075.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Tesla-C2090.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Tesla-M2075.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Tesla-M2090.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi-2.0/Tesla-X2090.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-615-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-415M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-420-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-420M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-425M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-430-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-430-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-430.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-435M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-440-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-440-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-440.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-445M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-520M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-525M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-540M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-555M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-620.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-620M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-630.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-630M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-640M-LE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GT-730.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTS-450-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTS-450.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-460-SE.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-460-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-460.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-460M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-465.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-470-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-470.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-470M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-480-Core-512.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-480.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-480M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-485M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/GeForce-GTX-490.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/NVS-5400M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-1000M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-2000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-2000D.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-2000M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-3000M-X2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-3000M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-4000-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-4000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-4000M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-5000-SDI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-5000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-5000M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-500M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-600.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-6000-SDI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Quadro-6000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-C2050.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-C2070.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-M2050.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-M2070-Q.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-M2070.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-S2050.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Fermi/Tesla-X2070.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-CNX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-PCIe-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-PCIe-96-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-SXM5-64-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-SXM5-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H100-SXM5-96-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H800-PCIe-80-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Hopper/H800-SXM5.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce3-Ti200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce3-Ti500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce3.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Go-4200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Ti-4200-8X.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Ti-4200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Ti-4400.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Ti-4600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/GeForce4-Ti-4800.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro-DCC.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro4-700-Go-GL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro4-700-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro4-750-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro4-900-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Quadro4-980-XGL.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kelvin/Xbox-GPU.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-710A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-805A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-810A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-825M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-910M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-920A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-920M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-635-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-710-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-710.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-720.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-730A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/GeForce-GT-735M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/Jetson-TK1.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/Quadro-K510M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/Quadro-K610M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler-2.0/Tesla-K80.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K1.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K100.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K120Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K140Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K160Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K180Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K200.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K220Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K240Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K260Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K280Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K340.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K500.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K520.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K520Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K540Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GRID-K560Q.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-810M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-1030-GK107.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-630-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-640-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-640M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-640M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-645M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-650M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-650M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-720-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-730-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-730M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-740-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-740.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-740M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-745A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-745M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-750M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-750M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-755M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GT-755M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-645-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-650-Ti-Boost.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-650-Ti-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-650.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-660-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-660-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-660.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-660M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-660M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-670.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-670MX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-675MX.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-680-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-680.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-680M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-690.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-750-Ti-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760-Ti-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760-X2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-760M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-765M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-770.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-770M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-775M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780-Rev.-2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780-Ti-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-780M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-870M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-880M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-TITAN-BLACK.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-TITAN-Z.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/GeForce-GTX-TITAN.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/NVS-1000.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/NVS-510.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-410.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-4100.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K1000M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K1100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K2000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K2000D.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K2000M-Embedded.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K2000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K200M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K2100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K3000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K3100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K4000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K4000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K4100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K420.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K4200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5000-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5000-SYNC.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5100M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K5200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K600.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K6000-SDI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Quadro-K6000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K10.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K20X.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K20Xm.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K20c.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K20m.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K20s.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40c.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40d.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40m.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40s.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40st.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K40t.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Kepler/Tesla-K8.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GRID-M6-8Q.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GRID-M60-1Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GRID-M60-2Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GRID-M60-4A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GRID-M60-8Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-750-GM206.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-950-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-950.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-960-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-960.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-965M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-970.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-970M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-980-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-980.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-980M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Jetson-Nano.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Jetson-TX1.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M2000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M2200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M3000-SE.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M3000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M4000.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M4000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M5000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M5000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M5500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M6000-24-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Quadro-M6000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Switch-GPU-16nm.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Switch-GPU-20nm.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M40-24-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M40.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M6-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell-2.0/Tesla-M60.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GRID-M10-8Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GRID-M3-3020.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GRID-M40.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-830A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-830M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-840A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-840M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-845M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-920MX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-930A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-930M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-940A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-940M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-940MX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-945A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-945M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-745-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-750-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-750.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-850A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-850M.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-860M-OEM.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-860M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-950A.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-950M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-GTX-960M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-MX110.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/GeForce-MX130.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/NVS-810.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-K1200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-K2200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-K2200M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-K620.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-K620M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M1000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M1200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M2000M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M500M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M520-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M600M.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Quadro-M620-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Maxwell/Tesla-M10.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GT-1010-DDR4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GT-1010.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GT-1030-DDR4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GT-1030.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-3-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1050.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-3-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-5-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-6-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1060-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1070-GDDR5X.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1070-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1070-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1070-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1070.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-11Gbps.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-GTX-1080.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX150-GP107.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX150.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX230.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX250.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX330.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/GeForce-MX350.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Jetson-TX2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P102-100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P102-101.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P104-100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P104-101.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P106-090.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P106-100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/P106M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-GP100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P1000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P1000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P2000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P2000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P2200.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P3000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P3200-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P3200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P400.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P4000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P4000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P4000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P4200-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P4200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P5000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P5000-X2-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P5000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P520-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P520-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P5200-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P5200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P600-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P600.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P6000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P620-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Quadro-P620.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/TITAN-X-Pascal.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/TITAN-Xp.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P10.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P100-DGXS.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P100-PCIe-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P100-PCIe-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P100-SXM2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P40.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Pascal/Tesla-P6-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200-PCI.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200-Rev.-2.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5500-PCI.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5500.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5600-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5600-XT-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700-EP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700-Engineering-Sample.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700-LE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700-VE.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5700.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5800-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5800.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5900-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5900-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5900-ZT.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5900.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-5950-Ultra.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5100.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5200-32M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5200-64M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5200-NPB-32M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5200-NPB-64M.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5200.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5250.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5300.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5350.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5600.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5650.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-FX-Go5700.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-PCX-5300.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-PCX-5750.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-PCX-5900.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/GeForce-PCX-5950.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-1000.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-1100.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-1300.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-2000.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-3000.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-3000G.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-330.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-500.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-600-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-700.yaml (92%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-Go1000.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-FX-Go700.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-NVS-280-AGP.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-NVS-280-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-NVS-280-PCIe.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Rankine/Quadro-NVS-55-PCI.yaml (91%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-205-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-210-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-210-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-210-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-210.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-305M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-310-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-310M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-315-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-315M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-320M-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-405-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-405M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-505-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-G105M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-G210M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-220-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-220.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-230M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-240.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-240M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-320-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-325M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-330-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-330M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-335M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-340-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GT-415-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTS-250M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTS-260M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTS-350M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTS-360M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-260-Core-216.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-260-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-260.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-275.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-280.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-285-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-285.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-295.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/ION-2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/NVS-2100M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/NVS-300.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/NVS-3100M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/NVS-5100M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-400.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-CX.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-1800M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-380-LP.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-3800.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-380M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-4800.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-5800.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-FX-880M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-Plex-2200-D2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Quadro-Plex-2200-S4.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Tesla-C1060.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Tesla-C1080.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Tesla-M1060.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Tesla-S1070.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla-2.0/Tesla-S1075.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8100-+-nForce-720a.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8200.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8200M-G-mGPU-AMD.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8200M-G-mGPU-Intel.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8300-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8300.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400-GS-PCI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400-GS-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400-GS.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400-SE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400M-G.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8400M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8500-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600-GT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600-GTS-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600-GTS.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8600M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8700M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GS-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GS.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GTS-320.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GTS-512.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GTS-640.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GTS-Core-112.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-GTX.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800-Ultra.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800M-GTS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-8800M-GTX.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9100.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9100M-G-mGPU-AMD.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9100M-G-mGPU-Intel.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9200.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9200M-GS-GDDR3.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9200M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9200M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300-+-nForce-730i.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300-GE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300-SE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300M-G.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300M-GS-GDDR3.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9300M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400-GT-PCI.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400-GT-Rev.-2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400M-G.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9400M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GS-Rev.-2.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GT-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GT-Rev.-3.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500M-G.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9500M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GS-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GSO-512.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GSO.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GT-Green-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GT-Rev.-2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600-GTX.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600M-GT-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9600M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9650M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9650M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9700M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9700M-GTS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800-GT-Rebrand.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800-GT.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800-GTX+.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800-GTX.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800-GX2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800M-GS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800M-GT.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800M-GTS.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-9800S.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G100-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G102M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G103M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G110M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G205M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-G210-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-120-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-120-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-120M-Mac-Edition.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-120M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-130-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-130-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-130M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-140-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-220M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-230-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-230.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-240M-LE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GT-320M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTS-150-OEM.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTS-150M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTS-160M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTS-240-OEM.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTS-250.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTX-260M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTX-275-PhysX-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTX-280M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/GeForce-GTX-285M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/ION-LE.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/ION.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-1600M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-1700-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-1700.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-1700M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-1800.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-2700M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-2800M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-3600M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-360M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-370-LP.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-370.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-3700.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-3700M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-370M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-380.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-3800M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-4600-SDI.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-4600.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-470.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-4700-X2.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-5600-Mac-Edition.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-5600.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-570.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-570M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-580.yaml (96%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-FX-770M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-130M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-135M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-140M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-150M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-160M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-290.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-295.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-320M.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-420.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-NVS-450.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-Plex-1000-Model-IV.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-Plex-2100-D4.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-Plex-2100-S4.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Quadro-VX-200.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Tesla-C870.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Tesla-D870.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Tesla/Tesla-S870.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/CMP-30HX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/CMP-40HX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/CMP-50HX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GRID-RTX-T10-16.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GRID-RTX-T10-2.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GRID-RTX-T10-4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GRID-RTX-T10-8.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1630.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-GDDR6.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-TU106.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-TU116.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1650.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1660-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1660-Ti-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1660-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-GTX-1660.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-MX450-12W.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-MX450-30.5W-10Gbps.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-MX450-30.5W-8Gbps.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-MX550.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060-TU104.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2060.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2070.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-Engineering-Sample.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-SUPER.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-Ti-12-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080-Ti.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/GeForce-RTX-2080.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-3000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-3000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-3000-X2-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-4000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-4000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-4000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-5000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-5000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-5000-X2-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-5000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-6000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-6000-Passive.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-6000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-8000-Passive.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-RTX-8000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T1000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T1000-Mobile-GDDR6.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T1000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T1200-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T1200-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T2000-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Quadro-T2000-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T1000-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T1000.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T400-4-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T400.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T500-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T500-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T550-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T600-Max-Q.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T600-Mobile.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/T600.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/TITAN-RTX.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Tesla-T10-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Tesla-T4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Tesla-T40-24-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Turing/Tesla-T4G.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4/Tegra-2-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4/Tegra-3-GPU.yaml (95%) rename specs/GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4/Tegra-4-GPU.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/VLIW-Vec4/Tegra-4i-GPU.yaml (90%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Jetson-AGX-Xavier-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Jetson-AGX-Xavier-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Jetson-Xavier-NX-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Jetson-Xavier-NX-8-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Quadro-GV100.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/TITAN-V-CEO-Edition.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/TITAN-V.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-PG500-216.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-PG503-216.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-DGXS-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-DGXS-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-FHHL.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-PCIe-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-PCIe-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-SXM2-16-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-SXM2-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100-SXM3-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => Nvidia}/Volta/Tesla-V100S-PCIe-32-GB.yaml (100%) rename specs/GPUs-CONSUMER/{ => PowerVR}/PowerVR-Series5XT.yaml (100%) rename specs/GPUs-CONSUMER/{ => PowerVR}/PowerVR-Series5XT/Playstation-Vita-GPU.yaml (91%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4.yaml (100%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-8300.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-8600-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-Duo-V5-Ultra.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-Duo-V8-Ultra.yaml (91%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V3-XT.yaml (91%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V3.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V5-Ultra.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V5.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V8-Ultra.yaml (90%) rename specs/GPUs-CONSUMER/{ => XGI}/XG4/Volari-V8.yaml (90%) diff --git a/specs/GPUs-CONSUMER-3dfx.yaml b/specs/GPUs-CONSUMER-3dfx.yaml new file mode 100755 index 00000000..e2ddfe09 --- /dev/null +++ b/specs/GPUs-CONSUMER-3dfx.yaml @@ -0,0 +1,12 @@ +name: GPUs-CONSUMER-3dfx +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: 3dfx +sections: + - header: uncategorised Graphics Cards + members: + - Voodoo-Scalable + diff --git a/specs/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER-AMD.yaml new file mode 100755 index 00000000..38a63387 --- /dev/null +++ b/specs/GPUs-CONSUMER-AMD.yaml @@ -0,0 +1,27 @@ +name: GPUs-CONSUMER-AMD +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: AMD +sections: + - header: uncategorised Graphics Cards + members: + - Mach + - GCN-1.0 + - GCN-5.0 + - TeraScale + - TeraScale-2 + - TeraScale-3 + - GCN-2.0 + - GCN-3.0 + - GCN-4.0 + - RDNA-2.0 + - RDNA-3.0 + - GCN-5.1 + - CDNA-1.0 + - CDNA-2.0 + - CDNA-3.0 + - RDNA-1.0 + diff --git a/specs/GPUs-CONSUMER-ATI.yaml b/specs/GPUs-CONSUMER-ATI.yaml new file mode 100755 index 00000000..131a13b9 --- /dev/null +++ b/specs/GPUs-CONSUMER-ATI.yaml @@ -0,0 +1,22 @@ +name: GPUs-CONSUMER-ATI +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: ATI +sections: + - header: uncategorised Graphics Cards + members: + - Rage-1 + - Rage-2 + - Rage-3 + - Rage-4 + - Rage-7 + - Rage-6 + - Rage-5 + - Wonder + - Ultra-Threaded-SE + - IBM + - R300 + - R400 diff --git a/specs/GPUs-CONSUMER-Intel.yaml b/specs/GPUs-CONSUMER-Intel.yaml new file mode 100755 index 00000000..fd4cb352 --- /dev/null +++ b/specs/GPUs-CONSUMER-Intel.yaml @@ -0,0 +1,34 @@ +name: GPUs-CONSUMER-INTEL +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: Intel +sections: + - header: uncategorised Graphics Cards + members: + - Generation-12.7 + - Xe-LPG + - Generation-12.5 + - Generation-2.0 + - Generation-3.0 + - Generation-3.5 + - Generation-4.0 + - Generation-5.0 + - Generation-12.1 + - Generation-7.0 + - Generation-6.0 + - Generation-7.5 + - Generation-5.75 + - Generation-8.0 + - Generation-9.0 + - Generation-9.5 + - i740 + - Generation-1.0 + - Generation-11.0 + - Generation-12.2 + - Knights + - PowerVR-SGX535 + - PowerVR-SGX545 + diff --git a/specs/GPUs-CONSUMER-Matrox.yaml b/specs/GPUs-CONSUMER-Matrox.yaml new file mode 100755 index 00000000..5c631ab6 --- /dev/null +++ b/specs/GPUs-CONSUMER-Matrox.yaml @@ -0,0 +1,18 @@ +name: GPUs-CONSUMER-Matrox +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: Matrox +sections: + - header: uncategorised Graphics Cards + members: + - PX + - G200 + - G400 + - Parhelia + - G500 + - G100 + - MP + diff --git a/specs/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER-Nvidia.yaml new file mode 100755 index 00000000..027b56c3 --- /dev/null +++ b/specs/GPUs-CONSUMER-Nvidia.yaml @@ -0,0 +1,31 @@ +name: GPUs-CONSUMER-NVIDIA +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: Nvidia +sections: + - header: uncategorised Graphics Cards + members: + - Ada-Lovelace + - Ampere + - Celsius + - Curie + - Fahrenheit + - Fermi + - Fermi-2.0 + - Hopper + - Kelvin + - Kepler + - Kepler-2.0 + - Maxwell + - Maxwell-2.0 + - Pascal + - Rankine + - Tesla + - Tesla-2.0 + - Turing + - VLIW-Vec4 + - Volta + diff --git a/specs/GPUs-CONSUMER-PowerVR.yaml b/specs/GPUs-CONSUMER-PowerVR.yaml new file mode 100755 index 00000000..59f0c951 --- /dev/null +++ b/specs/GPUs-CONSUMER-PowerVR.yaml @@ -0,0 +1,12 @@ +name: GPUs-CONSUMER-POWERVR +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: PowerVR +sections: + - header: uncategorised Graphics Cards + members: + - PowerVR-Series5XT + \ No newline at end of file diff --git a/specs/GPUs-CONSUMER-XGI.yaml b/specs/GPUs-CONSUMER-XGI.yaml new file mode 100755 index 00000000..85209535 --- /dev/null +++ b/specs/GPUs-CONSUMER-XGI.yaml @@ -0,0 +1,12 @@ +name: GPUs-CONSUMER-XGI +humanName: Consumer GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: XGI +sections: + - header: uncategorised Graphics Cards + members: + - XG4 + diff --git a/specs/GPUs-CONSUMER.yaml b/specs/GPUs-CONSUMER.yaml deleted file mode 100755 index c75a343d..00000000 --- a/specs/GPUs-CONSUMER.yaml +++ /dev/null @@ -1,106 +0,0 @@ -name: GPUs-CONSUMER -humanName: Consumer GPUs -type: Generic Container -isPart: false -topHeader: 'SELECT SERIES:' -sections: - - header: RX Series - members: - - Radeon-VII-Architecture - - RX-Vega - - RX-500 - - RX-400 - - header: R Series - members: - - R-300 - - R-200 - - header: HD Series - members: - - HD8000 - - HD7000 - - HD6000 - - HD5000 - - HD4000 - - header: test series - members: - - Mach - - Rage-2 - - Rage-3 - - Ampere - - GCN-1.0 - - Rage-4 - - R300 - - Ultra-Threaded-SE - - Rage-7 - - Rage-6 - - R400 - - Generation-12.7 - - Xe-LPG - - Generation-12.5 - - GCN-5.0 - - Knights - - Turing - - Wonder - - Generation-2.0 - - IBM - - TeraScale - - TeraScale-2 - - TeraScale-3 - - GCN-2.0 - - GCN-3.0 - - Rage-5 - - Celsius - - Kelvin - - Tesla-2.0 - - Fermi-2.0 - - Fermi - - Kepler-2.0 - - Kepler - - Maxwell - - Curie - - Tesla - - Rankine - - Pascal - - Maxwell-2.0 - - Ada-Lovelace - - PowerVR-SGX545 - - PowerVR-SGX535 - - Generation-3.0 - - Generation-3.5 - - Generation-4.0 - - Generation-5.0 - - Generation-12.1 - - Hopper - - Generation-7.0 - - Generation-6.0 - - Generation-7.5 - - Generation-5.75 - - Generation-8.0 - - Generation-9.0 - - Generation-9.5 - - i740 - - Generation-1.0 - - Generation-11.0 - - Generation-12.2 - - Volta - - PX - - G200 - - G400 - - Parhelia - - G500 - - GCN-4.0 - - RDNA-2.0 - - PowerVR-Series5XT - - G100 - - MP - - RDNA-3.0 - - GCN-5.1 - - CDNA-1.0 - - CDNA-2.0 - - CDNA-3.0 - - RDNA-1.0 - - Fahrenheit - - Voodoo-Scalable - - VLIW-Vec4 - - XG4 - diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Voodoo-Scalable.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable.yaml diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml index 3ab85ec1..94bcba08 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-1000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 131 mm² GPU: Rampage TDP: 30 W diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml index 5e904fde..87a739fc 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-2000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Sage TDP: 30 W diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml index da50beec..d8d0765e 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Spectre-3000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Sage TDP: 60 W diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml index 351be441..2e636e9f 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-101 GPU Variant: Daytona diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml index 86e8a2d4..2bcbfb06 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 143 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-101 GPU Variant: Daytona diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml index 02257477..b0593fbe 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-101 GPU Variant: Daytona diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml index 4dc37ee4..afd7b2cf 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-101 GPU Variant: Daytona diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml index a4d5a6e0..b8efadeb 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-101 GPU Variant: Napalm 2 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml index d94c7fbb..e2169a61 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 TDP: 15 W diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml index f9c4d432..cf3cd386 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '2000-10-13' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-220 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml index 940dad94..3ceb63ac 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '2000-10-13' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-220 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml index 11c04909..aecc7477 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo4-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-220 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml index 196301a6..2c6b5429 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-220 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml index da9e6a31..161107d1 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5000-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-220 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml index aaffab3c..bd7a9d0d 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '2000-06-22' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-320 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml index 2d11c527..2eb449de 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '2000-06-22' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 26-320 diff --git a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml rename to specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml index ae8a3820..f3ffe249 100644 --- a/specs/GPUs-CONSUMER/Voodoo-Scalable/Voodoo5-6000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 112 mm² GPU: VSA-100 GPU Variant: Napalm 30 diff --git a/specs/GPUs-CONSUMER/CDNA-1.0.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-1.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-1.0.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-1.0.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-1.0/Radeon-Instinct-MI100.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-2.0.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-2.0.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI200.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI210.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-2.0/Radeon-Instinct-MI250X.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-3.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-3.0.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-3.0.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml diff --git a/specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/CDNA-3.0/Radeon-Instinct-MI300X.yaml rename to specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/AeroBox-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml index 8a37023e..7947cd8c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-01-18' + GPU Base Frequency: 850 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 162.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml index c1028b54..da201c66 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D500.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-01-18' + GPU Base Frequency: 725 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 243.8 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml index 4dec83f4..95e0185a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-D700.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-01-18' + GPU Base Frequency: 850 MHz VRAM Frequency: 1370 MHz VRAM Bandwidth: 263.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M3100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml index b880d533..45d4d190 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-06-27' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml index bc53972c..27685dd0 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-10-16' + GPU Base Frequency: 670 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml index 28dd6ab0..70cb0ed3 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-10-16' + GPU Base Frequency: 715 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M4170.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M5100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml index 2e1b1319..f1b4d72e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-M6000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-07-01' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml index 33bc6c79..e4663530 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-R5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-02-25' + GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive-12GB.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000-Passive.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S10000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S4000X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml index 08ae9e40..a7bfb7e4 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-27' + GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml index 9ab3f616..98a687f5 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-24' + GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml index fb8c322f..57dd3f5e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9010.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-24' + GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml index 2bf5528d..681d1c55 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-S9050.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-08-07' + GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 12 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W2100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml index 346cadc6..0115b072 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-07' + GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml index eaa484ca..aa389359 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-08-13' + GPU Base Frequency: 630 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4130M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4150M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4170M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W4190M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml index 7d591462..f4962778 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-02-25' + GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml index 4e2dcaa1..40a85651 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-07' + GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5130M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W5170M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml index db0ab240..f7df4eae 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W600.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-06-13' + GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml index 341f02c2..0b758cca 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-06-13' + GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml index 2d85d31f..fefee06f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W8000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-06-14' + GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml index 9b066764..341988e0 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/FirePro-W9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-06-14' + GPU Base Frequency: 975 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml index c2d2f157..8d180635 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-DDR3.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2017-04-18' + GPU Base Frequency: 1030 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml index 40cb34bc..f6d628cf 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2017-04-18' + GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml index ad7ffcd2..e0164e98 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2017-04-18' + GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml index 60069f07..d802f8f5 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-610-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2019-05-23' + GPU Base Frequency: 1030 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-E8860.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml index 829abf54..7870a446 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-05-01' + GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7730M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml index 746bb4af..0bf54654 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-02-15' + GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml index 783b62ff..95c01e41 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 575 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml index 6d3c8881..08c3d551 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-02-15' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml index b828769a..103ff4f1 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7770M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml index 1216b723..d41486ad 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-03-05' + GPU Base Frequency: 860 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml index e45a5e9c..607be33f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7850M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml index f0a22b6f..e4a2314c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-03-05' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870-XT.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml index 016732da..9dc245a6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7870M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Boost.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml index 4acb327c..434f08c6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-03-07' + GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml index 84ee58ff..ac5adfc6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-01-31' + GPU Base Frequency: 925 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml index 50b758d6..d0036def 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-01-31' + GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml index 5e50808a..8d49f506 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-01-31' + GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml index 48ee14ac..a20d022d 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml index f78c9cbb..6be75441 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-08-31' + GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml index dcff5438..b38fee59 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2011-12-22' + GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml index d54fbb96..de2caded 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml index a0151e2f..bbd84a66 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7970M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2012-04-24' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-7990.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8530M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8550M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570A.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8570M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8590M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml index df4e6f20..3ec35e0f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-02-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8670M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8690M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml index f490654f..147358e0 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-09-05' + GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730A.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8730M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml index 372387c8..b18c60c8 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8740-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-09-05' + GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml index b43f519f..944adf46 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-02-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml index a6ea2411..e6adf2c7 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-02-26' + GPU Base Frequency: 670 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml index eb182d7d..593d06e3 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8760-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-01-08' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8770M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8790M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8830M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8850M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml index a8486067..a771bc51 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8860-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-01-08' + GPU Base Frequency: 925 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml index 9ef4350e..4d51dac2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-01-08' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8870M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8950-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml index d0c2a7da..5b4f20a2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-01-08' + GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8970M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-HD-8990-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-240-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml index f22ed993..c6a1a8d2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-340X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-05-05' + GPU Base Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-430-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml index 0b41e982..4301fe3c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2016-06-30' + GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 18.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A230.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A240.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A320.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml index 8c33ba52..3295c64a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A330.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-10-21' + GPU Base Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml index 7bf2636a..d69e755f 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-A335.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-10-21' + GPU Base Frequency: 1070 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M230.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M240.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M320.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M330.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml index 4f52adda..bb5a0893 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M335.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-10-21' + GPU Base Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M420.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M430.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R5-M435.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M340DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M340DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M340DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M435DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R6-M435DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M435DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-240.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml index 1ff0aa07..bb918d72 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-10-08' + GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml index a4644c77..4489e3a2 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-12-20' + GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml index c63b9a83..5fa4a75c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-02-13' + GPU Base Frequency: 950 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml index 856fb5ed..bf51c20c 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-250XE.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2014-08-21' + GPU Base Frequency: 860 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-265X-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-340-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml index 214f099a..c5d97602 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-640SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2019-01-07' + GPU Base Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml index cfb4bc07..b19d5135 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-Fake-Card.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015' + GPU Base Frequency: 1050 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 36.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-350X-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-370.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-430-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml index 9727404d..48e58732 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2016-06-30' + GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml index 7795114c..d4999c65 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2016-06-30' + GPU Base Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-A265.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M260X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M265DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M265DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M265DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M270DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M270DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M270DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M340.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml index ea3e0548..fdeabeea 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M365X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-05-05' + GPU Base Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M370.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M380.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml index e22a2a9d..b5837f7e 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2016-05-15' + GPU Base Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R7-M465X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M350DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M350DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M350DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M435DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R8-M435DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M435DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-255-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270-1024SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-270X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-280X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370-1024SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-370X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml index 3b20ed7f..51575afc 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-A375.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015' + GPU Base Frequency: 1015 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M275X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M290X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M360.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M365X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M375X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml index c84069b8..5f364a66 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2015-05-05' + GPU Base Frequency: 958 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml index 3d5a660b..33c7a927 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-500.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-03-27' + GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml index 0287be69..5fe4b25a 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-700.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1 (1.2)' Release Date: '2013-03-27' + GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-1.0/Radeon-Sky-900.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml index f4aa0775..48ddccd6 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2013-11-22' + GPU Base Frequency: 853 MHz VRAM Frequency: 1066 MHz VRAM Bandwidth: 68.22 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml index a9a69e0c..17c6f9db 100644 --- a/specs/GPUs-CONSUMER/GCN-1.0/Xbox-One-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2016-08-02' + GPU Base Frequency: 914 MHz VRAM Frequency: 1066 MHz VRAM Bandwidth: 68.22 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml index 6e16a1b4..2e69f956 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-M6100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-05-27' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml index 8051d35a..bcc851ff 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-10-02' + GPU Base Frequency: 824 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 12 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml index f0ec037e..931d3e54 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-08-07' + GPU Base Frequency: 900 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml index 3a634b65..5144089f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-S9170.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-07-08' + GPU Base Frequency: 930 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 32 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml index cde0a6a3..210fff5e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W4300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-12-01' + GPU Base Frequency: 930 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml index 7d44d6bc..34ba4c5e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-03-31' + GPU Base Frequency: 930 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml index 4901c9f4..844200c2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6150M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-11-12' + GPU Base Frequency: 1075 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml index bea498bf..ecb269bb 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W6170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-08-25' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml index 5b793a67..465b8cff 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W8100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-06-23' + GPU Base Frequency: 824 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml index 95490608..abb9a03b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/FirePro-W9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-03-26' + GPU Base Frequency: 930 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml index 80d40245..7b22bda2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2013-11-24' + GPU Base Frequency: 800 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml index 6b8f9a79..87eba5cc 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Pro-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2016-11-10' + GPU Base Frequency: 911 MHz VRAM Frequency: 1700 MHz VRAM Bandwidth: 217.6 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml index f082a29e..6fe0f3d3 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Playstation-4-Slim-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2016-09-07' + GPU Base Frequency: 800 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml index 8c9221ae..5868b62d 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-09-29' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml index 889f1c4e..c726a284 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-E8870-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-09-29' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml index 5a115cb9..24d15649 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-7790.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-03-22' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml index cf050b8e..9dc37aa2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8180-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: 'Nov 2013' + GPU Base Frequency: 225 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml index fe7cdc0d..96d83bcc 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-01-31' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml index 6537d4b0..1db9d94f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8210E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-04-23' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml index c582717e..1ff93c00 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-11-01' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8250-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8250-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8250-IGP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml index f0b71de9..bbad23c3 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-09-18' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml index c49f5185..e9b54949 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-09-18' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml index 26c97a17..00a354c2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8280E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-04-23' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml index d74bac65..be1983bf 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-08-13' + GPU Base Frequency: 497 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml index 85b1e70d..4c64f7a4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8330E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-04-23' + GPU Base Frequency: 497 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml index b55daf8b..ca376926 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-11-23' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml index 40d47102..8b151a89 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-11-23' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml index 7c317c8a..5cbd7b74 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8400E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-04-23' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml index 757ab18c..38c7fcd3 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8770-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-09-02' + GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml index ec0cacbb..9e9daf1f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-HD-8950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-05-14' + GPU Base Frequency: 1075 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml index 075a3725..43bf036d 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-02-23' + GPU Base Frequency: 497 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml index 77e35f39..78e7e145 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-01-28' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml index 8ee0237b..d5c3f1f7 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-01-28' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml index 716a1bf9..d3cef69b 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-01-28' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml index 73aba9d0..be5ff7ed 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-01-28' + GPU Base Frequency: 351 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml index 3198bade..ae4ac4e2 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-06-06' + GPU Base Frequency: 800 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml index d2c8ae19..06311b39 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-12-17' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml index 991d4ea7..9d7f1761 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-260X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-10-08' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml index 2fdef9ce..4686ffa4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360-896SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-06-18' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml index 9d5b51e1..4b570ed4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-360E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-12-30' + GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml index 69508c20..ab58e69d 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-01-11' + GPU Base Frequency: 720 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml index d9b88365..52941a4e 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-02-17' + GPU Base Frequency: 554 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml index f177b33f..e409784c 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-12-21' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml index 0fbc4df3..9c2d9ca6 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-11-05' + GPU Base Frequency: 947 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml index 1694ea72..ce0cec01 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2013-10-24' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml index bb562af2..32ca0f42 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-290X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-06-24' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 345.6 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml index 612ea124..c627cad5 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-295X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-04-29' + GPU Base Frequency: 1018 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-360-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml index f2a4f95f..2e35c3ce 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-09-03' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 345.6 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml index 160d2d27..e6386ee4 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-06-18' + GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml index 32236b11..2e11ce1f 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-390X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-06-18' + GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M270X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M280X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M380.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M385X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-R9-M470X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml index 0e8b5bfd..20204e48 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Radeon-RX-455-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-06-30' + GPU Base Frequency: 1050 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml index 044ce91b..85856816 100644 --- a/specs/GPUs-CONSUMER/GCN-2.0/Xbox-One-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2017-11-07' + GPU Base Frequency: 1172 MHz VRAM Frequency: 1700 MHz VRAM Bandwidth: 326.4 GB/s VRAM Capacity: 12 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml index 1fe2869c..08d67bc0 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7100X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-05-25' + GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml index d713f3d6..ccdbe1f9 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150-x2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-02-01' + GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml index 32fe5637..25db6604 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S7150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-02-01' + GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml index 4b096e7f..1c73b12d 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-S9300-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-03-31' + GPU Base Frequency: 975 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml index 56b004a7..f08aaea6 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-08-12' + GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml index 46e11a32..93916453 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/FirePro-W7170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-10-02' + GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-DDR3.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-530X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-535-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml index d0d027fd..9680f253 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-05-13' + GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml index 973cee64..eb0103fd 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-625-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-05-13' + GPU Base Frequency: 1024 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-E8950.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml index c3617859..3095589c 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Instinct-MI8.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-12-12' + GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml index 55fe35cc..8215a42e 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-04-26' + GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-Pro-SSG.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-A255.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M255.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml index ab94e25d..e1e75e09 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M315.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 970 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml index 384a1607..8a382aa6 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M445.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016' + GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-M465.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-M255DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-M255DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-M255DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A260.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-A360.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M260.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M265.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M350.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M360.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml index 00f7403b..63c8fbc8 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M440.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-05-15' + GPU Base Frequency: 891 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M445.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7-M460.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M365DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M365DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M365DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M445DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M445DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M445DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M535DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R8-M535DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M535DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml index a0d3d219..95dfc192 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-09-02' + GPU Base Frequency: 918 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml index 21cf5c77..aed87055 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-285X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: 'Never Released' + GPU Base Frequency: 1002 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml index 0d7da26e..d42c3f32 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 918 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml index 7cbd141c..b6bf747b 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-06-18' + GPU Base Frequency: 970 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml index f495c938..b7bc97e9 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-380X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-11-19' + GPU Base Frequency: 970 MHz VRAM Frequency: 1425 MHz VRAM Bandwidth: 182.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml index fbde14f0..a5abcc8b 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-06-24' + GPU Base Frequency: 1050 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml index a1fb1fcc..870f7d93 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: 'Never Released' + GPU Base Frequency: 1050 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml index c9705d6f..2dfb03a7 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-FURY.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-07-10' + GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml index c9aed067..d4f806ad 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-11-23' + GPU Base Frequency: 850 MHz VRAM Frequency: 1362 MHz VRAM Bandwidth: 174.3 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml index 72330006..23ce3fac 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M295X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2014-11-23' + GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml index 9491b468..76e330f0 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M390X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml index 1a752616..058c656e 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 834 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml index cdd4615a..d644f513 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 909 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml index 55b96ac9..0c3c1833 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M395X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-05-05' + GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml index 6cc7ee94..330605c7 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-M485X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-05-15' + GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml index 8a646936..b466809c 100644 --- a/specs/GPUs-CONSUMER/GCN-3.0/Radeon-R9-Nano.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2015-08-27' + GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/P30PH.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml index 00e1b417..11cf8d2c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-03-26' + GPU Base Frequency: 1046 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 41.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-540X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-550.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-640SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml index 63853174..6103f025 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2018-04-11' + GPU Base Frequency: 1082 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-550X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-630-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9171-MCM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9172-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9173-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9174-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9175-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml index 5a6fd84f..37856539 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-09-27' + GPU Base Frequency: 1053 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9260-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9390-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9550-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-E9560-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Instinct-MI6.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml index fd6f02a1..d72c744c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-450.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-10-30' + GPU Base Frequency: 800 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml index eaed395c..82c2517e 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-455.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2016-10-30' + GPU Base Frequency: 855 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-460.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml index f045c1e8..6ef8e58b 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2017-06-05' + GPU Base Frequency: 850 MHz VRAM Frequency: 1275 MHz VRAM Bandwidth: 81.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml index fb543314..94e48efe 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-555X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2018-07-16' + GPU Base Frequency: 907 MHz VRAM Frequency: 1470 MHz VRAM Bandwidth: 94.08 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml index 6727946b..5e69f2bc 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2017-04-18' + GPU Base Frequency: 907 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml index f504c179..c239642c 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-560X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2018-07-16' + GPU Base Frequency: 1004 MHz VRAM Frequency: 1470 MHz VRAM Bandwidth: 94.08 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-570X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml index b3910a97..ab15860d 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2017-06-05' + GPU Base Frequency: 1096 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml index dcd2a5a9..ebfb7fa5 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-575X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-03-18' + GPU Base Frequency: 1096 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-580X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml index 5dd7ce67..d68e34c8 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2017-04-24' + GPU Base Frequency: 1243 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V5300X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7300X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-V7350X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-2100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml index a13c38b6..fd34a0a5 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-07-02' + GPU Base Frequency: 1082 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml index f69a2fb8..49828ddf 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-3200.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-07-02' + GPU Base Frequency: 1295 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-5100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-1024SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-460.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-470D.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-480.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml index 80761a85..5772417b 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2017-11-11' + GPU Base Frequency: 1046 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-540X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-512SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-640SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-640SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-550X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-896SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560-XT.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560D.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560DX.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-560X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570-X2.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-570X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-2048SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580G.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml index b1a196df..31ea7fa1 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2018-04-11' + GPU Base Frequency: 1266 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-580X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590-GME.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-590.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml index 49cf9793..ec3414ba 100644 --- a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2020-04-09' + GPU Base Frequency: 1295 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GH.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml diff --git a/specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-4.0/Radeon-RX-Vega-M-GL.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-400-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Atari-VCS-800-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Instinct-MI25.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V320.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-16-GB.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-V340-8-GB.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-16.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-20.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml index 64f41628..90bd2e7a 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-48.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2019-03-19' + GPU Base Frequency: 1200 MHz VRAM Frequency: 786 MHz VRAM Bandwidth: 402.4 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-56.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-Vega-64X.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-8200.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Pro-WX-9100.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-11.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-56.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-64.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-RX-Vega-Nano.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-10-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-10-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-10-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11-Embedded.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-11.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Embedded.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-3.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Embedded.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-6-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Embedded.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-8.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml index 05512ecd..3b0f4521 100644 --- a/specs/GPUs-CONSUMER/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '2.1' Release Date: '2018-08-03' + GPU Base Frequency: 1300 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/GCN-5.1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-384SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-448SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Graphics-512SP.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI50.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Instinct-MI60.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-V420.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-VII.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-Pro-Vega-II.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml diff --git a/specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml similarity index 100% rename from specs/GPUs-CONSUMER/GCN-5.1/Radeon-VII.yaml rename to specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml diff --git a/specs/GPUs-CONSUMER/Mach.yaml b/specs/GPUs-CONSUMER/AMD/Mach.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Mach.yaml rename to specs/GPUs-CONSUMER/AMD/Mach.yaml diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml index 51ce0e24..49add4b0 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-09-01' + GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 86 mm² GPU: Mach64 GT-B GPU Variant: 3D Rage II+DVD diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml index f3fe13d6..488da9f7 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage-II.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-09-05' + GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 86 mm² GPU: Mach64 GT-B GPU Variant: 3D Rage II diff --git a/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/3D-Rage.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml index 9f07acb3..5aa294b3 100644 --- a/specs/GPUs-CONSUMER/Mach/3D-Rage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-04-01' + GPU Base Frequency: 44 MHz VRAM Frequency: 66 MHz VRAM Bandwidth: 528.0 MB/s VRAM Capacity: 2 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GT GPU Variant: 3D Rage diff --git a/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml index dc8853c5..44328e8e 100644 --- a/specs/GPUs-CONSUMER/Mach/8514-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach8 GPU Variant: 38800-1 diff --git a/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml index 94c24084..893164e5 100644 --- a/specs/GPUs-CONSUMER/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-09-01' + GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 86 mm² GPU: Mach64 GT-B GPU Variant: 3D Rage II+DVD diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml index 91e6e2a2..94ca868e 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Pro-Turbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 GX diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml index f6c38d8f..bbaf894d 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32-06 diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml index cfce3a7f..a48c016c 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1993' + GPU Base Frequency: 66 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32 AX diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml index 1d37c76f..241abbf5 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-Pro-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1993' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32-03 diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml index c769a2a4..f9260daf 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra-XLR-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1993' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32 LX diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml index 675a53b9..b27d19b3 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach8 GPU Variant: 38800-1 diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml index bbd68b3d..13cda712 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Vantage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach8 GPU Variant: 38800-1 diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml index c045df9d..52b5cc35 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32 AX diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml index 0bec35ca..618ce266 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Wonder-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach32 GPU Variant: Mach32-06 diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml index fc97c2cf..eb62d68f 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 GX diff --git a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml index da89f2de..fbdef71f 100644 --- a/specs/GPUs-CONSUMER/Mach/Graphics-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995-11-01' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 CX diff --git a/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml index 140879ea..47db79d7 100644 --- a/specs/GPUs-CONSUMER/Mach/Rage-LT-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1997-11-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 LT GPU Variant: RAGE LT PRO AGP diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml index 19fdb072..364cb3aa 100644 --- a/specs/GPUs-CONSUMER/Mach/Video-Xpression+.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-05-01' + GPU Base Frequency: 62 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 VT4 diff --git a/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml index 0ff9ff58..6bb1fe1c 100644 --- a/specs/GPUs-CONSUMER/Mach/Video-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1996-05-21' + GPU Base Frequency: 62 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 VT2 diff --git a/specs/GPUs-CONSUMER/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/WinBoost.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml index e10b9639..dd423df1 100644 --- a/specs/GPUs-CONSUMER/Mach/WinBoost.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995-11-01' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 CT diff --git a/specs/GPUs-CONSUMER/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/WinCharger.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml index e390d184..8c55a8b7 100644 --- a/specs/GPUs-CONSUMER/Mach/WinCharger.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995-11-01' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 CT diff --git a/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Mach/WinTurbo.yaml rename to specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml index 43573473..679bc8e4 100644 --- a/specs/GPUs-CONSUMER/Mach/WinTurbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1995' + GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s VRAM Capacity: 2 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: Mach64 GPU Variant: Mach64 GX diff --git a/specs/GPUs-CONSUMER/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5300M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5500M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5600M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-5700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V520.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-V540.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5300M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5500X.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-Pro-W5700X.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5300M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5500M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5600M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-1.0/Radeon-RX-5700M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml index 408328d7..732adbd3 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Playstation-5-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2020-11-12' + GPU Base Frequency: 2233 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-610M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-610M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-610M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-660M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-660M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-660M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-680M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-680M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-680M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Graphics-128SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Graphics-128SP.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Graphics-128SP.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-V620.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6300.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6400.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6600.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-PRO-W6800.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6300M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6500M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6600X.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6800X.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-Pro-W6900X.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6300M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6400.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6450M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6500M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6550S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6600S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6650M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6700S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6750-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6800S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6850M-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6900-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Radeon-RX-6950-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-2.0/Steam-Deck-OLED-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml index 102d0052..bbb8fd4d 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2020-11-10' + GPU Base Frequency: 1565 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml index 2ebbbe57..ebbfa7a8 100644 --- a/specs/GPUs-CONSUMER/RDNA-2.0/Xbox-Series-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2020-11-10' + GPU Base Frequency: 1825 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 560.0 GB/s VRAM Capacity: 10 GB diff --git a/specs/GPUs-CONSUMER/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/ROG-Ally-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-740M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-740M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-740M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-760M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-760M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-760M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-780M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-780M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-780M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7500.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7600.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7800.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-PRO-W7900.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7500-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7600S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7700S.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7800-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-GRE.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7900M.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XT.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7950-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml diff --git a/specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/RDNA-3.0/Radeon-RX-7990-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml index d3156ff2..c1093631 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-31' + GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml index b61bc051..147b222e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2270.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-31' + GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml index 181fd8e2..39c419b5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-2460-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml index 7f6c1d70..07a79c50 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M2000.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-07-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml index 1d2a9ef8..bdbbd08b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-10-19' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml index 99c8d963..6ce3eefc 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-03-01' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml index 515886a6..76233232 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M5950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml index 176c6cb7..879a97f6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M7820.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-05-01' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml index 271a649c..c029e1d4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-M8900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-12' + GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml index 2c245cd5..10150547 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-26' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml index 7f3d7783..712418a9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-02-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml index 6c4c1bb8..01bf66fc 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-26' + GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml index 648f8023..8c3c34a8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V4900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-11-01' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml index eebb5a8f..23c1e72c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-26' + GPU Base Frequency: 690 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml index f27b4737..40692719 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-26' + GPU Base Frequency: 690 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml index 740ac1a2..4b5a8359 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-26' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml index 207aeaef..781978a6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V7800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-16' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml index 9a9edfab..dcd2c72a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V8800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-07' + GPU Base Frequency: 825 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml index ac429d61..246eebe3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-09-09' + GPU Base Frequency: 850 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml index db08a111..c428c0e4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FirePro-V9800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-09-09' + GPU Base Frequency: 850 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml index ed327111..2cd6f716 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-06-01' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml index d0489ae1..6446b1e9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/FireStream-9370.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-06-23' + GPU Base Frequency: 825 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml index e7a10fb9..7a771d6a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5430.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml index c400a348..287d39f8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml index f88e06db..9f215b8d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml index 2021acaa..08b36ca4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-11-23' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml index 722ab2af..7d3df799 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml index fffb4fdd..d6363357 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-04-22' + GPU Base Frequency: 650 MHz VRAM Frequency: 795 MHz VRAM Bandwidth: 25.44 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml index 49348921..d6baa11a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml index f6b1ae9d..812313e5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml index 2ad3c1f6..aed8da61 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml index e3cd22d7..3b1e6ff9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml index 34a7320e..f05b6d43 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 628 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml index c8bb6154..6f19c770 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml index d8d2c748..fe9d68b5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Mobility-Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-07' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml index ef2046fb..c3b07f83 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6460.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml index 8cb3a2b7..f6d1f6e4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6465.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2015-09-29' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml index a7b94747..c7132cc0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml index 768425f2..7a107b78 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-E6760-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml index f7cff7de..8e6ee3a3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-04' + GPU Base Frequency: 650 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml index f0f8883c..24888fc5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-04' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml index d8c5cda9..acdba418 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-04' + GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml index ff1b7c3e..af08bfe4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-02-13' + GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml index 331d9d1e..6929d97a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5490.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-10-28' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml index 9aaae50b..ed7e78fb 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-03-17' + GPU Base Frequency: 650 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml index 45d9c72c..aa8f15fd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml index af7cdc7c..36354b01 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml index a4dfeaed..66ecf4b3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-09' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml index 95400040..f7f05af7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5630.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-15' + GPU Base Frequency: 650 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml index edcef486..776ac201 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-07-18' + GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml index 7d3f5a4a..4c1a24de 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-01-14' + GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml index 538771a1..dce1b6e8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5690.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-01' + GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml index 4b956a04..3a9778c7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-26' + GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml index 0702f5a6..3701067e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-10-13' + GPU Base Frequency: 700 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml index 27e6e856..5041bb2d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-07-04' + GPU Base Frequency: 850 MHz VRAM Frequency: 1195 MHz VRAM Bandwidth: 76.48 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml index d7cf4dc9..00988a5c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-10-13' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml index b893b3aa..559e0a68 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-10-13' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml index e346e11c..1ec25107 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-02-25' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml index 708da067..f737227a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-09-30' + GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml index c5c2c536..cf5f9403 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-03-11' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml index 34ee1dda..238338a1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-06-30' + GPU Base Frequency: 850 MHz VRAM Frequency: 1195 MHz VRAM Bandwidth: 153.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml index b4a2ce8d..12a90643 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-09-23' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml index c7bc9139..4901948b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: 'Never Released' + GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml index 6af12d2f..4f342a00 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-5970.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-11-18' + GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml index 3f3adb91..85b6e02b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6230.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-02' + GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml index fc1907d7..b4fc07d9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-04-04' + GPU Base Frequency: 277 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml index 1ee94a92..dbd9dbde 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-31' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml index bb5ecede..527b26df 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-07' + GPU Base Frequency: 276 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml index 9bd459ac..9d43f9af 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6290.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-12-04' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml index 065713dd..fbffb41c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6310-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-09' + GPU Base Frequency: 276 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml index 12a13563..6873cb6c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6320-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-08-15' + GPU Base Frequency: 508 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml index 7bce3275..57d2af8b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6330M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-26' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml index 67f4327b..12d6e3df 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml index ef1b5b91..8194d922 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml index c60d0ae6..e4f2abcf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6350M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-26' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml index d0478086..2e32b4dd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-11-01' + GPU Base Frequency: 444 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml index 7b23775e..acb586f1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6370M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-26' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml index d416e014..ed027b6b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6380G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-06-14' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml index 130b1f93..860f9a19 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6390.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-04' + GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml index 3a3adb80..a98ea108 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6410D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-06-20' + GPU Base Frequency: 444 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml index c8f6ffdb..ad4ca9e5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6430M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 480 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml index 8901892d..cfc09740 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-07' + GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml index 76e71cdb..20fa5c40 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-07' + GPU Base Frequency: 625 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml index b7318469..1254ef8b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-07' + GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml index aabc4491..a3141c45 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6450M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml index a963939a..337a813a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6470M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml index 5261165e..8dc756f5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6480G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-06-14' + GPU Base Frequency: 444 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml index da125550..f4e923c5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-04' + GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml index d23a2a87..dff060b8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-02' + GPU Base Frequency: 750 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 25.41 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml index 0ac8e5cf..41fff705 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6490M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml index e8259c4d..c61dce35 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6510.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-14' + GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml index 0d52f1d3..823b93a7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6520G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-12-07' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml index 61af5150..d6be9ca0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-14' + GPU Base Frequency: 650 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml index aced6e95..a8e5be8e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-06-20' + GPU Base Frequency: 444 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml index 82ddf51e..2bd5f3d4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6530M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-26' + GPU Base Frequency: 450 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml index 1880eb99..d669ae17 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-07' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml index 9d9e90c2..7406fce6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-06-20' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml index 697071d0..bc9a9167 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6550M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-11-26' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml index 937f5481..2b3e3af9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml index 9f57075b..cfdb781c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-02-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml index 85d49234..3dbc7558 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2009-10-28' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml index 1ab69fe3..5e0ccf50 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6570M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-25' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml index e227d5e9..6437a279 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-03-20' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml index 78af9421..6e8eaad2 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6610M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml index ca3bcc21..aeb63d9b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6620G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-12-07' + GPU Base Frequency: 444 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml index b2f6edb5..cb845bab 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6625M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml index fa2838f6..08cac1b5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml index 46806976..d8898916 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6630M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml index e889a2c2..f96a6310 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-19' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml index 90df3f90..a11640d7 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6650M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml index 39516e98..020a2a6f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-19' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml index 284334b9..f310c441 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-19' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml index 97238f5f..cb980d35 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6730M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml index e14803fd..e60548ac 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-21' + GPU Base Frequency: 700 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml index bb0f973d..de4ef7d1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-18' + GPU Base Frequency: 598 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 50.82 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml index 22bccebf..2b22fa3a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml index 6647dc3e..f785fb4b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-04-19' + GPU Base Frequency: 700 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml index 7a858c44..ddca686d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-21' + GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml index bfca351b..c765947d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-28' + GPU Base Frequency: 675 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 50.82 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml index 00a87a0c..df7b2297 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6770M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml index e715c8eb..5d63859c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6790.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-04-04' + GPU Base Frequency: 840 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml index a09e684a..c0a45ae3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6830M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 575 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml index c0f36544..3eba3e04 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-08-21' + GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml index bc66ef0b..ba6f5759 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-09-19' + GPU Base Frequency: 800 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml index 241de030..01c7665a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-10-21' + GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml index 129bb359..160db8d3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6850M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml index c227afce..7cc73aab 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-01-14' + GPU Base Frequency: 850 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml index a5806668..e34eef6b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-08' + GPU Base Frequency: 900 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml index a90e364c..9e78e225 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-10-21' + GPU Base Frequency: 900 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml index 13786d3d..ea4a8ab4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6870M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml index f1a01b22..ed7ba395 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 580 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml index b2ea5d1b..280b6541 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-08-25' + GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml index a6ca7f7a..4b568938 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml index f9e87c0f..5b9245a4 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml index 34fda852..68efdbfe 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6970M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml index 49bc1727..f328ddc9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-12' + GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml index a8677e84..dbbe95e5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-6990M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-07-12' + GPU Base Frequency: 715 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml index 1c8d4885..45b9c706 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7290-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-06-06' + GPU Base Frequency: 276 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml index 7b60ce9a..fe924d92 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7310-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-06-06' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml index 397261ae..e4b86598 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7330M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml index 8642b2b0..d779cc8b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7340-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-06-06' + GPU Base Frequency: 523 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml index 69e79384..1f16f253 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml index d44e3472..ac143127 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml index 37737667..e5132869 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7350M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml index fed32dbf..f1011938 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7370M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml index 15604910..d3eedad0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7410M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-01-04' + GPU Base Frequency: 480 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml index d77b528a..9aebf3fa 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7430M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml index edd1e4d6..84f5caea 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml index 03b4ced0..32be3911 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml index 68ca325c..9f181fd1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7450M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml index b4c1b682..3fdda2c9 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml index 405061c2..d7603e16 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7470M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml index 71a95110..e7ebc0bd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7490M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 30.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml index b11eaa6e..f7895115 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-02-01' + GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml index 34ac8520..4ce5b125 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7510M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml index 2058c8fe..9d41a580 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7530M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7550M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml index 49e34f38..42515ac5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-03-20' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml index 63d6eb85..def3dc12 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml index e9ad0332..1e5c6bed 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7570M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml index 86afc0ea..fae58044 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7590M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml index b0f300bc..c0bb1b45 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7610M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml index 44749a38..7be8445d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7630M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml index 94390223..26711920 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml index ac99d558..f9e370d8 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-03-28' + GPU Base Frequency: 485 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml index 742fde8a..1d7e525b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7650M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml index 4d45e19a..627a82ba 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml index 45ecc5e0..a48e2e38 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-05' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml index 78e16e20..460fde93 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-07-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml index 83034898..37c4bfb3 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7670M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-02-17' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml index d0a0ee72..51d2963b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml index 5294c9d6..346f2421 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-01-04' + GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml index 1c2236a3..ad3c4e3f 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-01-07' + GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml index bbf64ba1..ff6ef446 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7690M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-12-25' + GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml index 53c30502..c2ea7aed 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-7720-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-03-15' + GPU Base Frequency: 840 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml index 0a587fc3..99c33635 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8350-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-01-08' + GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml index 00c894ea..d443e335 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-01-08' + GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml index 0552bd00..f223a9b1 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8470-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-01-08' + GPU Base Frequency: 775 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml index cddcf19b..3b45374d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8490-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-07-23' + GPU Base Frequency: 875 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml index f8e82b07..c3a9808c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8510-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-07-23' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml index 451ac968..90ebd2a5 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8550-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-10-25' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml index 19901a0a..68b5849c 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-07-23' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml index 4194bda1..dd8e2382 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-12-21' + GPU Base Frequency: 650 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml index f6c76e5d..e6c66aaf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-12-21' + GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml index 5ded22ca..b4475cbf 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-230.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2014-04-03' + GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml index 929ba43e..8518de0a 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-12-21' + GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml index 40bc7eec..0f3c00cd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-235X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-12-21' + GPU Base Frequency: 875 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml index c7129ab3..f50728a0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2015-05-05' + GPU Base Frequency: 775 MHz VRAM Frequency: 805 MHz VRAM Bandwidth: 12.88 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml index 6c7bd223..9c4d0c7e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Radeon-R5-A220.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2014' + GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml index bb5feab3..4eff0b40 100644 --- a/specs/GPUs-CONSUMER/TeraScale-2/Wii-U-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2012-11-18' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/FirePro-A300.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/FirePro-A320.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml index 454aa1eb..0d884248 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V5900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-24' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml index 55cf95d0..1d697433 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900-SDI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-24' + GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml index 10d3fb91..e55f199b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/FirePro-V7900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-05-24' + GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml index 7811bef1..46dc65fd 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6930.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-12-01' + GPU Base Frequency: 750 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml index 80c98823..eed83d7b 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-12-14' + GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml index 6846ed40..0ee05263 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: 'Never Released' + GPU Base Frequency: 880 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml index bf48c9a1..28be5d9e 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6970.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2010-12-14' + GPU Base Frequency: 880 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml index 7a3295f1..6e9e4cb0 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-6990.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2011-03-08' + GPU Base Frequency: 830 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7400G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7400G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7400G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7420G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7420G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7420G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml index 40115b4a..0d668f2d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7480D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-10-02' + GPU Base Frequency: 720 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7500G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7500G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7500G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7520G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7520G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7520G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml index df806758..fcd06ea6 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7540D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-10-02' + GPU Base Frequency: 760 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml index 3e905bda..61e2fc5d 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-10-02' + GPU Base Frequency: 760 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7560G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7600G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7600G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7600G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7620G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7620G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7620G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7640G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7640G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7640G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml index 096ffefe..1f1597fa 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-10-02' + GPU Base Frequency: 760 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml index 99120c9c..df12eb21 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-7660G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2012-05-15' + GPU Base Frequency: 686 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8310G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8310G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8310G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8350G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8350G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8350G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml index 97f0211e..f451c3bc 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8370D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: 'Jul 2013' + GPU Base Frequency: 760 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8410G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8410G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8410G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8450G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8450G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8450G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml index a63397dd..66afb428 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8470D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-07-29' + GPU Base Frequency: 800 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml index 410dfbe0..4a257a70 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8510G-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-05-23' + GPU Base Frequency: 554 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550D-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550D-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8550G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml index dabe0aef..e57c83ab 100644 --- a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8570D-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.4' OpenCL Support: '1.2' Release Date: '2013-07-10' + GPU Base Frequency: 800 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8610G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8610G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8610G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650D-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650D-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650D-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650G-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale-3/Radeon-HD-8650G-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650G-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml index 90931be7..20fad52b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V3600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml index cf163e41..3a9e2a89 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-08-06' + GPU Base Frequency: 800 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml index e5f45713..8d982e0a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-08-06' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml index 24fd8c9c..8e389e76 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-19' + GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml index 1d3ad7b2..e2077b10 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 688 MHz VRAM Frequency: 868 MHz VRAM Bandwidth: 111.1 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml index da0732fe..1892e406 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireGL-V8650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-08-06' + GPU Base Frequency: 688 MHz VRAM Frequency: 868 MHz VRAM Bandwidth: 111.1 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml index ca9b04a3..e4ac9c97 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml index 9393ca90..c079c283 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireMV-2260.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml index 2dee3095..a42977c8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2260-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml index 471daab9..413ce32b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml index e8e7f611..c9b9349e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-2450-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml index 41714424..aa150123 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-M5725.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml index d3b7a70c..27916b5b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-M7740.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-08-04' + GPU Base Frequency: 650 MHz VRAM Frequency: 846 MHz VRAM Bandwidth: 54.14 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml index c89618fa..dfac48c5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml index 00ec9a7f..1f72e8df 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-RG220A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml index 6d352e77..980a142e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-08-08' + GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 15.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml index ed07417a..f77a2864 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V3750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-11' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml index c55d2945..e4a43257 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-08' + GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml index f8e32db5..9c8a2676 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-27' + GPU Base Frequency: 800 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml index 44f9a4ff..06772dee 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7760.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2012' + GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml index e5a1c14a..a7733b2d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V7770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2012' + GPU Base Frequency: 625 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml index 1bca0c39..855c8c25 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: 'Never Released' + GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml index fd4aa642..50317e5e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-11' + GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml index 82ccbcfc..d2c346d2 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FirePro-V8750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-28' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml index bf6876f5..3ea4547a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9170.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-08' + GPU Base Frequency: 777 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 51.33 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml index 8c3ee313..0095aaa5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-16' + GPU Base Frequency: 625 MHz VRAM Frequency: 993 MHz VRAM Bandwidth: 63.55 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml index 3a8ba718..132901e7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/FireStream-9270.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-13' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml index b41a227c..dd2e3fe5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml index 17582af1..a97c0d89 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml index 4e3b7c23..2ae4a2af 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-FireGL-V5725.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009' + GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml index 0e52f52f..7b9df99b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml index 3323a154..7a6ae3a7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml index 47c9bd3e..d14737d3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml index 8b8b8a60..b78faac4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-07-26' + GPU Base Frequency: 600 MHz VRAM Frequency: 685 MHz VRAM Bandwidth: 21.92 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml index 33a4fc25..42d6a6c4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 680 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 24.00 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml index 56e30773..4ad5abd3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml index 69b78dc4..2745aa54 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-2700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-12-12' + GPU Base Frequency: 650 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml index fb9b520b..bed727f3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-07-25' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml index 7b3c53ad..b9625195 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3430.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-07-25' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml index d33ef697..22ab9243 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml index 5a76c064..350f724c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-07' + GPU Base Frequency: 680 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml index 5b9e028c..00ed60b6 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-07' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml index 56c1e73b..90f718e4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-07' + GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml index b8addd3e..0d98a054 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-04' + GPU Base Frequency: 580 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 48.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml index fbc13cbf..095577cf 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-04' + GPU Base Frequency: 580 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 48.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml index c63aac69..006cc722 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-09-01' + GPU Base Frequency: 660 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml index 7c6d4704..b6be0020 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-04' + GPU Base Frequency: 660 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml index 2c16bad6..0c49129e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2009-11-01' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml index c13c5fcb..6812b3ea 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2009-09-10' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml index c5ea9b6d..93021a3f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2010-05-01' + GPU Base Frequency: 380 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml index 9aeaf814..bf46541d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2010-05-01' + GPU Base Frequency: 590 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml index faa55629..c780d4ec 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4330.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml index b704fe08..a0208c7b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml index d9bb00f8..5860db34 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml index da3556da..94b1b4a8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml index 8c0916cd..111495ab 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml index 1165f6ed..b62a8e3f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml index 27c2d064..2ae2d2fb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-09-16' + GPU Base Frequency: 680 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml index 23ddd2c5..3343a919 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml index 73f0d423..06103517 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml index 76936a05..5be93e96 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-08-28' + GPU Base Frequency: 503 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml index 809aa112..05aa7982 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml index 89b44426..c929de03 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 503 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml index dca19d80..4faf96f9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml index 32b7d26e..eef62d7c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml index ee81817e..097cfc6e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 888 MHz VRAM Bandwidth: 56.83 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml index a6f25959..9ee4a779 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5145.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 720 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml index 992fd347..8e532600 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-5165.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml index 34c91c60..0309e24c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-530v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml index 71e2590b..3d0e68cb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-540v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml index c3f55727..61a477b3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-545v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 680 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 12.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml index a11e3f82..c7a4d199 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-550v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml index af3b9829..ca65a76d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-560v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml index 5ec4c249..8fafa5fa 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Mobility-Radeon-HD-565v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-05' + GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml index d37ea48a..a71f9080 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3000-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2009' + GPU Base Frequency: 350 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml index ee715209..a0e0e3e7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2008-03-04' + GPU Base Frequency: 350 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml index 1807bc5e..6238d68e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-3100-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2008-08-15' + GPU Base Frequency: 350 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml index 99a28272..2156ca3e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml index 855cba82..4d5d3064 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml index 1fa9cb50..6ed8b249 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-E4690-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml index 6ff4e5ac..2715c9d9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2350-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml index 632ecd58..043c80db 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml index 570f23a4..0d936fb0 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml index 20acaa69..c6d59377 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml index 866afd44..18ecfa42 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml index dcc0c592..8ba7ba5d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-02-19' + GPU Base Frequency: 398 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 7.920 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml index da1a0829..de7de5dc 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml index d15078f2..3fbf77e5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml index a66fa751..7eb64e06 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml index 0ac78724..32d9acee 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-02-21' + GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml index db480444..913130d8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-07-26' + GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml index 52c486a7..3f817c7d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-06-28' + GPU Base Frequency: 800 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml index 9cac1384..d780f896 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-GT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-06' + GPU Base Frequency: 601 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml index 97c40896..e875c8c4 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-12-12' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml index ee3d2892..2a9d8c28 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-05-14' + GPU Base Frequency: 743 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 106.0 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml index 69692215..1b55cf14 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 743 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 106.0 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml index d3bedc69..c5ede14d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml index 2fd36716..eed4f661 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-2950-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml index 79a85e27..e72194c1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2008-03-04' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml index a5669816..be5d4110 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2009-11-01' + GPU Base Frequency: 380 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml index 15230969..c9d7f60a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3300-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2008-08-06' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml index 93e0f533..5b3ab43f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-05-07' + GPU Base Frequency: 519 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml index 0bee640d..7a54429e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-23' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml index c4a4317e..ef07f467 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-23' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml index 7a5c7b9f..9afa1add 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-12-10' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml index a1f16bd9..7ed84c4a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-12-10' + GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml index d2c61594..a8d12a17 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-23' + GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 15.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml index fc71c269..34c70520 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-08-04' + GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml index 529979d9..5f58eda1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2010-07-05' + GPU Base Frequency: 796 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 7.920 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml index 1fcac4c4..8f77cc6b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3610.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-09-24' + GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml index 0269fc56..e72506f8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-23' + GPU Base Frequency: 725 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml index 9fbef9d7..85b22019 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-01-20' + GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml index 1fa6947c..c5561d13 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3690.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-03-30' + GPU Base Frequency: 670 MHz VRAM Frequency: 830 MHz VRAM Bandwidth: 26.56 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml index b1c19ba9..cf23ca77 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-10-05' + GPU Base Frequency: 722 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml index b6d5d295..48e5240f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-09-11' + GPU Base Frequency: 796 MHz VRAM Frequency: 693 MHz VRAM Bandwidth: 22.18 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml index 4ae19fc6..85639a83 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-04-01' + GPU Base Frequency: 668 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 26.50 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml index 75415d27..88c60416 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-01-03' + GPU Base Frequency: 668 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 52.99 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml index 3cba32eb..80630333 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-04-04' + GPU Base Frequency: 669 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 52.99 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml index 76342a56..589455a8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850-X3.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 669 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml index 0883ca72..aa738ab7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-19' + GPU Base Frequency: 668 MHz VRAM Frequency: 830 MHz VRAM Bandwidth: 53.12 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml index f30bd9fb..5b5dbf04 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml index b817f07e..da994064 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-06-12' + GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml index 5e45c070..4a661c0d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-01-26' + GPU Base Frequency: 825 MHz VRAM Frequency: 901 MHz VRAM Bandwidth: 57.66 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml index a5ec78bc..1dc8a8d5 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-19' + GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml index 46daaafc..9ae877f0 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4200-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2009-08-01' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml index 2b13a391..497d7c61 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2010-03-01' + GPU Base Frequency: 560 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml index 8fcb5890..47b4f9a6 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-02-25' + GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml index bdcdca5d..211823d9 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4290-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2010-03-01' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml index 905181de..76544b9d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml index b18b0286..f0e979cb 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml index 9e39c8a4..157ea9e1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml index 499a3973..515f4dce 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml index c345da4f..5bbb9735 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-11-18' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml index d57e3556..5fcac9ea 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4520.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-12-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml index 85f6bf98..38a14b63 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 655 MHz VRAM Bandwidth: 10.48 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml index f9122559..51b78b7d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-11-22' + GPU Base Frequency: 796 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml index 86df7134..7591175b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-25' + GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml index 3cd205f4..0e59e814 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4580.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2011-11-20' + GPU Base Frequency: 796 MHz VRAM Frequency: 693 MHz VRAM Bandwidth: 22.18 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml index f1776b41..2b5b178c 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-10' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml index de7bd017..846d2976 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-10' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml index 258889b1..1adfaec7 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-07-17' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml index b41f74ae..7e65fb7b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-10' + GPU Base Frequency: 750 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml index 69739587..bdd36ac8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-10' + GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml index 55f6fd16..3dcce9f6 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-11' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml index 5b1a6171..490ac137 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4710.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-10' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml index 288e340d..f8a80321 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4720.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-12-11' + GPU Base Frequency: 600 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml index 44323cd5..092f0421 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3 (full)' OpenCL Support: 'N/A' Release Date: '2008-12-26' + GPU Base Frequency: 669 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 25.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml index 0c4d3c11..558cf976 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-08' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml index ea7d9675..400a124b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-09-09' + GPU Base Frequency: 730 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml index 3a35aec1..797549be 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-28' + GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml index 1828b0e4..5f7c2240 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4810.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-05-28' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml index bcdc6f24..a15236a3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-10-21' + GPU Base Frequency: 575 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml index b1c1ff6c..a02ae32f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-07' + GPU Base Frequency: 625 MHz VRAM Frequency: 995 MHz VRAM Bandwidth: 63.68 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml index 45058e43..0e5f1369 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-25' + GPU Base Frequency: 625 MHz VRAM Frequency: 993 MHz VRAM Bandwidth: 63.55 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml index f7039c21..e72edd7b 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4855.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-03' + GPU Base Frequency: 575 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml index f8600d1c..746db0c1 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-09-09' + GPU Base Frequency: 700 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml index 5b6171f1..bd70553f 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-06' + GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml index 707e6fc4..a90fb3e8 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-12' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml index 2a90257d..c5b907d3 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-25' + GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml similarity index 96% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml index 30699fe7..f9ee576d 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-HD-4890.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-02' + GPU Base Frequency: 850 MHz VRAM Frequency: 975 MHz VRAM Bandwidth: 124.8 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml index 22c54ea3..dd9f1616 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Radeon-Xpress-2100-IGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.0' Release Date: '2008-03-04' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml index 01e54e67..26614f1e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-E-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2013-06-10' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml index 706ee99b..d3df629a 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2008-08-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml index f5b5287d..17f4e6ec 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-80nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2007-10-27' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml index 105e3f4c..7492579e 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2005-11-22' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml rename to specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml index 7dc58243..a0ab4618 100644 --- a/specs/GPUs-CONSUMER/TeraScale/Xbox-360-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2010-06-19' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/IBM.yaml b/specs/GPUs-CONSUMER/ATI/IBM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/IBM.yaml rename to specs/GPUs-CONSUMER/ATI/IBM.yaml diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml similarity index 90% rename from specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml rename to specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml index 5ba618ca..7c13688a 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL1.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-03-01' + GPU Base Frequency: 45 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: IBM TDP: unknown diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml rename to specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml index 12ad4383..ebc7e9cb 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL2.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 120 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 7.680 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: GT1000 TDP: unknown diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml similarity index 91% rename from specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml rename to specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml index e6009378..e295caac 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL3.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 120 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: GT1000 TDP: unknown diff --git a/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml similarity index 91% rename from specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml rename to specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml index ce31001c..cebe04ef 100644 --- a/specs/GPUs-CONSUMER/IBM/Fire-GL4.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-14' + GPU Base Frequency: 150 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: GT1000 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300.yaml b/specs/GPUs-CONSUMER/ATI/R300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/R300.yaml rename to specs/GPUs-CONSUMER/ATI/R300.yaml diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml index 3a519f34..e61180fa 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-2006-AGP-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-04-29' + GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 6.272 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 LE diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml index b1055051..59da8580 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-07-01' + GPU Base Frequency: 277 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml index 947a32c9..982fb332 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-04-01' + GPU Base Frequency: 398 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml index c8eb80a3..91ecbd29 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-02-06' + GPU Base Frequency: 527 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV360 GPU Variant: RV360 diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml index 6bf17723..109ae60d 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-12-03' + GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 6.272 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml index be642a27..cb4d45e8 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-01-22' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 9700 PRO diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml index f3167378..d28f36f2 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-06-16' + GPU Base Frequency: 378 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R350 GPU Variant: R350 diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml index 6f4c6d74..fa31bad9 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-09-10' + GPU Base Frequency: 378 MHz VRAM Frequency: 297 MHz VRAM Bandwidth: 9.504 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R350 GPU Variant: R350 SE diff --git a/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml index 6b437e40..c14b9e19 100644 --- a/specs/GPUs-CONSUMER/R300/All-In-Wonder-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-07-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 AIW diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml index a4fcf03a..9eac56d5 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9500-Z1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-10-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml index 1d061362..921e346b 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 398 MHz VRAM Frequency: 297 MHz VRAM Bandwidth: 9.504 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml index b77338d0..3cc131b8 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9600-T2-64S.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 324 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml index 24b83d3d..5a7fa936 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-07-23' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml index 605bc582..928bd76c 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-07-23' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml index cb2c2a4d..05a16aaf 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9700-X1-256p.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-07-23' + GPU Base Frequency: 324 MHz VRAM Frequency: 276 MHz VRAM Bandwidth: 17.66 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml index 3b71136b..de90d187 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 380 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml index 0c55692d..6be73446 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-9800-X2-256T.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 412 MHz VRAM Frequency: 344 MHz VRAM Bandwidth: 22.02 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml index 2d6ea73b..52101c3c 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 391 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 3.136 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 GL diff --git a/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml index 01b6ce76..c8a577e4 100644 --- a/specs/GPUs-CONSUMER/R300/FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RV380 GPU Variant: RV380 GL diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireMV-2200.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml index d2b6bf12..3c709453 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006' + GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 3.136 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 TDP: 15 W diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml index 79aa00e9..5fc86d2a 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RV380 TDP: 20 W diff --git a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml index 718b90d4..1cc21dd9 100644 --- a/specs/GPUs-CONSUMER/R300/FireMV-2400-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008' + GPU Base Frequency: 250 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RV380 TDP: 20 W diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml index f7b2fd14..7263d8e2 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-11-01' + GPU Base Frequency: 320 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 GPU Variant: M10 GL diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml index 78e153b6..6cdebaf9 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-T2e.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-08-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M11 GPU Variant: M11 GL diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml index 0a79dad7..ca52f887 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: M22 GPU Variant: M22 GL diff --git a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml index 7861b659..f936496e 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M24 GPU Variant: M24 GL diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml index 5e896f57..b3c6c95f 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 230 MHz VRAM Frequency: 190 MHz VRAM Bandwidth: 3.040 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml index 319b5bbb..080af396 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 3.888 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M12 GPU Variant: M12 9550 diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml index 175e3dc8..d23d8726 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO-Turbo.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-02-13' + GPU Base Frequency: 337 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 7.776 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml index f0a1a8c1..96471789 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 333 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml index 3d495a33..fca7bb0c 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml index 8c36db40..2d22be0a 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml index fc761f2c..24115310 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M11 GPU Variant: M11 P diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml index f1e57f9d..cfb0898f 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RS480 GPU Variant: RS480M X300 IGP diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml index c5dc93ea..990f117e 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-11-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: M22 GPU Variant: M22 X300 diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml index da37eea9..9d57449a 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M24 GPU Variant: M24C diff --git a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml index dd62270f..c452a3d9 100644 --- a/specs/GPUs-CONSUMER/R300/Mobility-Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: M24 GPU Variant: M24 X600 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml index 01f3b25a..94ba787c 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9500-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-10-01' + GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 9500 PRO diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9500.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml index f53e71bc..3d59991c 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 17.28 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml index af2aa525..b87d9d01 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml index 6f747f3c..324f206b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-05-04' + GPU Base Frequency: 425 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 XT diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9550.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml index a3a5092b..94dbbedc 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 LX diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml index 9996cb7b..6ee2bba9 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 PRO diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml index 280395ae..58fc4365 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 SE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml index 24263cf0..dd2e30ef 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-TX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-07' + GPU Base Frequency: 297 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 9600 TX diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml index 49711cc2..94b2f130 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV360 GPU Variant: RV360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9600.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml index 126a6328..54b4404a 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 324 MHz VRAM Frequency: 189 MHz VRAM Bandwidth: 6.048 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV350 GPU Variant: RV350 LE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml index 6ef420ff..0bd5ec25 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-08-19' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml index 336bbdb8..ff67f58b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-08-19' + GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 9700 PRO diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9700.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml index b707a271..24702a90 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2002-08-19' + GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 17.28 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R300 GPU Variant: R300 9700 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml index 173589a4..7acdefe4 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: 'Unknown' + GPU Base Frequency: 380 MHz VRAM Frequency: 340 MHz VRAM Bandwidth: 21.76 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R350 GPU Variant: R350 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml index d24d90b1..4533648f 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-03-04' + GPU Base Frequency: 378 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml index 02021c1b..3c971d2f 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 380 MHz VRAM Frequency: 340 MHz VRAM Bandwidth: 21.76 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml index 312b664e..9cdaa44e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 331 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 9.280 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R350 GPU Variant: R350 SE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml index 5127794b..b3c7c19a 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-03-14' + GPU Base Frequency: 412 MHz VRAM Frequency: 365 MHz VRAM Bandwidth: 23.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml index d7243a81..958fd283 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 412 MHz VRAM Frequency: 365 MHz VRAM Bandwidth: 23.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml index e6ac098b..cc7bc37d 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800-XXL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-10-01' + GPU Base Frequency: 390 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 218 mm² GPU: R360 GPU Variant: R360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-9800.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml index 219aa6ff..b67e65da 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 18.56 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 215 mm² GPU: R350 GPU Variant: R350 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml index 705e0b58..70cf15d5 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X1050-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-11-25' + GPU Base Frequency: 250 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 76 mm² GPU: RV360 GPU Variant: RV360 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml index 2a94344a..69b38ea4 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X1050.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006-12-07' + GPU Base Frequency: 400 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 X1050 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml index 686b8d3b..f13e2df3 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 LE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml index f6acb6bd..a53dac8b 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006-10-25' + GPU Base Frequency: 325 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 TDP: 30 W diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml index 17bf82da..85893b91 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 SE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X300.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml index e9267b49..cf32d7c0 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 375 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 X300 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml index 12a7d63e..f829d160 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X550-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-07-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 PRO diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X550.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml index 5bcd1aca..e9a76aa1 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-07-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 LE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml index 136f8b9e..4ff7c0fd 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RV380 GPU Variant: RV380 PRO diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml index dd804197..fa8dae07 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 GPU Variant: RV370 X600 SE diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml index 923abf03..f3c25e93 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 370 MHz VRAM Bandwidth: 11.84 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RV380 GPU Variant: RV380 XT diff --git a/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-X600.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml index 23342ad6..ec02246e 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RV370 TDP: 36 W diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml index 7d13d9db..713a8a77 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress--200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS400 GPU Variant: RS400M 200M diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml index 2e86eb6e..5a5a2031 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-10-17' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RC410 GPU Variant: RC410 1100 IGP diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml index 2610b428..8ffbd52a 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1100-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS482 GPU Variant: RS482M 1100 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml index 1e5725e1..32dd7c12 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-10-17' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS482 GPU Variant: RS482 1150 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml index 186cf1f3..fbff009f 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-1150-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006-05-23' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS485 GPU Variant: RS485M 1150 diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml index 16238422..56699f45 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-11-08' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RC410 GPU Variant: RC410 200 IGP diff --git a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml index 4ada6938..7ee6da71 100644 --- a/specs/GPUs-CONSUMER/R300/Radeon-Xpress-200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 74 mm² GPU: RS480 GPU Variant: RS480M 200M IGP diff --git a/specs/GPUs-CONSUMER/R400.yaml b/specs/GPUs-CONSUMER/ATI/R400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/R400.yaml rename to specs/GPUs-CONSUMER/ATI/R400.yaml diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml index 42b1bbda..abd7233f 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-09-21' + GPU Base Frequency: 398 MHz VRAM Frequency: 492 MHz VRAM Bandwidth: 15.74 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 AIW diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml index 52197ed3..0f40b418 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-04-27' + GPU Base Frequency: 425 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 LE diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml rename to specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml index fa0577f4..d25323ff 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-04-27' + GPU Base Frequency: 425 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 LE diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml rename to specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml index eba9ee8d..ed4a14fd 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-01-21' + GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 AIW diff --git a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml index 9a8392e3..27fe3e22 100644 --- a/specs/GPUs-CONSUMER/R400/All-In-Wonder-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-09-21' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 XT diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml rename to specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml index 9dcaf9c2..eb49732c 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 430 MHz VRAM Bandwidth: 13.76 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 GL diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml rename to specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml index dd9a3a76..18a2292c 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V5100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-05-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 GL-SE diff --git a/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml rename to specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml index acd25d8d..b4227556 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-V7100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 493 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 30.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 GL diff --git a/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml rename to specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml index df8bc2f7..7504bae7 100644 --- a/specs/GPUs-CONSUMER/R400/FireGL-X3-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-08-03' + GPU Base Frequency: 491 MHz VRAM Frequency: 454 MHz VRAM Bandwidth: 29.06 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 GL diff --git a/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml index 1be3b740..0a64794d 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-02-03' + GPU Base Frequency: 350 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 13.60 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: M26 GPU Variant: M26 GL diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml index 3aa54859..decfaf87 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-07-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 281 mm² GPU: M18 GPU Variant: M18 9800 diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml index 5ea3660d..80762bfe 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-03-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 330 MHz VRAM Bandwidth: 10.56 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: M26 GPU Variant: M26-CSP128 diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml similarity index 90% rename from specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml index 7a3785c4..5b46dd22 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-03-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: M26 GPU Variant: M26 X700 diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml index 97d11cab..d91fcdf4 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-06-01' + GPU Base Frequency: 480 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 289 mm² GPU: M28 GPU Variant: M28 X800 XT diff --git a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml index dc190898..f65e4ff4 100644 --- a/specs/GPUs-CONSUMER/R400/Mobility-Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-11-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 289 mm² GPU: M28 GPU Variant: M28 X800 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml index 8ebc3856..2e1e4978 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-2100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008-03-04' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS740 GPU Variant: RS740 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml index 64f4dbd8..8a0ea321 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-01-24' + GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml index 953bf6ea..0b9e56b3 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X550-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-01-24' + GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml index 1b4f6f96..4dadbd15 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 TDP: 44 W diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml index 2e6a1ef1..dbd200cd 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-12-21' + GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 LE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml index 3767d0d8..3dbabaa6 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 472 MHz VRAM Bandwidth: 15.10 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 TDP: 33 W diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml index 4b9e94af..dbda2014 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 430 MHz VRAM Bandwidth: 13.76 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml index df076444..1b53474d 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-04-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 SE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml index 189f0a2c..fb5d75a1 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 16.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X700.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml index c3b62a35..fa0b1792 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 GPU Variant: RV410 LE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml index d5e8063b..d08c54e6 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X740-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2005-03-07' + GPU Base Frequency: 425 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 156 mm² GPU: RV410 TDP: unknown diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml index 4d894d62..21db3b17 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-28' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 XL diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml index 36c93fb9..6fafc9d1 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-11-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 493 MHz VRAM Bandwidth: 31.55 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R481 GPU Variant: R481 SE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml index 05715c59..6dfdfb8d 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-11-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 SE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml index cc4ec838..6782707b 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R481 GPU Variant: R481 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml index b2ce3106..5df63253 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-11-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 GTO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml index 1a59215f..11d09591 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-09-15' + GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 XL diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml index ef9aa23a..1ef46e57 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-05-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml index b5c88eec..187e2e94 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-05-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml index ae0c2cdf..4348b3c2 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 LE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml index 9fed0d2c..ca8ecdc5 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-10-04' + GPU Base Frequency: 425 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 SE diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml index 3108d25b..45b5ce93 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 398 MHz VRAM Bandwidth: 25.47 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml index 5e01e299..a6819cb2 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-05-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 XL diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml index 0c4c02a4..46fe692d 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 XL diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml index a88a0db7..e2d47e76 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-03-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml index 892511cc..c4cb6b7d 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml index fdabea2c..72307f3c 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-05-01' + GPU Base Frequency: 520 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 35.84 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 281 mm² GPU: R420 GPU Variant: R420 XTP diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml index 21dac162..8d9be1e8 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-03-01' + GPU Base Frequency: 520 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 35.84 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml index cc615c52..c850a146 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 289 mm² GPU: R423 GPU Variant: R423 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X800.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml index bceade7a..47b6bfce 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 240 mm² GPU: R430 GPU Variant: R430 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml index b5d14ebf..106a3015 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-10' + GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml index 55f8b1a6..ea8aea6d 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-09-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R481 GPU Variant: R481 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml index f9ec9c13..3d354503 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 507 MHz VRAM Frequency: 520 MHz VRAM Bandwidth: 33.28 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 PRO diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml index 1fea21d4..d6b71dd4 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-02-28' + GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R481 GPU Variant: R481 XT diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml index e58559c6..a03611d0 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-02-28' + GPU Base Frequency: 540 MHz VRAM Frequency: 590 MHz VRAM Bandwidth: 37.76 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R481 GPU Variant: R481 XTP diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml index 2b32478f..80148199 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-21' + GPU Base Frequency: 540 MHz VRAM Frequency: 590 MHz VRAM Bandwidth: 37.76 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 XT X850 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml index 2bb0208b..2bf81074 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-X850-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2004-12-01' + GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 297 mm² GPU: R480 GPU Variant: R480 XT X850 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml index d1db5a2c..fbda0349 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-02-28' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS690 GPU Variant: RS690C diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml index 207958e0..55b7c3ef 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1200-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-02-28' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS690 GPU Variant: RS690M diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml index db43335c..9a36e517 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-02-28' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS690 GPU Variant: RS690 diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml index d50a0fd1..613103a7 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1250-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-02-28' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS690 GPU Variant: RS690M diff --git a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml index f7707978..fd9226ab 100644 --- a/specs/GPUs-CONSUMER/R400/Radeon-Xpress-1270-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-02-28' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS690 GPU Variant: RS690M diff --git a/specs/GPUs-CONSUMER/Rage-2.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-2.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-2.yaml diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml index 0d3aa67b..ee5c2fa6 100644 --- a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1997-04-01' + GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 39 mm² GPU: Rage IIC GPU Variant: Rage IIC AGP diff --git a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml index f5948ee0..fd268c98 100644 --- a/specs/GPUs-CONSUMER/Rage-2/3D-Rage-IIC-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1997-04-01' + GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 2 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 39 mm² GPU: Rage IIC GPU Variant: Rage IIC PCI diff --git a/specs/GPUs-CONSUMER/Rage-3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-3.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3.yaml diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml index 9913844d..38c670fd 100644 --- a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1997-03-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s VRAM Capacity: 2 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 47 mm² GPU: Rage PRO GPU Variant: 3D Rage PRO AGP diff --git a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml index 68686b92..6d77c6ae 100644 --- a/specs/GPUs-CONSUMER/Rage-3/3D-Rage-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1997-03-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 47 mm² GPU: Rage PRO GPU Variant: 3D Rage PRO PCI diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml index 30d3abd4..5457335b 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1997-03-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 67 mm² GPU: Rage PRO Turbo GPU Variant: Rage PRO Turbo A diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml index 75b8947d..25dca676 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-PRO-Turbo-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1997-03-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 67 mm² GPU: Rage PRO Turbo GPU Variant: Rage PRO Turbo P diff --git a/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml index 18d88d23..b6b7a269 100644 --- a/specs/GPUs-CONSUMER/Rage-3/Rage-XL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1998-08-01' + GPU Base Frequency: 125 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 47 mm² GPU: Rage XL GPU Variant: Rage XL diff --git a/specs/GPUs-CONSUMER/Rage-4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-4.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4.yaml diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml index 70211e3d..ea1f63f0 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-06-16' + GPU Base Frequency: 90 MHz VRAM Frequency: 90 MHz VRAM Bandwidth: 1.440 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: 215R4GASA21 diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml index dd923498..e50dbde3 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-06-16' + GPU Base Frequency: 134 MHz VRAM Frequency: 134 MHz VRAM Bandwidth: 2.144 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml index 5b9a9152..9f1a677c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-06-16' + GPU Base Frequency: 120 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 1.920 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml index 61c4311b..66bc36ba 100644 --- a/specs/GPUs-CONSUMER/Rage-4/All-In-Wonder-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-06-16' + GPU Base Frequency: 90 MHz VRAM Frequency: 90 MHz VRAM Bandwidth: 1.440 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml index c80f2069..2faf301c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-08-27' + GPU Base Frequency: 103 MHz VRAM Frequency: 103 MHz VRAM Bandwidth: 1.648 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: Rage 128 GL diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml index 2888fc2c..56e0b409 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-08-27' + GPU Base Frequency: 80 MHz VRAM Frequency: 60 MHz VRAM Bandwidth: 960.0 MB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: Rage 128 GL diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml index e8ec0e26..dd40259b 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-08-01' + GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 2.080 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: Rage 128 GL diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml index d7d95f81..86b6040e 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-08-01' + GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 1.040 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml index d669e613..bffaa3d4 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-08-01' + GPU Base Frequency: 118 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml index 545c5bf4..908d3981 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-08-01' + GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 2.080 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml index b039663c..633e7310 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-08-01' + GPU Base Frequency: 80 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 2.000 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: Rage 128 VR diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml index 88fd0995..3c3e41fc 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-128-VR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-08-01' + GPU Base Frequency: 80 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 2.000 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 89 mm² GPU: Rage 128 GPU Variant: Rage 128 VR diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml index 05ab6f1d..1c24fa1c 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-01' + GPU Base Frequency: 125 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml index d84ea750..0ac2b98d 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Fury.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-08-01' + GPU Base Frequency: 80 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 1.920 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 98 mm² GPU: Rage 128 PRO GPU Variant: Rage 128 PRO diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml index 45b17aa3..440ee856 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-2X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-01' + GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 70 mm² GPU: M3 GPU Variant: Mobility-128M diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml index c2a80d07..5e2bc322 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-128-AGP-4X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-01' + GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 1.680 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 70 mm² GPU: M4 GPU Variant: Mobility-128M diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml index f4207a6f..fa5b8d59 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-CL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-02-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 70 mm² GPU: Rage Mobility GPU Variant: Rage Mobility-CL diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml index 7eafb552..347f65d9 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-02-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 70 mm² GPU: Rage Mobility GPU Variant: Rage Mobility-M diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml index c8a25892..51c2d2fb 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-02-01' + GPU Base Frequency: 83 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 1.000 GB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 70 mm² GPU: M1 GPU Variant: Mobility-M1 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml index 35056044..a6dcd626 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M3.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-01' + GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 70 mm² GPU: M3 GPU Variant: Mobility-M3 diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml index a07da485..20cb83eb 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-M4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-01' + GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 70 mm² GPU: M4 GPU Variant: Mobility M4-M diff --git a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml index 1bd0886c..60ecd112 100644 --- a/specs/GPUs-CONSUMER/Rage-4/Rage-Mobility-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-02-01' + GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 70 mm² GPU: Rage Mobility GPU Variant: Rage Mobility-P diff --git a/specs/GPUs-CONSUMER/Rage-5.yaml b/specs/GPUs-CONSUMER/ATI/Rage-5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-5.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-5.yaml diff --git a/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml index 6002d717..10820513 100644 --- a/specs/GPUs-CONSUMER/Rage-5/GameCube-GPU.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2000-08-24' + GPU Base Frequency: 162 MHz VRAM Frequency: 162 MHz VRAM Bandwidth: 1.296 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 120 mm² GPU: Flipper TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Rage-6.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-6.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6.yaml diff --git a/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml index acc5ef0d..b206d1ec 100644 --- a/specs/GPUs-CONSUMER/Rage-6/All-In-Wonder-Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-07-31' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 111 mm² GPU: R100 GPU Variant: R100 diff --git a/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/ES1000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml index c1af3a67..598df07a 100644 --- a/specs/GPUs-CONSUMER/Rage-6/ES1000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.0' OpenCL Support: 'N/A' Release Date: '2007-10-18' + GPU Base Frequency: 200 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 80 mm² GPU: ES1000 GPU Variant: ES1000 diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml index fc84870f..7e686a24 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RS250 GPU Variant: 7000 IGP diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml index 88db38ed..97ef9b0a 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2004' + GPU Base Frequency: 144 MHz VRAM Frequency: 139 MHz VRAM Bandwidth: 1.112 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 115 mm² GPU: M6 GPU Variant: M6 7000 diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml index f7e7bbd2..69b507c5 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 115 mm² GPU: M6 GPU Variant: M6-P diff --git a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml index e72392ea..7435ab1a 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Mobility-Radeon.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003' + GPU Base Frequency: 144 MHz VRAM Frequency: 144 MHz VRAM Bandwidth: 2.304 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 115 mm² GPU: M6 GPU Variant: M6-C16h diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml index 760b838e..ebce3504 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2004-03-14' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 80 mm² GPU: RV100 TDP: 23 W diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml index 159d8fe3..79f25b21 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2004-03-14' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 80 mm² GPU: RV100 TDP: 23 W diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml index 294ff795..617deacf 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-02-19' + GPU Base Frequency: 133 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 2.128 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 80 mm² GPU: RV100 GPU Variant: RV100 VE diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml index db1f6b52..15426cbf 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-02-19' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 80 mm² GPU: RV100 GPU Variant: RV100 7000 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml index 265c5c37..a376151b 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200-64-MB.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-04-01' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 111 mm² GPU: R100 GPU Variant: R100 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml index fac990af..c35055e3 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 143 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 111 mm² GPU: R100 GPU Variant: R100 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml index cc5387a7..fb57c491 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 148 MHz VRAM Frequency: 148 MHz VRAM Bandwidth: 4.736 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6WASA12 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml index b0536d99..9830d838 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-OEM.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml index 7fab7036..e6885de6 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 187 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml index 15da4d77..2bb8ecc3 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR-VIVO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 5.856 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml index 32b1b98d..3d9486c1 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-DDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-04-01' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml index b145d484..7522b2ec 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 160 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS100 GPU Variant: IGP 320 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml index 5594e8d6..9ec116a6 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-320M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 160 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS100 GPU Variant: IGP 320M diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml index 55de98e4..8e66b0ca 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-330M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-05-01' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS200 GPU Variant: IGP 330M diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml index 6f01e632..52797286 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS200 GPU Variant: IGP 340 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml index 07319499..2a217378 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-340M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS200 GPU Variant: IGP 340M diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml index 38d8e37e..3b914988 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-345M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS200 GPU Variant: IGP 345M diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml index a68dfeae..7d0249f1 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-IGP-350M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-10-05' + GPU Base Frequency: 183 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 73 mm² GPU: RS200 GPU Variant: IGP 350M diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml index b06ad033..b9cec563 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-05-01' + GPU Base Frequency: 148 MHz VRAM Frequency: 148 MHz VRAM Bandwidth: 4.736 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6WASA12 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml index 59986162..55e51c34 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml index 1aa9c04f..46edd989 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-SDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2000-06-01' + GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: 215R6EBGA13 diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml index afab59f2..553013d0 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-02-19' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: Radeon VE diff --git a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml index c516e911..1a47ea16 100644 --- a/specs/GPUs-CONSUMER/Rage-6/Radeon-VE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-02-19' + GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 3 + Shader Processor Count: 0 Die Size: 115 mm² GPU: Rage 6 GPU Variant: Radeon VE diff --git a/specs/GPUs-CONSUMER/Rage-7.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rage-7.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7.yaml diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml index 5e15576d..81b8e995 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-03-31' + GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RV250 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml index 0bf07da6..894c46b2 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-01-26' + GPU Base Frequency: 250 MHz VRAM Frequency: 164 MHz VRAM Bandwidth: 2.624 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 9200 SE diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml index 2697cf48..1eef79d7 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-01-26' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 9200 diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml index 58752270..c5d71980 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002-04-16' + GPU Base Frequency: 260 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 83 mm² GPU: RV200 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml index ab24056b..1c1df5e3 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002-04-16' + GPU Base Frequency: 260 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 83 mm² GPU: RV200 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml index 5c49cc6c..46521e2d 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-11-14' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml index cbb67d6e..3db2dcc9 100644 --- a/specs/GPUs-CONSUMER/Rage-7/All-In-Wonder-Radeon-8500DV.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-30' + GPU Base Frequency: 230 MHz VRAM Frequency: 190 MHz VRAM Bandwidth: 6.080 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml index deb112f4..bcdddb95 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireGL-8700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 GPU Variant: R200 GL diff --git a/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml index 196e376e..5c8a7cd9 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireGL-8800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 300 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 9.280 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 GPU Variant: R200 GL 8800 diff --git a/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml index edbc5707..007bf7ef 100644 --- a/specs/GPUs-CONSUMER/Rage-7/FireMV-2200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2006' + GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 GL diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml index 26952337..ed9682ad 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-7800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-09-29' + GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 68 mm² GPU: M7 GPU Variant: M7-GL diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml index 9e07fe4b..46a22007 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-FireGL-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: M9 GPU Variant: M9-CSP64GL diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml index 67135ef2..a0ea4b99 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-12-01' + GPU Base Frequency: 230 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 68 mm² GPU: M7 GPU Variant: M7-P diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml index 517dbbaf..a7fb3071 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-7500C.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-12-01' + GPU Base Frequency: 230 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 68 mm² GPU: M7 GPU Variant: M7-16CL diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml index 3b4f15af..ea609065 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-05-01' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RC300 GPU Variant: RC300MB diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml index b88ee15b..7368653a 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-09-01' + GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: M9 GPU Variant: M9 9000 diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml index 03b6daec..825fb008 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-06-23' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RS300 GPU Variant: 9100 IGP diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml index 2c4c687a..5fed5086 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-06-23' + GPU Base Frequency: 300 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 92 mm² GPU: RS350 GPU Variant: 9100 PRO IGP diff --git a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml index 8144d076..e4306dec 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Mobility-Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: M9 GPU Variant: M9 9200 diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml index 863865ca..3696cde3 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 175 MHz VRAM Bandwidth: 5.600 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 83 mm² GPU: RV200 GPU Variant: RV200 7500 LE diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml index 5beb24a3..81818c87 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002-04-16' + GPU Base Frequency: 260 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 83 mm² GPU: RV200 TDP: 23 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml index 33bb55c6..bafdf8d6 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 290 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 6 + Shader Processor Count: 0 Die Size: 83 mm² GPU: RV200 GPU Variant: RV200 7500 diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml index d5e9d025..f09a577c 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002-02-04' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 GPU Variant: 215R7AAGA13H diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml index 4f0969d7..a9815e50 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 TDP: 92 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml index c0d7f4c8..a53f2b48 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 68 mm² GPU: R250 TDP: 25 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml index 4fdd984f..f9709910 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 GPU Variant: 215R7AAGA13H diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml index 0cadc64d..5d6d5020 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-07-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RV250 GPU Variant: RV250 LE diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml index 9f0f5120..7a944c49 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-03-14' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RV250 GPU Variant: RV250 9000 PRO diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml index 74f648b1..46de99f6 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-07-18' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RV250 GPU Variant: RV250 9000 PRO diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml index 388d1ce1..4c84d936 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2002-07-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 97 mm² GPU: RV250 GPU Variant: RV250 9000 diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml index b0717a4e..e0273977 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-04-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml index 34b87f17..8577ec05 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9100.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-04-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 120 mm² GPU: R200 TDP: 28 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml index 71759202..e7e61993 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-05-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 TDP: 28 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml index b9e539bd..199ff5bc 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-05-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 TDP: 28 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml index c4ab7a69..6a1b5254 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-05-01' + GPU Base Frequency: 240 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 TDP: 28 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml index 390e6664..1ac1771e 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 TDP: 28 W diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml index 79c4d89b..3bc5faa6 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 9200 SE diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml index ea529aa2..323d5256 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-05-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 9200 diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml index 5c5dd4b7..4bbcc8d4 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-03-01' + GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml rename to specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml index fb834bf9..953f8515 100644 --- a/specs/GPUs-CONSUMER/Rage-7/Radeon-9250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-03-01' + GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 98 mm² GPU: RV280 GPU Variant: RV280 LX diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml index 03fce271..a9b7132e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-12-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml index 3939e0d2..e6edffbf 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-27' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 AIW diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml index 624d7965..5f3dda8e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-01-13' + GPU Base Frequency: 500 MHz VRAM Frequency: 477 MHz VRAM Bandwidth: 30.53 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 AIW diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml index df2c525d..8d195004 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml index 5ab15e8d..e8629058 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml index d96289d4..cb05f0e3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V3400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml index 5589823a..8c6931b5 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml index ead01744..e63adece 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml index 5ec68364..941d1a5d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 594 MHz VRAM Frequency: 648 MHz VRAM Bandwidth: 41.47 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml index a13b2007..48a54aba 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireGL-V7350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s VRAM Capacity: 1024 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml index a70731fa..c83bdeb4 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 TDP: 32 W diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml index 5c76782a..1e3a8bd9 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/FireMV-2250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 TDP: 32 W diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml index e0b22e30..ffcee066 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 15.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M56 GPU Variant: M56 GL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml index 4c666adb..94a5c9df 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M66 GPU Variant: M66-P diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml index e9c1892d..b5783926 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-03-01' + GPU Base Frequency: 480 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M71 GPU Variant: M71-S diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml index 617049d9..435159ba 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-19' + GPU Base Frequency: 392 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M52 GPU Variant: M52-S diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml index c8eaf6c7..8a1c007b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-18' + GPU Base Frequency: 371 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 5.184 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M62 GPU Variant: M62-CSP64 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml index ef76bce3..c2242efd 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-19' + GPU Base Frequency: 445 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M54 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml index dbc0a0d9..95ce6907 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-18' + GPU Base Frequency: 550 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M64 GPU Variant: M64-CSP128 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml index 17ffe9ee..f48e84bd 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-11-08' + GPU Base Frequency: 398 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M56 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml index ff0a1156..af3f7f52 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 470 MHz VRAM Bandwidth: 15.04 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M56 GPU Variant: M56 X1600 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml index 25120b39..35062822 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M66 GPU Variant: M66-P diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml index e59344a1..6c08814c 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-01' + GPU Base Frequency: 540 MHz VRAM Frequency: 675 MHz VRAM Bandwidth: 43.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: M58 GPU Variant: M58 P diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml index a1dd384b..e98052a1 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 32.26 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 288 mm² GPU: M58 GPU Variant: M58 P diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml index 78361498..d7171b15 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-01-11' + GPU Base Frequency: 400 MHz VRAM Frequency: 470 MHz VRAM Bandwidth: 30.08 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: M68 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml index 2bfeaf48..c7d9e7ef 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-03-01' + GPU Base Frequency: 479 MHz VRAM Frequency: 378 MHz VRAM Bandwidth: 3.024 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M71 GPU Variant: M71-S diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml index b6feadf8..c6b88cfa 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-03-01' + GPU Base Frequency: 479 MHz VRAM Frequency: 392 MHz VRAM Bandwidth: 6.272 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: M64 GPU Variant: M64-M diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml index 60aec73b..7b13b44e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-06-01' + GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: M66 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml index cfba780c..3aaffb6d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-12-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml index 69f76ad7..1e8ec8c3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-CE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-27' + GPU Base Frequency: 350 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV505 GPU Variant: RV505 CE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml index c3afb572..923b7e15 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-05' + GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml index e2944a0b..61501598 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-05' + GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml index 417a20ca..38e7d517 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml index 3b752de3..7db0c724 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-11-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 GPU Variant: RV516 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml index a0c77455..36c2be0d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-12' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 PRO2 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml index 2d21f28f..21d4951a 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-12' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 PRO2 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml index 448364c7..7bb8cc5b 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-12-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml index c4cebfcf..eb8480e2 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 600 MHz VRAM Frequency: 330 MHz VRAM Bandwidth: 5.280 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV505 GPU Variant: RV505 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml index 6ede786e..63a05180 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 452 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 GPU Variant: RV516 PRO X1550 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml index ed08b2eb..2b7314b6 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1550.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 500 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV505 GPU Variant: RV505 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml index 34c8a26b..866a7acd 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-10-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml index 918f57d9..42959b7e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 PRO diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml index 9ea31620..bbdfb12d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 635 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 GPU Variant: RV515 X1600SE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml index 442875d4..761630fe 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 590 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 22.08 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml index c9023c18..357eed6f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 590 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 22.08 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml index e297f50e..50099465 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 TDP: 27 W diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml index 317aaca3..081e2f26 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-02-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 X1650 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml index 9fb35e03..633f4d7f 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-05-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV560 GPU Variant: RV560 GT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml index 92bb7e5d..805f1a07 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-12-02' + GPU Base Frequency: 587 MHz VRAM Frequency: 392 MHz VRAM Bandwidth: 12.54 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 150 mm² GPU: RV530 GPU Variant: RV530 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml index 109e69fc..21558616 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-15' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 131 mm² GPU: RV535 GPU Variant: RV535 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml index f1c44442..985434bb 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-23' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 131 mm² GPU: RV535 GPU Variant: RV535 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml index 0b2b7bf4..c0a0cc79 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007' + GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV515 TDP: 27 W diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml index 9f317d26..f6fe729d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-30' + GPU Base Frequency: 540 MHz VRAM Frequency: 680 MHz VRAM Bandwidth: 21.76 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV560 GPU Variant: RV560 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml index dbd073ca..9e128a2d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-30' + GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV560 GPU Variant: RV560 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml index 4245f78f..318d4955 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-30' + GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV560 GPU Variant: RV560 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml index c313a922..1f7168e3 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1650.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-11-20' + GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 100 mm² GPU: RV516 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml index edb81b6b..a4c5bf25 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-11-05' + GPU Base Frequency: 587 MHz VRAM Frequency: 695 MHz VRAM Bandwidth: 22.24 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 131 mm² GPU: RV535 GPU Variant: RV535 FSC diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml index 373afac4..0bc98d0c 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-11-30' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV560 GPU Variant: RV560 SE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml index 6a920f2f..6f1f5f0c 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-12-20' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 CE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml index 91ad86fa..7b486521 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 31.68 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 LE diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml index 2fba79e6..dabf9527 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml index 03b547e5..7b8b33ac 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 XL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml index afadf203..76257a16 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 288 mm² GPU: R520 GPU Variant: R520 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml index f9d521af..bbd0744e 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-01-24' + GPU Base Frequency: 625 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 46.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 CF diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml index 8ff2c888..36db95f9 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-11-06' + GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 XL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml index dbac8258..84b30ee6 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-05-01' + GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 XL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml index bc5c223e..4fa3bfed 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-01-24' + GPU Base Frequency: 625 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 46.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml index 81178ff5..ec3d1cbf 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-01-24' + GPU Base Frequency: 650 MHz VRAM Frequency: 775 MHz VRAM Bandwidth: 49.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml index a0b7b3a0..9b0b5fc7 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-09-10' + GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580+ GPU Variant: R580+ XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml index a4b5cf9f..69503b7a 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2007-02-10' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV570 GPU Variant: RV570 XL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml index 78642f07..e273f39c 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2007-01-29' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV570 GPU Variant: RV570 XL diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml index 879bfa43..a0a09f83 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-10-25' + GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV570 GPU Variant: RV570 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml index 14c03ec6..03cc3a2d 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2007-01-10' + GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV570 GPU Variant: RV570 XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml index ea17b086..840c33b5 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-10-01' + GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 230 mm² GPU: RV570 GPU Variant: RV570 X1950 diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml index b3007428..9d93e0d1 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-10-17' + GPU Base Frequency: 625 MHz VRAM Frequency: 703 MHz VRAM Bandwidth: 44.99 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580+ GPU Variant: R580+ XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml index c228f8d8..3dbbf641 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-10-17' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580+ GPU Variant: R580+ XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml index bb148184..920790ed 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2007-01-19' + GPU Base Frequency: 670 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 67.20 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580+ GPU Variant: R580+ XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml index 4dc297a4..34494c80 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006-10-17' + GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580+ GPU Variant: R580+ XT diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml index 9528770a..51386fd2 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Stream-Processor.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1 (full)' OpenCL Support: 'N/A' Release Date: '2006' + GPU Base Frequency: 594 MHz VRAM Frequency: 648 MHz VRAM Bandwidth: 41.47 GB/s VRAM Capacity: 1024 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 352 mm² GPU: R580 GPU Variant: R580 XTX diff --git a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml rename to specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml index cb408717..24009433 100644 --- a/specs/GPUs-CONSUMER/Ultra-Threaded-SE/Wii-GPU.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '2006-11-19' + GPU Base Frequency: 243 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 3.888 GB/s VRAM Capacity: 64 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 95 mm² GPU: Hollywood TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Wonder.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder.yaml diff --git a/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml index 835efaac..fe008ec2 100644 --- a/specs/GPUs-CONSUMER/Wonder/Color-Emulation-Card.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1986-08-04' + GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s VRAM Capacity: 32 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 0 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: CW16800-A TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml index 477c3b9b..4126be4b 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-480.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1988-12-26' + GPU Base Frequency: 10 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s VRAM Capacity: 256 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: unknown GPU: CHIPS P82C435 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml index f77793e5..53bf4b80 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1988' + GPU Base Frequency: 25 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s VRAM Capacity: 256 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: 18800-1 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml index fa1cef82..5f7d5e95 100644 --- a/specs/GPUs-CONSUMER/Wonder/EGA-Wonder-800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1987-11-16' + GPU Base Frequency: 10 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s VRAM Capacity: 256 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: unknown GPU: CHIPS P82C435 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml index 61d05748..34c48365 100644 --- a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution-Plus.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1987-03-23' + GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s VRAM Capacity: 64 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 0 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: CW16800-B TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml index 45b9031e..71d67d56 100644 --- a/specs/GPUs-CONSUMER/Wonder/Graphics-Solution.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1986-09-22' + GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s VRAM Capacity: 64 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 0 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: CW16800-A TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml index f5f456e0..d0d55f47 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Improved-Performance.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1987-09-28' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 256 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: unknown GPU: CHIPS P82C441 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml index 1d67910b..6d3a75a4 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1990-11-01' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 512 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: 28800-5 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml index b7cd272a..0600fead 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder-XL24.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1992-03-16' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 1 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: 28800-6 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml rename to specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml index d4e9bc1c..9fb4116e 100644 --- a/specs/GPUs-CONSUMER/Wonder/VGA-Wonder.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: 'N/A' Release Date: '1990-02-05' + GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s VRAM Capacity: 256 KB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 0 + Shader Processor Count: 0 Die Size: 90 mm² GPU: 18800-1 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-1.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-1.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml index 4660c31a..af65e335 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i752-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998' + GPU Base Frequency: 100 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Portola TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Generation-1.0/i752.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml index 562b68dd..70ec9fe9 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i752.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-04-27' + GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Portola TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml index e0f5541d..c11533e4 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i810-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999' + GPU Base Frequency: 133 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Whitney TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml index e06ccc57..91e3282d 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i815-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000' + GPU Base Frequency: 133 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Solano TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml index 58368343..76632698 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i830M-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Almador GPU Variant: Almador (830M) diff --git a/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml index e30bc036..6b827791 100644 --- a/specs/GPUs-CONSUMER/Generation-1.0/i830MG-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Almador GPU Variant: Almador (830MG) diff --git a/specs/GPUs-CONSUMER/Generation-11.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/H3C-XG310.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Iris-Xe-MAX-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-16EU.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-750.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-750.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-750.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-P750.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/UHD-Graphics-P750.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-P750.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1-SDV.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.1/Xe-DG1.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-710.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-730.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-730.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-730.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.2/UHD-Graphics-770.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml index c64315cf..f65fde48 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-1T.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2021' + GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml index d05b93d5..66bbcd94 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-2T.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2021' + GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml index ea8400fb..0d0dc3cf 100644 --- a/specs/GPUs-CONSUMER/Generation-12.5/Arctic-Sound-M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2022' + GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1100.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1350.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-1550.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A310.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A350.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A350M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A370M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A380M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A530M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A550M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A570M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A580.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A730M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A750.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A770.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A770M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-A780.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A30M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A40.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A50.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Arc-Pro-A60M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-140.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml diff --git a/specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-12.7/Data-Center-GPU-Flex-170.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml diff --git a/specs/GPUs-CONSUMER/Generation-2.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-2.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-2.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml index 2ecc457c..734b8e11 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics-2.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Springdale GPU Variant: Springdale-G (865G) diff --git a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml index 66db0e73..77d77325 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/Extreme-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002' + GPU Base Frequency: 200 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Brookdale GPU Variant: Brookdale-G (845G) diff --git a/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml index 20fb9315..ca21139d 100644 --- a/specs/GPUs-CONSUMER/Generation-2.0/i852GM-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Montara GPU Variant: Montara-GM (852GM) diff --git a/specs/GPUs-CONSUMER/Generation-3.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-3.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-3.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml index c67fed8c..45493625 100644 --- a/specs/GPUs-CONSUMER/Generation-3.0/GMA-900.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2004-06-01' + GPU Base Frequency: 333 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Grantsdale TDP: unknown diff --git a/specs/GPUs-CONSUMER/Generation-3.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-3.5.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-3.5.yaml diff --git a/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml index 386b7f55..e6c76e0b 100644 --- a/specs/GPUs-CONSUMER/Generation-3.5/GMA-950.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Lakeport TDP: 7 W diff --git a/specs/GPUs-CONSUMER/Generation-4.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-4.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml index 36c4a805..e5a1f990 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3000.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006-06-01' + GPU Base Frequency: 667 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Broadwater GPU Variant: Broadwater-G (Q965) diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml index d8dc91a1..1e4c5271 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3100.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Bearlake TDP: 13 W diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml index 90910161..b0f5746a 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-3150.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml index 081e0645..d9c7c6da 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3000.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2006-06-01' + GPU Base Frequency: 667 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Broadwater GPU Variant: Broadwater-G (Q965) diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml index 928aacb9..0703040f 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3100.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-05-09' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: Crestline GPU Variant: Crestline-GM diff --git a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml index 1b540d62..79a225d9 100644 --- a/specs/GPUs-CONSUMER/Generation-4.0/GMA-X3500.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2007-08-01' + GPU Base Frequency: 667 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: Bearlake GPU Variant: Bearlake (G35) diff --git a/specs/GPUs-CONSUMER/Generation-5.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-5.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml index 48a9d624..00ffceaf 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008-06-01' + GPU Base Frequency: 533 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml index 3accee4c..c1cde5a8 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008-10-01' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml index 323578a7..f2225686 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4500MHD.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008-09-01' + GPU Base Frequency: 533 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml index 0b645fd4..05491fcb 100644 --- a/specs/GPUs-CONSUMER/Generation-5.0/GMA-X4700MHD.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0' OpenCL Support: 'N/A' Release Date: '2008-10-01' + GPU Base Frequency: 640 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-5.75.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-5.75.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.75.yaml diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml index 4def8b97..b928e1d8 100644 --- a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-12EU.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2010-01-10' + GPU Base Frequency: 533 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-16EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-5.75/HD-Graphics-16EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-16EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-2000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-2000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-2000.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-3000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-6EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-6EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-6EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-P3000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-6.0/HD-Graphics-P3000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-P3000.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-32EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-32EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-32EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-4000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-6EU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-6EU.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-6EU.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-P4000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.0/HD-Graphics-P4000.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-P4000.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-10EU.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4200-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4400.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-4600.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-5000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-5000-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-5000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4600.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4600.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/HD-Graphics-P4700.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4700.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Graphics-5100-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/Iris-Graphics-5100-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Graphics-5100-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-7.5/Iris-Pro-Graphics-5200.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml index 90ed7a25..133d669b 100644 --- a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-12EU-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.3' OpenCL Support: '3.0' Release Date: '2015-04-01' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-400-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-400-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-400-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-405-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-405-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-405-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5300-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5300-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5300-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5500-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5600-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-5600-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5600-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-6000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-6000-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-6000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-P5700.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/HD-Graphics-P5700.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-P5700.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Graphics-6100-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/Iris-Graphics-6100-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Graphics-6100-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-6200.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200.yaml diff --git a/specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-P6300.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-8.0/Iris-Pro-Graphics-P6300.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-P6300.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-500-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-505-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-505-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-505-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-510.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-515-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-515-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-515-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-520-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-520-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-520-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-530.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-P530.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/HD-Graphics-P530.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-P530.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-540-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-540-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-540-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-550-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Graphics-550-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-550-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P555.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P555.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P555.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.0/Iris-Pro-Graphics-P580.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-610.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-615-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-615-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-615-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-620-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-620-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-620-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-630.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-P630-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/HD-Graphics-P630-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-P630-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-600-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-600-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-600-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-605-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-605-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-605-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-610.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-615-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-615-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-615-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-617-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-617-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-617-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-620-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-620-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-620-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-630.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Generation-9.5/UHD-Graphics-P630.yaml rename to specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630.yaml diff --git a/specs/GPUs-CONSUMER/Knights.yaml b/specs/GPUs-CONSUMER/Intel/Knights.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Knights.yaml rename to specs/GPUs-CONSUMER/Intel/Knights.yaml diff --git a/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml index 5a55a0b7..797b0aa0 100644 --- a/specs/GPUs-CONSUMER/Knights/Aubrey-Isle.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2010-05-31' + GPU Base Frequency: 1200 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml index 287754e8..78282e48 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-3120A.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2012-11-12' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml index f4cf54bd..e82b69de 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5110P.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2012-11-12' + GPU Base Frequency: 1053 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml index 54cb0e6d..f27a17dc 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-5120D.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2013-06-17' + GPU Base Frequency: 1053 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120P.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-7120X.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml diff --git a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml rename to specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml index 8c678db7..4a5a6de0 100644 --- a/specs/GPUs-CONSUMER/Knights/Xeon-Phi-SE10X.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'N/A' OpenCL Support: '1.2' Release Date: '2012-11-12' + GPU Base Frequency: 1100 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535.yaml similarity index 100% rename from specs/GPUs-CONSUMER/PowerVR-SGX535.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX535.yaml diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml similarity index 95% rename from specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml index 212a4e3a..dcc3117c 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-500.yaml +++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'ES 2.0' OpenCL Support: 'N/A' Release Date: '2008-03-02' + GPU Base Frequency: 200 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml similarity index 95% rename from specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml index 55cfde60..62c71d99 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX535/GMA-600.yaml +++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'ES 2.0' OpenCL Support: 'N/A' Release Date: '2010-05-04' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545.yaml similarity index 100% rename from specs/GPUs-CONSUMER/PowerVR-SGX545.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX545.yaml diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml similarity index 95% rename from specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml index e5517d9c..bf1e9562 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA-3650.yaml +++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'ES 2.0' OpenCL Support: 'N/A' Release Date: '2008-10-01' + GPU Base Frequency: 640 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml similarity index 91% rename from specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml rename to specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml index 36a63b37..a8b7fd4a 100644 --- a/specs/GPUs-CONSUMER/PowerVR-SGX545/GMA.yaml +++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'ES 2.0' OpenCL Support: 'N/A' Release Date: '2010-05-04' + GPU Base Frequency: 533 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Cloverview TDP: unknown diff --git a/specs/GPUs-CONSUMER/Xe-LPG.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Xe-LPG.yaml rename to specs/GPUs-CONSUMER/Intel/Xe-LPG.yaml diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml rename to specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/i740.yaml b/specs/GPUs-CONSUMER/Intel/i740.yaml similarity index 91% rename from specs/GPUs-CONSUMER/i740.yaml rename to specs/GPUs-CONSUMER/Intel/i740.yaml index 872839c4..5cf6acd4 100644 --- a/specs/GPUs-CONSUMER/i740.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740.yaml @@ -1,4 +1,4 @@ -name: i740-part +name: i740 humanName: i740 type: Graphics Architecture isPart: false @@ -12,6 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - i740 + - i740-part - i740-8-MB - i740-Graphics diff --git a/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml similarity index 90% rename from specs/GPUs-CONSUMER/i740/i740-8-MB.yaml rename to specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml index b0e8b7c5..f4398dc6 100644 --- a/specs/GPUs-CONSUMER/i740/i740-8-MB.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1998-02-12' + GPU Base Frequency: 66 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Auburn TDP: unknown diff --git a/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml similarity index 91% rename from specs/GPUs-CONSUMER/i740/i740-Graphics.yaml rename to specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml index 28f5ac15..81633f33 100644 --- a/specs/GPUs-CONSUMER/i740/i740-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1998' + GPU Base Frequency: 66 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Auburn TDP: unknown diff --git a/specs/GPUs-CONSUMER/i740/i740.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml similarity index 90% rename from specs/GPUs-CONSUMER/i740/i740.yaml rename to specs/GPUs-CONSUMER/Intel/i740/i740.yaml index 744debad..293cad11 100644 --- a/specs/GPUs-CONSUMER/i740/i740.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.1' OpenCL Support: 'N/A' Release Date: '1998-02-12' + GPU Base Frequency: 66 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s VRAM Capacity: 4 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Auburn TDP: unknown diff --git a/specs/GPUs-CONSUMER/G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/G100.yaml rename to specs/GPUs-CONSUMER/Matrox/G100.yaml diff --git a/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G100/Productiva-G100.yaml rename to specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml index af92fa5b..ef4a5091 100644 --- a/specs/GPUs-CONSUMER/G100/Productiva-G100.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1998' + GPU Base Frequency: 41 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s VRAM Capacity: 2 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Twister GPU Variant: MGA-G100A-E diff --git a/specs/GPUs-CONSUMER/G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/G200.yaml rename to specs/GPUs-CONSUMER/Matrox/G200.yaml diff --git a/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Marvel-G200.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml index 1da188b1..f1acec78 100644 --- a/specs/GPUs-CONSUMER/G200/Marvel-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1998' + GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Eclipse TDP: unknown diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml index c9d71499..2b235e5c 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200-SD.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1998' + GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Eclipse GPU Variant: MGA-G200A-C diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Millennium-G200.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml index 64702cf0..cf4fd4f4 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1998' + GPU Base Frequency: 84 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Eclipse GPU Variant: MGA-G200A-B diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml index 1e8f8159..2b33d366 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G200A.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1999' + GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Calao GPU Variant: MGA-G200A-D2 diff --git a/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Millennium-G250.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml index 6f9f499b..29383738 100644 --- a/specs/GPUs-CONSUMER/G200/Millennium-G250.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1999' + GPU Base Frequency: 96 MHz VRAM Frequency: 128 MHz VRAM Bandwidth: 1.024 GB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Calao GPU Variant: MGA-G200A-D2 diff --git a/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G200/Mystique-G200.yaml rename to specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml index b6dc77b9..657c1de7 100644 --- a/specs/GPUs-CONSUMER/G200/Mystique-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1998' + GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: Eclipse TDP: unknown diff --git a/specs/GPUs-CONSUMER/G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/G400.yaml rename to specs/GPUs-CONSUMER/Matrox/G400.yaml diff --git a/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml index 5ccb0a97..8d34e828 100644 --- a/specs/GPUs-CONSUMER/G400/Marvel-G400-TV.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1999-05-20' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Toucan TDP: unknown diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml index 04619b0b..ebf7b6f4 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G400-MAX.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1999-05-20' + GPU Base Frequency: 150 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Toucan GPU Variant: MGA-G400A-E diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G400.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml index 21c582fc..ca8ae247 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G400.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '1999-05-20' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Toucan TDP: unknown diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml index 7472a704..43881924 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-LP.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: 'Apr 2000' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor GPU Variant: MGA-G450-F diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml index 947563f1..8eb9907b 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-x2-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '2002-06-19' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor TDP: unknown diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml index 0c4f18d7..25ce1617 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450-x4-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: '2002-06-19' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor TDP: unknown diff --git a/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G400/Millennium-G450.yaml rename to specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml index b8284927..06530a9f 100644 --- a/specs/GPUs-CONSUMER/G400/Millennium-G450.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'None' OpenCL Support: 'None' Release Date: 'Apr 2000' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor GPU Variant: MGA-G450-F diff --git a/specs/GPUs-CONSUMER/G500.yaml b/specs/GPUs-CONSUMER/Matrox/G500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/G500.yaml rename to specs/GPUs-CONSUMER/Matrox/G500.yaml diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml rename to specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml index e769dbf1..8c565876 100644 --- a/specs/GPUs-CONSUMER/G500/Millennium-G550-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-11-26' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor TDP: unknown diff --git a/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml similarity index 91% rename from specs/GPUs-CONSUMER/G500/Millennium-G550.yaml rename to specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml index 221ee1a1..a978cb5c 100644 --- a/specs/GPUs-CONSUMER/G500/Millennium-G550.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-11-26' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: Condor GPU Variant: MGA-G550-B diff --git a/specs/GPUs-CONSUMER/MP.yaml b/specs/GPUs-CONSUMER/Matrox/MP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/MP.yaml rename to specs/GPUs-CONSUMER/Matrox/MP.yaml diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml rename to specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml index 2dae99fd..f589d253 100644 --- a/specs/GPUs-CONSUMER/MP/QID-LP-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-12-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: MP-A4 TDP: unknown diff --git a/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml rename to specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml index 9375f229..30974bb1 100644 --- a/specs/GPUs-CONSUMER/MP/QID-LP-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-12-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: MP-A4 GPU Variant: MP-A4L diff --git a/specs/GPUs-CONSUMER/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml similarity index 90% rename from specs/GPUs-CONSUMER/MP/QID-PRO.yaml rename to specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml index 7dab2287..868a39f4 100644 --- a/specs/GPUs-CONSUMER/MP/QID-PRO.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-12-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: MP-A4 TDP: unknown diff --git a/specs/GPUs-CONSUMER/MP/QID.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml similarity index 90% rename from specs/GPUs-CONSUMER/MP/QID.yaml rename to specs/GPUs-CONSUMER/Matrox/MP/QID.yaml index 6b5d9d86..1af2b5c4 100644 --- a/specs/GPUs-CONSUMER/MP/QID.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-12-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: MP-A4 TDP: unknown diff --git a/specs/GPUs-CONSUMER/PX.yaml b/specs/GPUs-CONSUMER/Matrox/PX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/PX.yaml rename to specs/GPUs-CONSUMER/Matrox/PX.yaml diff --git a/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml similarity index 91% rename from specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml rename to specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml index 39a48ec8..1dab1ae1 100644 --- a/specs/GPUs-CONSUMER/PX/M9125-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: 'Unknown' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: PX-A1 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Parhelia.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia.yaml diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml index 997f36d4..b73d2772 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-05-10' + GPU Base Frequency: 190 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 130 mm² GPU: Parhelia-LX GPU Variant: MP-A4L diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml index 0e591830..0fcc95cf 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-05-10' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 130 mm² GPU: Parhelia-LX GPU Variant: MP-A4L diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml index b21282f7..d016fc14 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P650.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-05-10' + GPU Base Frequency: 230 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 130 mm² GPU: Parhelia-LX GPU Variant: MP-A4L diff --git a/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml index cee0a93e..d6413729 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Millenium-P750.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-05-10' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 130 mm² GPU: Parhelia-LX TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml index dd50266f..d2f84d00 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-128-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2004-03-30' + GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 GPU Variant: PHF-D2 diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml index ad471df1..adc138cc 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-256-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2004-03-30' + GPU Base Frequency: 250 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 GPU Variant: PHF-D2 diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml index 3794f77d..2a5cbc8b 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-APVe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2006-06-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml index 9ec26875..e0527d2e 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-DL256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml index 0e0d9293..2587a521 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-HR256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: 'Sep 2003' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml index fabb3487..c39a4f2e 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml index 1d5098af..9bdc5179 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SDT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml rename to specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml index d3bbcafc..43c45c5d 100644 --- a/specs/GPUs-CONSUMER/Parhelia/Parhelia-Precision-SGT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 174 mm² GPU: Parhelia-512 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4050.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4060.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4080.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-D.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/GeForce-RTX-4090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/L4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/L40-CNX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/L40.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/L40G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/L40S.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-4500-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-5880-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/RTX-6000-Ada-Generation.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml diff --git a/specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ada-Lovelace/TITAN-Ada.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml diff --git a/specs/GPUs-CONSUMER/Ampere.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A10-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A100-PCIe-40-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A100-PCIe-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A100-SXM4-40-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A100-SXM4-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A100X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A100X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A10G.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A10G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A10M.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A10M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A16-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A2-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A2.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A30-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A30X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A30X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A40-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A800-PCIe-40-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A800-PCIe-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/A800-SXM4-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/CMP-170HX-10-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/CMP-170HX-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/CMP-70HX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/CMP-90HX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/DRIVE-A100-PROD.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GRID-A100A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GRID-A100B.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-MX570-A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-MX570.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-2050-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-3840SP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GA103.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3060-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070-TiM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3080.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/GeForce-RTX-3090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml index 47880e14..83a4edbc 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Feb 2023' + GPU Base Frequency: 930 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 204.8 GB/s VRAM Capacity: 32 GB diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml index d56dc5b3..c796da40 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-AGX-Orin-64-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Mar 2023' + GPU Base Frequency: 1300 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 204.8 GB/s VRAM Capacity: 64 GB diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml index 9117f32c..9313d828 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Feb 2023' + GPU Base Frequency: 918 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 16 GB diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml index c486d33f..7ec23615 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-NX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Mar 2023' + GPU Base Frequency: 765 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml index d4e6d587..000b6443 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Mar 2023' + GPU Base Frequency: 625 MHz VRAM Frequency: 1067 MHz VRAM Bandwidth: 34.14 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml index 439f4968..a94f3ebb 100644 --- a/specs/GPUs-CONSUMER/Ampere/Jetson-Orin-Nano-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml @@ -13,6 +13,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Mar 2023' + GPU Base Frequency: 625 MHz VRAM Frequency: 1067 MHz VRAM Bandwidth: 68.29 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-207.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/PG506-207.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-217.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/PG506-217.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-232.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/PG506-232.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/PG506-242.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/PG506-242.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A1000-Embedded.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A1000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A2000-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A2000-Embedded.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A2000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A2000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A3000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4000H.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4500-Embedded.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4500-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A4500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A500-Embedded.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5000-12Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5000-8Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5500-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A5500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml diff --git a/specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Ampere/RTX-A6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml diff --git a/specs/GPUs-CONSUMER/Celsius.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Celsius.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius.yaml diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml index 08111cf3..2aadfc19 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-256-DDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-12-23' + GPU Base Frequency: 120 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 139 mm² GPU: NV10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml index 7b36e830..98011a33 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-256-SDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-11' + GPU Base Frequency: 120 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 139 mm² GPU: NV10 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml index 20ab1240..b6bbb700 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-6200-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-14' + GPU Base Frequency: 230 MHz VRAM Frequency: 66 MHz VRAM Bandwidth: 1.056 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18C TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml index 01785914..34ce331e 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce-PCX-4300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-02-19' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18C TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml index e57be39a..a43bf8bf 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2000-04-26' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: GeForce2 GTS PRO diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml index caf130a4..968631cd 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2000-04-26' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: GeForce2 GTS diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml index 858cc608..bec74a0a 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-02-06' + GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B TDP: 2 W diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml index f4afb705..e981dad9 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-02-06' + GPU Base Frequency: 143 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B TDP: 2 W diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml index 3fff3ee9..de5ff63a 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-11-11' + GPU Base Frequency: 143 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B TDP: 2 W diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml index cd7f5452..1284ae8d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-220.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-06-04' + GPU Base Frequency: 175 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: Crush11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml index 3fb852ef..7c2721ca 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-06-04' + GPU Base Frequency: 175 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: Crush11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml index f9afcc61..064ad0aa 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-03' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: MX200 B3 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml index 27a7cf4a..43336553 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-03' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: MX200 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml index 1f539fc7..7f11d53e 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-03' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: MX200 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml index 310693d6..85f5516b 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-03' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: MX400 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml index c81a8ffc..b5828784 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-03-03' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: MX400 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml index 197a1074..a63874e7 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-28' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml index c8e33c4e..f58d1799 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-DH-Pro-TV.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-28' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml index 18476f2b..c75e79d3 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-28' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml index 76daf957..6c7a2404 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-06-28' + GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml index a720462f..193f587d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2000-12-05' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: GeForce2 PRO diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml index b57a1a83..37cefe35 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-10-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: GeForce2 Ti diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml index 4aaef45d..44ff5be2 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2000-08-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: GeForce2 Ultra diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml index 9b380440..a14964aa 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-410-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: 410 Go diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml index 8dbde083..d8a574d2 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-420-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: 420 Go A5 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml index 320cfaa0..12e144d8 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-440-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 220 MHz VRAM Frequency: 220 MHz VRAM Bandwidth: 7.040 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: 440 Go A5 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml index 7135ca2f..e005e80d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-448-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml index 7f3d830d..bc0927ce 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-460-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-10-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: 460 Go A5 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml index 2febe112..a2fdb6d3 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-488-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-03-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml index 3ecb3c7c..8fbe97eb 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-+-nForce2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2002-10-01' + GPU Base Frequency: 200 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: Crush17 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml index 7df62881..fba6344d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18C GPU Variant: MX4000 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml index 4dd21780..2e2ea639 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18C GPU Variant: MX4000 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml index 800e0285..c48096a0 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 GPU Variant: MX4000 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml index a3233f7e..572328a0 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: MX420 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml index 02fbdcd9..f09d331b 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: MX420 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml index 64e4aa06..eee00feb 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-8x.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-09-25' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 2.000 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 GPU Variant: NV18 A2 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml index 5e0540b9..58b9469d 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 275 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: MX440 A5 diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml index c4bc0dc5..d8e1f7ae 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: MX440-SE diff --git a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml index 99ca275f..be03e25b 100644 --- a/specs/GPUs-CONSUMER/Celsius/GeForce4-MX-440.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 275 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: MX440 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml index 28763cb9..13a62651 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-280-SD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2005-05-31' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18C TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml index 6b26ace0..0ea2d9a0 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro-NVS-50-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2005-05-31' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml index 7b92612b..bc5dd506 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999' + GPU Base Frequency: 135 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 139 mm² GPU: NV10 GPU Variant: NV10GL A3 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml index 654ee1f9..954b89b1 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2001-08-14' + GPU Base Frequency: 143 MHz VRAM Frequency: 181 MHz VRAM Bandwidth: 2.896 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: Quadro2 Go B3 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml index 748a812e..226dbfcd 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-07-25' + GPU Base Frequency: 200 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: NV11L B2 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml index 7dcd40bf..035c2aee 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-MXR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-07-25' + GPU Base Frequency: 200 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 64 mm² GPU: NV11B GPU Variant: NV11L B2 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml index 2c4ad022..e06461ab 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro2-Pro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-03-22' + GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 88 mm² GPU: NV15 GPU Variant: NV15GL A4 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml index 94ebcea0..ca271c99 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-22' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml index b6cd5747..73fcb5d3 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-100-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-22' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml index 21e420b8..96efb971 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-200-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-12-22' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 TDP: 11 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml index 4bc9ca5d..3b91a948 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-380-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-11-12' + GPU Base Frequency: 275 MHz VRAM Frequency: 256 MHz VRAM Bandwidth: 8.192 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml index d8a5d0c3..c47981bc 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-400-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2004-07-16' + GPU Base Frequency: 220 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 TDP: 18 W diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml index b7170951..48d3491d 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-04-23' + GPU Base Frequency: 220 MHz VRAM Frequency: 220 MHz VRAM Bandwidth: 3.520 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: NV17GLM A4 diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml index 9d35a6c6..94960c94 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-500-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-19' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: NV17 GL diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml index 0d8fc6fa..2e94fedc 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-550-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-19' + GPU Base Frequency: 270 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV17 GPU Variant: NV17 GL diff --git a/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml index 3744d3dd..e8d2783f 100644 --- a/specs/GPUs-CONSUMER/Celsius/Quadro4-580-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-11-12' + GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 65 mm² GPU: NV18 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Curie.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie.yaml diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml index a0ecad00..69d9faf5 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C61 GPU Variant: NF-6100-400-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml index 5746e3f8..7e7493a1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-405.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C61 GPU Variant: NF-6100-405-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml index bf0607dd..e13d5d6d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C61 GPU Variant: NF-6100-420-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml index bc57f960..af22454c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C61 GPU Variant: NF-6100-430-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml index 48c3d753..150cf458 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C51 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml index bb71751f..3995e604 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C51 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml index c518e099..45121860 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150-SE-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C61 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml index 309cc811..805351df 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6150.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 475 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: unknown GPU: C51 GPU Variant: NF-6150-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml index 5a130984..4d1c61dc 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP-512-MB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 GPU Variant: NV44 A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml index 6a10b93b..627cc61f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-04-04' + GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 GPU Variant: NV44 A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml index cade9463..80f16bae 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 300 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml index d8f18a29..a53c3a99 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-04-04' + GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 2.128 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml index 080e5756..5df7853a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2008-01-16' + GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml index 396ebf77..7a8a7845 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-SE-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-12-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 2.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 GPU Variant: 6200TC diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml index 413402f9..88a01d9e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-12-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44B TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml index 267c690d..7ed725f8 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200-X2-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2008-01-16' + GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml index 50c8ca7e..2542eb1b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-10-11' + GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml index 2b22f8f0..b782ba78 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-10-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml index dc8cadc7..990d40f9 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-12' + GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml index 82ac7e0b..cb315fc8 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-11-14' + GPU Base Frequency: 500 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 15.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: 47 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml index 4f9e4e0d..05684439 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-12' + GPU Base Frequency: 500 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 17.92 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml index 34a35e0e..fc370dd3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-12' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml index b996f8cb..37b33b00 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml index badfe78b..4ab7a30b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml index eb68a7bc..0b01cab9 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005' + GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml index 832adde1..a702080f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-12' + GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml index dda581db..e9cc82f3 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6610-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-11-14' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml index 8b014079..9eaae765 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6700-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-11-14' + GPU Base Frequency: 525 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 17.60 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml index ae6baf02..40dc3575 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-12-08' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml index 1da5a5bc..01b68fc2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-14' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 GPU Variant: 6800 GT diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml index 4ad72cc1..e6fe7a32 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-06-08' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml index 2411d919..e80fd55b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-14' + GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 GPU Variant: 6800 GT diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml index b43606ac..76817eb1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-14' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 GPU Variant: 6800 GT diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml index 96ec85a4..f588a5f2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-01-16' + GPU Base Frequency: 325 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml index 82ee5968..46179c5e 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-14' + GPU Base Frequency: 400 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 GPU Variant: 6800 Ultra diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml index 31ea2dc7..c793e9b7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-07-26' + GPU Base Frequency: 425 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 GPU Variant: 6800 Ultra diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml index ec4c7750..7c2b2bb6 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-30' + GPU Base Frequency: 275 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml index 2415186c..45a138c5 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-30' + GPU Base Frequency: 300 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV48 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml index d08a8b91..4f0ce4d7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-14' + GPU Base Frequency: 325 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV48 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml index 68aa52a2..63da2fcc 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7000M-+-nForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 350 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 1 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C67 GPU Variant: MCP67MV-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml index 50d8f7a3..4461bf5d 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7025-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C68 GPU Variant: NF-7025-630A-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml index d973cac1..389d2db5 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-610i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2008-01-13' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C73B GPU Variant: NF-7050-610I-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml index f3ff891b..7bad7346 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-620i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C73 GPU Variant: NF-7050-620i-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml index 7750a4e3..b0fbcd11 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: C61 GPU Variant: NF-7025-630A-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml index 2bb479a1..742ff7b0 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml @@ -21,6 +21,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C73 GPU Variant: NF-7050-630i-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml index 4cc30a5b..33947483 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-PV-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C68 GPU Variant: NF-7025-630A-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml index 61e1e550..4d5d219a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7050-SE-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C68 GPU Variant: NF-7050SE-630A-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml index 0972dbbb..8dc07693 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7100-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2007-10-04' + GPU Base Frequency: 600 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C73 GPU Variant: NF-7100 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml index a62bd8cd..c1438228 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7100-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-08-08' + GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44B TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml index e3c1ab32..fcec3798 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7150-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-16' + GPU Base Frequency: 630 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C73 GPU Variant: NF-7150-610i-A1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml index cba99bf3..2788653b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7150M-+-nForce-630M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2007-11-16' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 81 mm² GPU: C67 GPU Variant: MCP67MV-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml index 469b91e4..4829064b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7200-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-18' + GPU Base Frequency: 450 MHz VRAM Frequency: 334 MHz VRAM Bandwidth: 5.344 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-7200GS-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml index 0e67b9a7..e3c0e27c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-18' + GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-7300GS-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml index 2072afef..ff62f76f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-18' + GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-7300GS-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml index 480da8d5..26beca22 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-05-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-VZ-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml index 0d8bc631..04fe7118 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-26' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 GPU Variant: G73-GT-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml index 0aa72a4d..1282093c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-05-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 TDP: 24 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml index 40ed51e0..3514418c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 5.184 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-7300LE-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml index d7a0cd55..761483ea 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7300-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml index 63e79d26..d43ddd6a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7350-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml index 20b51365..8f992f8c 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 475 MHz VRAM Frequency: 405 MHz VRAM Bandwidth: 6.480 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml index 2c7544a3..11750ddd 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-07-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 23.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-H-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml index bb5cc199..1132aa82 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml index 5256d9c4..ba8b299a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-01-08' + GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-VZ-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml index 1228f2af..7d661742 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-02' + GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-GT-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml index 2123220f..366cf6e2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-09' + GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-GT-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml index 806d59e6..33a33dc7 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: G73-VZ-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml index aa744ddb..2e088c7f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7650-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml index 80304174..eb96b216 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-28' + GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-Y-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml index 5268670b..d596c8af 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-28' + GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-GT-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml index c4fe5610..02f09896 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS+-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-28' + GPU Base Frequency: 375 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-Y-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml index bc96ed0f..ac193fa4 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-02' + GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GT-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml index d1d3caa7..a930af43 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-02' + GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GT-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml index 7d0822d2..eaa06c82 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-02' + GPU Base Frequency: 375 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GT-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml index 53becd1a..94145029 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-08-11' + GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GT-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml index acba9fc6..7f6b4a39 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-08-11' + GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GT-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml index 18201498..981955fe 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-11-14' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-U-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml index 99bb6a0f..3e6e889b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-06-22' + GPU Base Frequency: 430 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: GF-7800-GTX-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml index 6865b971..a0521f0f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-02' + GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml index b1f4ec99..70d1ae16 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-05-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml index 44e1b4a8..694077cd 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-09' + GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-GT-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml index a1cc581b..0e797b36 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-01' + GPU Base Frequency: 650 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-U-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml index baa48a97..e0593649 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-09' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-U-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml index 9b029c3e..576e9987 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7900-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-30' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 110 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml index 7ae33fc8..8306fc71 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-04-02' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-GT2-H-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml index cacb3443..78309f9a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-06' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-GT2-H-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml index a7cd4e50..8cc37209 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-7950-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-06-05' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: G71-D-H-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml index 655c4a5b..48e63cd1 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: C51 GPU Variant: NF-G6100-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml index 8d63b9ef..5625eb69 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: C51 GPU Variant: NF-G6150-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml index 2dde6d39..c5c46f5b 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: Go6200TE NPB diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml index 5fc57216..b2660a21 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44B GPU Variant: GF-GO6200-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml index f478f13d..0322b08f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44B GPU Variant: GO6250 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml index a072531b..d8a1aeae 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 GPU Variant: GF-GO6400SQ-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml index cca53858..25659193 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-NPB-128M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 375 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: Go6600 NPB diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml index 4fb1b5ce..5251e0a0 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 225 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NV43M A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml index 67f731ef..67aceece 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 300 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NV43M A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml index d5ab40b4..f87eaaa5 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-02-24' + GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 GPU Variant: GO6800 U diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml index cca73d26..80e44d90 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-11-08' + GPU Base Frequency: 300 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml index 6f238939..7a4588d0 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-09-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 2.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 1 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-GO7200-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml index 94bf6549..264c42a2 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72B GPU Variant: GF-GO7300-B-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml index b29de5c3..29511516 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7300T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 350 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-GO7300T-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml index 0006dcf6..9a79d517 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 3.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72B GPU Variant: GF-GO7400-B-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml index 104a216e..ab265f08 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7400T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 7.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: GF-GO7400T-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml index 5f5d093e..82b7bc9a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-02-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml index eedd5a13..d6504c8f 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: GF-GO7600-SE-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml index 770d2b69..32e42220 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 GPU Variant: GF-GO7600-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml index 72047aff..77625f78 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 100 mm² GPU: G73B GPU Variant: GF-GO7700-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml index 58b7a9ee..c427dd06 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 440 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 TDP: 65 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml index 51552afa..9d231597 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-03' + GPU Base Frequency: 400 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 TDP: 35 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml index 349c5dde..6ad9c219 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-18' + GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 20 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml index e3cc203f..b7617aba 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-18' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml index b348d08b..4d959652 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7900-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-18' + GPU Base Frequency: 350 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 21.31 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 TDP: 20 W diff --git a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml index 9881f266..1cda7b8a 100644 --- a/specs/GPUs-CONSUMER/Curie/GeForce-Go-7950-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-10-12' + GPU Base Frequency: 575 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml index 1ce2f97a..617a23f7 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-28nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 1.1' OpenCL Support: 'N/A' Release Date: '2013-06-03' + GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 256 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 68 mm² GPU: RSX-28nm GPU Variant: RSX-D5305L diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml index 793de680..868e4567 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-40nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 1.1' OpenCL Support: 'N/A' Release Date: '2012-10-04' + GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 256 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 114 mm² GPU: RSX-40nm GPU Variant: RSX-CXD5302 diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml index 4ba609da..5957b17f 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 1.1' OpenCL Support: 'N/A' Release Date: 'Aug 2008' + GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 256 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 186 mm² GPU: RSX-65nm GPU Variant: RSX-CXD2991 diff --git a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml index 0b31b61d..294bcb6a 100644 --- a/specs/GPUs-CONSUMER/Curie/Playstation-3-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 1.1' OpenCL Support: 'N/A' Release Date: '2006-11-11' + GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 256 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 258 mm² GPU: RSX-90nm GPU Variant: RSX-CXD2971 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml index 9f407bc4..7d8e330d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-09' + GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 GPU Variant: QDFX-1400P-N-B1 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml index 0d28c05c..aef37bf6 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 325 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: QDFX-1500-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml index f540393c..8968a94e 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-1500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-18' + GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: QDFX-1500M-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml index 877482c3..e0caa974 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-2500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-09-29' + GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml index 087c19c1..c20453c6 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-06-28' + GPU Base Frequency: 350 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 GPU Variant: NV45 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml index 2383a04c..bb0bbbe3 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-07-28' + GPU Base Frequency: 425 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 GPU Variant: NV41 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml index b00a4a9f..554f34bc 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 550 MHz VRAM Frequency: 405 MHz VRAM Bandwidth: 6.480 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 TDP: 21 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml index 2c06c111..aee1d60d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-05-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 20 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 80 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml index 5ff638fa..db0a7ac0 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-3500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2007-03-01' + GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 45 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml index 41e5b9a8..cbe89426 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-350M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-13' + GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: QD-FX-350M-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml index 1a48ac93..616682ba 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-19' + GPU Base Frequency: 425 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 12 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 GPU Variant: NV41 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml index 239f227d..fa4ec433 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-01' + GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV40 GPU Variant: NV40 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml index 1a56ddf1..51517174 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-07-28' + GPU Base Frequency: 375 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 GPU Variant: NV45 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml index bb31616d..e6cbedf4 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4400G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-07-28' + GPU Base Frequency: 375 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 16 + Shader Processor Count: 0 Die Size: 287 mm² GPU: NV45 GPU Variant: NV45 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml index 3e63be4a..df4c126c 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-01-30' + GPU Base Frequency: 430 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 TDP: 116 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml index 85801ece..c329f0ad 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-24' + GPU Base Frequency: 500 MHz VRAM Frequency: 605 MHz VRAM Bandwidth: 38.72 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 GPU Variant: QDFX-4500X2-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml index 262a35e1..2707d2ca 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-4500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-07-28' + GPU Base Frequency: 430 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 GPU Variant: QDFX-4500-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml index 07e3f0e4..681f7358 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-09' + GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NV43 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml index 2279301a..340d6afe 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 360 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NV43 GL diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml index 1eff24ab..d1012e04 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 650 MHz VRAM Frequency: 505 MHz VRAM Bandwidth: 32.32 GB/s VRAM Capacity: 1024 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 104 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml index f3e7ee88..5b00f983 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 650 MHz VRAM Frequency: 505 MHz VRAM Bandwidth: 32.32 GB/s VRAM Capacity: 1024 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 96 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml index 5f089fff..801aa3a1 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-550M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-03-13' + GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 TDP: 35 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml index 24d20af9..dcd6144d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-560.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-04-20' + GPU Base Frequency: 350 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 12 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 TDP: 30 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml index f87f5195..47c5ff8d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2005-02-25' + GPU Base Frequency: 275 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 18.88 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 225 mm² GPU: NV41 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml index a6788c7f..7fdcfb4a 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-FX-Go540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-09' + GPU Base Frequency: 300 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: QDFX-GO540-N-A4 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml index 62a8bdd6..99de1f9d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-110M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-06-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72 GPU Variant: QD-NVS-110M-N-A3 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml index bcf9aacb..3af7020a 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-120M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-06-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 81 mm² GPU: G72B TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml index 557e2c16..0e34d39d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-210S.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2003-12-22' + GPU Base Frequency: 425 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared @@ -19,6 +20,7 @@ data: VRAM Bus Width: System Shared Render Output Unit Count: 1 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: unknown GPU: C51 TDP: 11 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml index e58ffc04..6f8a163b 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-285.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-06-06' + GPU Base Frequency: 275 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 110 mm² GPU: NV44 GPU Variant: QD-NVS285-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml index 8646cc5d..8ac78f3d 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-300M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-05-24' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 125 mm² GPU: G73 GPU Variant: QD-NVS-300M-N-A2 diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml index 9b58a724..cff80375 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NVS440 NPB diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml index d3d9b3a3..3d341755 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-440-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.0 (full)' OpenCL Support: 'N/A' Release Date: '2006-02-14' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 154 mm² GPU: NV43 GPU Variant: NVS440 NPB diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml index eaa8a49d..f414ae48 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-NVS-510M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2006-08-21' + GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 196 mm² GPU: G71 TDP: 35 W diff --git a/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml similarity index 90% rename from specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml rename to specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml index 1b7c4083..fa9edab4 100644 --- a/specs/GPUs-CONSUMER/Curie/Quadro-Plex-1000-Model-II.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2008-07-25' + GPU Base Frequency: 470 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s VRAM Capacity: 512 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 24 + Shader Processor Count: 0 Die Size: 333 mm² GPU: G70 TDP: 640 W diff --git a/specs/GPUs-CONSUMER/Fahrenheit.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Fahrenheit.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit.yaml diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml index 0571b44b..be2c19bd 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1998-03-23' + GPU Base Frequency: 90 MHz VRAM Frequency: 110 MHz VRAM Bandwidth: 1.760 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 128 mm² GPU: NV4 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml index e68bcff1..fbd7673d 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-03-22' + GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Vanta-16 diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml index 545911ee..98b958df 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64-Vanta.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-03-22' + GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Vanta diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml index 83f8e364..45ebd4c9 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-M64.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-12' + GPU Base Frequency: 125 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Riva TNT2 diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml index d30ab910..73c6ea09 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-12' + GPU Base Frequency: 143 MHz VRAM Frequency: 167 MHz VRAM Bandwidth: 2.672 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Riva TNT2 diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml index d31614c4..4cfe2248 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-03-15' + GPU Base Frequency: 150 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Riva TNT2 Ultra diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml index 01491328..2767a510 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Riva-TNT2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '1999-10-12' + GPU Base Frequency: 125 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 2.400 GB/s VRAM Capacity: 16 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Riva TNT2 diff --git a/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml index 59bc0fef..0bd3fce5 100644 --- a/specs/GPUs-CONSUMER/Fahrenheit/Vanta-LT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.2' OpenCL Support: 'N/A' Release Date: '2000-03-01' + GPU Base Frequency: 105 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s VRAM Capacity: 8 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 63 mm² GPU: NV5 GPU Variant: Vanta LT diff --git a/specs/GPUs-CONSUMER/Fermi-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Fermi-2.0.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml index 830e0568..ca5afaad 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-410M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 574 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml index fcb38f61..43b821bd 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-510-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-09-29' + GPU Base Frequency: 523 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml index 64572fff..48c6d867 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-605-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-02' + GPU Base Frequency: 523 MHz VRAM Frequency: 897 MHz VRAM Bandwidth: 14.35 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml index b739b713..124aa45f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-12-01' + GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml index 6b6ba64d..e5a73f10 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-12-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml index 538282a3..a568cb00 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-22' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml index f38af0c3..c1528409 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-07-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml index d8c08356..4a2bb23a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-705M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-09-27' + GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml index 2302d5af..2e67eda6 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-710M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-01-09' + GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml index ebbd34e8..1888a55b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-720A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-07-01' + GPU Base Frequency: 775 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml index b1c86da2..2cc2fe35 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-03-17' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml index 4b5f0c7b..a5fad663 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-03-17' + GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml index b2481c17..62fd48f9 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-03-17' + GPU Base Frequency: 625 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml index 880bf076..55f46b12 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-820M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-11-27' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml index d4ee0706..61e595af 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-08-20' + GPU Base Frequency: 589 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml index 77ed1ae0..71e460ea 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-04-13' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml index 028145bc..40bc40c5 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-04-13' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml index e3ee67f1..1744f8dd 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-04-13' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml index e70b9182..dc139629 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-520MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-30' + GPU Base Frequency: 900 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml index d58aad20..b8163f3a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-14' + GPU Base Frequency: 871 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml index a57eed85..4d529921 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-545.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-14' + GPU Base Frequency: 720 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml index 67f2337b..24c1d35c 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-550M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-26' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml index c112cc8d..ebbe3f6f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-2-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-26' + GPU Base Frequency: 675 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml index 0d2433f1..4bba5974 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-555M-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-26' + GPU Base Frequency: 590 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 43.20 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml index 9cf4dddd..ffd2f777 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-09-09' + GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml index 453aec81..0b3a80f9 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-02' + GPU Base Frequency: 810 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml index 5ed73c8e..5a82faa5 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-02' + GPU Base Frequency: 810 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml index a68a4b8e..4077735a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-610.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-02' + GPU Base Frequency: 810 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml index 9efb71a7..c82bb436 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-620-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-02' + GPU Base Frequency: 810 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml index 22ac7a26..3739a785 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-625M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-10-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml index bcd4025d..317a9063 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-635M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-22' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml index 19d31c15..5489c128 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-24' + GPU Base Frequency: 720 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml index d064d4ec..51aa7e9a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-04-24' + GPU Base Frequency: 776 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml index 85c60f9b..a0e2d307 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-705-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-03-27' + GPU Base Frequency: 874 MHz VRAM Frequency: 825 MHz VRAM Bandwidth: 13.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml index 5b989756..6797f60e 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-710M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-01-09' + GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml index f9cb7be0..3f072afc 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-07-01' + GPU Base Frequency: 775 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml index 56d71630..d11f7928 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GT-720M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-04-01' + GPU Base Frequency: 775 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml index 4d0d048f..f9d15e98 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-03-15' + GPU Base Frequency: 783 MHz VRAM Frequency: 902 MHz VRAM Bandwidth: 57.73 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml index d476cf46..a5581de3 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-07-11' + GPU Base Frequency: 783 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml index 87772b01..57c99f29 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-11-15' + GPU Base Frequency: 650 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 81.60 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml index 69969f3f..7e9a525a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-460-v2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-09-24' + GPU Base Frequency: 779 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 96.19 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml index 5fab0528..4e4697cc 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-550-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-03-15' + GPU Base Frequency: 900 MHz VRAM Frequency: 1026 MHz VRAM Bandwidth: 98.50 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml index 21e4116b..daa0097f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-555-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-14' + GPU Base Frequency: 736 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml index 8c499a84..8ed10672 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-11-29' + GPU Base Frequency: 552 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 128.3 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml index b8aeb03f..036e6c1f 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-02-20' + GPU Base Frequency: 736 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml index 60b2a043..24c90408 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-11-29' + GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml index c43ed8a0..0f08f510 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-03-30' + GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 121.6 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml index 7d74af87..a45e7d0e 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-25' + GPU Base Frequency: 823 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 128.3 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml index 16626844..3c1ca65d 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-17' + GPU Base Frequency: 810 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml index 3047980f..9a1b9c9a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-560M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-05-30' + GPU Base Frequency: 775 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 60.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml index 3ee1b9af..13370ed2 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-12-07' + GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml index ce6c73f7..9bdda105 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-12-07' + GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml index e0aa7708..0183f3c7 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-570M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-06-28' + GPU Base Frequency: 575 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml index 2b7d422e..f9312e6c 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-06-06' + GPU Base Frequency: 772 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 192.4 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml index a7eb7f6d..9264fe58 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-11-09' + GPU Base Frequency: 772 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 192.4 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml index 6ef22920..cd03c06a 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-580M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-06-28' + GPU Base Frequency: 620 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml index 58b1fec8..6e432042 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-590.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-03-24' + GPU Base Frequency: 608 MHz VRAM Frequency: 854 MHz VRAM Bandwidth: 164.0 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml index 67dc0b25..18f77810 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-670M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-22' + GPU Base Frequency: 598 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml index 445135be..ac70a19b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/GeForce-GTX-675M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-22' + GPU Base Frequency: 620 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml index bada2874..281ae885 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-310.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-06-26' + GPU Base Frequency: 523 MHz VRAM Frequency: 875 MHz VRAM Bandwidth: 14.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml index 55efcf24..5ac6fcf8 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-315.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2013-03-10' + GPU Base Frequency: 523 MHz VRAM Frequency: 875 MHz VRAM Bandwidth: 14.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml index 6f2a571a..d5435045 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-4200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 810 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml index 986b0d17..729f3454 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/NVS-5200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-06-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml index ed5766d4..c4e67905 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-5010M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 83.20 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml index 7b7f9abf..91112aee 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-7000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-05-02' + GPU Base Frequency: 651 MHz VRAM Frequency: 851 MHz VRAM Bandwidth: 163.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml index 3edaf862..8b45bda1 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Quadro-Plex-7000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 144.0 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml index 980e043a..5e9b5766 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml index 889b97dc..ba9fdd43 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-C2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml index b6d81d21..0ae9ad35 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml index 3acbf656..a4bda90b 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-M2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml index d9278179..1186fc31 100644 --- a/specs/GPUs-CONSUMER/Fermi-2.0/Tesla-X2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Fermi.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi.yaml diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml index 932200b4..88e7b332 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-615-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-05-15' + GPU Base Frequency: 660 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml index bfa924f3..5714684f 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-415M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml index 6c0e664b..030b0620 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml index 443efb54..361e5602 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-420M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml index 8909cc59..488aa249 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-425M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 560 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml index cf34817c..f06e77a3 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-10-11' + GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml index f6607879..0e4642a1 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-10-11' + GPU Base Frequency: 700 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml index 99f8dfc7..b3b94ca6 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-10-11' + GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml index 4960b0c1..05babb79 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-435M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml index f289eeff..e08c8370 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-09' + GPU Base Frequency: 810 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml index 92fe6bd1..9a862ac0 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-10-11' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 43.20 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml index 8cb04f7b..0bd2303a 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-440.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-01' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml index 361da20a..5c6f4ee3 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-445M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 590 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml index 93b1f2d1..a7104e14 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-520M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml index 78d1c04d..edad0cc3 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-525M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml index e78bfbcc..9ee5687e 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-540M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 672 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml index dc7e6b0b..42d434d0 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-555M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-06-15' + GPU Base Frequency: 753 MHz VRAM Frequency: 785 MHz VRAM Bandwidth: 50.24 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml index 67aef8ff..2c271881 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-05-15' + GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml index ecf9b9c5..d849cc42 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-08-23' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml index bd95e4a7..ab6256e3 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-05-15' + GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml index 2645f860..8fefd56e 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-630M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-03-22' + GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml index ad5ba35b..73cfe2e2 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-640M-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-05-04' + GPU Base Frequency: 753 MHz VRAM Frequency: 785 MHz VRAM Bandwidth: 50.24 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml index ee0e063e..984cfe82 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GT-730.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2014-06-18' + GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml index c1bf36ad..bb41a169 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-10-11' + GPU Base Frequency: 790 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml index bd77db1e..bd47197b 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTS-450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-13' + GPU Base Frequency: 783 MHz VRAM Frequency: 902 MHz VRAM Bandwidth: 57.73 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml index 2fbed9cd..32b5d522 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-11-15' + GPU Base Frequency: 650 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml index e7968bfc..be805562 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-03-11' + GPU Base Frequency: 701 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml index f834a840..b3b4d7a4 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-07-12' + GPU Base Frequency: 675 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 86.40 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml index aa40e872..3912ab46 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-460M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 675 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 60.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml index b1ad1770..bc7cde73 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-465.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-05-31' + GPU Base Frequency: 608 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 102.7 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml index 3240f9a7..530d3417 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: 'Never Released' + GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 107.1 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml index 65778cc4..616fe966 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-03-26' + GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 133.9 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml index 7c309936..c5bf38d1 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-470M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 535 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml index e8f02123..7e1dda6d 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480-Core-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: 'Never Released' + GPU Base Frequency: 527 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 134.4 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml index 3452f8c0..ce952327 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-03-26' + GPU Base Frequency: 701 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml index c66b8e12..70036698 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-480M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-05-25' + GPU Base Frequency: 425 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml index b976838a..302d4427 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-485M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 575 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml index 8d475374..4a065145 100644 --- a/specs/GPUs-CONSUMER/Fermi/GeForce-GTX-490.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: 'Never Released' + GPU Base Frequency: 608 MHz VRAM Frequency: 854 MHz VRAM Bandwidth: 164.0 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml index 0abb10eb..ad0f5ae6 100644 --- a/specs/GPUs-CONSUMER/Fermi/NVS-5400M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2012-06-01' + GPU Base Frequency: 660 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml index c814b2b5..31dbebb1 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-13' + GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml index 02939b33..496abd94 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-12-24' + GPU Base Frequency: 625 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml index ec7e7b35..c714cc02 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-10-05' + GPU Base Frequency: 625 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml index d1fea638..20071451 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-01-13' + GPU Base Frequency: 550 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml index 1ee3aa5a..0e5c7a49 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml index 7c0f9ac8..103500e2 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 450 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml index ab83afb6..8b1f0468 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-06-12' + GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 89.86 GB/s VRAM Capacity: 1792 MB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml index 09e1690b..40027bad 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-11-02' + GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 89.86 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml index a3e45f7c..b85cfd7d 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 475 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml index a9d44fe8..24395131 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-23' + GPU Base Frequency: 513 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 120.0 GB/s VRAM Capacity: 2.5 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml index 04b17f38..93e656c0 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-23' + GPU Base Frequency: 513 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 120.0 GB/s VRAM Capacity: 2.5 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml index 2163324f..bfadf5c0 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-07-27' + GPU Base Frequency: 405 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml index 4f3792df..dc54940e 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 560 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml index 689e4776..44f0fe3f 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-12-13' + GPU Base Frequency: 640 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml index 4a813ed2..65938664 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml index cb1aa93a..7be107a5 100644 --- a/specs/GPUs-CONSUMER/Fermi/Quadro-6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2010-12-10' + GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml index bc256fee..9d44a8ff 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-C2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 144.0 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml index fc3b2f4a..a9bd179f 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-C2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml index f7eb8f34..4b0f6000 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 773 MHz VRAM Bandwidth: 148.4 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml index 87bce7f1..b2b06de6 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml index 405e831d..dca08106 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-M2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml index 99cd09f8..e0a92881 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-S2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 574 MHz VRAM Frequency: 773 MHz VRAM Bandwidth: 148.4 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml index 062be1c7..0031c441 100644 --- a/specs/GPUs-CONSUMER/Fermi/Tesla-X2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: '2011-07-25' + GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Hopper.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-CNX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-PCIe-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-PCIe-96-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-SXM5-64-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-SXM5-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H100-SXM5-96-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H800-PCIe-80-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml diff --git a/specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Hopper/H800-SXM5.yaml rename to specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml diff --git a/specs/GPUs-CONSUMER/Kelvin.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kelvin.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml index 225d4529..d7975a46 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-10-01' + GPU Base Frequency: 175 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 128 mm² GPU: NV20 GPU Variant: NV20 Ti200 diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml index 06f75442..afee6d99 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3-Ti500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-10-01' + GPU Base Frequency: 240 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 128 mm² GPU: NV20 GPU Variant: NV20 Ti500 diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml index 0615edf7..b7a07a7a 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-02-27' + GPU Base Frequency: 200 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 128 mm² GPU: NV20 GPU Variant: NV20 A5 diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml index eb2db130..6094142b 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Go-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-11-14' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV28 GPU Variant: 4200 Go diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml index e090d0e3..bdd4d37f 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200-8X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV28 GPU Variant: Ti 4200-8X diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml index 97bddfba..647dbb05 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 GPU Variant: Ti 4200 diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml index 248edb7f..dba19976 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml index c39e973e..5201e30d 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-06' + GPU Base Frequency: 300 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 GPU Variant: Ti 4600 diff --git a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml index fccea991..38fddf63 100644 --- a/specs/GPUs-CONSUMER/Kelvin/GeForce4-Ti-4800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-03-15' + GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV28 GPU Variant: Ti 4800 diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml index 04afce9b..283e29be 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro-DCC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2001-05-14' + GPU Base Frequency: 200 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 3.680 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 128 mm² GPU: NV20 GPU Variant: NV20GL A5 diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml index 39d39eaf..79951428 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-06-05' + GPU Base Frequency: 199 MHz VRAM Frequency: 223 MHz VRAM Bandwidth: 7.136 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV28 GPU Variant: Go GL 700 diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml index edca7cc5..3aa52c14 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-700-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-19' + GPU Base Frequency: 275 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 GPU Variant: NV25 GL diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml index 4945b7e7..9b524704 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-750-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-19' + GPU Base Frequency: 275 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 GPU Variant: NV25 GL diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml index 601ff8ee..b4162e58 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-900-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-02-19' + GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV25 GPU Variant: NV25 GL diff --git a/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml index 5fc0972e..72a5f6aa 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Quadro4-980-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2002-11-12' + GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV28 GPU Variant: NV28GL A2 diff --git a/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml index d1f2db29..c316c00c 100644 --- a/specs/GPUs-CONSUMER/Kelvin/Xbox-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2001-11-15' + GPU Base Frequency: 233 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 142 mm² GPU: NV2A GPU Variant: XGPU diff --git a/specs/GPUs-CONSUMER/Kepler-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-710A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-805A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-810A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-825M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-910M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-920M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml index 8eb0b6f0..177c00cb 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-05-29' + GPU Base Frequency: 902 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml index 5e6d9a40..ab85133b 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-05-29' + GPU Base Frequency: 902 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml index 6381d2ff..bef94f41 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-635-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-10-01' + GPU Base Frequency: 967 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml index 2f459c08..a32978c9 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-05-29' + GPU Base Frequency: 1046 MHz VRAM Frequency: 1252 MHz VRAM Bandwidth: 40.06 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml index 59bbd4c5..45a471be 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2015-04-09' + GPU Base Frequency: 797 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml index e460fe78..4f38648a 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-03-27' + GPU Base Frequency: 954 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml index e6876dc9..9b6a5150 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-710.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-03-27' + GPU Base Frequency: 954 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml index dfc9779f..2ca2d843 100644 --- a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-720.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-03-27' + GPU Base Frequency: 967 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-730A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/GeForce-GT-735M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/Jetson-TK1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K510M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/Quadro-K610M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler-2.0/Tesla-K80.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml diff --git a/specs/GPUs-CONSUMER/Kepler.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml index 0cda4a90..47362134 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-18' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml index 26cb328b..d5a662e6 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml index c255be65..7698ea07 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K120Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml index 2e9c3d81..3772bc8b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K140Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml index 04399ae2..57b1807d 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K160Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml index b9a62dc3..17e8aca6 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K180Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml index 1180f461..7746c3e2 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-05-11' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml index 234e6513..db2ef2ad 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml index 9afe1d9a..b346db72 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K220Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml index 4b024dec..08b80b36 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K240Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml index 8b6515b8..0ab14a7c 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K260Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml index 810d7873..36784ad4 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K280Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-06-28' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml index 3313d087..5d0cf54c 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K340.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-07-23' + GPU Base Frequency: 954 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml index 7fef2aab..ebee325e 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml index 1559bdad..e21b0c95 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K520.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-07-23' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml index 3c23ebcc..3690b1aa 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K520Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml index ecd666ed..3df0a6a9 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K540Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml index 03264be3..9f063a44 100644 --- a/specs/GPUs-CONSUMER/Kepler/GRID-K560Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-02' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-810M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml index a6fd2320..6f8e8c4b 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-1030-GK107.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2018-09-30' + GPU Base Frequency: 1058 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml index 063c7a27..f824e1ad 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-630-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-04-24' + GPU Base Frequency: 875 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml index 10e7f312..a2010656 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-04-24' + GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-640M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-645M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-650M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml index a067a7af..2b504820 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-720-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2017-10-29' + GPU Base Frequency: 993 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml index c587d6c0..624cc73a 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2015-04-09' + GPU Base Frequency: 902 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-730M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-740-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml index c5edc966..23bc5dfb 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-05-29' + GPU Base Frequency: 993 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-740M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-745A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-745M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-750M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GT-755M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml index a7de7ec3..d6e0b8fd 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-04-22' + GPU Base Frequency: 824 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-Boost.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml index 5dbe566b..03153dae 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-31' + GPU Base Frequency: 928 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 86.40 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml index 29a7a3d5..25c47384 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-11-27' + GPU Base Frequency: 1058 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-660M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-670MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml index 3049175d..47225664 100644 --- a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-675MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-10-01' + GPU Base Frequency: 654 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-690.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-750-Ti-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-Ti-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-760M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-765M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-770M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-775M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-780M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-870M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-880M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-BLACK.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN-Z.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/GeForce-GTX-TITAN.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml index 29a0fdf2..b6fddc44 100644 --- a/specs/GPUs-CONSUMER/Kepler/NVS-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Never Released' + GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/NVS-510.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml index 19b5b75f..2226c0f8 100644 --- a/specs/GPUs-CONSUMER/Kepler/NVS-510.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-10-23' + GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml index f5eb220e..d118e890 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-410.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-08-07' + GPU Base Frequency: 706 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 14.26 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml index f0b39031..d2e7daef 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-4100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: 'Unknown' + GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 57.02 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml index e8ecca6f..5a6be294 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-06-01' + GPU Base Frequency: 850 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K1100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml index df0a0701..9b230328 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-01' + GPU Base Frequency: 954 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml index 3016f2b7..9a4c1410 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-01' + GPU Base Frequency: 954 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K2000M-Embedded.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K2000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K200M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K2100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K3000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K3100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml index 03e8b0c6..256fd7ec 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-01' + GPU Base Frequency: 810 MHz VRAM Frequency: 1404 MHz VRAM Bandwidth: 134.8 GB/s VRAM Capacity: 3 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K4000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K4100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml index 7cce8609..cb50559a 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-07-22' + GPU Base Frequency: 876 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K4200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml index 30e7dc46..b018a573 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-08-07' + GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml index bef2e800..56d2b0e0 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000-SYNC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-01-25' + GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml index 2d5b6b85..869a4787 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-08-17' + GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K5200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml index a17bbbd0..40f47f62 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-03-01' + GPU Base Frequency: 876 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml index 5df4e031..34e1afbe 100644 --- a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-07-23' + GPU Base Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s VRAM Capacity: 12 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Quadro-K6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml index 6a7b384e..f5f2bb7e 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K10.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-05-01' + GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml index f48852eb..689e5aa7 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-11-12' + GPU Base Frequency: 732 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 249.6 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml index fffa654c..74c59367 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20Xm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-11-12' + GPU Base Frequency: 732 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 249.6 GB/s VRAM Capacity: 6 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml index 03971bf6..74423551 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20c.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2012-11-12' + GPU Base Frequency: 706 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s VRAM Capacity: 5 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml index 0bbffd0a..5a49059b 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20m.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-01-05' + GPU Base Frequency: 706 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s VRAM Capacity: 5 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml index c2e1703e..3c783f47 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K20s.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-02-18' + GPU Base Frequency: 575 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s VRAM Capacity: 5 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40c.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40d.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40m.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40s.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml index b3e315d1..f0afb767 100644 --- a/specs/GPUs-CONSUMER/Kepler/Tesla-K40st.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2013-11-22' + GPU Base Frequency: 575 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s VRAM Capacity: 12 GB diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K40t.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml diff --git a/specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Kepler/Tesla-K8.yaml rename to specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml index 36dfe505..063cccb2 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M6-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2015-08-30' + GPU Base Frequency: 722 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-1Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-2Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-4A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GRID-M60-8Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-750-GM206.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-950.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-960.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-965M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-970M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-980M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-Nano.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml index 10c84d9e..9212378c 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Jetson-TX1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2015-01-04' + GPU Base Frequency: 998 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M2200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M3000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml index af88fa22..6bc379f2 100644 --- a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2015-06-29' + GPU Base Frequency: 773 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M4000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M5500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000-24-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Quadro-M6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-16nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Switch-GPU-20nm.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40-24-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M40.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell-2.0/Tesla-M60.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GRID-M10-8Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GRID-M3-3020.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml index 26ec1565..176fba29 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GRID-M40.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2016-05-18' + GPU Base Frequency: 1033 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 83.20 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-830A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-830M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-840A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-840M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-845M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-920MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-930A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-930M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-940A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-940M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-940MX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-945A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-945M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml index cce72316..185f127c 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-745-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-02-18' + GPU Base Frequency: 1033 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-750.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml index 88681dc5..b37bee71 100644 --- a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-850M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2014-03-12' + GPU Base Frequency: 902 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 32.03 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-860M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950A.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-950M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-GTX-960M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-MX110.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/GeForce-MX130.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/NVS-810.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-K1200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-K2200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-K2200M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-K620.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-K620M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M1000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M1200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M2000M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M500M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M520-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M600M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Quadro-M620-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Maxwell/Tesla-M10.yaml rename to specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml diff --git a/specs/GPUs-CONSUMER/Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010-DDR4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GT-1010.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030-DDR4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GT-1030.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-3-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1050.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-3-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-5-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-6-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1060-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-GDDR5X.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-11Gbps.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-GTX-1080.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX150-GP107.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX150.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX230.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX250.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX330.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/GeForce-MX350.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml index 5eadcc9d..321f9770 100644 --- a/specs/GPUs-CONSUMER/Pascal/Jetson-TX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.2' Release Date: '2016' + GPU Base Frequency: 1300 MHz VRAM Frequency: 1866 MHz VRAM Bandwidth: 59.71 GB/s VRAM Capacity: 8 GB diff --git a/specs/GPUs-CONSUMER/Pascal/P102-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P102-100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P102-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P102-101.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P104-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P104-100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P104-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P104-101.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P106-090.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P106-090.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P106-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/P106-100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/P106M.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Pascal/P106M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml index f07acc0b..106f974c 100644 --- a/specs/GPUs-CONSUMER/Pascal/P106M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '3.0' Release Date: '2019-01-23' + GPU Base Frequency: 1291 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-GP100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P1000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P1000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P2000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P2200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P3000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P3200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P4000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P4200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P5000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P5000-X2-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P520-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P520-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P5200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P600-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P620-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Quadro-P620.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/TITAN-X-Pascal.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/TITAN-Xp.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P10.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P100-DGXS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P100-PCIe-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P100-SXM2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P40.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml diff --git a/specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Pascal/Tesla-P6-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Rankine.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Rankine.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine.yaml diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml index 3c9322b5..b5f2d58c 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml index e9a436e4..76b62b05 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 5200 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml index 04766421..07f6c698 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: FX 5200 NPB diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml index c1bc0150..096253ad 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: FX 5200 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml index 64aff4e9..0f4cc832 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 325 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 5200 Ultra diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml index ca8c27f0..ccb0c1ca 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 325 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 5200 Ultra diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml index 7caa8574..b45b2a8f 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 5200 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml index 26d66b4e..501a21fe 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-03-17' + GPU Base Frequency: 270 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: FX 5500 NPB diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml index cc0660c7..1ab6153c 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-03-17' + GPU Base Frequency: 270 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: FX 5500 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml index 8bee6756..a36e45f5 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-17' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: GF-FX-5600-U-A1 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml index b85d7160..913fd9f6 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-17' + GPU Base Frequency: 235 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 5600 XT diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml index c715f817..a7367a10 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-17' + GPU Base Frequency: 235 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 5600 XT diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml index fc7abb54..f307141e 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 325 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 5600 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml index f34e4abe..3acfa75f 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-EP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml index f8430c2f..4d42f5a7 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-08-18' + GPU Base Frequency: 425 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36S TDP: 25 W diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml index d6c352f4..a0e5b530 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36 GPU Variant: FX 5700LE diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml index 16ca2e57..a092ecbf 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-10-23' + GPU Base Frequency: 475 MHz VRAM Frequency: 453 MHz VRAM Bandwidth: 14.50 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36B GPU Variant: FX 5700 Ultra diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml index 4028bfbd..c789d365 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-09-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml index d8bae8dd..ccf8bb03 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-10-23' + GPU Base Frequency: 425 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36B TDP: 25 W diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml index 7063493d..42d7b7bd 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 199 mm² GPU: NV30 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml index 089c4f90..acd24929 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-06' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 199 mm² GPU: NV30 TDP: 44 W diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml index e3081971..3e57210d 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-10-23' + GPU Base Frequency: 450 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 GPU Variant: FX 5900 Ultra diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml index 5f3fdfeb..23907486 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-05-12' + GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 TDP: 35 W diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml index dd6e43cb..84e8d6fb 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900-ZT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-05-12' + GPU Base Frequency: 325 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml index 77a4ecdc..1a818bf1 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-05-12' + GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 GPU Variant: FX 5900 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml index 8e8a6181..371c2b19 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-5950-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-10-23' + GPU Base Frequency: 475 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 30.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV38 GPU Variant: FX 5950 Ultra diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml index 239c6c36..2c30a0b0 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 Go5100 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml index e4ceefa8..83af4290 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 Go5200 32M diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml index 880dc511..e3698f7e 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: Go5200 64M diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml index 4becc0e7..f877d8cb 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: Go5200 NPB 32M diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml index 0939d04d..9b2320da 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200-NPB-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: Go5200 NPB 64M diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml index cd5c66f0..3c42b0dd 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 32 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: Go5200 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml index 936d5d9b..e4bd1221 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml index a7dd5c6a..1051482b 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml index d74d64e4..b9ff3ef3 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml index 96bc76a2..70f7a0bf 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 Go5600 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml index 85fa3a60..03b90e50 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-01' + GPU Base Frequency: 325 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 9.440 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 Go5650 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml index 569e794d..a12d9ae9 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-FX-Go5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2005-02-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36 GPU Variant: Go5700-V diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml index 2e71df7f..69e2a5df 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-02-17' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV37 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml index 47267e48..dd08ea51 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5750.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-02-17' + GPU Base Frequency: 425 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 125 mm² GPU: NV39 GPU Variant: FX 5700 diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml index 579e939a..c8778f43 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-03-17' + GPU Base Frequency: 350 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 17.60 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 TDP: unknown diff --git a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml index 6e08acd2..76d9d690 100644 --- a/specs/GPUs-CONSUMER/Rankine/GeForce-PCX-5950.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-02-17' + GPU Base Frequency: 475 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV38 TDP: 57 W diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml index f0c5280e..8dca8f0d 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-01-21' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 199 mm² GPU: NV30 GPU Variant: NV30GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml index 65bb37fe..2483b1a6 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-04-01' + GPU Base Frequency: 425 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36B GPU Variant: FX 1100 diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml index ffbce07a..7d5b11dd 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-1300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-08-09' + GPU Base Frequency: 350 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 17.60 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV38 GPU Variant: NV38 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml index 77a3ebb1..267ec5af 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-01-21' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 199 mm² GPU: NV30 GPU Variant: NV30GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml index d48fe203..5bb682d6 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-07-22' + GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 GPU Variant: NV35 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml index f9a0f867..94b6a37c 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-07-22' + GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 GPU Variant: NV35 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml index 564f2ddb..c494bdef 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-06-28' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV37 GPU Variant: NV37 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml index 8edc98a0..3f447068 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-05-21' + GPU Base Frequency: 270 MHz VRAM Frequency: 240 MHz VRAM Bandwidth: 7.680 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml index 9af79b47..25d3c115 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-600-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-03-17' + GPU Base Frequency: 270 MHz VRAM Frequency: 240 MHz VRAM Bandwidth: 7.680 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml similarity index 92% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml index 985fb72f..a6288477 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-03-17' + GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 207 mm² GPU: NV35 GPU Variant: NV35 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml index a0de2379..d94f0d8a 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-02-25' + GPU Base Frequency: 295 MHz VRAM Frequency: 285 MHz VRAM Bandwidth: 9.120 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 133 mm² GPU: NV36 GPU Variant: Go1000 diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml index bb4f3bab..4b6e4f19 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-FX-Go700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-06-25' + GPU Base Frequency: 295 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 9.440 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 GPU Variant: NV31 Go700 diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml index 30722045..9b38949a 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-05-25' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 GPU Variant: NV34 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml index 7ec3d2ee..db894370 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2003-10-28' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B GPU Variant: NV34 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml index 2341c84a..5df55ba7 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-280-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2004-05-25' + GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV37 GPU Variant: NV37 GL diff --git a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml similarity index 91% rename from specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml index cf1a822a..e2931f95 100644 --- a/specs/GPUs-CONSUMER/Rankine/Quadro-NVS-55-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5 (full)' OpenCL Support: 'N/A' Release Date: '2005-05-31' + GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 64 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B TDP: 10 W diff --git a/specs/GPUs-CONSUMER/Tesla-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Tesla-2.0.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml index a9ff73a8..c81645cc 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-205-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-11-26' + GPU Base Frequency: 589 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml index b20c7970..249b1514 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-09-04' + GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml index 053457db..c9e7e54a 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml index 90591382..ee994153 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml index d320104b..6cf2873b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-210.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml index a99fb8f1..d6dae520 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-305M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-10' + GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml index 24ed8d43..43f2df8f 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-11-27' + GPU Base Frequency: 589 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml index a05d9e21..f9ebff47 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-310M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-10' + GPU Base Frequency: 625 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml index 77bf2435..cdde1184 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-02-22' + GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml index 68ade453..937bd536 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-315M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml index 02d78452..f9d6cf0f 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-320M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2010-04-01' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml index 840c446b..f10e303d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml index 9b3ed4bc..35e28f13 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-405M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-01-05' + GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml index aa764aac..b6beb497 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-505-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2013-01-06' + GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml index 89bc04eb..81293be1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 520 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml index aa0d3091..146436ba 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-07-12' + GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml index e6339882..95cca846 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-03-12' + GPU Base Frequency: 589 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml index f19ae441..83b1259e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2012-06-13' + GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml index 192608ba..9a4c64bb 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G105M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-12-14' + GPU Base Frequency: 535 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml index 57dc4142..4e60b620 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-08-24' + GPU Base Frequency: 589 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml index 2bc51a3e..8ea927df 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-G210M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml index fe2924f1..490e3e6e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 506 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml index 502c00de..005d8fb1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-220.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 615 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml index 5594f4ac..97606d0e 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-230M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 500 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml index e277208e..1634b197 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-11-17' + GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml index f4d8f2c8..701122a5 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-240M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 550 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml index 8e951679..ac973cae 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-320-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-02' + GPU Base Frequency: 540 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml index 0894ba4d..2f8300ef 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-325M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-10' + GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml index abf9f035..ce0547d0 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-02' + GPU Base Frequency: 540 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml index 2f2ba790..7f7a5ee5 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-04-26' + GPU Base Frequency: 500 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml index c7c7c438..510557dc 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-330M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-10' + GPU Base Frequency: 625 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml index d14a9194..30ae4c86 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-335M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml index 01d06dd3..4a3a86ae 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-02' + GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 27.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml index 935077b0..841b7bf5 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GT-415-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-09-03' + GPU Base Frequency: 625 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 10.66 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml index 99160785..b335b838 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-250M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 50.56 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml index c85643d4..6410eaf1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-260M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml index ce8e1b14..db70722d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-350M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 50.56 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml index 2f11452e..0d362588 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTS-360M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 550 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml index 292f35cf..320a702f 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-27' + GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml index 0f537f7e..943c147b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Core-216.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-16' + GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml index 64f18ea5..12be51a7 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-12-08' + GPU Base Frequency: 518 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 112.9 GB/s VRAM Capacity: 1792 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml index 3d2a774c..ce23bd6f 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-23' + GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml index 02400ded..6211a464 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-260.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-16' + GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml index d86da7d0..0573d042 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-275.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-15' + GPU Base Frequency: 633 MHz VRAM Frequency: 1134 MHz VRAM Bandwidth: 127.0 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml index 4f45352c..614dbe60 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-280.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-16' + GPU Base Frequency: 602 MHz VRAM Frequency: 1107 MHz VRAM Bandwidth: 141.7 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml index f42d88c6..07d13f54 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-15' + GPU Base Frequency: 648 MHz VRAM Frequency: 1242 MHz VRAM Bandwidth: 159.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml index e22ff694..c3ba0360 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-17' + GPU Base Frequency: 648 MHz VRAM Frequency: 1152 MHz VRAM Bandwidth: 147.5 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml index 757b595d..0d1a3831 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-285.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-12-23' + GPU Base Frequency: 648 MHz VRAM Frequency: 1242 MHz VRAM Bandwidth: 159.0 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml index 35c8d040..2fb8b73d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-16' + GPU Base Frequency: 576 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 112.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml index 2357abba..123daf35 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-295.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-08' + GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml index ddf22808..0525c462 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '4.6' OpenCL Support: '1.1' Release Date: 'Never Released' + GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 133.9 GB/s VRAM Capacity: 1280 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml index eb733f9e..59c7d94d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/ION-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-03' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml index e6e62f59..08cb9450 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-2100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 535 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml index 5494caab..b938e820 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-01-08' + GPU Base Frequency: 520 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml index 05af743b..e80479f4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-3100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml index c4aee940..dd0f2b24 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/NVS-5100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml index 1326815d..9a278f6a 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2011-04-05' + GPU Base Frequency: 450 MHz VRAM Frequency: 770 MHz VRAM Bandwidth: 12.32 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml index 9374e867..a24e68b4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-CX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-11' + GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml index 8d74b472..99cd68b1 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-1800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 560 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml index 29cd2389..a73c771b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-12-01' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml index 4d638169..c5b748a4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-3800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-30' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml index 1385d79c..e4300fc6 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-380M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml index e85a428d..cc5d9f0b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-11' + GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml index 0f646813..0910140c 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-4800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-11' + GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml index 673d136a..42d2fab5 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-11' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml index 5bf8cb85..770d7365 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-FX-880M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-07' + GPU Base Frequency: 550 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml index 0b985701..afe522d7 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-D2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-25' + GPU Base Frequency: 648 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml index d7f56645..5ed7a23f 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Quadro-Plex-2200-S4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-25' + GPU Base Frequency: 648 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml index fdf17754..56f526b4 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-09' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml index c9e29286..747b716d 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-C1080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-09' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml index 54cb8b0d..ba60cdab 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-M1060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 2 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml index c59f3c29..84d9d56b 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml index d7b343f4..c37dd5f9 100644 --- a/specs/GPUs-CONSUMER/Tesla-2.0/Tesla-S1075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s VRAM Capacity: 4 GB diff --git a/specs/GPUs-CONSUMER/Tesla.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Tesla.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla.yaml diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml index 7f4c5e95..92f39941 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8100-+-nForce-720a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml index c0c17a29..be931c63 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml index a37c8c5f..870fa369 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-AMD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-03' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml index fa16d141..8550a48f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8200M-G-mGPU-Intel.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-03' + GPU Base Frequency: 400 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml index 7957a896..08b76016 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml index fe900989..63d4e8fe 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml index 184598b1..f01af791 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-12-04' + GPU Base Frequency: 567 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml index 54262fcf..841037b3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-12-04' + GPU Base Frequency: 567 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml index 51d5db7e..dd49cbec 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml index 49a792d0..5664f896 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-01' + GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml index 15902f38..8898e3c7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-12-04' + GPU Base Frequency: 540 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml index 3f072dfb..705423f2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml index f8ad1d2f..7bea285f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml index d3a1131e..ec829753 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8400M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 450 MHz VRAM Frequency: 602 MHz VRAM Bandwidth: 19.26 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml index 69851197..1d2cafba 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8500-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml index cd89063c..05ea6b33 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml index 93f4e6a8..5261150b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 600 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 24.00 GB/s VRAM Capacity: 128 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml index f14c63e9..4b88606c 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 540 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml index 43ca7114..74024235 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-09-21' + GPU Base Frequency: 675 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 32.26 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml index 429a6253..9c96a513 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-04-17' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml index 3dc54add..3af17ced 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-01' + GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml index b1f08206..661be46a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml index b4ccf681..3f8256c3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-06-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml index ad5920e8..7a9b46ef 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-01-31' + GPU Base Frequency: 500 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml index 31d6043e..c55984f0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-01-31' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 384 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml index 7d30ab87..4c3ca998 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml index 50ec2677..8cce70e1 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-10-29' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml index a7654e87..38649859 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-320.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-02-12' + GPU Base Frequency: 513 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 63.36 GB/s VRAM Capacity: 320 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml index 3439bd12..83ea402a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-12-11' + GPU Base Frequency: 650 MHz VRAM Frequency: 820 MHz VRAM Bandwidth: 52.48 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml index 4b406ee6..01b1753d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-640.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2006-11-08' + GPU Base Frequency: 513 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 63.36 GB/s VRAM Capacity: 640 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml index d668787d..c6695103 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTS-Core-112.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-11-19' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 640 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml index 0e172f1a..9ef1bd52 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2006-11-08' + GPU Base Frequency: 576 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 86.40 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml index ecdfca03..a5e9755a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-05-02' + GPU Base Frequency: 612 MHz VRAM Frequency: 1080 MHz VRAM Bandwidth: 103.7 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml index 256c335f..0a16fe63 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-11-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml index 6c8374e0..35f486a7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-8800M-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-11-01' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml index 041f8606..c58ba449 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml index 09fbce35..463c0be2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-AMD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-07-29' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml index 953ff7ae..18913fdc 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9100M-G-mGPU-Intel.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-07-29' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml index 2ca432b3..69dd0eff 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 500 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml index d8369493..389d1a2a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-03' + GPU Base Frequency: 529 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 11.23 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml index e3bd9ed3..18e67fbe 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-03' + GPU Base Frequency: 529 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml index 7e719f22..94f4a2c3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-10-15' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml index 94a4e739..289db8e4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-+-nForce-730i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml index f0e0400a..3fde1d7b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml index 90fb909a..1f9dc735 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 567 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml index 5472059f..f6c93e34 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-01' + GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml index 67039a62..d8601384 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-01' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml index 501e01b2..338add79 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-04' + GPU Base Frequency: 580 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 11.23 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml index c015737e..a122707d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9300M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-04' + GPU Base Frequency: 580 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml index b7a35ca0..6f4ddbcc 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-27' + GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml index e7ec4e9f..812226be 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-27' + GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml index 0b41b972..68b8dde6 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-27' + GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml index 6affae92..2e78ac1d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-04-17' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml index 4cf70c7b..529400c2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-10-15' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml index f0095624..4a72dad1 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9400M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-10-15' + GPU Base Frequency: 580 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml index a2b70850..6f033872 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml index 9e35f1cb..a60b19c6 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 550 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 16.13 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml index 8578e6f2..920f3ee4 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-05-19' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml index 492c37d4..034d8b97 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml index 0fd06ea3..2a79f336 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml index b30826f4..41e8f57e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml index cf5b1c22..0539acd0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-03' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml index d031bbc4..7cb7e13e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9500M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml index b4453084..ebf0d9c3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GS-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 48.00 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml index a71c5001..1d953723 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-10-23' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml index ce3948a3..3604540d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GSO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-04-28' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 384 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml index 4ab705a2..2039e17b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-21' + GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml index 1061cdf7..72f876eb 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-12-22' + GPU Base Frequency: 600 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 17.02 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml index 7563922e..b9ae0b2b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-21' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml index 23eea921..bf322aff 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-21' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml index d9dc3b94..37a262fd 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-05-27' + GPU Base Frequency: 580 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml index ae711849..2bab1d07 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-03' + GPU Base Frequency: 430 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml index 8c2c14ec..0b218944 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-10-25' + GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml index ec710f2f..03474b23 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-06-04' + GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml index 0c2c987f..1ff3812e 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-03-13' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml index 280f67a9..4ef10e1d 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9650M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-19' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml index 7b8f1343..095f446f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml index afbab4bd..6c78d3d3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9700M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 530 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml index d78706e4..7554dc8a 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-21' + GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml index 961d4c59..7a8ada05 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-21' + GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml index 7f89621c..b21408d2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX+.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-16' + GPU Base Frequency: 738 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml index 8febd234..c00a49cc 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-03-28' + GPU Base Frequency: 675 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml index 48feb289..3ec48069 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-03-18' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml index af177ead..77500744 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-01' + GPU Base Frequency: 530 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml index 89705979..d05288d7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml index 3aad9e5d..36c6d969 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-29' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml index d7bbacad..98ccc4a3 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-9800S.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-15' + GPU Base Frequency: 600 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml index b5be2b3f..37ea713c 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G100-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-10' + GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G102M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G102M.yaml index 20c59761..9a4ba23f 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G102M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G102M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-01-08' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml index 1ed99797..3c7d1043 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G103M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-09-01' + GPU Base Frequency: 640 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml index 3a42da26..e89650aa 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G110M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-08' + GPU Base Frequency: 400 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml index fb45d430..9c9acaf0 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G205M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2009-01-08' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml index 4df4c6ea..5c742ff8 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-G210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-05-26' + GPU Base Frequency: 550 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 8.064 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml index a67b5a12..8e022c26 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-20' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml index a7602e84..6f2bb5d7 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-10' + GPU Base Frequency: 738 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 16.13 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml index 839430ee..440c50ff 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-12-12' + GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml index 337fffb5..46f292f2 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-120M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml index f9255112..050db12b 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-12-12' + GPU Base Frequency: 600 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 38.02 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml index 8a8796eb..000446b5 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-10' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 24.00 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml index 52870784..fa1bd803 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-130M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-08' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml index c1bf3476..08d0ce87 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-140-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-10' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml index f71866f9..6d138296 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-220M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml index ef734d97..8e6f26c5 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-27' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 24.00 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml index be248d9c..c8d21b73 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-230.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-10-12' + GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml index f7f8c290..99e448d9 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-240M-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-01-15' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml index 5bc80b9e..59bab127 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GT-320M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-06-15' + GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml index 8ece8240..eb9b7d07 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-10' + GPU Base Frequency: 738 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml index 8ab2dd03..3091e1af 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-150M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 400 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml index 6bd40ad7..fadff9ae 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-160M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml index 72a53cd7..e0c38068 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-07-01' + GPU Base Frequency: 675 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml index 72105bfa..5038b392 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTS-250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-04' + GPU Base Frequency: 702 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml index 370f1e6d..68aba2a8 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-260M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 550 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 60.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml index 0029244d..c2a75d52 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-275-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-16' + GPU Base Frequency: 633 MHz VRAM Frequency: 1134 MHz VRAM Bandwidth: 127.0 GB/s VRAM Capacity: 896 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml index 5eb0f419..ccbd7e66 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-280M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-03' + GPU Base Frequency: 585 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 60.80 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml index aaa51e0a..56c89948 100644 --- a/specs/GPUs-CONSUMER/Tesla/GeForce-GTX-285M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2010-02-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/ION-LE.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml index f188f785..592b2644 100644 --- a/specs/GPUs-CONSUMER/Tesla/ION-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-03' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/ION.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/ION.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml index 3cea608b..04ef1d40 100644 --- a/specs/GPUs-CONSUMER/Tesla/ION.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2008-06-03' + GPU Base Frequency: 450 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml index 073f4ae6..ad2007fb 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-06-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml index ea8641a4..b8f0ba9d 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-09-27' + GPU Base Frequency: 520 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml index 8470bcbf..615828a4 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-09-12' + GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml index 7f4ef034..d9ebeaa4 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-10-01' + GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml index f6d38f5f..e3ed6b16 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-1800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-30' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml index cd98573b..d8f82d9d 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-14' + GPU Base Frequency: 530 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml index 2f27434d..681f0698 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-2800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-12-01' + GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml index 3bef48ab..158056f5 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-02-23' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml index 89cf07aa..a4b58893 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-360M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml index 2b825564..b5b1136c 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-06' + GPU Base Frequency: 540 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml index 86fb0095..7c3c9210 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-09-12' + GPU Base Frequency: 360 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml index a8cce9d1..b85b3393 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-01-08' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml index a63581d0..5d61511e 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-14' + GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml index 9f3c8e38..c74558a6 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-370M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-15' + GPU Base Frequency: 580 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml index 3c03b8be..96bc79b7 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-380.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-03-30' + GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml index 4b0dd05b..58bae2c9 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-3800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-14' + GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml index c7bc61b9..4c7cdbce 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-03-05' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 67.20 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml index 37cc0404..f5f55e93 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-03-05' + GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 67.20 GB/s VRAM Capacity: 768 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml index 3610dc3f..2e10c2e5 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-470.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: 'N/A' Release Date: '2007-09-12' + GPU Base Frequency: 580 MHz VRAM Frequency: System Shared VRAM Bandwidth: System Dependent VRAM Capacity: System Shared diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml index 08c17b50..cc9ddf35 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-4700-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-04-18' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml index 80088946..dcbc4814 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-03-05' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml index 490a44ed..357649ef 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-03-05' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml index adac2e33..ca9aa85f 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-09-12' + GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml index 176a6d3f..62948071 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-570M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-06-01' + GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 22.46 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml index 1a818d1e..5a16ef76 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-580.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-04-09' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml index b2391d32..38c24961 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-FX-770M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-14' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml index 3ed51ebe..3429ef3f 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-130M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml index bce6f23a..d6a5a949 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-135M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 594 MHz VRAM Bandwidth: 9.504 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml index 9de05110..3d53d63a 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-140M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-05-09' + GPU Base Frequency: 400 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml index e7b77ef6..416b0bfa 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-150M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-15' + GPU Base Frequency: 530 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml index 0ff12c95..884c865b 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-160M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-08-15' + GPU Base Frequency: 580 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml index ba5579aa..a2db9bf4 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-290.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-10-04' + GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml index 8c084fd1..c0e5c95a 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-295.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-05-07' + GPU Base Frequency: 540 MHz VRAM Frequency: 695 MHz VRAM Bandwidth: 11.12 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml index 546b877b..14bf7300 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-320M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2007-06-09' + GPU Base Frequency: 575 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml index ea9ea2d0..dc628733 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2009-01-20' + GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml index 0a4b8081..2cd37109 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-NVS-450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-11-11' + GPU Base Frequency: 480 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s VRAM Capacity: 256 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml index b3ba251a..fd26b267 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-1000-Model-IV.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2008-07-25' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml index 2ac7b2cd..5df69ba9 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-D4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-07-25' + GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 1024 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml index 3001dd27..c7bab694 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-Plex-2100-S4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2008-07-25' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml index f15547b7..c466bc08 100644 --- a/specs/GPUs-CONSUMER/Tesla/Quadro-VX-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1' Release Date: '2008-01-08' + GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s VRAM Capacity: 512 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml index 8f6afac1..5c101cdb 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-C870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-05-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml index ece94166..412d231b 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-D870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-05-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml similarity index 95% rename from specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml rename to specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml index 6565eaf4..c2313970 100644 --- a/specs/GPUs-CONSUMER/Tesla/Tesla-S870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '3.3' OpenCL Support: '1.1 (1.0)' Release Date: '2007-05-02' + GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s VRAM Capacity: 1536 MB diff --git a/specs/GPUs-CONSUMER/Turing.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing.yaml diff --git a/specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/CMP-30HX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml diff --git a/specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/CMP-40HX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml diff --git a/specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/CMP-50HX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-16.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-2.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GRID-RTX-T10-8.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1630.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-GDDR6.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU106.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-TU116.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1650.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-GTX-1660.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-MX450-12W.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-10Gbps.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-MX450-30.5W-8Gbps.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-MX550.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060-TU104.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2060.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2070.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Engineering-Sample.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-SUPER.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti-12-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080-Ti.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml diff --git a/specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/GeForce-RTX-2080.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-3000-X2-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-4000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000-X2-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-5000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000-Passive.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-6000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000-Passive.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-RTX-8000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T1000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile-GDDR6.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T1000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T1200-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T1200-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T2000-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Quadro-T2000-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T1000-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T1000.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T400-4-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T400.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T400.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T500-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T500-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T550-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T600-Max-Q.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T600-Mobile.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml diff --git a/specs/GPUs-CONSUMER/Turing/T600.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/T600.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml diff --git a/specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/TITAN-RTX.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Tesla-T10-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Tesla-T4.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Tesla-T40-24-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml diff --git a/specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Turing/Tesla-T4G.yaml rename to specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/VLIW-Vec4.yaml rename to specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4.yaml diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml rename to specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml index 9379fc7c..75923d69 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-2-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml @@ -20,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: Tegra 2 GPU Variant: T20MGS-SHP-A3 diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml similarity index 95% rename from specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml rename to specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml index 908d4dc2..b4a60239 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-3-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml @@ -20,6 +20,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 8 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 80 mm² GPU: Kal-El GPU Variant: T30-P-A3 diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml similarity index 90% rename from specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml rename to specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml index 0aa1180e..24ff29cd 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 3.0' OpenCL Support: 'N/A' Release Date: '2013-08-01' + GPU Base Frequency: 672 MHz VRAM Frequency: 933 MHz VRAM Bandwidth: 7.464 GB/s VRAM Capacity: 512 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: 85 mm² GPU: Wayne GPU Variant: Tegra 4 diff --git a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml similarity index 90% rename from specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml rename to specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml index 6bcbf127..da29b139 100644 --- a/specs/GPUs-CONSUMER/VLIW-Vec4/Tegra-4i-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml @@ -11,6 +11,7 @@ data: OpenGL Support: 'ES 3.0' OpenCL Support: 'N/A' Release Date: '2013-02-19' + GPU Base Frequency: 660 MHz VRAM Frequency: 933 MHz VRAM Bandwidth: 7.464 GB/s VRAM Capacity: 512 MB @@ -18,6 +19,7 @@ data: VRAM Bus Width: 32 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 2 + Shader Processor Count: 0 Die Size: 85 mm² GPU: Wayne GPU Variant: Tegra 4i diff --git a/specs/GPUs-CONSUMER/Volta.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Jetson-AGX-Xavier-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Jetson-Xavier-NX-8-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Quadro-GV100.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/TITAN-V-CEO-Edition.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml diff --git a/specs/GPUs-CONSUMER/Volta/TITAN-V.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/TITAN-V.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-PG500-216.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-PG503-216.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-DGXS-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-FHHL.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-PCIe-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-16-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM2-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100-SXM3-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml similarity index 100% rename from specs/GPUs-CONSUMER/Volta/Tesla-V100S-PCIe-32-GB.yaml rename to specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT.yaml similarity index 100% rename from specs/GPUs-CONSUMER/PowerVR-Series5XT.yaml rename to specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT.yaml diff --git a/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml similarity index 91% rename from specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml rename to specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml index df3d59c1..3e880c34 100644 --- a/specs/GPUs-CONSUMER/PowerVR-Series5XT/Playstation-Vita-GPU.yaml +++ b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: 'ES 2.0' OpenCL Support: 'N/A' Release Date: '2011-12-11' + GPU Base Frequency: 200 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 3.200 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: 6 mm² GPU: SGX543 MP4+ GPU Variant: CXD5315GG diff --git a/specs/GPUs-CONSUMER/XG4.yaml b/specs/GPUs-CONSUMER/XGI/XG4.yaml similarity index 100% rename from specs/GPUs-CONSUMER/XG4.yaml rename to specs/GPUs-CONSUMER/XGI/XG4.yaml diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-8300.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml index d528fc77..8c2572dd 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-8300.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: '2005-11-01' + GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: XG47 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml index 188437f8..e2cdf806 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-8600-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '2.1' OpenCL Support: 'N/A' Release Date: 'Never Released' + GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: XG45 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml index cbc84503..26023918 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 256 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: XG41 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml similarity index 91% rename from specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml index 17709479..36e55718 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-Duo-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: XG40 GPU Variant: Volari V8 Ultra diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml similarity index 91% rename from specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml index 3ebeb743..fecab4db 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V3-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 250 MHz VRAM Frequency: 207 MHz VRAM Bandwidth: 6.624 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: XG42 GPU Variant: XG42 V3XT diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-V3.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml index d7c921e7..c2566020 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V3.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.3' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s VRAM Capacity: 128 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: XG42 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml index c32a98a6..06d2999c 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 375 MHz VRAM Bandwidth: 12.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: XG41 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-V5.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml index 37ed71c0..32444594 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V5.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.4' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 325 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 2 Texture Mapping Unit Count: 4 + Shader Processor Count: 0 Die Size: unknown GPU: XG41 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml index a6e44f0a..1bd574ae 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: XG40 TDP: unknown diff --git a/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml similarity index 90% rename from specs/GPUs-CONSUMER/XG4/Volari-V8.yaml rename to specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml index d74fe785..06a27281 100644 --- a/specs/GPUs-CONSUMER/XG4/Volari-V8.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml @@ -12,6 +12,7 @@ data: OpenGL Support: '1.5' OpenCL Support: 'N/A' Release Date: '2003-09-15' + GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s VRAM Capacity: 256 MB @@ -19,6 +20,7 @@ data: VRAM Bus Width: 128 bit Render Output Unit Count: 4 Texture Mapping Unit Count: 8 + Shader Processor Count: 0 Die Size: unknown GPU: XG40 TDP: unknown diff --git a/specs/Root.yaml b/specs/Root.yaml index 1d94847c..48f9eaac 100755 --- a/specs/Root.yaml +++ b/specs/Root.yaml @@ -9,12 +9,31 @@ sections: - MISSINGCPUS - CPUs-DESKTOP - CPUs-SERVER - - GPUs-CONSUMER + - GPUs-CONSUMER-AMD - APUs-DESKTOP - APUs-MOBILE - header: Intel members: + - GPUs-CONSUMER-INTEL - Desktop-CPUs-Intel - Mobile-CPUs-Intel - Embedded-CPUs-Intel - Server-CPUs-Intel + - header: ATI + members: + - GPUs-CONSUMER-ATI + - header: Nvidia + members: + - GPUs-CONSUMER-NVIDIA + - header: 3dfx + members: + - GPUs-CONSUMER-3dfx + - header: Matrox + members: + - GPUs-CONSUMER-MATROX + - header: PowerVR + members: + - GPUs-CONSUMER-POWERVR + - header: XGI + members: + - GPUs-CONSUMER-XGI diff --git a/src/css/part-selector.css b/src/css/part-selector.css index 2cf0c537..1ebaee87 100755 --- a/src/css/part-selector.css +++ b/src/css/part-selector.css @@ -52,6 +52,12 @@ body { .part.nvidia { border-left: 5px solid #76B900; } +.part.ati{ + border-left: 5px solid #F60000; +} +.part.matrox{ + border-left: 5px solid #171B61; +} .part-padding { padding: 10px; overflow: none; diff --git a/src/js/pure.js b/src/js/pure.js index 3c9a6921..a1c0a695 100755 --- a/src/js/pure.js +++ b/src/js/pure.js @@ -40,10 +40,10 @@ module.exports.genSubtext = (data, passedSpecData) => { } if (part.isPart) { t++; - //} else { - //part.sections.forEach(//sec => - //sec.members.forEach(m => tallyChildren(specData[m])) - //); + } else { + part.sections.forEach(sec => + sec.members.forEach(m => tallyChildren(specData[m])) + ); } } tallyChildren(d); diff --git a/src/js/row-data.js b/src/js/row-data.js index deb80d32..7f147d06 100755 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -250,6 +250,14 @@ module.exports.sections = [ name: 'Texture Mapping Unit Count', processor: types.numberUp, }, + { + name: 'Ray Tracing Cores', + processor: types.numberUp, + }, + { + name: 'Tensor Cores', + processor: types.numberUp + } ], }, { @@ -320,6 +328,30 @@ module.exports.sections = [ name: 'PCIe 1.0 Lanes', processor: types.numberUp, }, + { + name: 'Outputs', + processor: types.list + }, + { + name: 'Power Connectors', + processor: types.numberDown + }, + { + name: 'Slot Width', + processor: types.numberDown + }, + { + name: 'Length', + processor: types.numberDown + }, + { + name: 'Width', + processor: types.numberDown + }, + { + name: 'Height', + processor: types.numberDown + } ], }, { From e4ae20aee8d6edd74cc5f813162b9701481eb12f Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 29 Jul 2024 14:14:24 +0100 Subject: [PATCH 12/41] fix vram capacity --- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml | 2 +- .../GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml | 2 +- .../GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml | 2 +- .../3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml | 2 +- .../3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml | 2 +- .../GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml | 2 +- specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml | 2 +- .../AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml | 2 +- .../AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml | 2 +- .../AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml | 2 +- .../GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml | 2 +- specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml | 2 +- .../AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml | 2 +- .../AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml | 2 +- .../AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml | 2 +- .../AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml | 2 +- .../AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml | 2 +- .../AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml | 2 +- .../AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml | 2 +- .../AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml | 2 +- .../AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml | 2 +- .../AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml | 2 +- .../GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml | 2 +- specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml | 2 +- specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml | 2 +- specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml | 2 +- specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml | 2 +- .../GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml | 2 +- .../GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml | 2 +- specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml | 2 +- .../GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml | 2 +- .../ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml | 2 +- .../ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml | 2 +- .../ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml | 2 +- .../ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml | 2 +- .../Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml | 2 +- .../GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml | 2 +- .../ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml | 2 +- specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml | 2 +- .../Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml | 2 +- .../Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml | 2 +- .../Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml | 2 +- .../Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml | 2 +- .../Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml | 2 +- .../Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml | 2 +- .../Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml | 2 +- .../Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml | 2 +- specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml | 2 +- specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml | 2 +- specs/GPUs-CONSUMER/Intel/i740/i740.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/MP/QID.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml | 2 +- .../Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml | 2 +- specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml | 2 +- .../Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml | 2 +- .../Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml | 2 +- .../Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml | 2 +- .../Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml | 2 +- .../Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml | 2 +- .../Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml | 2 +- .../Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml | 2 +- .../Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml | 2 +- .../Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml | 2 +- .../Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml | 2 +- .../Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml | 2 +- .../Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml | 2 +- .../Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml | 2 +- .../Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml | 2 +- .../Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml | 2 +- .../Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml | 2 +- .../Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml | 2 +- .../Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml | 2 +- .../Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml | 2 +- .../Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml | 2 +- .../Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml | 2 +- .../Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml | 2 +- .../Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml | 2 +- .../Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml | 2 +- .../Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml | 2 +- .../Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml | 2 +- .../Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml | 2 +- .../Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml | 2 +- .../GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml | 2 +- specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml | 2 +- .../PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml | 2 +- specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml | 2 +- 2448 files changed, 2448 insertions(+), 2448 deletions(-) diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml index 94bcba08..c896415b 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml index 87a739fc..3471722d 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml index d8d0765e..71d382dc 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml index 2e636e9f..84230648 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml index 2bcbfb06..57c62567 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml index b0593fbe..dc120328 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml index afd7b2cf..fcea71a5 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml index b8efadeb..ee0da555 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml index e2169a61..a2fc6762 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml index cf3cd386..f843d835 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml index 3ceb63ac..6a9d2b55 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml index aecc7477..bde1494f 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml index 2c6b5429..db5c6d2d 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml index 161107d1..31fa7930 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml index bd7a9d0d..299eccb0 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml index 2eb449de..5dc67dc5 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml index f3ffe249..44cae372 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml index 6210cdd0..a71233a1 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1502 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml index c6270ead..b3cad055 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 1,638 GB/s - VRAM Capacity: 64 GB + VRAM Capacity: 64 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml index ad811cfb..2bbf9822 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 1,638 GB/s - VRAM Capacity: 64 GB + VRAM Capacity: 64 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml index 2f35cc94..1ef0ef1a 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 3,277 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml index adc57dfd..875adfc3 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 3,277 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml index b65b294e..388dc5c9 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 3,277 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM3 VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml index c86b3648..465d769c 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml +++ b/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2100 MHz VRAM Frequency: 2525 MHz VRAM Bandwidth: 5,171 GB/s - VRAM Capacity: 192 GB + VRAM Capacity: 192 GiB VRAM Type: HBM3 VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml index 4a02e930..ac94df94 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 985 MHz VRAM Frequency: 1066 MHz VRAM Bandwidth: 68.22 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: DDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml index 7947cd8c..49cacc4e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 162.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml index da201c66..31d2473d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 243.8 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml index 95e0185a..c7dc0ecd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1370 MHz VRAM Bandwidth: 263.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml index af130bea..a253e432 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml index 45d4d190..78f36b4b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml index 27685dd0..b8d5e165 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 670 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml index 70cb0ed3..02b71d84 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 715 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml index 47b6e15d..4c686223 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml index dc857173..c719c69f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 775 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml index f1b4d72e..82e3ed05 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml index e4663530..9aeb37cb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml index 1c801ca6..b92b4a8d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml index e2415184..9f7e149b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml index 52d27831..dc1d9563 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml index d0de2014..4fafc7ba 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 775 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml index a7bfb7e4..01a1a517 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml index 98a687f5..9b8fcd0d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml index 57dd3f5e..2dcdb0a9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml index 681d1c55..a11470f9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml index 34bd889b..d6cc29e8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml index 0115b072..f311157b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml index aa389359..c9affd9e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 630 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml index 141bcb01..5e67f7b1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml index 6f0f7486..7134d66c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 850 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml index 23b94626..c934ee95 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml index ecf255f8..a85895b1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml index f4962778..356abed5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml index 40a85651..56e6a17f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml index fd112779..08f9f94b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml index 997d6800..3cb37719 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml index f7df4eae..e2ab2e8d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml index 0b758cca..c13ac835 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml index fefee06f..63c2ff62 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml index 6e757be5..bf0eedff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml index 341988e0..d0ecc983 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 975 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml index 8d180635..9c2ba728 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml index f6d628cf..c72e15c4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml index e0164e98..33be5852 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml index d802f8f5..23f182af 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml index fdf82a0e..e3acf920 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 625 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml index 7870a446..22cdfddf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml index 845c082f..fbdc3e30 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 675 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml index 0bf54654..ea6879ca 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml index 95c01e41..97b5a2ad 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml index 08c3d551..ae093907 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml index 103ff4f1..7bd99545 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml index d41486ad..bdcffb0e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 860 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml index 607be33f..ba7fb960 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml index e4a2314c..0e8d2743 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml index 527fcb92..704b3833 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml index 9dc245a6..8f1cb6e3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml index d9d62d88..36581b31 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml index 434f08c6..57021875 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml index ac5adfc6..ef52afc6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml index d0036def..56d9993f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml index 8d49f506..cc4c712c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml index a20d022d..9d95a79f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml index 3969f0c6..04436f6d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml index 6be75441..d0526353 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml index b38fee59..dcbd87bd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml index de2caded..3d08b567 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml index bbd84a66..1ac2f516 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml index 6e084197..e1b86f53 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml index e753d60f..b6035ccd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml index b1cb24ac..0c1b0ca8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 850 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml index 8a3975be..62399ae5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml index 41ce90a4..8a065315 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml index 77e42551..3ceabdfe 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml index 4dc25748..7085e47b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml index b57f9280..3aec1471 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml index 3ec35e0f..3dde0b72 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml index ace4f7b4..4ab34048 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml index 9bb1e06d..54686ff5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml index 147358e0..520433a3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml index 32d40eff..1fe5927e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml index 6086b6ea..51af7725 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml index b18c60c8..f8f69184 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml index 944adf46..b550d4c9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml index e6adf2c7..b180769d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 670 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml index 593d06e3..2bf932a7 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml index 936f5d4c..048fd77a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml index 3f313444..f03d93dc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml index bf7b782b..53471bae 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 625 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml index 18fef9c8..df92485b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 625 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml index a771bc51..1fa8e790 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml index 4d51dac2..a4a3c7ee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml index 01786b3e..09509f44 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 775 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml index 659f9f65..65b9e92c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml index 5b4f20a2..25c579b8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml index d9a7d31a..2c3846db 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml index 63df3de9..c85b2c4f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml index 6dcbe4bc..82e7f29f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml index 83cbb94b..b30aba18 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 36.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml index c6a1a8d2..70089ebb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml index 4cf1b790..f7d982f6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 36.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml index 4301fe3c..71559195 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 18.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml index e3e84711..98d33b27 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 855 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml index a04a21d7..21434579 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml index ed23a2ea..2a82cb70 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml index 3295c64a..3282fd50 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml index d69e755f..0fd3afee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1070 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml index e3f6adeb..afe496b5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml index d58f48b9..e61698b0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 855 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml index b9c60118..ee5fa706 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml index ac070685..4327fbb6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml index d20ab8d4..9dbff1ea 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 855 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml index fd12d32b..e04a8084 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml index bb5a0893..591e2078 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1030 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml index 2154db44..eeaed8b0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 850 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml index 40827198..f36baaff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 855 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml index f5df6d7e..21366514 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1030 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml index fcdd6f04..d99d111d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml index 74a89d40..620b049c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 700 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml index 91a28b60..0d76fa5c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml index bb918d72..9bc1e412 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml index 4489e3a2..30ec9439 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml index 5fa4a75c..b6481a70 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 950 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml index bf51c20c..718bdc72 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 860 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml index 5c88c2db..c008b451 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml index 37c4bc97..e0be0dd5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml index ce8ef01e..dd5bb21e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml index c5d97602..2c26d598 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml index b19d5135..05df143d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 36.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml index b220dec6..506504e6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml index 5e62b1d7..54aca1ce 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml index fb4bd7b9..1cc44661 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml index 37be7c9f..22da7cc0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml index 48e58732..737e42e4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml index d4999c65..9c4ec9be 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml index 12cb3dd5..8af5af17 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 825 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml index 0d11371f..a256e124 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 715 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml index 83281754..6233a659 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 715 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml index fdeabeea..1cb6da6a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml index 66f817c8..07ac0f67 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 960 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml index 5140f218..48189a4b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 915 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml index b5837f7e..e63ec1d2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml index 3f6bdf12..c660481a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml index e0622aff..1b57d845 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 930 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml index cdfb0e39..4912c2b0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml index 29bda1ba..6b764d05 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml index f8f23e27..a5a6d325 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml index 81ae3f84..117860d2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 933 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml index 25820254..0781119f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml index 421c75cb..c3daf232 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml index 82ceac2a..7b813c19 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml index 492f5c53..49a5a5c5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml index d915817b..cd5878aa 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1030 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml index 51575afc..4cb2726b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1015 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml index 1726a0f4..ba745c1c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml index 7a4fc27d..f51200ff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml index a3bc8242..a5165268 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml index 9dde6409..7acb7ce1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml index 0a4cd1c6..27a044d3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml index 5ef5e693..c5fe1684 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 925 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml index 291a7367..23dfbfed 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 800 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml index 37800ad1..2692e0bd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1015 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml index 2de4750e..a8995652 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1015 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml index 5f364a66..f1c14fcc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 958 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml index 33c7a927..caec12eb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 950 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml index 5fe4b25a..a6588edd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml index fe78cee6..bd2d74a3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml index 48ddccd6..b4d49c7f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 853 MHz VRAM Frequency: 1066 MHz VRAM Bandwidth: 68.22 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: DDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml index 17c6f9db..00f6b1fc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 914 MHz VRAM Frequency: 1066 MHz VRAM Bandwidth: 68.22 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: DDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml index 2e69f956..72ff9564 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml index bcc851ff..7e16913f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 824 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml index 931d3e54..7d71058e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml index 5144089f..0fda6a4c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 930 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml index 210fff5e..b2638e93 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 930 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml index 34ba4c5e..67125dc2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 930 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml index 844200c2..fa23d296 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1075 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml index ecb269bb..75c1a946 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml index 465b8cff..3d316b0d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 824 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml index abb9a03b..1482fb69 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 930 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml index 7b22bda2..feedaf18 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml index 87eba5cc..66daab28 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 911 MHz VRAM Frequency: 1700 MHz VRAM Bandwidth: 217.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml index 6fe0f3d3..af6636a5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml index 5868b62d..c66859c3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml index c726a284..31fd29cc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml index 24d15649..66f1fecb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml index 38c7fcd3..7350f13e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml index 9e9daf1f..41b89969 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1075 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml index 06311b39..3cd8e937 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml index 9d7f1761..93469ac3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml index 4686ffa4..ddff9e5f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml index 734b24a9..064fc993 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml index 4b570ed4..7eff28d4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml index e409784c..75837967 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml index 9c2d9ca6..ec4aacdb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 947 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml index ce0cec01..6ad7913d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml index 32ca0f42..42652dac 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 345.6 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml index c627cad5..a26c383f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1018 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml index a3a5487c..cff2aaeb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml index 2e35c3ce..af19a06e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 345.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml index e6386ee4..22ffc89c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml index 2e11ce1f..703e4c57 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml index 1e7b1f70..53daff44 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml index e8acabdb..28c3546a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml index b8ff4436..e48bba76 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1021 MHz VRAM Frequency: 1568 MHz VRAM Bandwidth: 100.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml index 27ecef74..881517f5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml index bd28425a..74401ff7 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml index 575bcd00..b2c3e464 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1100 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml index 46b1b02a..dcda5f3e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml index cf025fd6..44854cd0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1100 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml index 20204e48..b5e5b8e6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 104.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml index 85856816..42a7f15f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1172 MHz VRAM Frequency: 1700 MHz VRAM Bandwidth: 326.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml index 08d67bc0..978f7753 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml index ccdbe1f9..a7fe8678 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml index 25db6604..ac689169 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml index 1c73b12d..f8102389 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 975 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml index f08aaea6..5c6c995b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml index 93916453..3286c007 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml index aaece525..58a70dfe 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1021 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml index 0d78e02d..624cdb07 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 891 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml index bba8b8c0..d8330e5f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1024 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml index 18a4f244..72cf9499 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 984 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml index 9680f253..11904b11 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml index bca57632..16569caf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1024 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml index eb0103fd..0b8ffeeb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1024 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml index e64de99a..f5b3fd53 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1000 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml index 3095589c..30e398e4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml index 8215a42e..2d81f6b7 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml index 7fa794f4..51210877 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1050 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml index 990d07b3..cc24f0f4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 940 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml index 4253c3db..0bd9f7f7 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 940 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml index e1e75e09..89297305 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 970 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml index 8a382aa6..9159c128 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml index 7d450f00..56f797ea 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1015 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml index 4c8f0651..3dc5ae8a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml index fcb02996..1e8a5766 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1125 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml index dd4e2311..3e348691 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml index 648b852e..e531537e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml index 5bf821ed..011cfc37 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1015 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml index 0574ecf7..76d3bf9e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1125 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml index 63c8fbc8..32bb4376 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 891 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml index c7d0ddbf..d5acdd5d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 920 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml index f3ebeb20..1c28420b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1024 MHz VRAM Frequency: 1125 MHz VRAM Bandwidth: 36.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml index 95dfc192..5e2ddd0f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 918 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml index aed87055..a069ae09 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1002 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml index d42c3f32..45cf1a62 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 918 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml index b6bf747b..0a72f17c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 970 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml index b7bc97e9..1106a5ce 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 970 MHz VRAM Frequency: 1425 MHz VRAM Bandwidth: 182.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml index a5abcc8b..de0635eb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml index 870f7d93..99e4a5fb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1050 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml index 2dfb03a7..7683e640 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml index d4f806ad..5f62c8d9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1362 MHz VRAM Bandwidth: 174.3 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml index 23ce3fac..9647e4d4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml index 76e330f0..93820cd2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml index 058c656e..6dc9fa26 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 834 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml index d644f513..0efc53bf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 909 MHz VRAM Frequency: 1365 MHz VRAM Bandwidth: 174.7 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml index 0c3c1833..19ac25fd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml index 330605c7..25a7dc38 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 723 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml index b466809c..cca27423 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1000 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml index 54ee3680..8d69d3c4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1206 MHz VRAM Frequency: 2100 MHz VRAM Bandwidth: 268.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml index 11cf8d2c..559a1b1e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1046 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 41.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml index 9882414c..7a2b45e6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1095 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml index f4bbc318..c4151571 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1183 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 56.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml index 8dc0d846..149bf824 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1071 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml index 6103f025..21680dda 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1082 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml index 8d42b98c..34b76783 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1218 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml index 95cb013f..734aa548 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1211 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml index b230d599..b3a9c418 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml index 29cdb053..0fa20a55 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml index 9d75b117..73d572c9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml index e1d1cd21..5c854b1a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml index 244e265c..f9ed58b2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml index 37856539..ddc3b017 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1053 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml index 1339655d..7062cef1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml index 03460071..7583ccee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1089 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml index 53ae359c..a4cd8f51 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1244 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml index f69dc43f..2083e817 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1237 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml index 832ef185..80855bae 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1233 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml index d72c744c..fd93a9a0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml index 82c2517e..f98cb15d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 855 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml index 28d572e2..32b8612b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 907 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml index 6ef8e58b..f83e0fdf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1275 MHz VRAM Bandwidth: 81.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml index 94e48efe..3c731f62 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 907 MHz VRAM Frequency: 1470 MHz VRAM Bandwidth: 94.08 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml index 5e69f2bc..db977b2d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 907 MHz VRAM Frequency: 1270 MHz VRAM Bandwidth: 81.28 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml index c239642c..de80d03a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1004 MHz VRAM Frequency: 1470 MHz VRAM Bandwidth: 94.08 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml index 54b4da6c..c5dba0ff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1105 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml index f48954a7..2465a121 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1105 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml index ab15860d..c7cb0db3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1096 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml index ebfb7fa5..4ab3267f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1096 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml index 6efe769c..b17b1457 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1695 MHz VRAM Bandwidth: 217.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml index cab74e63..f4987dfe 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1710 MHz VRAM Bandwidth: 218.9 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml index d68e34c8..983fe66d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1243 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml index ac8cb081..07b404ca 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1201 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml index 492ce2d2..a740ff85 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1243 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml index 96f230cf..edb6860a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1243 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml index bddd077e..a4cff1de 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml index 67dce982..fd0c15b5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1219 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml index fd34a0a5..2d32bde4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1082 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml index 49828ddf..209d5d8c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1295 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml index 2880261f..15bca116 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1201 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml index a9d93261..3f956370 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1053 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml index 0007b4b9..c88f6a58 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1053 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml index bd93a5b4..c6937441 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1201 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml index efd55e66..b18aa5fc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1086 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml index 1e664fe2..81677735 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1243 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml index d804ae60..711fae2e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1243 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml index 9c8fef60..c1cab609 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1243 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml index 09396038..3c9500e0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1011 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM2 VRAM Bus Width: 1024 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml index 3826b49d..1bdb1988 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml index 1d8b5062..3bfd45c4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1180 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml index d3b66a04..218d7fc3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml index 3537fe85..e27affff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1074 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml index 611efd38..3cf9bd82 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1206 MHz VRAM Frequency: 1650 MHz VRAM Bandwidth: 211.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml index 4483f0cc..97afea3b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1206 MHz VRAM Frequency: 1650 MHz VRAM Bandwidth: 211.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml index cdd8baf6..29f47da7 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1077 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml index 3fb67fa2..acc587ac 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1266 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml index 5772417b..aadb7563 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1046 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml index 9fa40c8f..be75a69e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1211 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml index ffffe08a..59c26a2a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1071 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml index 60173ada..b7cc2585 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1071 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml index d73f46f7..e994f405 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1287 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml index 9efd5bb2..ae37bc6b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1183 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml index 9cb1ab84..ba240abf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1071 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml index 16a54fe0..92a4c458 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1176 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml index 3f1df0d5..75cd177a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1183 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml index 79305a46..1b0693b0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1175 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml index 788f18ce..218b0381 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1032 MHz VRAM Frequency: 1710 MHz VRAM Bandwidth: 109.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml index e776e657..1b85d6c6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1226 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml index 6723ff0a..01c58a5f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1275 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml index 6b964035..b8451944 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1175 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml index 56673aef..9cd7a4c4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1175 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml index f838ae09..315c852c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1202 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml index c89f6a82..3737fca4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1275 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml index 02356093..5c3c642a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1206 MHz VRAM Frequency: 1650 MHz VRAM Bandwidth: 211.2 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml index b59bdb22..4faf77f1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1206 MHz VRAM Frequency: 2100 MHz VRAM Bandwidth: 268.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml index fc371b93..7bfc61b3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1244 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml index d92e8266..cae898dc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1244 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml index 919f0582..3b86f537 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1284 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml index 1db08fa1..bf52684c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1077 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml index eb128c1b..c7c70937 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1266 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml index ae5c6809..8514d678 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1340 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml index cd28ddb5..7ddbf44f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1330 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml index 31ea7fa1..8dd76063 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1266 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml index 31aec6b5..86021b5a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1340 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml index 4503f410..dae457da 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1420 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml index e64d8a45..4753e4e4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml index 7df0ca5c..49bc2f81 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1218 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml index ec3414ba..4c660f24 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1295 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml index 829bbe32..26499d2c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1190 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 204.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM2 VRAM Bus Width: 1024 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml index efac5ed6..f89ccac4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1011 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM2 VRAM Bus Width: 1024 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml index 92c21d3a..9813c8a6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1201 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR4 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml index 655816f1..ce1c988e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1201 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: DDR4 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml index 221e39fc..dd88a18f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 852 MHz VRAM Bandwidth: 436.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml index 718e2635..dd866ab4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml index b40a045f..b8510049 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml index 8124d753..d7a12518 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml index 915ac932..aeb8ea2d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1190 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 307.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM2 VRAM Bus Width: 1024 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml index 77b1af94..3a4cb6cf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1283 MHz VRAM Frequency: 740 MHz VRAM Bandwidth: 189.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: HBM2 VRAM Bus Width: 1024 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml index 90bd2e7a..a68d1498 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1200 MHz VRAM Frequency: 786 MHz VRAM Bandwidth: 402.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml index 393783c5..51930ca6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1250 MHz VRAM Frequency: 786 MHz VRAM Bandwidth: 402.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml index 01338a1d..127385a2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 786 MHz VRAM Bandwidth: 402.4 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml index 7acf5dc0..e4bd86ff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1468 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml index 46894433..0ac2fd5b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml index c7531546..ca95f70f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml index 416b4595..bd66d148 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml index 1bf8e2d2..3b506b37 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1301 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 409.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml index f417f943..21bc8a33 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1471 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 409.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml index 3fb72a9d..e1123714 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1546 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml index 7ca4cfb3..7447a3cc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1677 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml index 4d3c6c84..06788b59 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1546 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml index b335ebbd..9cd542da 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1546 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 409.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml index 103fe8f8..911b9fd1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml index 1714fa4f..3e8ae1ba 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 945 MHz VRAM Bandwidth: 483.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml index 3b0f4521..631f2bb2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1300 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml index 9f25a683..d14d96b5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1746 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 1,024 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml index e99d4b6e..1a34f0ce 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 1,024 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml index 36233944..9f495df4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 819.2 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml index e1452d51..9a4f52ee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 1,024 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml index a854e9bf..1296d13a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1720 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 1,024 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml index e962fdff..7b818125 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1720 MHz VRAM Frequency: 806 MHz VRAM Bandwidth: 825.3 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml index 68f19a6c..a0940327 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 1,024 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml index 49add4b0..99a992db 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml index 488da9f7..4a3d2479 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml index 5aa294b3..b12eb432 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 44 MHz VRAM Frequency: 66 MHz VRAM Bandwidth: 528.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml index 44328e8e..3975042c 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: VRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml index 893164e5..7f9e5c65 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml index 94ca868e..ce9cb63a 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: VRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml index bbaf894d..87259b40 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: DRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml index a48c016c..7ce93c99 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 66 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: DRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml index 241abbf5..56c4dd57 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: VRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml index f9260daf..89610af0 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: VRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml index b27d19b3..cf791df5 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: VRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml index 13cda712..b2afd457 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml index 52b5cc35..dc7819e3 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: DRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml index 618ce266..d7fabcc6 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 80.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: DRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml index eb62d68f..a5a60346 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: DRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml index fbdef71f..4c85eacd 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml index 47db79d7..862122ac 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml index 364cb3aa..6de05872 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 62 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml index 6bb1fe1c..a6cf09c9 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 62 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml index dd423df1..88e9ffef 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml index 8c55a8b7..ccc7ead4 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: EDO VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml index 679bc8e4..0b7c170c 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 40 MHz VRAM Frequency: 40 MHz VRAM Bandwidth: 320.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: VRAM VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml index 0a16b362..6f6480c8 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml index eb30f7eb..eb179d2d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1250 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml index dc2c34b6..2fe91dcb 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1757 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml index 8f718cd7..b893b7f8 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1450 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml index 7e2a64db..ea8f759b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1144 MHz VRAM Frequency: 770 MHz VRAM Bandwidth: 394.2 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml index c1d5e3b4..1772ed1b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1499 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml index 2e866911..4716b8c0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml index 473957fd..fff7a638 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml index 7615a6af..16baf3d3 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2 VRAM Bus Width: 2048 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml index b08612ff..74ea1e95 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1250 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml index 474d57b1..df97232c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1855 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml index 09c8d32e..304a24ee 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1645 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml index d9295fd8..eb5d2611 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1757 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml index ed173b30..9e7f72ef 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1880 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml index 51731f5d..149283d4 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml index 085078b6..867ae7bb 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1645 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 168.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml index f93ac417..5d025209 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1845 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml index 75f6f1a2..2a5cd48e 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1445 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 168.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml index c4a4d029..f57c31de 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1845 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml index 93cc8c22..263acb9f 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1845 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml index 14a70438..d411cfe7 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1645 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml index 29d1ff23..4fccc4a1 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml index d7859a79..714287f5 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml index 4a582b1c..8ce3f8ef 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1265 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml index 4cebd47c..e1e9c1e0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1980 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml index b1f2bfd1..df7b7f12 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1905 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml index f002dc61..8c88d340 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1725 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml index 8296c843..dc6b867c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1720 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml index 732adbd3..02250f73 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 2233 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml index b37780ce..05ef225c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2200 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml index ad6386db..3ddf505a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 32 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml index 1908516a..e4b64617 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2321 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml index 1ab2de22..9c200179 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2580 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml index 58d80a2d..966f3778 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2320 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml index d9e230a2..4424a53f 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 32 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml index d7e6b567..4896cfb7 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml index 07ff2c8e..08080eae 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2034 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml index 5ce0d769..eab438d0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2479 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml index 7773a1d0..02091f84 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1967 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml index 14f93ff3..745c10aa 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2087 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml index 0af0df98..b8d774a1 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2171 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml index 2198a172..ee6d7120 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 32 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml index c55f3b28..d96a64e4 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 32 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml index c25b9687..09d7de2a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2321 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml index eb2e9fc3..7fafc5b9 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2460 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml index d8c15742..1a3bd666 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2815 MHz VRAM Frequency: 2248 MHz VRAM Bandwidth: 143.9 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml index da1325ce..89abbd41 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 144.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml index e61dcbca..60a69f2c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2840 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 144.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml index c406b5e9..b101dc49 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml index f8dadba1..fc7b3110 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2589 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml index 44c439dd..be11dc78 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2491 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml index 65d376fd..3fa12a50 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2416 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml index 04d200fb..f24a2691 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml index 46fdee47..af014c1f 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2635 MHz VRAM Frequency: 2190 MHz VRAM Bandwidth: 280.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml index 2849273c..d61a8825 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2416 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml index ab7cc9c0..e4ffb2be 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2416 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml index 7a304282..2040a35a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2581 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml index db1c9033..3fcffdfa 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2450 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6 VRAM Bus Width: 160 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml index 5189189f..678ed495 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6 VRAM Bus Width: 160 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml index 49efb6e3..d37c6f12 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml index fd0e0d8b..e9c0b42a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2450 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6 VRAM Bus Width: 160 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml index 62530660..c7619654 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2581 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml index 9b67083a..9b1a3931 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2600 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml index 8b2bc70b..88540431 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2250 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml index 01e72a6c..c16ab283 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2105 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml index 920b3798..33bbf7de 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2390 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml index 2564f05f..997eb500 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2100 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml index 14cc1691..f5a3c9a3 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2581 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml index d0bc4905..edc0482b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2250 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml index ec39c053..819decc2 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2435 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml index d19c3a51..638916f8 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2310 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml index 55bc09fc..1d05bea0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml index d24a50f2..d709d44d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml index bbb8fd4d..421452f8 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1565 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml index ebbfa7a8..31e3a81a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1825 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 560.0 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6 VRAM Bus Width: 320 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml index e22e4ea6..d7826213 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2700 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml index 47017e7e..30162128 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2500 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml index 573226ad..fad52ba0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 1344 MHz VRAM Bandwidth: 172.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml index 07153728..1fb2436a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2440 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml index 6afd491a..c78b6174 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2600 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml index 9b96f29f..de6ca537 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2499 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml index 98dcbd08..c244cb74 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2495 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml index 7197638e..07f5047b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2300 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 216.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml index ae1d3b7e..49c1c697 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2755 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml index 1da405e2..601a114c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2655 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml index 8ef66229..e2763115 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2469 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml index 81358925..a30e5d50 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2410 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml index a53d95d6..a35321b7 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2200 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml index dd4d0fdd..b64a856b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2544 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml index 3fb193f1..d27e9821 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2600 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml index 5db624dd..a152416e 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2500 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml index 83700a8c..03e6e9ac 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2430 MHz VRAM Frequency: 2438 MHz VRAM Bandwidth: 624.1 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml index 8442b3c4..349ed3c6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2245 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml index 5c5602d0..ab13934a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2394 MHz VRAM Frequency: 2500 MHz VRAM Bandwidth: 800.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6 VRAM Bus Width: 320 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml index 98b65abf..0f9bb767 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2498 MHz VRAM Frequency: 2500 MHz VRAM Bandwidth: 960.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml index 30c67e60..9d61caff 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2090 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml index defd9009..c9283134 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 3000 MHz VRAM Frequency: 2500 MHz VRAM Bandwidth: 800.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6 VRAM Bus Width: 320 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml index 6a89f37b..2be14ea6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 3300 MHz VRAM Frequency: 2500 MHz VRAM Bandwidth: 960.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml index 97c1fd3c..a860c915 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 3599 MHz VRAM Frequency: 3000 MHz VRAM Bandwidth: 1,152 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml index c1093631..6018206c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml index 147b222e..3eb6e84c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml index 39c419b5..a3262878 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml index 07a79c50..faa763fb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml index bdbbd08b..f26f8576 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml index 6ce3eefc..7fcfb044 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml index 76233232..91083cbb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml index 879a97f6..b8814313 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml index c029e1d4..c86fe310 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml index 10150547..10eab9fc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml index 712418a9..63c2df95 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml index 01bf66fc..4c2c33e3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml index 8c3c34a8..2fbb0697 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml index 23c1e72c..9c5f0d4e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 690 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml index 40692719..b3228c27 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 690 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml index 4b5a8359..da8805f1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml index 781978a6..6643a4c1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml index dcd2c72a..7ad743d1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml index 246eebe3..d8c539d5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml index c428c0e4..1e7b51ec 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml index 2cd6f716..72cde50a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml index 6446b1e9..305007c3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 147.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml index 7a771d6a..e483425a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml index 287d39f8..f1e75d68 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml index 9f215b8d..ac97b854 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml index 08b36ca4..9e7f7a2f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml index 7d3df799..12e24550 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml index d6363357..6e1f0a1b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 795 MHz VRAM Bandwidth: 25.44 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml index d6baa11a..fe3bc135 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml index 812313e5..6ed10de5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml index aed8da61..aeb48ca8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml index 3b1e6ff9..b50d971e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml index f05b6d43..6e146b94 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 628 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml index 6f19c770..f25f1ad2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml index fe9d68b5..b8ec6e8c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml index c3b07f83..816621eb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml index f6d1f6e4..c67d20c2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml index c7132cc0..403c6ca5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml index 7a107b78..bc632ec5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml index 8e6ee3a3..054c9539 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml index 24888fc5..a50473de 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml index acdba418..d606958f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml index af08bfe4..0c5343ee 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml index 6929d97a..b0a33c99 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml index ed7e78fb..44c66419 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml index aa8f15fd..c14928e8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml index 36354b01..72396632 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml index 66ecf4b3..afa918f9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml index f7f05af7..8487058e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml index 776ac201..0ad4cff6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml index 4c1a24de..2da67106 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml index dce1b6e8..0c599788 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml index 3a9778c7..5113305f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml index 3701067e..5e3e5047 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml index 5041bb2d..cbd6e68d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1195 MHz VRAM Bandwidth: 76.48 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml index 00988a5c..bc36085a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml index 559e0a68..c0d475dd 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml index 1ec25107..f6e92433 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml index f737227a..cac24cd9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml index cf5f9403..946e6043 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml index 238338a1..fe5658ea 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1195 MHz VRAM Bandwidth: 153.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml index 12a90643..0514ff7b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml index 4901948b..eb9deade 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml index 4f342a00..ef379c34 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml index 85b6e02b..9e988b74 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml index dbd9dbde..19b0f7b8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml index 9d43f9af..4705a575 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml index 57d2af8b..09170a90 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml index 12d6e3df..d5b7176e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml index 8194d922..e7f3b2ff 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml index e4f2abcf..3843f204 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml index acb586f1..09edd45a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml index 860f9a19..16302d50 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml index ad4ca9e5..698a9698 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 480 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml index cfc09740..5209a3bb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml index 20fa5c40..b5951aa9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml index 1254ef8b..804c9594 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml index a3141c45..91f91bc4 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml index 337a813a..f4f26423 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml index f4e923c5..e9396b61 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml index dff060b8..65eacd71 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 25.41 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml index 41fff705..5e67e019 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml index c61dce35..b2bac267 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml index d6be9ca0..3a32d312 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml index 2bd5f3d4..75457a65 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml index d669ae17..ec49f7e2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml index bc9a9167..7dc0f4c0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml index 2b3e3af9..d4d2b8a8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml index cfdb781c..3f72234b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml index 3dbc7558..8e44c19e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml index 5e0ccf50..d421c6b1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml index 6437a279..bab9597d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml index 6e8eaad2..f7d96408 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml index cb845bab..2ea4435a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml index 08cac1b5..00d7157b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml index d8898916..a5f04f4d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml index f96a6310..8c257ddb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml index a11640d7..e55f66d3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml index 020a2a6f..49da0676 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml index f310c441..8b830e41 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml index cb980d35..fa117546 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml index e60548ac..79ee46ed 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1150 MHz VRAM Bandwidth: 73.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml index de4ef7d1..ff927ebf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 598 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 50.82 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml index 2b22fa3a..f845e393 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml index f785fb4b..732b6d78 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml index ddca686d..30692ea2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml index c765947d..0e7ec128 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 794 MHz VRAM Bandwidth: 50.82 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml index df7b2297..29845700 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml index 5d63859c..5169478e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 840 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml index c0a45ae3..b8daeff2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml index 3eba3e04..1eca15ff 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml index ba6f5759..73000b19 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml index 01c7665a..58c55c44 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml index 160db8d3..55011dd6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml index 7cc73aab..88c1f9dc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml index e34eef6b..1edb04b3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml index 9e78e225..d98492e5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml index ea4a8ab4..eab46361 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml index ed7ba395..3041900e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml index 280b6541..820d20a9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml index 4b568938..d7271b54 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml index 5b9245a4..5ff5fc78 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml index 68efdbfe..91a6890e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml index f328ddc9..4a412290 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml index dbbe95e5..80d71693 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 715 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml index e4b86598..e268678a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml index 1f16f253..c4c62889 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml index ac143127..3ffd116c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml index e5132869..b627bde5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml index f1011938..9b3996ce 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml index d3eedad0..b128a6dd 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 480 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml index 9aebf3fa..1d08956f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml index 84f5caea..b85e72c0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml index 32be3911..aab697f9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml index 9f181fd1..310c5608 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml index 3fdda2c9..37439394 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml index d7603e16..79ae4524 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml index d83dbd88..0bec464a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 800 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml index e7ebc0bd..94e4ea4e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 30.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml index f7895115..6431af7c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml index 4ce5b125..20de83ec 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml index 9d41a580..a548f418 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml index b8781fbb..31e0e62b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 550 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml index 42515ac5..a94f1a51 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml index def3dc12..bece8874 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml index 1e5c6bed..445c8bd9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml index fae58044..bd8b65d3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml index c0bb1b45..5694d120 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml index 7be8445d..cc991981 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml index 26711920..3da140f2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml index f9e370d8..e61e279b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 485 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml index 1d7e525b..8a112bd8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml index 627a82ba..495a65b2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml index a48e2e38..e44eede4 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml index 460fde93..779eaa67 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml index 37c4bfb3..7b205af8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml index 51d2963b..04dea46b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml index 346f2421..1311ef64 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml index ad3c4e3f..eb841bf0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml index ff6ef446..0b9ad8c5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml index c2ea7aed..92da466c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 840 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml index 99c33635..b59cb23a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml index d443e335..f8b17235 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml index f223a9b1..050d147b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml index 3b45374d..9e4c15c2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 875 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml index c3a9808c..9872c2b3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml index 90ebd2a5..f0bc6c62 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml index 68b5849c..2aea9999 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml index dd8e2382..93fc862d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 533 MHz VRAM Bandwidth: 8.528 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml index e6c66aaf..e2807c73 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml index b4475cbf..462e0181 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml index 8518de0a..32c03f1a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml index 0f3c00cd..5cb3459d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 875 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml index f50728a0..e8e47511 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 805 MHz VRAM Bandwidth: 12.88 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml index 9c4d0c7e..a8702aa9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml index 4eff0b40..f587297e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml index 0d884248..e147c7ef 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml index 1d697433..2d73bd0f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml index e55f199b..ff706039 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml index 46dc65fd..8d8885e2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml index eed83d7b..b72a204a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml index 0ee05263..0129f417 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 880 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml index 28be5d9e..24f505cb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 880 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml index 6e9e4cb0..72a8e09d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 830 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml index 20fad52b..c6206f0c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml index 3a9e2a89..4ed8fceb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml index 8d982e0a..7bd58f2d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml index 8e389e76..bf739f53 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml index e2077b10..5dd8cee8 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 688 MHz VRAM Frequency: 868 MHz VRAM Bandwidth: 111.1 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR4 VRAM Bus Width: 512 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml index 1892e406..166a0b91 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 688 MHz VRAM Frequency: 868 MHz VRAM Bandwidth: 111.1 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR4 VRAM Bus Width: 512 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml index e4ac9c97..a3e83344 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml index c079c283..0b73ab52 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml index a42977c8..cac5af8b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml index 413ce32b..9927be97 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml index c9b9349e..e66bd567 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml index aa150123..46d2fc14 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml index 27916b5b..ffd79144 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 846 MHz VRAM Bandwidth: 54.14 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml index dfac48c5..798c7749 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml index 1f72e8df..3cb44420 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml index 980a142e..c4101a0a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 15.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml index f77a2864..896de992 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml index e4a43257..fa9109c3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml index 9c8a2676..c808c8f6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml index 06772dee..051a1c62 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml index a7733b2d..6cabd762 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR4 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml index 855c8c25..82a2edf9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml index 50317e5e..a607ccf2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml index d2c346d2..25c9916a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml index 3ea4547a..543a4328 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 51.33 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml index 0095aaa5..46004c62 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 993 MHz VRAM Bandwidth: 63.55 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml index 132901e7..50a52ebc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml index dd2e3fe5..72a7340d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml index a97c0d89..d86bc357 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml index 2ae4a2af..67f65216 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml index 7b9df99b..25307c3f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml index 7a6ae3a7..5ce33744 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml index d14737d3..4c72b8cc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml index b78faac4..ee5a4e2e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 685 MHz VRAM Bandwidth: 21.92 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml index 42d6a6c4..6ad38961 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 24.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml index 4ad5abd3..81541ec2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml index 2745aa54..e19f434a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml index bed727f3..e77f217b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml index b9625195..4073a006 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml index 22ab9243..568f4ff0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml index 350f724c..d8173ab7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml index 00ed60b6..50b55752 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml index 90f718e4..a4dab37d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml index 0d98a054..bf3c020b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml index 095577cf..59dce601 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml index 006cc722..3f6061c5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 660 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml index b6be0020..58e97168 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 660 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml index c780d4ec..e38e20c7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml index a0208c7b..0f3913e2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml index 5860db34..2c61cb6e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml index 94b1b4a8..1004b213 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml index 111495ab..197fda63 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml index b62a8e3f..dd024cc3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml index 2ae2d2fb..700f3157 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml index 3343a919..089769e7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml index 06103517..bc68274f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml index 5be93e96..09df0842 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 503 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml index 05aa7982..5e45e620 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml index c929de03..f3c2f52f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 503 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml index 4faf96f9..814b6493 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml index eef62d7c..70b0f1df 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml index 097cfc6e..729e64ca 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 888 MHz VRAM Bandwidth: 56.83 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml index 9ee4a779..09351d95 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 720 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml index 8e532600..969356bd 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml index 0309e24c..ef2cafba 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml index 3d0e68cb..f5e6b829 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml index 61a477b3..d5c5fcbc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 680 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 12.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml index c7a4d199..1efe65ed 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml index ca65a76d..b2aedb54 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml index 8fafa5fa..8002fd4e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml index 2156ca3e..30c746de 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml index 4d5d3064..f7c2578e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml index 6ed8b249..dd3f9ab2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml index 2715c9d9..89483cb4 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml index 043c80db..d800a6fb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml index 0d936fb0..6bda6ecf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml index c6d59377..b3715953 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml index 18ecfa42..acc5e1f3 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml index 8ba7ba5d..7169cde7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 398 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 7.920 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml index de7de5dc..2920cebf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml index 3fbf77e5..c2cbe4c6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml index 7eb64e06..5601f767 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml index 32d9acee..c61e0f07 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml index 913130d8..b53efbca 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml index 3f817c7d..64325156 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml index d780f896..7f4d3c69 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 601 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml index e875c8c4..6edff7f9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml index 2a9d8c28..e364ba25 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 743 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 106.0 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml index 1b55cf14..f4d7f856 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 743 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 106.0 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml index c5ede14d..29ec6567 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml index eed4f661..d2b3fc1a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml index 5b3ab43f..7f94ceab 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 519 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml index 7a54429e..dd5421b1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml index ef07f467..25a22a32 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml index 9afa1add..9ad74436 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml index 7ed84c4a..e411ec26 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml index a8d12a17..30185f82 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 800 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 15.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml index 34c70520..280d5045 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml index 5f58eda1..abb788a0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 796 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 7.920 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml index 8f77cc6b..906317ac 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml index e72506f8..2fe32b9b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml index 85b22019..780e1506 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml index c5561d13..97527013 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 670 MHz VRAM Frequency: 830 MHz VRAM Bandwidth: 26.56 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml index cf23ca77..c8c0b398 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 722 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml index 48e5240f..8dfc2af7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 796 MHz VRAM Frequency: 693 MHz VRAM Bandwidth: 22.18 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml index 85639a83..12c459ce 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 668 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 26.50 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml index 88c60416..ec5bdd8c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 668 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 52.99 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml index 80630333..b96fef18 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 669 MHz VRAM Frequency: 828 MHz VRAM Bandwidth: 52.99 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml index 589455a8..c24020bd 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 669 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml index aa738ab7..8656dfbf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 668 MHz VRAM Frequency: 830 MHz VRAM Bandwidth: 53.12 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml index 5b5dbf04..2886521e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml index da994064..1bbee754 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml index 4a661c0d..e940d20f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 825 MHz VRAM Frequency: 901 MHz VRAM Bandwidth: 57.66 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml index 1dc8a8d5..116233c5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 777 MHz VRAM Frequency: 1126 MHz VRAM Bandwidth: 72.06 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml index 47b4f9a6..12d02823 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 6.336 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml index 76544b9d..98f9cf06 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml index f0e979cb..c6fb4a5b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml index 157ea9e1..5e9fa28d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml index 515f4dce..05c02856 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml index 5bbb9735..2e9e42bf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml index 5fcac9ea..31b1a2fb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml index 38a14b63..ca77f839 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 655 MHz VRAM Bandwidth: 10.48 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml index 51b78b7d..51a47c8f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 796 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml index 7591175b..68bb736a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml index 0e59e814..1992c052 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 796 MHz VRAM Frequency: 693 MHz VRAM Bandwidth: 22.18 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml index 2b5b178c..59959a12 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml index 846d2976..a6045094 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml index 1adfaec7..3929cd0f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml index 7e65fb7b..2cdabf0e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml index bdd36ac8..b0b2aa8e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml index 3dcce9f6..50c35994 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml index 490ac137..89434e13 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml index f8a80321..7be062f0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml index 092f0421..663046de 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 669 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 25.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml index 558cf976..3755d4d1 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml index 400a124b..1bbaa32d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 730 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml index 797549be..cc459abf 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml index 5f7c2240..eced465b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml index a15236a3..65525c98 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml index a02ae32f..9b47d2ea 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 995 MHz VRAM Bandwidth: 63.68 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml index 0e5f1369..f6c34a14 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 993 MHz VRAM Bandwidth: 63.55 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml index e72edd7b..8082f826 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml index 746db0c1..7c43995e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml index bd70553f..f672c497 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml index a90fb3e8..67b7ebc5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml index c5b907d3..cb05f2fa 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 750 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml index f9ee576d..972fc613 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 975 MHz VRAM Bandwidth: 124.8 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml index 26614f1e..52a43b8c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml index d3df629a..4d6d5023 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml index 17f4e6ec..f003ca45 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml index 7492579e..10641a3e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml index a0ab4618..a0822cd4 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml index 7c13688a..b142bece 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 45 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 256 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml index ebc7e9cb..bdcda780 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 120 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 7.680 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml index e295caac..2c67a6d2 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 120 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml index cebe04ef..3e5f2f39 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 150 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml index e61180fa..ed9c4fdd 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 6.272 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml index 59da8580..4661ad5c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 277 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml index 982fb332..1a413733 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 398 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml index 91ecbd29..56bc5768 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 527 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml index 109ae60d..87abd33d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 6.272 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml index cb4d45e8..700a3aa9 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml index d28f36f2..17990a9d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 378 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml index fa31bad9..f42217fc 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 378 MHz VRAM Frequency: 297 MHz VRAM Bandwidth: 9.504 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml index c14b9e19..45df4acf 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml index 9eac56d5..1984cced 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml index 921e346b..0dc4ca1d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 398 MHz VRAM Frequency: 297 MHz VRAM Bandwidth: 9.504 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml index 3cc131b8..ea30abec 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml index 5a7fa936..ae959a7e 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml index 928bd76c..48093622 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml index 05a16aaf..07ac15c2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 276 MHz VRAM Bandwidth: 17.66 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml index de90d187..ece0c9f7 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 380 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml index 6be73446..e247c709 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 412 MHz VRAM Frequency: 344 MHz VRAM Bandwidth: 22.02 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml index 52101c3c..cf36c6c3 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 391 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 3.136 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml index c8a577e4..522436b2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml index 3c709453..a14dabb4 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 196 MHz VRAM Bandwidth: 3.136 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml index 5fc86d2a..4f6ea766 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml index 1cc21dd9..b3437be2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml index 7263d8e2..7dd2485a 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 320 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml index 6cdebaf9..2f2283dc 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml index ca52f887..6dff95d2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml index f936496e..e28a912f 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml index b3c6c95f..5e850f8f 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 190 MHz VRAM Bandwidth: 3.040 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml index 080af396..90425a90 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 3.888 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml index d23d8726..1bb9dd24 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 337 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 7.776 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml index 96471789..c9b68512 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 333 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml index fca7bb0c..c4853896 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml index 2d22be0a..f65ee8d2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml index 24115310..74f435ca 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml index 990f117e..d4e24db6 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml index 9d57449a..8b36586b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml index c452a3d9..91710703 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml index 94ba787c..e486def6 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml index 3d59991c..f918e296 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 17.28 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml index b87d9d01..957ac0a3 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml index 324f206b..d9347a20 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml index 94dbbedc..b89bf5e2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml index 6ee2bba9..64fe2eaf 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml index 58fc4365..fedd44aa 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml index dd2e30ef..0b312c46 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 297 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml index 94b2f130..1fd099e2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml index 54b4404a..a1d01f7b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 324 MHz VRAM Frequency: 189 MHz VRAM Bandwidth: 6.048 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml index 0bd5ec25..94cb86f3 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml index ff67f58b..46af852f 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 310 MHz VRAM Bandwidth: 19.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml index 24702a90..7e035055 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 17.28 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml index 7acdefe4..a68ea999 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 380 MHz VRAM Frequency: 340 MHz VRAM Bandwidth: 21.76 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml index 4533648f..0035f492 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 378 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml index 3c971d2f..d553cd90 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 380 MHz VRAM Frequency: 340 MHz VRAM Bandwidth: 21.76 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml index 9cdaa44e..196b61f3 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 331 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 9.280 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml index b3c7c19a..0cce972a 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 412 MHz VRAM Frequency: 365 MHz VRAM Bandwidth: 23.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml index 958fd283..3030eb95 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 412 MHz VRAM Frequency: 365 MHz VRAM Bandwidth: 23.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml index cc7bc37d..4ca59f0e 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 390 MHz VRAM Frequency: 338 MHz VRAM Bandwidth: 21.63 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml index b67e65da..1e1af425 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 18.56 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml index 70cf15d5..b4ea8d43 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 203 MHz VRAM Bandwidth: 6.496 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml index 69b38ea4..5504cbcf 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml index f13e2df3..5ff7ba4c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml index a53dac8b..b6de835c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml index 85893b91..4341d912 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml index cf32d7c0..2d9aae81 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml index f829d160..f4ef54bb 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml index e9a76aa1..6f9150ce 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml index 4ff7c0fd..e358504b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml index fa8dae07..37b161c2 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml index f3c25e93..8d081760 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 370 MHz VRAM Bandwidth: 11.84 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml index ec02246e..22b48a9b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml index abd7233f..d78712c8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 398 MHz VRAM Frequency: 492 MHz VRAM Bandwidth: 15.74 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml index 0f40b418..4ad9d319 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml index d25323ff..76af6702 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml index ed4a14fd..d6c289e0 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml index 27fe3e22..410a3fbc 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml index eb49732c..215d61b5 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 430 MHz VRAM Bandwidth: 13.76 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml index 18a2292c..6ba2e85a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml index b4227556..4bc8fdc7 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 493 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 30.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml index 7504bae7..87a74728 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 491 MHz VRAM Frequency: 454 MHz VRAM Bandwidth: 29.06 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml index 0a64794d..21c4874c 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 13.60 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml index decfaf87..a2c50fb9 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml index 80762bfe..936bcda3 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 330 MHz VRAM Bandwidth: 10.56 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml index 5b46dd22..3b7bb5f8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml index d91fcdf4..a4ba261a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 480 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml index f65e4ff4..982493c8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml index 8a0ea321..aeb8e1ff 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml index 0b9e56b3..35c8afbf 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml index 4dadbd15..9763a077 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml index dbd200cd..1de4d1b6 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml index 3dbabaa6..4c6e9a18 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 472 MHz VRAM Bandwidth: 15.10 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml index dbda2014..1dc0ce9f 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 430 MHz VRAM Bandwidth: 13.76 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml index 1b53474d..8f87ed94 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml index fb5d75a1..1f000468 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 16.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml index fa0b1792..23a3cec9 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml index d08c54e6..dfd4af53 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml index 21db3b17..8f7febd2 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml index 6fafc9d1..0386e29c 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 493 MHz VRAM Bandwidth: 31.55 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml index 6dfdfb8d..9bd1769a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml index 6782707b..2a07592d 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml index 5df63253..a810a421 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml index 11d09591..a9b21fa1 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml index 1ef46e57..e1718802 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml index 187e2e94..4fe5afc4 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml index 4348b3c2..91d28400 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml index ca8ecdc5..baac700f 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml index 45b5ce93..0e46d721 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 398 MHz VRAM Bandwidth: 25.47 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml index a6819cb2..c17837f7 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml index 46fe692d..4581898f 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 490 MHz VRAM Bandwidth: 31.36 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml index e2d47e76..834de9e2 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml index c4cb6b7d..532b7c2b 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml index 72307f3c..2a9a0e9a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 35.84 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml index 8d9be1e8..9dbacd9d 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 35.84 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml index c850a146..3543f934 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml index 47b6bfce..e4994b4e 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml index 106a3015..5b6bfc8b 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml index ea8aea6d..f5eddf59 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml index 3d354503..b27f3af8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 507 MHz VRAM Frequency: 520 MHz VRAM Bandwidth: 33.28 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml index d6b71dd4..3a8d21c7 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml index a03611d0..ec07ce81 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 590 MHz VRAM Bandwidth: 37.76 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml index 80148199..a6bf8100 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 590 MHz VRAM Bandwidth: 37.76 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml index 2bf81074..78dac47a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 540 MHz VRAM Bandwidth: 34.56 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml index ee5c2fa6..9fc7b03b 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml index fd268c98..28576dae 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 60 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml index 38c670fd..40ed6a65 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml index 6d77c6ae..ebc25166 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml index 5457335b..c4fbcca1 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml index 25dca676..f1d2c9ae 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 75 MHz VRAM Bandwidth: 600.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml index b6b7a269..eb37fc97 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 83 MHz VRAM Bandwidth: 664.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml index ea1f63f0..6d4a206f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 90 MHz VRAM Frequency: 90 MHz VRAM Bandwidth: 1.440 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml index e50dbde3..6c8ac8a8 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 134 MHz VRAM Frequency: 134 MHz VRAM Bandwidth: 2.144 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml index 9f1a677c..65fe2184 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 120 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 1.920 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml index 66bc36ba..5e2b6688 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 90 MHz VRAM Frequency: 90 MHz VRAM Bandwidth: 1.440 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml index 2faf301c..da9a9aac 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 103 MHz VRAM Frequency: 103 MHz VRAM Bandwidth: 1.648 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml index 56e0b409..fb54aa75 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 80 MHz VRAM Frequency: 60 MHz VRAM Bandwidth: 960.0 MB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml index dd40259b..b2f2e1fe 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 2.080 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml index 86b6040e..d9dbc0cc 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 1.040 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml index bffaa3d4..8a20a24e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 118 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml index 908d3981..a794f158 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 130 MHz VRAM Frequency: 130 MHz VRAM Bandwidth: 2.080 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml index 633e7310..9fede3c9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 80 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 2.000 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml index 3c3e41fc..a24e2222 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 80 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 2.000 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml index 1c24fa1c..d8643b95 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml index 0ac2b98d..f7297c96 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 80 MHz VRAM Frequency: 120 MHz VRAM Bandwidth: 1.920 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml index 440ee856..74b77709 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml index 5e2bc322..62df4a81 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 1.680 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml index fa5b8d59..0cf5c2f0 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml index 347f65d9..a71e5986 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml index 51c2d2fb..936ef3bb 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 83 MHz VRAM Frequency: 125 MHz VRAM Bandwidth: 1.000 GB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml index a6dcd626..6373fdda 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml index 20cb83eb..f2335556 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 105 MHz VRAM Frequency: 105 MHz VRAM Bandwidth: 840.0 MB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml index 60ecd112..9d45e2e1 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 75 MHz VRAM Frequency: 70 MHz VRAM Bandwidth: 560.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml index 10820513..dad5adfa 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 162 MHz VRAM Frequency: 162 MHz VRAM Bandwidth: 1.296 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml index b206d1ec..25fe7d13 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml index 97ef9b0a..e9b29351 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 144 MHz VRAM Frequency: 139 MHz VRAM Bandwidth: 1.112 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml index 69b507c5..2ea4adcd 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml index 7435ab1a..d69500a6 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 144 MHz VRAM Frequency: 144 MHz VRAM Bandwidth: 2.304 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml index ebce3504..dd8fde93 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml index 79f25b21..2ad8528d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml index 617deacf..ef75d14a 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 133 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 2.128 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml index 15426cbf..f6cdd249 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml index a376151b..e9bbf5e9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml index c35055e3..df294492 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 2.288 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml index fb57c491..3779e30d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 148 MHz VRAM Frequency: 148 MHz VRAM Bandwidth: 4.736 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml index 9830d838..bb7c33f2 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml index e6885de6..225d8c6b 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 187 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml index 2bb8ecc3..a0b4c910 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 5.856 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml index 3d9486c1..67eb2336 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml index b9cec563..96f4b42d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 148 MHz VRAM Frequency: 148 MHz VRAM Bandwidth: 4.736 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml index 55e51c34..01af2434 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml index 46edd989..64146f7a 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 166 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml index 553013d0..dea5db35 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml index 1a47ea16..2ffec139 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 183 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml index 81b8e995..2a7874ce 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml index 894c46b2..6b60515e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 164 MHz VRAM Bandwidth: 2.624 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml index 1eef79d7..2f4aaa15 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml index c5d71980..85a9b514 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 260 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml index 1c1df5e3..d61dd92c 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 260 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml index 46521e2d..b4bd4a54 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml index 3db2dcc9..0baf0258 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 190 MHz VRAM Bandwidth: 6.080 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml index bcdddb95..1bfd13d9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml index 5c8a7cd9..faf7435c 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 290 MHz VRAM Bandwidth: 9.280 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml index 007bf7ef..31b2fa54 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml index ed9682ad..1431441e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml index 46a22007..d0d99237 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml index a0ea4b99..a2776763 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml index a7fb3071..d68a1369 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml index 7368653a..242ce98a 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml index e4306dec..6905fef7 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml index 3696cde3..4acb0f18 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 175 MHz VRAM Bandwidth: 5.600 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml index 81818c87..67192b1e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 260 MHz VRAM Frequency: 180 MHz VRAM Bandwidth: 5.760 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml index bafdf8d6..8ee5fc28 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 290 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml index f09a577c..28b082bb 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml index a9815e50..e88ad6dc 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml index a53f2b48..b3da4c04 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml index f9709910..f3d65836 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml index 5d6d5020..3d99a073 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml index 7a944c49..0a66009f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml index 46de99f6..c40b4997 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml index 4c84d936..04d5b355 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml index e0273977..87996d71 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml index 8577ec05..e51fbabf 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml index e7e61993..3504ed19 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml index 199ff5bc..cd64effc 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml index 6a1b5254..e17c55cc 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml index 1ac1771e..fb602a86 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml index 3bc5faa6..e955b128 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml index 323d5256..e39a9e42 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml index 4bbcc8d4..b283fb78 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml index 953f8515..00ba8b3f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml index a9b7132e..aa99ed4e 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml index e6edffbf..c998a87f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml index 5f3dda8e..c45fd0e1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 477 MHz VRAM Bandwidth: 30.53 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml index 8d195004..885119be 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml index e8629058..93d76cbc 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml index cb05f0e3..f9e51e1b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml index 8c6931b5..260130b5 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml index e63adece..234894e3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml index 941d1a5d..796c70e4 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 648 MHz VRAM Bandwidth: 41.47 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml index 48a54aba..4becffee 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml index c83bdeb4..92aac106 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml index 1e3a8bd9..347124b9 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml index ffcee066..d208fdcb 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 15.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml index 94a5c9df..d7fbf4f1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml index b5783926..743cf8d1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 480 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml index 435159ba..0e8b1977 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 392 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml index 8a1c007b..7b36d5c1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 371 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 5.184 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml index c2242efd..8e03e937 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 445 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml index 95ce6907..61036854 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml index f48e84bd..e122a795 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 398 MHz VRAM Frequency: 396 MHz VRAM Bandwidth: 12.67 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml index af3f7f52..7af50442 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 470 MHz VRAM Bandwidth: 15.04 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml index 35062822..1bb51f15 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml index 6c08814c..1b4e054f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 675 MHz VRAM Bandwidth: 43.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml index e98052a1..fe27d6bd 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 32.26 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml index d7171b15..501549b4 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 470 MHz VRAM Bandwidth: 30.08 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml index c7d9e7ef..8f786714 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 479 MHz VRAM Frequency: 378 MHz VRAM Bandwidth: 3.024 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 32 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml index c6b88cfa..a9ccb284 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 479 MHz VRAM Frequency: 392 MHz VRAM Bandwidth: 6.272 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml index 7b13b44e..4d10e2d0 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml index 3aaffb6d..e04cac41 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml index 1e8ec8c3..0ced9fbd 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml index 923b7e15..4ef3216e 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml index 61501598..ef093f79 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml index 38e7d517..5a98d17a 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml index 7db0c724..35cc2570 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml index 36c2be0d..cec4c4d6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml index 21d4951a..40a879c6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml index 7bb8cc5b..6bf50501 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml index eb8480e2..f19548ef 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 330 MHz VRAM Bandwidth: 5.280 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml index 63a05180..320056f2 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 452 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml index 2b7314b6..e5391766 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml index 866a7acd..f339eecc 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml index 42959b7e..c26b3f18 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 390 MHz VRAM Bandwidth: 12.48 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml index bbdfb12d..7adcb6f1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 635 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml index 761630fe..1d9400c3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 590 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 22.08 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml index 357eed6f..f74f6cfd 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 590 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 22.08 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml index 50099465..a16463e4 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml index 081e2f26..0eb4a541 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml index 633f4d7f..4fd8f6ab 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml index 805f1a07..fda3a8c0 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 587 MHz VRAM Frequency: 392 MHz VRAM Bandwidth: 12.54 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml index 21558616..ce9853ad 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml index 985434bb..e4a43556 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml index c0a0cc79..0384f495 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml index f6fe729d..53aad2c7 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 680 MHz VRAM Bandwidth: 21.76 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml index 9e128a2d..37243386 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml index 318d4955..b3347310 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml index 1f7168e3..2213dfe0 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 635 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml index a4c5bf25..24e5347f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 587 MHz VRAM Frequency: 695 MHz VRAM Bandwidth: 22.24 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml index 0bc98d0c..c6dabd53 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml index 6f1f5f0c..b1663059 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml index 7b486521..5e4b0c52 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 495 MHz VRAM Bandwidth: 31.68 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml index dabf9527..c882dbef 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml index 7b8b33ac..ee606976 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml index 76257a16..1e64cd2f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml index bbd0744e..9c8fe985 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 46.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml index 36db95f9..4373d896 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml index 84b30ee6..d5a6698e 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml index 4fa3bfed..58a8aa23 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 46.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml index ec3d1cbf..f03a7be4 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 775 MHz VRAM Bandwidth: 49.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml index 9b0b5fc7..085dd088 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml index 69503b7a..a76adf50 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml index e273f39c..9e8e304b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml index a0a09f83..975b5339 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml index 03cc3a2d..7c784ccb 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml index 840c33b5..dd4719f8 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 690 MHz VRAM Bandwidth: 44.16 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml index 9d93e0d1..ef93cde3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 703 MHz VRAM Bandwidth: 44.99 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml index 3dbbf641..8817eb71 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml index 920790ed..881c46cc 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 670 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 67.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml index 34494c80..42069a38 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR4 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml index 51386fd2..4ca4fe8d 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 594 MHz VRAM Frequency: 648 MHz VRAM Bandwidth: 41.47 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml index 24009433..dae0a2fb 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 243 MHz VRAM Frequency: 243 MHz VRAM Bandwidth: 3.888 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml index fe008ec2..5c9e5cc3 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s - VRAM Capacity: 32 KB + VRAM Capacity: 32 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml index 4126be4b..83cc2d50 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s - VRAM Capacity: 256 KB + VRAM Capacity: 256 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml index 53bf4b80..22d771b1 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 25 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s - VRAM Capacity: 256 KB + VRAM Capacity: 256 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml index 5f7d5e95..63dcd869 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 8 MHz VRAM Bandwidth: 32.00 MB/s - VRAM Capacity: 256 KB + VRAM Capacity: 256 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml index 34c48365..e4d5e956 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s - VRAM Capacity: 64 KB + VRAM Capacity: 64 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml index 71d67d56..443620ce 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 5 MHz VRAM Bandwidth: 20.00 MB/s - VRAM Capacity: 64 KB + VRAM Capacity: 64 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml index d0d55f47..d4ff0794 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 256 KB + VRAM Capacity: 256 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml index 6d3a75a4..e1ee1bb3 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 512 KB + VRAM Capacity: 512 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml index 0600fead..04a83970 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 1 MB + VRAM Capacity: 1 MiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml index 9fb4116e..616cb48b 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 10 MHz VRAM Frequency: 10 MHz VRAM Bandwidth: 40.00 MB/s - VRAM Capacity: 256 KB + VRAM Capacity: 256 KiB VRAM Type: DRAM VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml index 70ec9fe9..b1c1de9d 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml index 6b526b22..b2772d4a 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1100 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 68.26 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml index c95e9542..78a0d79c 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 68.26 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml index 1207e111..b11b2e67 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 68.26 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml index e8d566c9..78098dbf 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1550 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 68.26 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 20 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml index f65fde48..cf17014a 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml index 66bbcd94..00ecd0ff 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 120 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml index 0d0dc3cf..d5cd889c 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 1,229 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml index 3331d55a..c2061e69 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1550 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 1,229 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml index adf92a31..9f721300 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1550 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 2,458 GB/s - VRAM Capacity: 96 GB + VRAM Capacity: 96 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml index 61295051..f6f96054 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 3,277 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml index 0b2f000f..7bb06870 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1565 MHz VRAM Bandwidth: 3,205 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml index 7ceb0a65..c9f0d371 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1600 MHz VRAM Frequency: 1565 MHz VRAM Bandwidth: 3,205 GB/s - VRAM Capacity: 128 GB + VRAM Capacity: 128 GiB VRAM Type: HBM2e VRAM Bus Width: 8192 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml index c2b2e4c2..3940b407 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1750 MHz VRAM Frequency: 1937 MHz VRAM Bandwidth: 124.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml index 8fb4a5fa..830f99aa 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 1937 MHz VRAM Bandwidth: 124.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml index e92bad58..ab6e35a2 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2200 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml index f8053a89..dc359b03 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml index c2eb4b9d..b354567b 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 1937 MHz VRAM Bandwidth: 186.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml index 7cc16238..7aeecd86 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1300 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml index 7f60323a..14a820b9 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml index 5cdad17e..08c5e9b9 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1300 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml index 11d6f355..baf8c4b1 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml index 4fcf2c4b..3bb57aab 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml index 6e85ad12..175853e6 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml index 8db28757..740d32b2 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml index e06b8bac..fe152a32 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml index d15f89dc..d35e508a 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2200 MHz VRAM Frequency: 1093 MHz VRAM Bandwidth: 559.6 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml index 2517bacb..f6e7e61e 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2000 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml index 5a19bb2c..e2a213e7 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1700 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml index 182fcbf3..49417174 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2350 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml index f0fc7cde..0d2b7687 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml index cc5f0a80..24ec34d4 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1300 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml index c1b702fd..5d1a7d99 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1950 MHz VRAM Frequency: 1937 MHz VRAM Bandwidth: 186.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml index 18f3df8c..dadb113a 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 2050 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml index 797b0aa0..ed694886 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 1200 MHz VRAM Frequency: 1200 MHz VRAM Bandwidth: 153.6 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml index 78282e48..83e92df8 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml index e82b69de..aef02205 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 1053 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml index f27a17dc..ad37897e 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 1053 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml index 77d33f1e..24e88282 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1333 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml index e1b86202..fcef44d3 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 1333 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml index 4a5a6de0..82a83108 100644 --- a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml +++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 1100 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 512 bit Render Output Unit Count: 0 diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml index f4398dc6..52a200c5 100644 --- a/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 66 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml index 293cad11..931ae907 100644 --- a/specs/GPUs-CONSUMER/Intel/i740/i740.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 66 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s - VRAM Capacity: 4 MB + VRAM Capacity: 4 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml index ef4a5091..b9b988b5 100644 --- a/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 41 MHz VRAM Frequency: 62 MHz VRAM Bandwidth: 496.0 MB/s - VRAM Capacity: 2 MB + VRAM Capacity: 2 MiB VRAM Type: SGR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml index f1acec78..55b5ea8e 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml index 2b235e5c..ff3afc6d 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml index cf4fd4f4..ca36958c 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 84 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SGR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml index 2b33d366..8596fe0d 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml index 29383738..1ca90a5d 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 96 MHz VRAM Frequency: 128 MHz VRAM Bandwidth: 1.024 GB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml index 657c1de7..9cb1c72e 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 84 MHz VRAM Frequency: 112 MHz VRAM Bandwidth: 896.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml index 8d34e828..cca41316 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml index ebf7b6f4..ac1863b2 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 150 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml index ca8ae247..02c64f19 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml index 43881924..8e2431ef 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml index 8eb9907b..4a3a9fb7 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml index 25ce1617..31a2aec6 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml index 06530a9f..e3317ee9 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml index 8c565876..7e136e3a 100644 --- a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml index a978cb5c..c59f6998 100644 --- a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml index f589d253..ad1dccec 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml index 30974bb1..3cafe838 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml index 868a39f4..58bf0034 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml index 1af2b5c4..d6fec78b 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml index 1dab1ae1..1619445b 100644 --- a/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml index b73d2772..f83fa3fe 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 190 MHz VRAM Frequency: 270 MHz VRAM Bandwidth: 8.640 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml index 0fcc95cf..4b64d96e 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml index d016fc14..237d4c41 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml index d6413729..a8d5978c 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml index d2f84d00..51fd95f4 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml index adc138cc..3a331c7c 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml index 2a5cbc8b..9befe351 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml index e0527d2e..d6988afb 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml index 2587a521..0ba5b9fd 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml index c39a4f2e..171db0db 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml index 9bdc5179..e1ca216d 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml index 43c45c5d..3a6fdba8 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml index c81a1695..ab345945 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1605 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml index a9fe4476..a45264f2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml index 78a86e66..258293b0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2640 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 216.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml index 4d7dbbc5..f50909a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2535 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml index 3db5acbe..74c0c518 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1470 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml index c0aab4c7..16d7cb46 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1890 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml index a497ca6b..9e814d6b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2535 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml index f514447b..c3110900 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2535 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml index eb503b92..9e33f3b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2460 MHz VRAM Frequency: 2125 MHz VRAM Bandwidth: 272.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml index ab3b03b3..a622407d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1230 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml index f98b684a..65149f8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml index 8813a6af..bce197c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2475 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 504.2 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml index 716cd120..c4957168 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2610 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 672.3 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml index 58f5da23..b80ea3f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2610 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 504.2 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml index 3cf8b1cc..572244b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2475 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 504.2 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml index 76816776..11f22b09 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2610 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 504.2 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml index 6a27d657..b0c99273 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml index fb07f652..609b88be 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml index a803b74b..7dc15313 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2550 MHz VRAM Frequency: 1438 MHz VRAM Bandwidth: 736.3 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml index 432a0a44..d4fefcb4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2400 MHz VRAM Frequency: 1325 MHz VRAM Bandwidth: 848.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6X VRAM Bus Width: 320 bit Render Output Unit Count: 144 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml index d69db4a6..617f3a2d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2505 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 716.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml index 0eae847d..2280f4d6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2520 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,008 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 176 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml index 4b1f9b21..91ee510e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml index 35644f29..6d753645 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml index bd02b1ca..3e5dccbe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2565 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 1,152 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml index 03017497..05e2d2c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2520 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,008 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 176 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml index 691ee049..2430e72e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2040 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 300.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml index a5612b2a..43a836d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2475 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml index 6cd0b427..045e2d39 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2490 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml index 32a4e27e..50441942 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2475 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml index 491f93ed..1ddabb32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2520 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml index 83ac09de..345adf31 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2115 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml index 318879cc..20e62edf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2115 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml index d2105d14..dd5046fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml index 4bc37928..c50907eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2115 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml index f3d5a6de..ec4f9944 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 256.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml index 2f14e04f..fb4b2f66 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2250 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml index 25bdde5e..0f41a1a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml index afc914e9..e5f80654 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2175 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 280.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6 VRAM Bus Width: 160 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml index e6bcc4b8..ebf6c25b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml index 9f53c754..0449cc48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 280.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6 VRAM Bus Width: 160 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml index c43c5f0e..ad2ddc1a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2580 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 432.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml index 445dcccc..609954a9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2550 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 176 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml index c6483b5f..41876541 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2115 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml index fbf207a3..81ef2a05 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1680 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml index 86d93471..89b751c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2115 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 576.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml index b8806948..a35f29a6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2550 MHz VRAM Frequency: 2250 MHz VRAM Bandwidth: 864.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 176 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml index cfeae2db..9192bb39 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2505 MHz VRAM Frequency: 2500 MHz VRAM Bandwidth: 960.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml index 7ae90cc1..da2d6214 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 2520 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 1,152 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml index 5e2dd5d2..e6421c39 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 600.2 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml index e9546d07..e923f166 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,555 GB/s - VRAM Capacity: 40 GB + VRAM Capacity: 40 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml index 4cdbb613..d27353a6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1512 MHz VRAM Bandwidth: 1,935 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml index 2839731d..a28fba90 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,555 GB/s - VRAM Capacity: 40 GB + VRAM Capacity: 40 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml index 4aff54db..4cc1ba21 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml index c5075765..4c6d6f8f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml index 3f1084f8..09a6707e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 600.2 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml index 0770b5dd..9f8dd6c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1635 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 600.2 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml index ba787ab2..166f1ffa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 200.1 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml index 8ba68a92..74205110 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 200.1 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml index d4b3c0ac..9e3b934c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1563 MHz VRAM Bandwidth: 200.1 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml index 8bb9235d..4d32a255 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 933.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2e VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml index da6330a1..9601505e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 1,223 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2e VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml index 32fd51ae..9d1db189 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1740 MHz VRAM Frequency: 1812 MHz VRAM Bandwidth: 695.8 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml index d467b934..7c104220 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,555 GB/s - VRAM Capacity: 40 GB + VRAM Capacity: 40 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml index 0bd7c605..5e56d655 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1512 MHz VRAM Bandwidth: 1,935 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml index 80db06f6..3e4b154f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 160 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml index 5a4c0572..16f60e29 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,555 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml index cbff3132..52201a9e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1458 MHz VRAM Bandwidth: 1,493 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: HBM2e VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml index 576af8ec..a73f9f46 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 608.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml index 6650877e..37b72dd3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 760.3 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6X VRAM Bus Width: 320 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml index 4ba77fcb..ea1da501 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,866 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2e VRAM Bus Width: 6144 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml index 06b4fb12..200de50a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1005 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,866 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2e VRAM Bus Width: 6144 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml index 8e0d8368..a903ef86 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1005 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 1,866 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: HBM2e VRAM Bus Width: 6144 bit Render Output Unit Count: 192 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml index bbc8be78..f9607d78 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1155 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml index 4d92f7f5..3a4f76d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1155 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml index d7dbf170..f9d77e93 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1155 MHz VRAM Frequency: 1475 MHz VRAM Bandwidth: 94.40 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml index 6b166733..95018b4a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1245 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml index 2b84983f..1f06bbf8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1740 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml index 6a2c7ef9..a67a8fc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1470 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 168.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml index 0ad3ba5d..518f9d06 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1777 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml index fcd5215f..8629f88c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1777 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml index 7ecc1f96..07f34897 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1125 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml index 17c359a1..3aec8106 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 990 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 132.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml index d7c7ccfd..0fe9ef44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1057 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml index b4001e8b..73a538a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1207 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml index cc7a5223..413a36ca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1492 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 168.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 96 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml index 1868423e..c0fb6b05 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1343 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml index e4657a15..1ab03e29 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml index 9d5d5945..1f0fd737 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1035 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml index 60a2d076..6c8deaa1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1035 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml index 0413c47f..8c4afc64 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1777 MHz VRAM Frequency: 1875 MHz VRAM Bandwidth: 360.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml index 85f578c9..6474191d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1777 MHz VRAM Frequency: 1875 MHz VRAM Bandwidth: 360.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml index 90ef122b..90e54bae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1852 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml index 6a678c56..513613d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1777 MHz VRAM Frequency: 1875 MHz VRAM Bandwidth: 240.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml index a790aa14..da3b0ae3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1282 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml index 6525a886..acf1bcb1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1425 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml index 70332379..ffb7f5ed 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml index d8f39151..defadd8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 608.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml index 75ab2da9..19b9ab03 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml index d8d98b71..e00eaa96 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1290 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml index 67faf7dc..233f29cd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml index fe0a1f7f..fd4e4893 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 608.3 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml index ec966e84..ee2d7b23 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 608.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml index 94082b8c..1531e07b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1035 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml index a34e2a64..638f1130 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml index 6237635e..7946869c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 608.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6X VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml index 8005978d..a0ba4c39 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml index b3907a0e..fbb8240d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1725 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml index ad589308..ee59f19a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 912.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml index c882764e..152ed78a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1245 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml index 1ad3be9b..c9284fae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml index eb2aedb1..5ad661dd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 760.3 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6X VRAM Bus Width: 320 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml index 396d35e7..7f9bab22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1125 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml index f0465119..0be03d81 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1260 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml index a6b9bc22..63e81075 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 912.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml index f1230883..42015d51 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1188 MHz VRAM Bandwidth: 760.3 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6X VRAM Bus Width: 320 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml index d31c532e..96a39814 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1860 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,008 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml index 8754f8d3..c077ca4d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 1219 MHz VRAM Bandwidth: 936.2 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6X VRAM Bus Width: 384 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml index 83a4edbc..c903b855 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 930 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 204.8 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: LPDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml index c796da40..ca966446 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 1300 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 204.8 GB/s - VRAM Capacity: 64 GB + VRAM Capacity: 64 GiB VRAM Type: LPDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml index 9313d828..4bac4784 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 918 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml index 7ec23615..96e96d52 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 765 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml index 000b6443..703d1fa7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 1067 MHz VRAM Bandwidth: 34.14 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: LPDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml index a94f3ebb..75a6effd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml @@ -16,7 +16,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 1067 MHz VRAM Bandwidth: 68.29 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml index b5f14736..329c8e57 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 933.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml index cf1a4ab9..0be5896c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 933.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml index 3feaef99..9e0ec5cf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 933.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml index 90e3ee6e..20e471fd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1215 MHz VRAM Bandwidth: 933.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml index d8a0e7d4..bbe679eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1140 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml index 9cf2d4f0..345e16e2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1140 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml index ed414a56..a9c923b9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1140 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml index 619a3bef..51994b83 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml index d733116e..2b9c9ca2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1177 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml index 4e4c4e58..5357ffa1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1207 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 176.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml index 22e075a9..78f6993c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1687 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml index b8291af2..7e086c10 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml index 4b6e15fe..44552b60 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml index 73eb11e9..402714b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1230 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml index 8cc2eb5e..1057423a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 224.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml index 39e7aebd..568cb14a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml index 9f965d0a..bcc8beb3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1680 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml index 4bc220fc..1aa2d22d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml index 3f2cfa6b..476325a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml index 1d82fe43..3635657d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1215 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml index df490015..1848d491 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1215 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml index 4a860ec9..36e6acf8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml index c8184594..865b2d71 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 640.0 GB/s - VRAM Capacity: 20 GB + VRAM Capacity: 20 GiB VRAM Type: GDDR6 VRAM Bus Width: 320 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml index 461bd121..8a35a2e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1335 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml index 85d6d516..e27d3558 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1537 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml index 0495c4d5..a3029057 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 112.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml index bc3d8f50..e4e783da 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml index 08604f52..f2440585 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml index d5993756..4a679935 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml index dabdcccf..bacc16fc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1575 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml index d3e0bbad..e3dc3e4b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1695 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml index 82c52e24..2907fb40 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1260 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml index d62e4d57..aed41a26 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1500 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 512.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml index 8e0c59c0..61cb842a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml index b82a6adb..e96062ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1800 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 112 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml index 2aadfc19..25c3d59a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 120 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml index 98011a33..56a4d9db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 120 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml index b6bbb700..180ff1c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 230 MHz VRAM Frequency: 66 MHz VRAM Bandwidth: 1.056 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml index 34ce331e..21d5fc86 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml index a43bf8bf..23587346 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml index 968631cd..fb612b2d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml index bec74a0a..9d234601 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml index e981dad9..e1048eca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml index de5ff63a..5e65547f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml index 064ad0aa..8c786782 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml index 43336553..f1d72f6d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml index 7f11d53e..5bb3b05a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml index 85f5516b..73bfee46 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml index b5828784..6036fb27 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml index a63874e7..acac7758 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml index f58d1799..d985cbf2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml index c75e79d3..8552b92d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml index 6c7a2404..7fede0c5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml index 193f587d..e1b2ada6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml index 37cefe35..4096e763 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml index 44ff5be2..b9c813eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml index a14964aa..3de191af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml index d8a574d2..5d0ed639 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml index 12e144d8..45a4dc90 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 220 MHz VRAM Frequency: 220 MHz VRAM Bandwidth: 7.040 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml index e005e80d..c3942b6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml index bc0927ce..8d236a8d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml index a2fdb6d3..7ecb48bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml index fba6344d..fccf210b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml index 2e2ea639..3ecfcdc4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml index c48096a0..779568d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml index 572328a0..e3fed0e1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 1.328 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml index f09d331b..3b28522f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml index eee00feb..71756a42 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 2.000 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml index 58b9469d..ed917c3f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml index d8e1f7ae..b1380d72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml index be03e25b..953dbcb8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml index 13a62651..05ec9554 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml index 0ea2d9a0..1815c3a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml index bc5dd506..23efba4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 135 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml index 954b89b1..6f355920 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 181 MHz VRAM Bandwidth: 2.896 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml index 226dbfcd..7436c0e9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml index 035c2aee..20bb07df 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml index e06461ab..36abecd1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml index ca271c99..81b7046b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml index 73fcb5d3..0b2d0cca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml index 96efb971..ddbbdf1b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml index 3b91a948..4e4821ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 256 MHz VRAM Bandwidth: 8.192 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml index c47981bc..94486564 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 220 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml index 48d3491d..98b473d7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 220 MHz VRAM Frequency: 220 MHz VRAM Bandwidth: 3.520 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml index 94960c94..7ce6a000 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml index 2e94fedc..0be6b434 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 270 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml index e8d2783f..4de7feee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml index 4d1c61dc..c41e087f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml index 627cc61f..081a9fbc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml index 80f16bae..f6e5a4c5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml index a53c3a99..56032581 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 2.128 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR2 VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml index 5df7853a..4f77ea12 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml index 7a8a7845..76d60d63 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 2.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml index 88a01d9e..6afdce62 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml index 7ed725f8..a840608a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 280 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml index 2542eb1b..1fb63609 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml index b782ba78..7f314efd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml index 990d40f9..b0da4aca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml index cb315fc8..53dc4022 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 15.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml index 05684439..1b5ec2e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 560 MHz VRAM Bandwidth: 17.92 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml index fc370dd3..cbd4bb9d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml index 37b33b00..6be80569 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml index 4ab7a30b..d7d6e436 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml index 0b01cab9..47ef6e44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml index a702080f..9a5a5156 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml index e9cc82f3..56fefc8a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml index 9eaae765..8cf290ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 17.60 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml index 40dc3575..4db0a198 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml index 01b68fc2..5166cf22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml index e6fe7a32..b6fd9ed8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml index e80fd55b..7c9caa67 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml index 76817eb1..758aeb98 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml index f588a5f2..b24c3a67 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml index 46179c5e..ea61ea0f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml index c793e9b7..a65a2142 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml index 7c2b2bb6..2e8eedf2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml index 45a138c5..74afd673 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 8.512 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml index 4f0ce4d7..0c2996e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml index c1438228..f0a8e995 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml index 4829064b..14895b99 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 334 MHz VRAM Bandwidth: 5.344 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml index e3c0e27c..807ffea4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml index ff62f76f..5e5ab876 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml index 26beca22..36240fb4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml index 04fe7118..b1b3a02c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml index 1282093c..9e9c4993 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml index 3514418c..44001ed4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 5.184 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml index 761483ea..8591fe5a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 4.256 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml index d43ddd6a..bb52cad9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml index 8f992f8c..fa242281 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 405 MHz VRAM Bandwidth: 6.480 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml index 11750ddd..050a9115 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 725 MHz VRAM Bandwidth: 23.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml index 1132aa82..918429ff 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml index ba8b299a..5740fe6f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml index 7d661742..1190359e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml index 366cf6e2..21033d55 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml index 33a33dc7..9ffc4e77 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml index 2e088c7f..0d75e12e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml index eb96b216..25e83b4d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml index d596c8af..4d076445 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml index 02f09896..6b82d64d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml index ac193fa4..dc6f30b1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml index a930af43..65f2a1e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml index eaa06c82..bfcf4682 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml index 94145029..7ec45895 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml index 7f6b4a39..9095d75a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml index 981955fe..fb1520a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml index 3e6e889b..3a4c9435 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 430 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml index a0521f0f..20fe872d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml index 70d1ae16..e05852da 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml index 694077cd..71f50e4e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml index 0e797b36..ec54c052 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml index e0593649..dd5b0bb3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml index 576e9987..b2119bf2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml index 8306fc71..841566ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml index 78309f9a..2bf7d1ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml index 8cc37209..243798d4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml index c5c46f5b..7339fa76 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml index b2660a21..42530804 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml index 0322b08f..d60590f9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml index d8a1aeae..6e314dc5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml index 25659193..e1572435 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml index 5251e0a0..82b0fd85 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 225 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml index 67aceece..6b99ebf4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml index f87eaaa5..e59edbba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml index 80e44d90..cf885feb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml index 7a4588d0..2d2549e0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 2.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: GDDR3 VRAM Bus Width: 32 bit Render Output Unit Count: 1 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml index 264c42a2..07bcf173 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml index 29511516..6b31c79a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 5.600 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml index 9a79d517..839332aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 3.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml index ab265f08..0c156659 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 7.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml index 82b7bc9a..bb9983e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml index d6504c8f..e9ef9e77 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml index 32e42220..027d6cbe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml index 77625f78..fdc1e86f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml index c427dd06..1eb7a302 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 440 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml index 9d231597..f796536e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 550 MHz VRAM Bandwidth: 35.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml index 6ad9c219..0457d68b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml index b7617aba..08308e45 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml index 4d959652..02c28f65 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 21.31 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml index 1cda7b8a..31092bfa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml index 617a23f7..78779e5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml index 868e4567..f6340c8b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml index 5957b17f..a3965e88 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml index 294bcb6a..e30c407a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml index 7d8e330d..4c4e7148 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml index aef37bf6..b641d32b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml index 8968a94e..174ca7a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml index e0caa974..99a6b4c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml index c20453c6..94c3158b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml index bb0bbbe3..01de1118 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml index 554f34bc..2b8d7c65 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 405 MHz VRAM Bandwidth: 6.480 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml index aee1d60d..899e005a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 660 MHz VRAM Bandwidth: 42.24 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml index db0a7ac0..d0609397 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml index cbe89426..969ad367 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml index 616682ba..acc88917 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml index fa4ec433..69f9c554 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml index 51517174..c3d85f01 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml index e6cbedf4..aa7dfc48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 375 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml index df4c126c..d0f19824 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 430 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml index c329f0ad..59ecd41c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 605 MHz VRAM Bandwidth: 38.72 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml index 2707d2ca..ff382804 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 430 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml index 681f7358..e3762858 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml index 340d6afe..0d33ce8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 360 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml index d1012e04..21794be7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 505 MHz VRAM Bandwidth: 32.32 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml index 5b00f983..955f35ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 505 MHz VRAM Bandwidth: 32.32 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml index 801aa3a1..88704f21 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml index dcd6144d..bad29abe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml index 47c5ff8d..cb29721c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 18.88 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml index 7fdcfb4a..bdbf50d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml index 99de1f9d..71dd1040 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml index 3af7020a..32b00e8d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml index 6f8a163b..0f5496d6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml index 8ac78f3d..54e910dd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml index cff80375..ec52a946 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml index 3d341755..123f6139 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml index f414ae48..c0dd4e48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml index fa9edab4..83abd970 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 470 MHz VRAM Frequency: 525 MHz VRAM Bandwidth: 33.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml index be2c19bd..68085d34 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 90 MHz VRAM Frequency: 110 MHz VRAM Bandwidth: 1.760 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml index fbd7673d..d83f7e20 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml index 98b958df..0ba671a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 100 MHz VRAM Frequency: 133 MHz VRAM Bandwidth: 1.064 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml index 45ebd4c9..684c5cc3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 143 MHz VRAM Bandwidth: 1.144 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml index 73c6ea09..2d50792e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 143 MHz VRAM Frequency: 167 MHz VRAM Bandwidth: 2.672 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml index 4cfe2248..dfd505e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 150 MHz VRAM Frequency: 183 MHz VRAM Bandwidth: 2.928 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml index 2767a510..962ac86d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 125 MHz VRAM Frequency: 150 MHz VRAM Bandwidth: 2.400 GB/s - VRAM Capacity: 16 MB + VRAM Capacity: 16 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml index 0bd3fce5..48cf8be9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 105 MHz VRAM Frequency: 100 MHz VRAM Bandwidth: 800.0 MB/s - VRAM Capacity: 8 MB + VRAM Capacity: 8 MiB VRAM Type: SDR VRAM Bus Width: 64 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml index ca5afaad..ed417f36 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml index 43b821bd..776109bd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 523 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml index 48c6d867..0e12edc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 523 MHz VRAM Frequency: 897 MHz VRAM Bandwidth: 14.35 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml index 124aa45f..5085c42f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml index e5a73f10..daf53d3c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml index a568cb00..a73215bb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml index c1528409..48034b9b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml index 4a2bb23a..ea291eee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml index 2e67eda6..bd331f1c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml index 1888a55b..07976638 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml index 2cc2fe35..eac2df00 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml index a5fad663..77dd4796 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml index 62fd48f9..96b2f48b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml index 55f46b12..81ed2984 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml index 61e595af..f32979ee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml index 71e460ea..299865ac 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml index 40bc40c5..6e9ce82e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml index 1744f8dd..cb521679 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml index dc139629..b80a19b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml index b8163f3a..813dffc7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 871 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml index 4d529921..3711266c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 720 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: DDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml index 24c1d35c..ad88712c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml index ebbe3f6f..93668a5f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml index 4bba5974..917528bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 590 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 43.20 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: DDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml index ffd2f777..26d73422 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml index 0b3a80f9..15b7bcd3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 10.67 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml index 5a82faa5..5e471218 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml index 4077735a..b6e3ba3b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml index c82bb436..9388cef3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 898 MHz VRAM Bandwidth: 14.37 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml index 3739a785..221cce05 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml index 317a9063..c5f2419b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml index 5489c128..af7c87bc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 720 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: DDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml index 51aa7e9a..19638933 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 776 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml index a0e2d307..c41d6dee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 874 MHz VRAM Frequency: 825 MHz VRAM Bandwidth: 13.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml index 6797f60e..b0df8382 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml index 3f072afc..d8762e7a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml index d11f7928..901b728a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml index f9d15e98..f95ea2df 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 783 MHz VRAM Frequency: 902 MHz VRAM Bandwidth: 57.73 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml index a5581de3..161be649 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 783 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml index 57c99f29..4fd65362 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 81.60 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml index 7e9a525a..a5240a20 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 779 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 96.19 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml index 4e4697cc..fe289dad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 900 MHz VRAM Frequency: 1026 MHz VRAM Bandwidth: 98.50 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml index daa0097f..d5abc8e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 736 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml index 8ed10672..2b1831eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 552 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 128.3 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml index 036e6c1f..da88a59a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 736 MHz VRAM Frequency: 957 MHz VRAM Bandwidth: 91.87 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml index 24c90408..4ea4799c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml index 0f08f510..d58b6e17 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 121.6 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml index a45e7d0e..30f6ba8f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 823 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 128.3 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml index 3c1ca65d..bf298135 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 128.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml index 9a1b9c9a..3deac422 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 775 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 60.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml index 13370ed2..10670894 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml index 9bdda105..c6853a3e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 152.0 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml index 0183f3c7..ea8be270 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml index f9312e6c..acd3ae9e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 772 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 192.4 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml index 9264fe58..3a6aa36d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 772 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 192.4 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml index cd03c06a..046ee1ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 620 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml index 6e432042..a02a05c9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 854 MHz VRAM Bandwidth: 164.0 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml index 18f77810..7d310d0c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 598 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml index ac70a19b..d6ff2668 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 620 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml index 281ae885..763a619e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 523 MHz VRAM Frequency: 875 MHz VRAM Bandwidth: 14.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml index 5ac6fcf8..d4db7df5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 523 MHz VRAM Frequency: 875 MHz VRAM Bandwidth: 14.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml index d5435045..0213b414 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml index 729f3454..e8b35af7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml index c4e67905..37da38ac 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 83.20 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml index 91112aee..c012ea44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 651 MHz VRAM Frequency: 851 MHz VRAM Bandwidth: 163.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml index 8b45bda1..3c301ff2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 144.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml index 5e9b5766..6af063ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml index ba9fdd43..7c3700b5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml index 0ae9ad35..af73192a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml index a4bda90b..d08f656f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml index 1186fc31..59f0d00a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml index 88e7b332..b503279d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 660 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml index 5714684f..b80aee09 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml index 030b0620..8cc61bc7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml index 361e5602..fdfc6316 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml index 488aa249..fa6d2ab7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml index f06e77a3..eeede4ed 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml index 0e4642a1..3d98469e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml index b3b94ca6..a5ca7f22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml index 05babb79..8e6c612d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml index e08c8370..41fa7cad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 21.34 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml index 9a862ac0..eba92773 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 43.20 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: DDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml index 0bd2303a..53b60cca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml index 5c6f4ee3..ab8d188c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 590 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: DDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml index a7104e14..ff1d0657 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml index edad0cc3..c59cda7f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml index 9ee5687e..fe4772b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 672 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml index 42d434d0..5eccb9dc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 753 MHz VRAM Frequency: 785 MHz VRAM Bandwidth: 50.24 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml index 2c271881..ad251893 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml index d849cc42..c6ec8cdf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml index ab6256e3..48af7b64 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml index 8fefd56e..50067e58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml index 73cfe2e2..b57b2da7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 753 MHz VRAM Frequency: 785 MHz VRAM Bandwidth: 50.24 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml index 984cfe82..89bc693e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml index bb41a169..f8661aaf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 790 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml index bd47197b..9f2dc3ec 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 783 MHz VRAM Frequency: 902 MHz VRAM Bandwidth: 57.73 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml index 32b5d522..f00d9dc8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 108.8 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml index be805562..15eb788f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 701 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml index b3b4d7a4..161d5db2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 86.40 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml index 3912ab46..1b87ccad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 60.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml index bc7cde73..dc18e5e5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 802 MHz VRAM Bandwidth: 102.7 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml index 530d3417..089aa15a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 107.1 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml index 616fe966..24293946 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 133.9 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml index c5bf38d1..0960e253 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 535 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 72.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml index 7e1dda6d..65d09076 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 527 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml index ce952327..aff561a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 701 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml index 70036698..8f6d5aba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml index 302d4427..ddd822f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml index 4a065145..61b12a4c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 854 MHz VRAM Bandwidth: 164.0 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml index ad0f5ae6..38aea3c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 660 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml index 31dbebb1..104f7e37 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 700 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml index 496abd94..a3a4fe7e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml index c714cc02..d22399e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 41.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml index 20071451..07c25e23 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml index 0e5c7a49..961efe21 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml index 103500e2..61fe8ef2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml index 8b1f0468..b0a57e51 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 89.86 GB/s - VRAM Capacity: 1792 MB + VRAM Capacity: 1792 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml index 40027bad..e24df255 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 89.86 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml index b85cfd7d..e40af8a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 625 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml index 24395131..74740a57 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 513 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 120.0 GB/s - VRAM Capacity: 2.5 GB + VRAM Capacity: 2.5 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml index 93e656c0..7a34d011 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 513 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 120.0 GB/s - VRAM Capacity: 2.5 GB + VRAM Capacity: 2.5 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml index bfadf5c0..9c90e18c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 405 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml index dc54940e..dd2315c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml index 44f0fe3f..63693ab7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 640 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml index 65938664..c58ac4f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml index 7be107a5..52b2c5b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml index 9d44a8ff..8196e023 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 144.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml index a9bd179f..804fa6e5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 747 MHz VRAM Bandwidth: 143.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml index 4b0f6000..10c75925 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 773 MHz VRAM Bandwidth: 148.4 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml index b2b06de6..e1f4aa64 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml index dca08106..3b4c03b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 783 MHz VRAM Bandwidth: 150.3 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml index e0a92881..6f04c1eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 574 MHz VRAM Frequency: 773 MHz VRAM Bandwidth: 148.4 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml index 0031c441..5bf0df92 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 651 MHz VRAM Frequency: 924 MHz VRAM Bandwidth: 177.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml index ef662209..0ac22007 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1845 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml index 6e44f93d..f8622054 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml index 06fdb65f..75ad8f2b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1837 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,681 GB/s - VRAM Capacity: 96 GB + VRAM Capacity: 96 GiB VRAM Type: HBM3 VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml index 6b94be59..c92728a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1980 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,008 GB/s - VRAM Capacity: 64 GB + VRAM Capacity: 64 GiB VRAM Type: HBM3 VRAM Bus Width: 3072 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml index bef8a403..fb75162e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1980 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,681 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM3 VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml index e8a263d1..bb579209 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1837 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,681 GB/s - VRAM Capacity: 96 GB + VRAM Capacity: 96 GiB VRAM Type: HBM3 VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml index 0b4f8db0..d66b1aa8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 1593 MHz VRAM Bandwidth: 2,039 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM2e VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml index 19534d10..caa733cb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1755 MHz VRAM Frequency: 1313 MHz VRAM Bandwidth: 1,681 GB/s - VRAM Capacity: 80 GB + VRAM Capacity: 80 GiB VRAM Type: HBM3 VRAM Bus Width: 5120 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml index d7975a46..9152840b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 175 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml index afee6d99..21f2ac22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 240 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml index b7a07a7a..8f77ecac 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 7.360 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml index 6094142b..6e00399e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml index bdd4d37f..100ce7ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml index 647dbb05..ce4d79cb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml index dba19976..8cbe109c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml index 5201e30d..bf81a290 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 324 MHz VRAM Bandwidth: 10.37 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml index 38fddf63..7309a42d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml index 283e29be..4fbbac4a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 230 MHz VRAM Bandwidth: 3.680 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: SDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml index 79951428..3f7272ad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 199 MHz VRAM Frequency: 223 MHz VRAM Bandwidth: 7.136 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml index 3aa52c14..40d60aa1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml index 9b524704..fe33098a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 225 MHz VRAM Bandwidth: 7.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml index b4162e58..84cc7f2a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml index 72a5f6aa..90c0c770 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml index c316c00c..ae56cc05 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 233 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml index 81d4cd0b..01967012 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 758 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml index 33339d5e..b5cc0c3a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 758 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml index accd160d..d5f461c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 758 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml index b9f47e99..86878e55 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 941 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml index 4e9fc147..66b67d9e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 641 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml index 8cc4713c..841f595f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 954 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml index f63639ae..ac36d721 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 954 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml index 177c00cb..e156ed72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 902 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml index ab85133b..0999a84b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 902 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml index bef94f41..606af7a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 967 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml index a32978c9..84af0738 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1046 MHz VRAM Frequency: 1252 MHz VRAM Bandwidth: 40.06 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml index 45a471be..49d569d4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 797 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml index 4f38648a..7592e95f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 954 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml index 9b6a5150..9d825918 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 954 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml index 2ca2d843..a224c059 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 967 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml index 793e4b8f..700671e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 758 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml index ec9a71b0..e2a936c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 628 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml index 81c348ab..bf1c0685 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 951 MHz VRAM Frequency: 467 MHz VRAM Bandwidth: 7.472 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3L VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml index 18a02980..ee3cc552 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 889 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 19.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml index 9748e0ff..04f7a93f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 954 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml index 7cdfa2ad..56cfb195 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 824 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 240.6 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml index 47362134..8e2a36db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml index d5a662e6..db4c55be 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml index 7698ea07..e6bd264c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml index 3772bc8b..e71e7b4d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml index 57b1807d..7f611883 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml index 17e8aca6..08bb0bef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml index 7746c3e2..b5ed3a4d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml index db2ef2ad..6ab72d15 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml index b346db72..f241d47b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml index 08b80b36..b2d92651 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml index 0ab14a7c..a9d2b073 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml index 36784ad4..477981b1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml index 5d0cf54c..2a41c9a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 954 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml index ebee325e..6c942141 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml index e21b0c95..47a2fdb7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml index 3690b1aa..43893595 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml index 3df0a6a9..8848ad6d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml index 9f063a44..060fc0a1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml index 314f8cdf..a0f07e8a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml index 6f8e8c4b..e4400924 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1058 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml index f824e1ad..17b31d8c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 875 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml index a2010656..14022b3c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml index e646d3c6..d7959cd4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 40.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml index 6d0adb39..a85e361d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 709 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml index cfccb689..452f2025 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 780 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml index ea55aec8..6c1c279b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 900 MHz VRAM Frequency: 1254 MHz VRAM Bandwidth: 80.26 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml index f2df7ab2..8be57e2b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml index 2b504820..9acfeaa2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 993 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml index 624cc73a..744c818c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 902 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml index f93b3dad..1981dd25 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 725 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml index 13ebbcf1..0f2dc8f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1033 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml index 23bc5dfb..df1d35ce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 993 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml index 3ece450d..2c98e87e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 895 MHz VRAM Frequency: 901 MHz VRAM Bandwidth: 28.83 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml index f7d487a1..8b6d368f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 915 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml index bdef4570..5ee10937 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 915 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml index e635af4f..f619fbbd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 926 MHz VRAM Frequency: 1254 MHz VRAM Bandwidth: 80.26 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml index b1c4ca6c..85694774 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 967 MHz VRAM Frequency: 1003 MHz VRAM Bandwidth: 64.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml index 7b28eadb..1cae6e60 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1085 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml index d0baaf03..3021d832 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1020 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 86.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml index d6e0b8fd..a2a74e68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 824 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml index 8eeb3753..6407fedf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1032 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 144.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml index 03153dae..e2985fae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 928 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 86.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml index 25c47384..958e3833 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1058 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml index feacd6bd..a79dc0aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 888 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 134.4 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml index 2923c892..86859b6f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 144.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml index d4c334b1..c61f2454 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1032 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 144.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml index 43382b43..7d948923 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml index 4d7efd72..4abc54e3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml index 5850bae7..32e9a87a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml index 971e471f..1d831fce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 601 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 67.20 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml index 4d800468..2776d824 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 719 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml index 47225664..a1d1461a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 654 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml index 8cdde3fd..36a23679 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1058 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml index e60b648f..a26fbd9d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1058 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml index 1b0fbc1e..79c16567 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 758 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml index 61e0c7cf..fbde1344 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 719 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml index db4d6cf4..f7799ac6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1019 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml index 1d8f1b7e..48326f72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1098 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml index 50d09f7f..299387c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 888 MHz VRAM Frequency: 1400 MHz VRAM Bandwidth: 179.2 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml index 52a80061..2f7a24c0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1046 MHz VRAM Frequency: 1650 MHz VRAM Bandwidth: 211.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml index 656669b3..51501d98 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml index 438e5668..2eb54230 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml index f237d3ff..0a5eb2c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1072 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml index 75d8f2d4..61b501d4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1032 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml index 2a35ea4c..d865d370 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 719 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 64.13 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml index af89389b..59c1e18a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 719 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 64.13 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml index cb563465..d5f43c9b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 863 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 64.13 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml index 43dffbd1..97085c7a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1085 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml index 30598d92..8329115d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 797 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 96.19 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml index 2da5aec5..b93a07e1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 797 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml index 4c90320b..b339793f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml index 21b62f70..359f5434 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml index 1e4ceee6..bf7ab732 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 928 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 336.6 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml index 2ae241c9..081fff59 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 928 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 336.6 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml index 3a3e6901..f6595859 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml index d3c10206..5c1b1e97 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 784 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml index bbac908e..f5031767 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 797 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml index 88707c2e..fb38b4b9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 967 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 120.0 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml index e5c11843..6c742b6c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 993 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml index c9da562f..763eba66 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 980 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml index 9c41a990..8b5bcbe8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml index bfe3cf41..28213e1f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml index b6fddc44..cd404f63 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml index 2226c0f8..82eae7f0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml index d118e890..cc284dc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 14.26 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml index d2e7daef..cf96050e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 797 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 57.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml index 5a6be294..87e46eda 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 850 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml index fdaed5e5..993b70f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 851 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml index 86755b45..379784e2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 706 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml index 9b230328..44e8147c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 954 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml index 9a4c1410..529f5e1e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 954 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml index df774b1e..2d0815ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1058 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml index b11c169b..fa3f1f44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 745 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml index e1c03265..1a526cc1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 745 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml index e6a8529d..022ac663 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 667 MHz VRAM Frequency: 752 MHz VRAM Bandwidth: 48.13 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml index 5bedd9bf..4c2464d7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 654 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml index 82c7dcd0..f274d084 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 706 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml index 256fd7ec..9b7b71af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 810 MHz VRAM Frequency: 1404 MHz VRAM Bandwidth: 134.8 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml index 0d2cab1c..f5edc666 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 601 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 89.60 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml index c718df35..c8aed88b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 706 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml index cb50559a..ab2b2e32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 876 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml index cdd6c7ad..ddb68d0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 784 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml index b018a573..5b977d8c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml index 56d2b0e0..69380f27 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml index 869a4787..50560996 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 172.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml index 9c8a557a..3b017786 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 601 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml index 308e2415..bd35052f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 709 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml index 6b03f634..ee543727 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 771 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 115.2 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml index 30838ac9..110fe96f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 771 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml index 40f47f62..58d0153a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 876 MHz VRAM Frequency: 891 MHz VRAM Bandwidth: 28.51 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml index 34e1afbe..f1f128a5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml index 7468b5c4..2c313cfa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 902 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml index f5f2bb7e..15549089 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 745 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml index 689e5aa7..dd3929ce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 249.6 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml index 74c59367..b6cf8794 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 732 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 249.6 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml index 74423551..12f2962e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml index 5a49059b..5d40f56a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 706 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml index 3c783f47..0431e801 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 208.0 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml index eb311ff8..a3767b75 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml index 9dace4d6..2f3339d3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml index 912d15ab..3d21fc3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml index e0625fa7..d29a8287 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml index f0afb767..5c3e88c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml index 4326aaa1..d64ad050 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml index 945e32bf..741030f0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 811 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml index 063cccb2..d3bd0557 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 722 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml index e6e0099c..d948dffe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml index 488c2ecd..c4093f3f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml index f161eccc..89a2e1f3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml index 2d574868..ab819a15 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml index 741c00ee..a28aa8b7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1239 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml index 95bbecdd..26a2a404 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1190 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 105.8 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml index 8b16f9d9..1619a0d0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1203 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml index f60a561f..7783ab85 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1188 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 105.8 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml index caa6eb06..3e68d367 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1038 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 120.3 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml index efd641c8..61c8c94c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 112.2 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml index 04f77387..96cf922c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1150 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml index e8816ed0..dfeeabee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 950 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml index 129631b1..5863f612 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 56 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml index 0aca2113..5ed6a4d3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1038 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 120.3 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml index 382ce836..91905d4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1140 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml index cfd760c2..dfd79a82 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1076 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 336.6 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml index be6e982d..3bf8c440 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1216 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml index bebf3a96..c5f8a322 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1127 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml index 843dfe9e..ebcdff76 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1089 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 336.6 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml index 0344564c..cc9adfa9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 921 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: LPDDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml index 9212378c..3e245d73 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 998 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: LPDDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml index 08914b92..74631b94 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1163 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 105.8 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml index 616262d7..04e1caac 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1036 MHz VRAM Frequency: 1377 MHz VRAM Bandwidth: 88.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml index dd4896c3..edb464be 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 924 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml index ae3ea088..51475815 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 924 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml index 6bc379f2..dff6af96 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 773 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml index 5711a4a1..775085ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1013 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml index 8f738427..3310f67f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1038 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 211.6 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml index 47a967a3..b729453c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1051 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml index dcdad141..a90956b3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1165 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml index fec220a8..930e0baf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1114 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 317.4 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml index 018ebd14..9f307572 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1114 MHz VRAM Frequency: 1653 MHz VRAM Bandwidth: 317.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml index 78b212af..078ace49 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 768 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml index 0de8eabe..3fcb0a67 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 768 MHz VRAM Frequency: 1600 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml index 6cac0d89..1d6a528e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1072 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 88.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml index 8cb5cc5c..12db2582 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1112 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml index 58764dcf..18971c01 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1112 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 288.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml index e7ca9037..457fbbad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1180 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml index 874e8a4f..7b2f8f99 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1180 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml index 32f0d9ac..0d4dfb18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1178 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 160.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml index 79070b66..0670e92a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1306 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 83.20 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml index 3a6a1e50..7c4a1f5f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1306 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 83.20 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml index 176fba29..55a8c40b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1033 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 83.20 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml index 1b6b6d2d..3362e25a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1150 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml index 1b4c62f5..37616cea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1150 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml index c52800cd..a42909a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml index c64b06b8..b6dd8609 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml index 53f0a809..562aba04 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1150 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml index 8110c824..c12a1201 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 993 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml index 2a3b092c..509e086f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 941 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml index a545b213..5feec95c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 549 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml index 9abfebcb..d8caf3aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml index 2379985c..ff9bc67b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1098 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml index 71ab011c..20dc7c5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 861 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml index 7da5e30f..0ca61db2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1189 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml index 168c3a94..be298149 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1020 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml index 185f127c..f242dc35 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1033 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml index 909bb55c..c671990c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1085 MHz VRAM Frequency: 1350 MHz VRAM Bandwidth: 86.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml index 468eedc2..bb414cee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1085 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml index 4feb38e7..9c9d820e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 902 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml index b37bee71..50b5fd98 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 902 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 32.03 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml index 2900711a..7c684900 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1176 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml index 0e90f88f..304d0dc7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1020 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml index 30924871..38e8b384 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 32.03 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml index 6a9dfffa..917693fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml index 0399042f..652efddf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml index 5ed2356b..7f3bd33f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1176 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml index fedbbcd6..685c2d20 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1006 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml index 1d068669..903636b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1189 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml index e9b991d4..acc0ea9e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1033 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml index 6cce1ca0..3e1c2ea3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml index 69dbc273..a112279a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml index 831d1928..87b362bd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1150 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml index 78f5ba07..abc50ee9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml index 37a640f6..9575df4e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 16.02 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml index 41a28479..b6424958 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1072 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml index 94114a94..8401a7c9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1148 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml index 1e7870bc..184c48bb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1137 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml index 398d800e..b9b3a546 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1124 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml index 6c629a48..f5a1cf0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1176 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml index 7a824b59..a5d160bc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 876 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml index 954b2495..5e419461 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1018 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 80.19 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml index a0d58997..62c65217 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1306 MHz VRAM Frequency: 1300 MHz VRAM Bandwidth: 83.20 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml index 2c0b16d9..2fe78af2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 16.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml index 82fa3107..dcdae042 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1468 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml index a482e7cc..e913f004 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1379 MHz VRAM Frequency: 1050 MHz VRAM Bandwidth: 16.80 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: DDR4 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml index 8b878c5f..99a0363b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1468 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml index efb8d242..e4652e24 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1518 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 84.10 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 96 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml index 77e6c1d8..f0ae4225 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1139 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml index 796d2b2a..70dba4d5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1493 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml index 3c287665..33be1124 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1291 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml index d2084d55..ea3249db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1620 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml index bd43bdcb..a04d2f12 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1392 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml index f445bb0b..655aba4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml index 93984a0f..086e9a8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1708 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml index ce68c140..7bcea07b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1708 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml index ed63f9a4..9e7dd949 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 160.2 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5 VRAM Bus Width: 160 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml index f5e5004c..3990f498 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 2257 MHz VRAM Bandwidth: 216.7 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml index ad479856..002968a1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5X VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml index 3080ed1c..0fb61a2c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1708 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml index 9ce302f7..277daf68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml index 419c3c46..dc397a0a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml index 65240aaa..096e97b0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml index b7fe460f..6e9305af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml index 8519a7cf..a74a34fd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1671 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml index 8f8f2b42..4c721dac 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1683 MHz VRAM Frequency: 1001 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml index d7b84ba4..5c37d6a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1379 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml index 37a1ee92..afb9d06c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1645 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml index e9d73c37..b3fe0f58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1683 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml index c5255876..d848895b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1683 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml index 1762c7e0..2c544ed6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1733 MHz VRAM Frequency: 1376 MHz VRAM Bandwidth: 352.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml index 0a4a9596..1e16275c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1366 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 320.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml index c4f7112e..bf02f94e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1734 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 320.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml index 072faaaf..9a5816fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1670 MHz VRAM Frequency: 1376 MHz VRAM Bandwidth: 528.4 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR5X VRAM Bus Width: 384 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml index f4801b7d..ba85b0a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1670 MHz VRAM Frequency: 1376 MHz VRAM Bandwidth: 440.3 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5X VRAM Bus Width: 320 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml index 1cf02c37..b376fb80 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1582 MHz VRAM Frequency: 1376 MHz VRAM Bandwidth: 484.4 GB/s - VRAM Capacity: 11 GB + VRAM Capacity: 11 GiB VRAM Type: GDDR5X VRAM Bus Width: 352 bit Render Output Unit Count: 88 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml index 0d9ab907..3b52d50a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1733 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 320.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml index 505493d4..7b7c4a8d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1532 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml index c1d831fa..17cbb8de 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1532 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml index f9f4155b..49139fc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1531 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml index c388460c..a1594d28 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1582 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml index 7f9de24d..270682e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1594 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 56.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml index 0b2cae36..34b7e09f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1468 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 56.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml index 321f9770..384eb6d3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1300 MHz VRAM Frequency: 1866 MHz VRAM Bandwidth: 59.71 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR4 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml index 10162dc4..028e6d3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1683 MHz VRAM Frequency: 1376 MHz VRAM Bandwidth: 440.3 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5X VRAM Bus Width: 320 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml index c9209805..ba10969a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1670 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 320.3 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml index 3fb11c27..4996cd39 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1733 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 320.3 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml index 91013c1f..8a8bedc9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1683 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 256.3 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml index 1d70119b..d2d61bae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1531 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 3 GB + VRAM Capacity: 3 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml index b290f6e9..20b319e1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1709 MHz VRAM Frequency: 2002 MHz VRAM Bandwidth: 192.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml index 106f974c..7642845a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 1291 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml index b5a34421..abdc71fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1443 MHz VRAM Frequency: 715 MHz VRAM Bandwidth: 732.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml index e45a9112..46082a80 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1519 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml index 1c618bbb..ed1e6d71 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1392 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml index 5aecc8cb..7bf93e2d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1607 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml index 2a623e6d..a366f60c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 140.2 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5 VRAM Bus Width: 160 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml index cf0ffefa..0ae82d80 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1493 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 200.2 GB/s - VRAM Capacity: 5 GB + VRAM Capacity: 5 GiB VRAM Type: GDDR5X VRAM Bus Width: 160 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml index 05c31441..2f9343bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1215 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 168.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml index e6e8e060..4d769a32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1404 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 168.3 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml index cb302b46..77ec0c57 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1543 MHz VRAM Frequency: 1752 MHz VRAM Bandwidth: 168.2 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml index 2cee1823..a52e3791 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1252 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 32.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml index 6f5ea137..74fc5ef9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1228 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml index 4f3646fa..df560324 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1228 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml index 3b1475dd..1fbf61c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 1901 MHz VRAM Bandwidth: 243.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml index 8601c0c8..5e5f5fb2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml index bdfaaa3c..67e2033f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1594 MHz VRAM Frequency: 1753 MHz VRAM Bandwidth: 224.4 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml index e1157c0b..7192e444 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1519 MHz VRAM Frequency: 1253 MHz VRAM Bandwidth: 40.10 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml index 00ad9064..fd9a80fa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1506 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml index e01b296f..8b265e05 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1506 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml index 878eac5c..e8bf3fc9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1733 MHz VRAM Frequency: 1127 MHz VRAM Bandwidth: 288.5 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5X VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml index bbbaacc8..32cbb082 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1493 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 44.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml index 0e54075a..b6f271fc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1493 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 48.06 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml index 38ab8b33..84641f27 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1569 MHz VRAM Frequency: 1804 MHz VRAM Bandwidth: 230.9 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml index 1ee90141..da21795f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1759 MHz VRAM Frequency: 1804 MHz VRAM Bandwidth: 230.9 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml index e86d4bea..17ddef22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1620 MHz VRAM Frequency: 1252 MHz VRAM Bandwidth: 80.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml index d1cfcd33..0dddd2f7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1557 MHz VRAM Frequency: 1002 MHz VRAM Bandwidth: 64.13 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml index aa933791..d5a8da68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1645 MHz VRAM Frequency: 1127 MHz VRAM Bandwidth: 432.8 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR5X VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml index 55284a1a..77204d3b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1443 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 96.13 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml index 868bf4fd..73e2303f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1354 MHz VRAM Frequency: 1252 MHz VRAM Bandwidth: 80.13 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml index dad18261..82a04c4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1531 MHz VRAM Frequency: 1251 MHz VRAM Bandwidth: 480.4 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5X VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml index e17f8382..241d50df 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1582 MHz VRAM Frequency: 1426 MHz VRAM Bandwidth: 547.6 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR5X VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml index 6191f571..ee7dcafa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1493 MHz VRAM Frequency: 1808 MHz VRAM Bandwidth: 694.3 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR5X VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml index 583e71ea..0ed9cda5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 715 MHz VRAM Bandwidth: 732.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml index f57a0453..f964ad88 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1329 MHz VRAM Frequency: 715 MHz VRAM Bandwidth: 549.1 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml index 6bca0a22..70f53b58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1329 MHz VRAM Frequency: 715 MHz VRAM Bandwidth: 732.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml index 0dda99d4..aaebe81e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1480 MHz VRAM Frequency: 715 MHz VRAM Bandwidth: 732.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml index bc599b18..47684b9e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1114 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml index 960de97b..94c5d0d2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1531 MHz VRAM Frequency: 1808 MHz VRAM Bandwidth: 347.1 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR5 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml index 8febe496..4dde875b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1506 MHz VRAM Frequency: 1502 MHz VRAM Bandwidth: 192.3 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR5 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml index b5f2d58c..0eb56480 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml index 76b62b05..21eaffca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 2.656 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml index 07f6c698..69fcecd8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml index 096253ad..1c32f047 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml index 0f4cc832..3a09bbe1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml index ccb0c1ca..b1fdba56 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml index b45b2a8f..a7dd8017 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml index 501a21fe..66cd3d7b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 270 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml index 1ab6153c..6f637215 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 270 MHz VRAM Frequency: 166 MHz VRAM Bandwidth: 5.312 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml index a36e45f5..abe41d02 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml index 913fd9f6..7a73a8af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 235 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml index a7367a10..b00f9015 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 235 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml index f307141e..8bb5af4a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml index 3acfa75f..9eae2eab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml index 4d42f5a7..34e85a92 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml index a0e5b530..749550df 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml index a092ecbf..5ae19155 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 453 MHz VRAM Bandwidth: 14.50 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml index c789d365..d301cac5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml index ccf8bb03..6fed1feb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml index 42d7b7bd..fb593555 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml index acd24929..3f6ce756 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml index 3e57210d..e84ceade 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml index 23907486..0edcffce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml index 84e8d6fb..757f4cf3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 350 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml index 1a818bf1..589e97b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml index 371c2b19..17e0ce6c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 475 MHz VRAM Bandwidth: 30.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml index 2c30a0b0..7dd1a70b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml index 83af4290..6d946bbb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml index e3698f7e..726d77ba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml index f877d8cb..cb9a2928 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml index 9b2320da..1a709c3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml index 3c42b0dd..f7b071c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 32 MB + VRAM Capacity: 32 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml index e4bd1221..4ac66888 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml index 1051482b..91ca3b31 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml index b9ff3ef3..67597753 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml index 70f7a0bf..fcd66689 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml index 03b90e50..14147ea5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 9.440 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml index a12d9ae9..1f873d61 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml index 69e2a5df..f93ca7a9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml index dd08ea51..aa02201d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml index c8778f43..36227402 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 17.60 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml index 76d9d690..cf7f8ecc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml index 8dca8f0d..5ad2b463 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml index 2483b1a6..2c1d9704 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 425 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml index 7d5b11dd..3d20cafa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 17.60 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml index 267ec5af..6615b93e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml index 5bb682d6..f0f22a79 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml index 94b6a37c..cf71130a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 425 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 256 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml index c494bdef..fc979b3e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml index 3f447068..09b8e09d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 270 MHz VRAM Frequency: 240 MHz VRAM Bandwidth: 7.680 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml index 25d3c115..df54c132 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 270 MHz VRAM Frequency: 240 MHz VRAM Bandwidth: 7.680 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml index a6288477..54abe307 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 275 MHz VRAM Bandwidth: 8.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml index d94f0d8a..6a3f2268 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 295 MHz VRAM Frequency: 285 MHz VRAM Bandwidth: 9.120 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml index 4b6e4f19..29257547 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 295 MHz VRAM Frequency: 295 MHz VRAM Bandwidth: 9.440 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml index 9b38949a..0aeaf6bd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml index db894370..63264281 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 4.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml index 5df55ba7..89c5a5e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 275 MHz VRAM Frequency: 250 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml index e2931f95..9f918596 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 64 MB + VRAM Capacity: 64 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml index c81645cc..c3891837 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml index 249b1514..38842aa0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml index c9e7e54a..f31f5b92 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml index ee994153..afc90d2c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml index 6cf2873b..a37acaf7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml index d6dae520..e429ef91 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 525 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml index 43f2df8f..96560e21 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml index f9ebff47..7a17197c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml index cdde1184..67ea3a4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml index 937bd536..3b6ce77d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml index f10e303d..2354a238 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml index 35e28f13..59f26440 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml index b6beb497..4b82b992 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml index 81293be1..555a622d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml index 146436ba..913cc551 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml index 95cca846..017c2a52 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml index 83b1259e..243b1b74 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml index 9a4c64bb..c84d60e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 535 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml index 4e60b620..056e4108 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 589 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml index 8ea927df..352c0cfe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml index 490e3e6e..61c4e415 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 506 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml index 005d8fb1..474465a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 615 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml index 97606d0e..7960bddf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml index 1634b197..33fa76a6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml index 701122a5..c25124ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml index ac973cae..55032443 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml index 2f8300ef..ec94e718 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml index ce0547d0..ee79240a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml index 7f7a5ee5..eba371bc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml index 510557dc..bacd25f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml index 30ae4c86..bc444936 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml index 4a3a86ae..289bbbb3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 27.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml index 841b7bf5..e8ef5489 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 10.66 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml index b335b838..2de20aa2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 50.56 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml index 6410eaf1..2c5a2ec7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 850 MHz VRAM Bandwidth: 54.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml index db70722d..3049a30f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 50.56 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml index 0d362588..02191bea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml index 320a702f..58b3dda2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml index 943c147b..0ed69299 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml index 12be51a7..ef8b601f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 518 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 112.9 GB/s - VRAM Capacity: 1792 MB + VRAM Capacity: 1792 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml index ce23bd6f..f3befbde 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml index 6211a464..61d5964c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml index 0573d042..d1680abd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 633 MHz VRAM Frequency: 1134 MHz VRAM Bandwidth: 127.0 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml index 614dbe60..c75179a3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 602 MHz VRAM Frequency: 1107 MHz VRAM Bandwidth: 141.7 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml index 07d13f54..aa4b9b77 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 648 MHz VRAM Frequency: 1242 MHz VRAM Bandwidth: 159.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml index c3ba0360..a27c589d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 648 MHz VRAM Frequency: 1152 MHz VRAM Bandwidth: 147.5 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml index 0d1a3831..76474385 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 648 MHz VRAM Frequency: 1242 MHz VRAM Bandwidth: 159.0 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml index 2fb8b73d..acecbcaa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 112.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml index 123daf35..52c4beaa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 999 MHz VRAM Bandwidth: 111.9 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml index 0525c462..3b83841f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 608 MHz VRAM Frequency: 837 MHz VRAM Bandwidth: 133.9 GB/s - VRAM Capacity: 1280 MB + VRAM Capacity: 1280 MiB VRAM Type: GDDR5 VRAM Bus Width: 320 bit Render Output Unit Count: 40 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml index 08cb9450..03210523 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 535 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml index b938e820..f4caa8ff 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml index e80479f4..d11d8848 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml index dd0f2b24..5d8fc461 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml index 9a278f6a..87da9eca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 770 MHz VRAM Bandwidth: 12.32 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml index a24e68b4..6071136c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml index 99cd68b1..f64ff784 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 560 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml index a73c771b..e2905a5e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml index c5b748a4..02c47f26 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml index e4300fc6..27440d69 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 606 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 12.64 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml index cc5d9f0b..bcc834f6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml index 0910140c..b36dce5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 602 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml index 42d2fab5..028e5fc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml index 770d7365..18f74ada 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 790 MHz VRAM Bandwidth: 25.28 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml index afe522d7..8dbabc53 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 648 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml index 5ed7a23f..19182bf2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 648 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml index 56f526b4..97398052 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml index 747b716d..c9b7508c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml index ba60cdab..1e65c2b3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml index 84d9d56b..e092554f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml index c37dd5f9..3d134b1c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 610 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 102.4 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR3 VRAM Bus Width: 512 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml index 08b76016..e43ef1f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml index f01af791..3909c622 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 567 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml index 841037b3..22cc92c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 567 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml index dd49cbec..96e9b9c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml index 5664f896..674ef9b1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml index 8898e3c7..382f2534 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml index 705423f2..d149ea90 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml index 7bea285f..86171ba0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml index ec829753..fbc9f7c9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 602 MHz VRAM Bandwidth: 19.26 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml index 1d2cafba..78952e13 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml index 05ea6b33..f9792691 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml index 5261150b..6f436ec7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 750 MHz VRAM Bandwidth: 24.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml index 4b88606c..1ea8f6ca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml index 74024235..fe3b5dd3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1008 MHz VRAM Bandwidth: 32.26 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml index 9c96a513..72c1516f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml index 3af17ced..61287bd2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml index 661be46a..f0708f59 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml index 3f8256c3..38d97187 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml index 7a9b46ef..04aceb9b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml index c55984f0..8cdcda43 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 384 MB + VRAM Capacity: 384 MiB VRAM Type: GDDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml index 4c3ca998..03f52d85 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml index 8cce70e1..dbb44090 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml index 38649859..d9333332 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 513 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 63.36 GB/s - VRAM Capacity: 320 MB + VRAM Capacity: 320 MiB VRAM Type: GDDR3 VRAM Bus Width: 320 bit Render Output Unit Count: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml index 83ea402a..4533a2af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 820 MHz VRAM Bandwidth: 52.48 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml index 01b1753d..281de6ad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 513 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 63.36 GB/s - VRAM Capacity: 640 MB + VRAM Capacity: 640 MiB VRAM Type: GDDR3 VRAM Bus Width: 320 bit Render Output Unit Count: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml index c6695103..cc0ebf6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 640 MB + VRAM Capacity: 640 MiB VRAM Type: GDDR3 VRAM Bus Width: 320 bit Render Output Unit Count: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml index 9ef1bd52..5dcbbcb3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 576 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 86.40 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml index a5e9755a..d5cf169f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 612 MHz VRAM Frequency: 1080 MHz VRAM Bandwidth: 103.7 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml index 0a16fe63..2de772ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml index 35f486a7..8d3f0207 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml index 389d1a2a..116e4c49 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 529 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 11.23 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml index 18e67fbe..2c34f0bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 529 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml index 3fde1d7b..25c0ab68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml index 1f9dc735..9e66976f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 567 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 5.328 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml index f6c93e34..93b3bbb8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml index d8601384..1abf61d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml index 338add79..8ac33616 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 11.23 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml index a122707d..cbd27de6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml index 6f4ddbcc..f412156a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml index 812226be..4d62be83 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml index 68b8dde6..cbfd908a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml index 6f033872..43ac55f2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml index a60b19c6..a9dbecde 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 16.13 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml index 920f3ee4..f7b42172 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml index 034d8b97..54f5b2a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 28.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml index 2a79f336..b96ca485 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml index 41e8f57e..57e2057b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml index 0539acd0..8dd96a18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml index 7cb7e13e..21cd9efc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml index ebf0d9c3..37e53ac5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 48.00 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: DDR2 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml index 1d953723..6c4ec881 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml index 3604540d..b1a951f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 384 MB + VRAM Capacity: 384 MiB VRAM Type: GDDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml index 2039e17b..fca4aaae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml index 72f876eb..b7cc78bd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 266 MHz VRAM Bandwidth: 17.02 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml index b9ae0b2b..375693dd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml index bf322aff..94f6a3f4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml index 37a262fd..7fdf53b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 44.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml index 2bab1d07..1fb6b6cd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 430 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml index 0b218944..3bd02864 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml index 03474b23..ee92e6ce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml index 1ff3812e..4490750d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml index 4ef10e1d..98ca58c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml index 095f446f..77c31bbd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml index 6c78d3d3..7f515015 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 530 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml index 7554dc8a..93dbce17 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 725 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml index 7a8ada05..7f2481dc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml index b21408d2..65b255c5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml index c00a49cc..afe2ff80 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml index 3ec48069..e06b3ec8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml index 77500744..52abe134 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 530 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml index d05288d7..e1c59dcf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml index 36c6d969..93ec9170 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml index 98ccc4a3..d35374c3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml index 37ea713c..ed3092b7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml index 3c7d1043..e8d65d6f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 640 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml index e89650aa..5cd56b8a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml index 5c742ff8..4b5403c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 8.064 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml index 8e022c26..686f35aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml index 6f2bb5d7..4e677a9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 504 MHz VRAM Bandwidth: 16.13 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml index 440c50ff..743f948e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 25.34 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml index 46f292f2..5a37539e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml index 050db12b..9716ad77 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 792 MHz VRAM Bandwidth: 38.02 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml index 000446b5..0eb2eb43 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 24.00 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml index fa1bd803..0a5c5aeb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml index 08d0ce87..bdc1e6a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml index 6d138296..58ce75a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml index 8e6f26c5..5591ced7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 24.00 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: DDR2 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml index c8d21b73..0eea1f3b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 650 MHz VRAM Frequency: 900 MHz VRAM Bandwidth: 57.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml index 99e448d9..eec0f1a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml index 59bab127..e619fec5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml index eb9b7d07..c571ead5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 738 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml index 3091e1af..91f45fd3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml index fadff9ae..3a01bc56 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml index e0c38068..5eb9db8b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1100 MHz VRAM Bandwidth: 70.40 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml index 5038b392..0791c32a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 702 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml index 68aba2a8..4a9d1c56 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 60.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml index c2a75d52..a36cc2b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 633 MHz VRAM Frequency: 1134 MHz VRAM Bandwidth: 127.0 GB/s - VRAM Capacity: 896 MB + VRAM Capacity: 896 MiB VRAM Type: GDDR3 VRAM Bus Width: 448 bit Render Output Unit Count: 28 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml index ccbd7e66..80e35d8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 585 MHz VRAM Frequency: 950 MHz VRAM Bandwidth: 60.80 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml index 56c89948..0c6bd927 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml index ad2007fb..b12921ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml index b8f0ba9d..550ed974 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 520 MHz VRAM Frequency: 650 MHz VRAM Bandwidth: 20.80 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml index 615828a4..e2d700ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml index d9ebeaa4..28ac2bb3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 625 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml index e3ed6b16..44a99ef1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 38.40 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR3 VRAM Bus Width: 192 bit Render Output Unit Count: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml index d8f82d9d..deebd68a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 530 MHz VRAM Frequency: 799 MHz VRAM Bandwidth: 51.14 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml index 681f0698..1960b32f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml index 158056f5..2b0accfa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml index a4b58893..81b744a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml index b5b1136c..bb3b147f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml index 7c3c9210..6756de25 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 360 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 8.000 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml index b85b3393..27395287 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml index 5d61511e..c9b6f13d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml index c74558a6..dd47a02e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml index 96bc79b7..43a6baba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml index 58bae2c9..66e1d3ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 675 MHz VRAM Frequency: 1000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml index 4c7cdbce..e758e219 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 67.20 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml index f5f55e93..17ed2ede 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 67.20 GB/s - VRAM Capacity: 768 MB + VRAM Capacity: 768 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml index cc9ddf35..1988b183 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml index dcbc4814..914b46db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml index 357649ef..0ca0908d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml index ca9aa85f..2a67c0b5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 460 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 12.80 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml index 62948071..702298b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 475 MHz VRAM Frequency: 702 MHz VRAM Bandwidth: 22.46 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml index 5a16ef76..20146e9d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml index 38c24961..e30bb858 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 25.60 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml index 3429ef3f..adce9543 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml index d6a5a949..f9d52384 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 594 MHz VRAM Bandwidth: 9.504 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml index 3d53d63a..de55efaa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 400 MHz VRAM Frequency: 600 MHz VRAM Bandwidth: 9.600 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml index 416b0bfa..792e3d72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 530 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml index 884c865b..88fa198a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 580 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml index a2db9bf4..c71eb44c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 459 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml index c0e5c95a..5271ff44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 540 MHz VRAM Frequency: 695 MHz VRAM Bandwidth: 11.12 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml index 14bf7300..4b965c6b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 575 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 22.40 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml index dc628733..1050b521 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 550 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml index 2cd37109..65b1bf6b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 480 MHz VRAM Frequency: 700 MHz VRAM Bandwidth: 11.20 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml index fd26b267..0c42d367 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml index 5df69ba9..50c09165 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 500 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 1024 MB + VRAM Capacity: 1024 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml index c7bab694..c3668be3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml index c466bc08..b6f196ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 51.20 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: GDDR3 VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml index 5c101cdb..d4065bcf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml index 412d231b..2ce235e3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml index c2313970..92c20e69 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 600 MHz VRAM Frequency: 800 MHz VRAM Bandwidth: 76.80 GB/s - VRAM Capacity: 1536 MB + VRAM Capacity: 1536 MiB VRAM Type: GDDR3 VRAM Bus Width: 384 bit Render Output Unit Count: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml index b13cc4de..7bb02ece 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml index 05e27e5a..1030efba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml index 9374ada1..34143481 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 560.0 GB/s - VRAM Capacity: 10 GB + VRAM Capacity: 10 GiB VRAM Type: GDDR6 VRAM Bus Width: 320 bit Render Output Unit Count: 80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml index 9dc6b58d..f2199969 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1575 MHz VRAM Bandwidth: 604.8 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml index 5e8d3454..fd83d37f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml index 4a370fdd..b2cec7b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml index 76082f44..fc58b2b9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml index 0fb713a8..ebede406 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml index e2e3084f..c4b3cd4e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml index dedc897a..b88d5f3a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1245 MHz VRAM Frequency: 1751 MHz VRAM Bandwidth: 112.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml index bd9d343c..a60a8a89 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 2001 MHz VRAM Bandwidth: 128.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml index 21eb5746..835caff3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1725 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml index a8ad85cc..f91bd53c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml index 2dcfd431..01913d47 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml index fa505279..f9b63d03 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml index 6635a2da..f6e9ad04 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1485 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml index d3f45c4a..11e63030 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 2001 MHz VRAM Bandwidth: 128.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml index 4f420401..47537cca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml index 697eaa39..ce3d368b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1335 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml index 974302e0..e66f22ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml index 72b81adb..d513e171 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml index 38958604..901ae12e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 2001 MHz VRAM Bandwidth: 192.1 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR5 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml index 15aac5ca..b5ca3c9c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 930 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml index 5fabdd09..964164de 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1575 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml index 27e6475b..e20690ce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1275 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 64.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR5 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml index 7b474417..28aed83e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1320 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml index b3b96561..ff0b6c18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml index 33f1ba11..69a7e8f2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1353 MHz VRAM Bandwidth: 259.8 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml index 76e28796..475b824c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1185 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml index 06af8c5e..ce168cff 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 264.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml index 63fa0619..32db7e9c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1200 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml index 07af755f..96812abb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml index ebee8e2c..7b434df7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml index ad368a1a..950d4188 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1680 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml index 46e179e0..a96e7c30 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1680 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml index 0394e786..cc59a1f3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1125 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml index 26ba01f9..298adb2a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1185 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml index 6e915e7d..150529a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml index 9cb96100..ff65dfa5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1440 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml index 4144f567..c6916aff 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1155 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml index 27dfb7f3..a2243872 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml index 5e67b0d5..2791bb75 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml index fbda583e..6f5575a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1620 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml index f929897e..c6cec401 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml index 43551000..c29df4f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1095 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml index 19801bbc..37e540f0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml index bffacf04..19234d28 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 975 MHz VRAM Frequency: 1375 MHz VRAM Bandwidth: 352.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml index 75367f64..b12ad92e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml index 142b9b5e..a7a20495 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1815 MHz VRAM Frequency: 1937 MHz VRAM Bandwidth: 495.9 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml index 54e60527..2103da9d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 2000 MHz VRAM Bandwidth: 768.0 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml index 6801531c..d9c45b4c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 616.0 GB/s - VRAM Capacity: 11 GB + VRAM Capacity: 11 GiB VRAM Type: GDDR6 VRAM Bus Width: 352 bit Render Output Unit Count: 88 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml index 30088c4f..f7c322c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1710 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml index 2c034b6c..626c204f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1215 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 288.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml index 026f2eb7..fe387ef7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml index 65c64d13..b94bd3a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml index 5eb185a3..1afdb93e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 336.0 GB/s - VRAM Capacity: 6 GB + VRAM Capacity: 6 GiB VRAM Type: GDDR6 VRAM Bus Width: 192 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml index 6a98f4be..51c28f8f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml index 3b4ba546..2e8ba334 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml index 0f5a6493..13088079 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1545 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 416.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml index 610fd467..d0737e5c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 384.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml index 683529ec..3eb359bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml index a6655fa7..1cda4804 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml index 63a54446..54f9bfc2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml index 8caa598a..babc0bc1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1815 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 448.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml index 20f7dbb8..e372b6ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml index dd12a357..4bbe272b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml index 0ad3a726..e96fc7ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml index 12b2ad94..7b139c62 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1620 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 624.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml index b245f193..263a4aa7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 48 GB + VRAM Capacity: 48 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml index 2bba3db9..0eea26f1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1350 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml index b2ac87ec..ec0a6f1d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1650 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml index 9a1e6ee8..89acd5cc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 2001 MHz VRAM Bandwidth: 128.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml index 7d257b0c..70550fff 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1425 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml index 53a4d04e..436a9b28 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml index 8e2884cc..7c07e74c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml index 038b111d..87449aed 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1785 MHz VRAM Frequency: 2001 MHz VRAM Bandwidth: 128.1 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR5 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml index 6286b4bc..0c134f8d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml index 20ccb422..7fa6b29b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml index e4b7f6ac..2e3b90a3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1425 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml index 909a93a1..96280df2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1425 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 2 GB + VRAM Capacity: 2 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml index f1199925..daa7a649 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1425 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml index 2abae92f..ad179c32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 80.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml index 9bff0493..8d45dece 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1665 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 96.00 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 64 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml index b70a65ff..b7978d76 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml index ff3ae1dc..1e67dc09 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1410 MHz VRAM Frequency: 1500 MHz VRAM Bandwidth: 192.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml index d40c6a07..7ae070d5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml @@ -16,7 +16,7 @@ data: GPU Boost Frequency: 1335 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 160.0 GB/s - VRAM Capacity: 4 GB + VRAM Capacity: 4 GiB VRAM Type: GDDR6 VRAM Bus Width: 128 bit Render Output Unit Count: 32 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml index c7647f57..4e3e8dc4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1770 MHz VRAM Frequency: 1750 MHz VRAM Bandwidth: 672.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml index 84a70562..51de4bd5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1395 MHz VRAM Frequency: 1575 MHz VRAM Bandwidth: 403.2 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml index 942fa544..7c13f833 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml index 899f27aa..cc1c8198 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1560 MHz VRAM Frequency: 1625 MHz VRAM Bandwidth: 624.0 GB/s - VRAM Capacity: 24 GB + VRAM Capacity: 24 GiB VRAM Type: GDDR6 VRAM Bus Width: 384 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml index 78bd6cf8..b62f7f0f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1590 MHz VRAM Frequency: 1250 MHz VRAM Bandwidth: 320.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: GDDR6 VRAM Bus Width: 256 bit Render Output Unit Count: 64 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml index 75923d69..aef8155f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 400 MHz VRAM Frequency: 333 MHz VRAM Bandwidth: 2.664 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 32 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml index b4a60239..2c66694f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Boost Frequency: 520 MHz VRAM Frequency: 667 MHz VRAM Bandwidth: 5.336 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR3 VRAM Bus Width: 32 bit Render Output Unit Count: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml index 24ff29cd..cb699ead 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 672 MHz VRAM Frequency: 933 MHz VRAM Bandwidth: 7.464 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: LPDDR3 VRAM Bus Width: 32 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml index da29b139..2f9c2e6c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml @@ -14,7 +14,7 @@ data: GPU Base Frequency: 660 MHz VRAM Frequency: 933 MHz VRAM Bandwidth: 7.464 GB/s - VRAM Capacity: 512 MB + VRAM Capacity: 512 MiB VRAM Type: LPDDR3 VRAM Bus Width: 32 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml index 9efee71c..2754b5f4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1377 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 136.5 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR4X VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml index 47f8c52e..b83bb07e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1377 MHz VRAM Frequency: 2133 MHz VRAM Bandwidth: 136.5 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: LPDDR4X VRAM Bus Width: 256 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml index 6e35ff1e..b28367a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1100 MHz VRAM Frequency: 1866 MHz VRAM Bandwidth: 59.71 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml index 0092fc7e..ef3a82f7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1100 MHz VRAM Frequency: 1866 MHz VRAM Bandwidth: 59.71 GB/s - VRAM Capacity: 8 GB + VRAM Capacity: 8 GiB VRAM Type: LPDDR4X VRAM Bus Width: 128 bit Render Output Unit Count: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml index 90878d67..c9d38132 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1627 MHz VRAM Frequency: 848 MHz VRAM Bandwidth: 868.4 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml index 7978ff21..cef8dd00 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 848 MHz VRAM Bandwidth: 868.4 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml index 30507705..428bd3db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1455 MHz VRAM Frequency: 848 MHz VRAM Bandwidth: 651.3 GB/s - VRAM Capacity: 12 GB + VRAM Capacity: 12 GiB VRAM Type: HBM2 VRAM Bus Width: 3072 bit Render Output Unit Count: 96 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml index 4426f04e..3896e751 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 1106 MHz VRAM Bandwidth: 1,133 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml index 19bc19a7..496e327a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 1106 MHz VRAM Bandwidth: 1,133 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml index 89de67a5..6f4bbde6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1582 MHz VRAM Frequency: 876 MHz VRAM Bandwidth: 897.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml index f6e4469c..7c96fa91 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 876 MHz VRAM Bandwidth: 897.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml index 07b20f8a..5cca9dc6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1290 MHz VRAM Frequency: 808 MHz VRAM Bandwidth: 827.4 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml index 71197057..7f2bb4c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 876 MHz VRAM Bandwidth: 897.0 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml index a911e11d..60d011ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1380 MHz VRAM Frequency: 876 MHz VRAM Bandwidth: 897.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml index 17ce6f38..4d64ac7e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1597 MHz VRAM Frequency: 1106 MHz VRAM Bandwidth: 1,133 GB/s - VRAM Capacity: 16 GB + VRAM Capacity: 16 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml index 855570f6..d4dae0cb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1530 MHz VRAM Frequency: 877 MHz VRAM Bandwidth: 898.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml index 9514ea20..1b0aa8b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1597 MHz VRAM Frequency: 958 MHz VRAM Bandwidth: 981.0 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml index abd6df11..ab8fc174 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml @@ -17,7 +17,7 @@ data: GPU Boost Frequency: 1597 MHz VRAM Frequency: 1107 MHz VRAM Bandwidth: 1,134 GB/s - VRAM Capacity: 32 GB + VRAM Capacity: 32 GiB VRAM Type: HBM2 VRAM Bus Width: 4096 bit Render Output Unit Count: 128 diff --git a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml index 3e880c34..81879306 100644 --- a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml +++ b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 400 MHz VRAM Bandwidth: 3.200 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: CDRAM VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml index 8c2572dd..f153c101 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 300 MHz VRAM Bandwidth: 4.800 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 64 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml index e2cdf806..7ee6cfce 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 450 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: GDDR3 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml index 26023918..dbb0fa22 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 32.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 256 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml index 36e55718..29e22463 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml index fecab4db..e22706da 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 250 MHz VRAM Frequency: 207 MHz VRAM Bandwidth: 6.624 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml index c2566020..a247dbaa 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 200 MHz VRAM Frequency: 200 MHz VRAM Bandwidth: 6.400 GB/s - VRAM Capacity: 128 MB + VRAM Capacity: 128 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml index 06d2999c..d4b76d9b 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 375 MHz VRAM Bandwidth: 12.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml index 32444594..957ba4f7 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 325 MHz VRAM Frequency: 450 MHz VRAM Bandwidth: 14.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml index 1bd574ae..6aca37b2 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 350 MHz VRAM Frequency: 500 MHz VRAM Bandwidth: 16.00 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR2 VRAM Bus Width: 128 bit Render Output Unit Count: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml index 06a27281..73692d7d 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml @@ -15,7 +15,7 @@ data: GPU Base Frequency: 300 MHz VRAM Frequency: 325 MHz VRAM Bandwidth: 10.40 GB/s - VRAM Capacity: 256 MB + VRAM Capacity: 256 MiB VRAM Type: DDR VRAM Bus Width: 128 bit Render Output Unit Count: 4 From c9af725ef5c80698164fb2a24ce3b71722a9502b Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 19 Sep 2024 19:27:34 +0100 Subject: [PATCH 13/41] gpu categorisation --- .idea/.gitignore | 8 ++ .idea/magento2plugin.xml | 6 ++ .idea/php.xml | 19 +++++ .idea/vcs.xml | 6 ++ gpu-arch-vendor.yml | 82 ------------------- specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml | 19 +++++ .../AMD/GCN-1.0/AeroBox-GPU.yaml | 1 + .../AMD/GCN-1.0/Xbox-One-GPU.yaml | 1 + .../AMD/GCN-1.0/Xbox-One-S-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml | 20 +++++ .../AMD/GCN-2.0/Playstation-4-GPU.yaml | 1 + .../AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml | 1 + .../AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml | 1 + .../AMD/GCN-2.0/Xbox-One-X-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/GCN-5.0.yaml | 19 +++++ .../AMD/GCN-5.0/Atari-VCS-400-GPU.yaml | 1 + .../AMD/GCN-5.0/Atari-VCS-800-GPU.yaml | 1 + .../AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml | 23 ++++++ .../AMD/RDNA-2.0/Playstation-5-GPU.yaml | 1 + .../AMD/RDNA-2.0/Steam-Deck-GPU.yaml | 1 + .../AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml | 1 + .../AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml | 1 + .../AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml | 16 ++++ .../AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml | 1 + .../AMD/RDNA-3.0/ROG-Ally-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml | 15 ++++ .../AMD/TeraScale-2/Wii-U-GPU.yaml | 1 + specs/GPUs-CONSOLE/AMD/TeraScale.yaml | 19 +++++ .../AMD/TeraScale/Xbox-360-E-GPU.yaml | 1 + .../AMD/TeraScale/Xbox-360-GPU-65nm.yaml | 1 + .../AMD/TeraScale/Xbox-360-GPU-80nm.yaml | 1 + .../AMD/TeraScale/Xbox-360-GPU-90nm.yaml | 1 + .../AMD/TeraScale/Xbox-360-S-GPU.yaml | 1 + .../ATI/Rage-5.yaml | 2 +- .../ATI/Rage-5/GameCube-GPU.yaml | 1 + specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE.yaml | 15 ++++ .../ATI/Ultra-Threaded-SE/Wii-GPU.yaml | 1 + specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml | 22 +++++ specs/GPUs-CONSOLE/GPUs-CONSOLE-ATI.yaml | 14 ++++ specs/GPUs-CONSOLE/GPUs-CONSOLE-Nvidia.yaml | 22 +++++ .../GPUs-CONSOLE-Sony.yaml.disable | 1 + specs/GPUs-CONSOLE/Nvidia/Curie.yaml | 18 ++++ .../Nvidia/Curie/Playstation-3-GPU-28nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-40nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-65nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-90nm.yaml | 1 + specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml | 15 ++++ .../Nvidia/Kelvin/Xbox-GPU.yaml | 1 + specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml | 16 ++++ .../Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml | 1 + .../Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml | 1 + specs/GPUs-CONSUMER-AMD.yaml | 32 +++++--- specs/GPUs-CONSUMER-Nvidia.yaml | 6 +- specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml | 3 - .../AMD/GCN-1.0/FirePro-D300.yaml | 1 + .../AMD/GCN-1.0/FirePro-D500.yaml | 1 + .../AMD/GCN-1.0/FirePro-D700.yaml | 1 + .../AMD/GCN-1.0/FirePro-M3100.yaml | 1 + .../AMD/GCN-1.0/FirePro-M4000.yaml | 1 + .../AMD/GCN-1.0/FirePro-M4100.yaml | 1 + .../AMD/GCN-1.0/FirePro-M4150.yaml | 1 + .../AMD/GCN-1.0/FirePro-M4170.yaml | 1 + .../AMD/GCN-1.0/FirePro-M5100.yaml | 1 + .../AMD/GCN-1.0/FirePro-M6000.yaml | 1 + .../AMD/GCN-1.0/FirePro-R5000.yaml | 1 + .../GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 1 + .../AMD/GCN-1.0/FirePro-S10000-Passive.yaml | 1 + .../AMD/GCN-1.0/FirePro-S10000.yaml | 1 + .../AMD/GCN-1.0/FirePro-S4000X.yaml | 1 + .../AMD/GCN-1.0/FirePro-S7000.yaml | 1 + .../AMD/GCN-1.0/FirePro-S9000.yaml | 1 + .../AMD/GCN-1.0/FirePro-S9010.yaml | 1 + .../AMD/GCN-1.0/FirePro-S9050.yaml | 1 + .../AMD/GCN-1.0/FirePro-W2100.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4000.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4100.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4130M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4150M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4170M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W4190M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W5000-DVI.yaml | 1 + .../AMD/GCN-1.0/FirePro-W5000.yaml | 1 + .../AMD/GCN-1.0/FirePro-W5130M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W5170M.yaml | 1 + .../AMD/GCN-1.0/FirePro-W600.yaml | 1 + .../AMD/GCN-1.0/FirePro-W7000.yaml | 1 + .../AMD/GCN-1.0/FirePro-W8000.yaml | 1 + .../AMD/GCN-1.0/FirePro-W9000-X2.yaml | 1 + .../AMD/GCN-1.0/FirePro-W9000.yaml | 1 + specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml | 4 - .../AMD/GCN-2.0/FirePro-M6100.yaml | 1 + .../AMD/GCN-2.0/FirePro-S9100.yaml | 1 + .../AMD/GCN-2.0/FirePro-S9150.yaml | 1 + .../AMD/GCN-2.0/FirePro-S9170.yaml | 1 + .../AMD/GCN-2.0/FirePro-W4300.yaml | 1 + .../AMD/GCN-2.0/FirePro-W5100.yaml | 1 + .../AMD/GCN-2.0/FirePro-W6150M.yaml | 1 + .../AMD/GCN-2.0/FirePro-W6170M.yaml | 1 + .../AMD/GCN-2.0/FirePro-W8100.yaml | 1 + .../AMD/GCN-2.0/FirePro-W9100.yaml | 1 + .../AMD/GCN-3.0/FirePro-S7100X.yaml | 1 + .../AMD/GCN-3.0/FirePro-S7150-x2.yaml | 1 + .../AMD/GCN-3.0/FirePro-S7150.yaml | 1 + .../AMD/GCN-3.0/FirePro-S9300-X2.yaml | 1 + .../AMD/GCN-3.0/FirePro-W7100.yaml | 1 + .../AMD/GCN-3.0/FirePro-W7170M.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-450.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-455.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-460.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-555.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-555X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-560.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-560X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-570.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-570X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-575.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-575X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-580.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-580X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-V5300X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-V7300X.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml | 1 + .../GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml | 1 + .../AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml | 1 + specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml | 3 - .../AMD/GCN-5.0/Radeon-Pro-V320.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml | 1 + .../AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml | 1 + .../AMD/GCN-5.1/Radeon-Pro-V420.yaml | 1 + .../AMD/GCN-5.1/Radeon-Pro-VII.yaml | 1 + .../AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml | 1 + .../AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5300.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5300M.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5500M.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5600M.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-5700.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-V520.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-V540.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5500.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5700.yaml | 1 + .../AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml | 1 + specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml | 5 -- .../AMD/RDNA-2.0/Radeon-PRO-V620.yaml | 1 + .../AMD/RDNA-2.0/Radeon-PRO-W6300.yaml | 1 + .../AMD/RDNA-2.0/Radeon-PRO-W6400.yaml | 1 + .../AMD/RDNA-2.0/Radeon-PRO-W6600.yaml | 1 + .../AMD/RDNA-2.0/Radeon-PRO-W6800.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml | 1 + .../AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml | 1 + specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml | 2 - .../AMD/RDNA-3.0/Radeon-PRO-W7500.yaml | 1 + .../AMD/RDNA-3.0/Radeon-PRO-W7600.yaml | 1 + .../AMD/RDNA-3.0/Radeon-PRO-W7700.yaml | 1 + .../AMD/RDNA-3.0/Radeon-PRO-W7800.yaml | 1 + .../AMD/RDNA-3.0/Radeon-PRO-W7900.yaml | 1 + specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml | 1 - .../AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml | 1 + .../AMD/TeraScale-2/FirePro-2270.yaml | 1 + .../TeraScale-2/FirePro-2460-Multi-View.yaml | 1 + .../AMD/TeraScale-2/FirePro-M2000.yaml | 1 + .../AMD/TeraScale-2/FirePro-M3900.yaml | 1 + .../AMD/TeraScale-2/FirePro-M5800.yaml | 1 + .../AMD/TeraScale-2/FirePro-M5950.yaml | 1 + .../AMD/TeraScale-2/FirePro-M7820.yaml | 1 + .../AMD/TeraScale-2/FirePro-M8900.yaml | 1 + .../AMD/TeraScale-2/FirePro-V3800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V3900.yaml | 1 + .../AMD/TeraScale-2/FirePro-V4800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V4900.yaml | 1 + .../AMD/TeraScale-2/FirePro-V5800-DVI.yaml | 1 + .../AMD/TeraScale-2/FirePro-V5800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V7800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V7800P.yaml | 1 + .../AMD/TeraScale-2/FirePro-V8800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V9800.yaml | 1 + .../AMD/TeraScale-2/FirePro-V9800P.yaml | 1 + .../AMD/TeraScale-3/FirePro-A300.yaml | 1 + .../AMD/TeraScale-3/FirePro-A320.yaml | 1 + .../AMD/TeraScale-3/FirePro-V5900.yaml | 1 + .../AMD/TeraScale-3/FirePro-V7900-SDI.yaml | 1 + .../AMD/TeraScale-3/FirePro-V7900.yaml | 1 + specs/GPUs-CONSUMER/AMD/TeraScale.yaml | 5 -- .../AMD/TeraScale/FirePro-2260-PCI.yaml | 1 + .../FirePro-2450-Multi-View-PCIe-x1.yaml | 1 + .../TeraScale/FirePro-2450-Multi-View.yaml | 1 + .../AMD/TeraScale/FirePro-M5725.yaml | 1 + .../AMD/TeraScale/FirePro-M7740.yaml | 1 + .../AMD/TeraScale/FirePro-RG220.yaml | 1 + .../AMD/TeraScale/FirePro-RG220A.yaml | 1 + .../AMD/TeraScale/FirePro-V3700.yaml | 1 + .../AMD/TeraScale/FirePro-V3750.yaml | 1 + .../AMD/TeraScale/FirePro-V5700.yaml | 1 + .../AMD/TeraScale/FirePro-V7750.yaml | 1 + .../AMD/TeraScale/FirePro-V7760.yaml | 1 + .../AMD/TeraScale/FirePro-V7770.yaml | 1 + .../AMD/TeraScale/FirePro-V8700-Duo.yaml | 1 + .../AMD/TeraScale/FirePro-V8700.yaml | 1 + .../AMD/TeraScale/FirePro-V8750.yaml | 1 + .../GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml | 1 - specs/GPUs-CONSUMER/Nvidia/Ampere.yaml | 2 - specs/GPUs-CONSUMER/Nvidia/Curie.yaml | 4 - specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml | 5 -- specs/GPUs-CONSUMER/Nvidia/Fermi.yaml | 7 -- specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml | 1 - specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml | 1 - .../Nvidia/Kepler-2.0/Jetson-TK1.yaml | 1 + .../Nvidia/Kepler-2.0/Quadro-K510M.yaml | 1 + .../Nvidia/Kepler-2.0/Quadro-K610M.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Kepler.yaml | 31 ------- .../Nvidia/Kepler/Quadro-410.yaml | 1 + .../Nvidia/Kepler/Quadro-4100.yaml | 1 + .../Nvidia/Kepler/Quadro-K1000M.yaml | 1 + .../Nvidia/Kepler/Quadro-K100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K1100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K2000.yaml | 1 + .../Nvidia/Kepler/Quadro-K2000D.yaml | 1 + .../Nvidia/Kepler/Quadro-K2000M-Embedded.yaml | 1 + .../Nvidia/Kepler/Quadro-K2000M.yaml | 1 + .../Nvidia/Kepler/Quadro-K200M.yaml | 1 + .../Nvidia/Kepler/Quadro-K2100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K3000M.yaml | 1 + .../Nvidia/Kepler/Quadro-K3100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K4000.yaml | 1 + .../Nvidia/Kepler/Quadro-K4000M.yaml | 1 + .../Nvidia/Kepler/Quadro-K4100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K420.yaml | 1 + .../Nvidia/Kepler/Quadro-K4200.yaml | 1 + .../Kepler/Quadro-K5000-Mac-Edition.yaml | 1 + .../Nvidia/Kepler/Quadro-K5000-SYNC.yaml | 1 + .../Nvidia/Kepler/Quadro-K5000.yaml | 1 + .../Nvidia/Kepler/Quadro-K5000M.yaml | 1 + .../Nvidia/Kepler/Quadro-K500M.yaml | 1 + .../Nvidia/Kepler/Quadro-K5100M.yaml | 1 + .../Nvidia/Kepler/Quadro-K5200.yaml | 1 + .../Nvidia/Kepler/Quadro-K600.yaml | 1 + .../Nvidia/Kepler/Quadro-K6000-SDI.yaml | 1 + .../Nvidia/Kepler/Quadro-K6000.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml | 13 --- .../Nvidia/Maxwell-2.0/Quadro-M2000.yaml | 1 + .../Maxwell-2.0/Quadro-M2200-Mobile.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M3000M.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M4000.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M4000M.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M5000.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M5000M.yaml | 1 + .../Maxwell-2.0/Quadro-M5500-Mobile.yaml | 1 + .../Maxwell-2.0/Quadro-M6000-24-GB.yaml | 1 + .../Nvidia/Maxwell-2.0/Quadro-M6000.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml | 4 - .../Nvidia/Maxwell/Quadro-K1200.yaml | 1 + .../Nvidia/Maxwell/Quadro-K2200.yaml | 1 + .../Nvidia/Maxwell/Quadro-K2200M.yaml | 1 + .../Nvidia/Maxwell/Quadro-K620.yaml | 1 + .../Nvidia/Maxwell/Quadro-K620M.yaml | 1 + .../Nvidia/Maxwell/Quadro-M1000M.yaml | 1 + .../Nvidia/Maxwell/Quadro-M1200-Mobile.yaml | 1 + .../Nvidia/Maxwell/Quadro-M2000M.yaml | 1 + .../Nvidia/Maxwell/Quadro-M500M.yaml | 1 + .../Nvidia/Maxwell/Quadro-M520-Mobile.yaml | 1 + .../Nvidia/Maxwell/Quadro-M600M.yaml | 1 + .../Nvidia/Maxwell/Quadro-M620-Mobile.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Pascal.yaml | 10 --- .../Nvidia/Pascal/Quadro-GP100.yaml | 1 + .../Nvidia/Pascal/Quadro-P1000-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P1000.yaml | 1 + .../Nvidia/Pascal/Quadro-P2000-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P2000.yaml | 1 + .../Nvidia/Pascal/Quadro-P2200.yaml | 1 + .../Nvidia/Pascal/Quadro-P3000-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P3200-Max-Q.yaml | 1 + .../Nvidia/Pascal/Quadro-P3200-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P400.yaml | 1 + .../Nvidia/Pascal/Quadro-P4000-Max-Q.yaml | 1 + .../Nvidia/Pascal/Quadro-P4000-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P4000.yaml | 1 + .../Nvidia/Pascal/Quadro-P4200-Max-Q.yaml | 1 + .../Nvidia/Pascal/Quadro-P4200-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P500-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P5000-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P5000.yaml | 1 + .../Nvidia/Pascal/Quadro-P520-Max-Q.yaml | 1 + .../Nvidia/Pascal/Quadro-P520-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P5200-Max-Q.yaml | 1 + .../Nvidia/Pascal/Quadro-P5200-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P600-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P600.yaml | 1 + .../Nvidia/Pascal/Quadro-P6000.yaml | 1 + .../Nvidia/Pascal/Quadro-P620-Mobile.yaml | 1 + .../Nvidia/Pascal/Quadro-P620.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1100.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1300.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-2000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-3000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-3000G.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-330.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-500.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-600-PCI.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-700.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-Go1000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-Go700.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-AGP.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-PCI.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-55-PCI.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml | 5 -- specs/GPUs-CONSUMER/Nvidia/Tesla.yaml | 3 - specs/GPUs-CONSUMER/Nvidia/Turing.yaml | 4 - .../Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml | 1 + .../Quadro-RTX-3000-Mobile-Refresh.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml | 1 + .../Turing/Quadro-RTX-3000-X2-Mobile.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-4000.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml | 1 + .../Quadro-RTX-5000-Mobile-Refresh.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml | 1 + .../Turing/Quadro-RTX-5000-X2-Mobile.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-5000.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml | 1 + .../Turing/Quadro-RTX-6000-Passive.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-6000.yaml | 1 + .../Turing/Quadro-RTX-8000-Passive.yaml | 1 + .../Nvidia/Turing/Quadro-RTX-8000.yaml | 1 + .../Nvidia/Turing/Quadro-T1000-Max-Q.yaml | 1 + .../Turing/Quadro-T1000-Mobile-GDDR6.yaml | 1 + .../Nvidia/Turing/Quadro-T1000-Mobile.yaml | 1 + .../Nvidia/Turing/Quadro-T1200-Max-Q.yaml | 1 + .../Nvidia/Turing/Quadro-T1200-Mobile.yaml | 1 + .../Nvidia/Turing/Quadro-T2000-Max-Q.yaml | 1 + .../Nvidia/Turing/Quadro-T2000-Mobile.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Volta.yaml | 10 --- .../Nvidia/Volta/Quadro-GV100.yaml | 1 + .../AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml | 1 + .../AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml | 1 + .../AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml | 1 + .../AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml | 1 + .../AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml | 1 + .../AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml | 1 + .../AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml | 1 + .../AMD/GCN-3.0/Radeon-Instinct-MI8.yaml | 1 + .../AMD/GCN-4.0/Radeon-Instinct-MI6.yaml | 1 + .../AMD/GCN-5.1/Radeon-Instinct-MI50.yaml | 1 + .../AMD/GCN-5.1/Radeon-Instinct-MI60.yaml | 1 + .../AMD/GCN-5}/Radeon-Instinct-MI25.yaml | 1 + specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml | 35 ++++++++ specs/GPUs-SERVER/Nvidia/Ampere.yaml | 16 ++++ .../Nvidia/Ampere/GRID-A100A.yaml | 1 + .../Nvidia/Ampere/GRID-A100B.yaml | 1 + specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml | 19 +++++ .../Nvidia/Fermi-2.0/Tesla-C2075.yaml | 1 + .../Nvidia/Fermi-2.0/Tesla-C2090.yaml | 1 + .../Nvidia/Fermi-2.0/Tesla-M2075.yaml | 1 + .../Nvidia/Fermi-2.0/Tesla-M2090.yaml | 1 + .../Nvidia/Fermi-2.0/Tesla-X2090.yaml | 1 + specs/GPUs-SERVER/Nvidia/Fermi.yaml | 21 +++++ .../Nvidia/Fermi/Tesla-C2050.yaml | 1 + .../Nvidia/Fermi/Tesla-C2070.yaml | 1 + .../Nvidia/Fermi/Tesla-M2050.yaml | 1 + .../Nvidia/Fermi/Tesla-M2070-Q.yaml | 1 + .../Nvidia/Fermi/Tesla-M2070.yaml | 1 + .../Nvidia/Fermi/Tesla-S2050.yaml | 1 + .../Nvidia/Fermi/Tesla-X2070.yaml | 1 + specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml | 15 ++++ .../Nvidia/Kepler-2.0/Tesla-K80.yaml | 1 + specs/GPUs-SERVER/Nvidia/Kepler.yaml | 47 +++++++++++ .../Nvidia/Kepler/GRID-K1.yaml | 1 + .../Nvidia/Kepler/GRID-K100.yaml | 1 + .../Nvidia/Kepler/GRID-K120Q.yaml | 1 + .../Nvidia/Kepler/GRID-K140Q.yaml | 1 + .../Nvidia/Kepler/GRID-K160Q.yaml | 1 + .../Nvidia/Kepler/GRID-K180Q.yaml | 1 + .../Nvidia/Kepler/GRID-K2.yaml | 1 + .../Nvidia/Kepler/GRID-K200.yaml | 1 + .../Nvidia/Kepler/GRID-K220Q.yaml | 1 + .../Nvidia/Kepler/GRID-K240Q.yaml | 1 + .../Nvidia/Kepler/GRID-K260Q.yaml | 1 + .../Nvidia/Kepler/GRID-K280Q.yaml | 1 + .../Nvidia/Kepler/GRID-K340.yaml | 1 + .../Nvidia/Kepler/GRID-K500.yaml | 1 + .../Nvidia/Kepler/GRID-K520.yaml | 1 + .../Nvidia/Kepler/GRID-K520Q.yaml | 1 + .../Nvidia/Kepler/GRID-K540Q.yaml | 1 + .../Nvidia/Kepler/GRID-K560Q.yaml | 1 + .../Nvidia/Kepler/Tesla-K10.yaml | 1 + .../Nvidia/Kepler/Tesla-K20X.yaml | 1 + .../Nvidia/Kepler/Tesla-K20Xm.yaml | 1 + .../Nvidia/Kepler/Tesla-K20c.yaml | 1 + .../Nvidia/Kepler/Tesla-K20m.yaml | 1 + .../Nvidia/Kepler/Tesla-K20s.yaml | 1 + .../Nvidia/Kepler/Tesla-K40c.yaml | 1 + .../Nvidia/Kepler/Tesla-K40d.yaml | 1 + .../Nvidia/Kepler/Tesla-K40m.yaml | 1 + .../Nvidia/Kepler/Tesla-K40s.yaml | 1 + .../Nvidia/Kepler/Tesla-K40st.yaml | 1 + .../Nvidia/Kepler/Tesla-K40t.yaml | 1 + .../Nvidia/Kepler/Tesla-K8.yaml | 1 + specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml | 27 ++++++ .../Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml | 1 + .../Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml | 1 + .../Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml | 1 + .../Nvidia/Maxwell-2.0/GRID-M60-4A.yaml | 1 + .../Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml | 1 + .../Nvidia/Maxwell-2.0/Tesla-M4.yaml | 1 + .../Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml | 1 + .../Nvidia/Maxwell-2.0/Tesla-M40.yaml | 1 + .../Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml | 1 + .../Maxwell-2.0/Tesla-M6-X2-Mobile.yaml | 1 + .../Nvidia/Maxwell-2.0/Tesla-M60.yaml | 1 + specs/GPUs-SERVER/Nvidia/Maxwell.yaml | 20 +++++ .../Nvidia/Maxwell/GRID-M10-8Q.yaml | 1 + .../Nvidia/Maxwell/GRID-M3-3020.yaml | 1 + .../Nvidia/Maxwell/GRID-M40.yaml | 1 + .../Nvidia/Maxwell/Tesla-M10.yaml | 1 + specs/GPUs-SERVER/Nvidia/Pascal.yaml | 24 ++++++ .../Nvidia/Pascal/Tesla-P10.yaml | 1 + .../Nvidia/Pascal/Tesla-P100-DGXS.yaml | 1 + .../Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml | 1 + .../Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml | 1 + .../Nvidia/Pascal/Tesla-P100-SXM2.yaml | 1 + .../Nvidia/Pascal/Tesla-P4.yaml | 1 + .../Nvidia/Pascal/Tesla-P40.yaml | 1 + .../Nvidia/Pascal/Tesla-P6-Mobile.yaml | 1 + specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml | 19 +++++ .../Nvidia/Tesla-2.0/Tesla-C1060.yaml | 1 + .../Nvidia/Tesla-2.0/Tesla-C1080.yaml | 1 + .../Nvidia/Tesla-2.0/Tesla-M1060.yaml | 1 + .../Nvidia/Tesla-2.0/Tesla-S1070.yaml | 1 + .../Nvidia/Tesla-2.0/Tesla-S1075.yaml | 1 + specs/GPUs-SERVER/Nvidia/Tesla.yaml | 17 ++++ .../Nvidia/Tesla/Tesla-C870.yaml | 1 + .../Nvidia/Tesla/Tesla-D870.yaml | 1 + .../Nvidia/Tesla/Tesla-S870.yaml | 1 + specs/GPUs-SERVER/Nvidia/Turing.yaml | 24 ++++++ .../Nvidia/Turing/GRID-RTX-T10-16.yaml | 1 + .../Nvidia/Turing/GRID-RTX-T10-2.yaml | 1 + .../Nvidia/Turing/GRID-RTX-T10-4.yaml | 1 + .../Nvidia/Turing/GRID-RTX-T10-8.yaml | 1 + .../Nvidia/Turing/Tesla-T10-16-GB.yaml | 1 + .../Nvidia/Turing/Tesla-T4.yaml | 1 + .../Nvidia/Turing/Tesla-T40-24-GB.yaml | 1 + .../Nvidia/Turing/Tesla-T4G.yaml | 1 + specs/GPUs-SERVER/Nvidia/Volta.yaml | 24 ++++++ .../Nvidia/Volta/Tesla-PG500-216.yaml | 1 + .../Nvidia/Volta/Tesla-PG503-216.yaml | 1 + .../Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-FHHL.yaml | 1 + .../Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml | 1 + .../Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml | 1 + specs/Root.yaml | 4 + specs/readme.md | 5 ++ src/js/row-data.js | 17 ++++ 494 files changed, 1085 insertions(+), 221 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/magento2plugin.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml delete mode 100644 gpu-arch-vendor.yml create mode 100644 specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-1.0/AeroBox-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-1.0/Xbox-One-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-1.0/Xbox-One-S-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-2.0/Playstation-4-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-2.0/Xbox-One-X-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/GCN-5.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-2.0/Playstation-5-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-2.0/Steam-Deck-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/RDNA-3.0/ROG-Ally-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale-2/Wii-U-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/AMD/TeraScale.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale/Xbox-360-E-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale/Xbox-360-GPU-65nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale/Xbox-360-GPU-80nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale/Xbox-360-GPU-90nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/AMD/TeraScale/Xbox-360-S-GPU.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/ATI/Rage-5.yaml (92%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/ATI/Rage-5/GameCube-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/ATI/Ultra-Threaded-SE/Wii-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml create mode 100644 specs/GPUs-CONSOLE/GPUs-CONSOLE-ATI.yaml create mode 100644 specs/GPUs-CONSOLE/GPUs-CONSOLE-Nvidia.yaml create mode 100644 specs/GPUs-CONSOLE/GPUs-CONSOLE-Sony.yaml.disable create mode 100644 specs/GPUs-CONSOLE/Nvidia/Curie.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Curie/Playstation-3-GPU-28nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Curie/Playstation-3-GPU-40nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Curie/Playstation-3-GPU-65nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Curie/Playstation-3-GPU-90nm.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Kelvin/Xbox-GPU.yaml (97%) create mode 100644 specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-CONSOLE}/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml (97%) rename specs/{GPUs-CONSUMER/AMD/GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Instinct-MI25.yaml (97%) create mode 100644 specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml create mode 100644 specs/GPUs-SERVER/Nvidia/Ampere.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/GRID-A100A.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/GRID-A100B.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi-2.0/Tesla-C2075.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi-2.0/Tesla-C2090.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi-2.0/Tesla-M2075.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi-2.0/Tesla-M2090.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi-2.0/Tesla-X2090.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Fermi.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-C2050.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-C2070.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-M2050.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-M2070-Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-M2070.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-S2050.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Fermi/Tesla-X2070.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler-2.0/Tesla-K80.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Kepler.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K1.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K100.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K120Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K140Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K160Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K180Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K2.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K200.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K220Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K240Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K260Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K280Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K340.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K500.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K520.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K520Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K540Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/GRID-K560Q.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K10.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K20X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K20Xm.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K20c.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K20m.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K20s.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40c.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40d.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40m.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40s.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40st.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K40t.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Kepler/Tesla-K8.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M4.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M40.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell-2.0/Tesla-M60.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Maxwell.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell/GRID-M10-8Q.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell/GRID-M3-3020.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell/GRID-M40.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Maxwell/Tesla-M10.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Pascal.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P10.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P100-DGXS.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P100-SXM2.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P4.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P40.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Pascal/Tesla-P6-Mobile.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla-2.0/Tesla-C1060.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla-2.0/Tesla-C1080.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla-2.0/Tesla-M1060.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla-2.0/Tesla-S1070.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla-2.0/Tesla-S1075.yaml (96%) create mode 100644 specs/GPUs-SERVER/Nvidia/Tesla.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla/Tesla-C870.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla/Tesla-D870.yaml (96%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Tesla/Tesla-S870.yaml (96%) create mode 100644 specs/GPUs-SERVER/Nvidia/Turing.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/GRID-RTX-T10-16.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/GRID-RTX-T10-2.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/GRID-RTX-T10-4.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/GRID-RTX-T10-8.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/Tesla-T10-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/Tesla-T4.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/Tesla-T40-24-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Turing/Tesla-T4G.yaml (97%) create mode 100644 specs/GPUs-SERVER/Nvidia/Volta.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-PG500-216.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-PG503-216.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-FHHL.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml (97%) create mode 100644 specs/readme.md diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..13566b81 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/magento2plugin.xml b/.idea/magento2plugin.xml new file mode 100644 index 00000000..6485e055 --- /dev/null +++ b/.idea/magento2plugin.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 00000000..f324872a --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/gpu-arch-vendor.yml b/gpu-arch-vendor.yml deleted file mode 100644 index 6c9e80be..00000000 --- a/gpu-arch-vendor.yml +++ /dev/null @@ -1,82 +0,0 @@ -vendor={ - 'Mach':'AMD', - 'Rage 2':'ATI', - 'Rage 3':'ATI', - 'Ampere':'Nvidia', - 'GCN 1.0':'AMD', - 'Rage 4':'ATI', - 'R300':'ATI', - 'Ultra-Threaded SE':'ATI', - 'Rage 7':'ATI', - 'Rage 6':'ATI', - 'R400':'ATI', - 'Generation 12.7':'Intel', - 'Xe-LPG':'Intel', - 'Generation 12.5':'Intel', - 'GCN 5.0':'AMD', - 'Knights':'Intel', - 'Turing':'Nvidia', - 'Wonder':'ATI', - 'Generation 2.0':'Intel', - 'IBM':'ATI', - 'TeraScale':'AMD', - 'TeraScale 2':'AMD', - 'TeraScale 3':'AMD', - 'GCN 2.0':'AMD', - 'GCN 3.0':'AMD', - 'Rage 5':'ATI', - 'Celsius':'Nvidia', - 'Kelvin':'Nvidia', - 'Tesla 2.0':'Nvidia', - 'Fermi 2.0':'Nvidia', - 'Fermi':'Nvidia', - 'Kepler 2.0':'Nvidia', - 'Kepler':'Nvidia', - 'Maxwell':'Nvidia', - 'Curie':'Nvidia', - 'Tesla':'Nvidia', - 'Rankine':'Nvidia', - 'Pascal':'Nvidia', - 'Maxwell 2.0':'Nvidia', - 'Ada Lovelace':'Nvidia', - 'PowerVR SGX545':'Intel', - 'PowerVR SGX535':'Intel', - 'Generation 3.0':'Intel', - 'Generation 3.5':'Intel', - 'Generation 4.0':'Intel', - 'Generation 5.0':'Intel', - 'Generation 12.1':'Intel', - 'Hopper':'Nvidia', - 'Generation 7.0':'Intel', - 'Generation 6.0':'Intel', - 'Generation 7.5':'Intel', - 'Generation 5.75':'Intel', - 'Generation 8.0':'Intel', - 'Generation 9.0':'Intel', - 'Generation 9.5':'Intel', - 'i740':'Intel', - 'Generation 1.0':'Intel', - 'Generation 11.0':'Intel', - 'Generation 12.2':'Intel', - 'Volta':'Nvidia', - 'PX':'Matrox', - 'G200':'Matrox', - 'G400':'Matrox', - 'Parhelia':'Matrox', - 'G500':'Matrox', - 'GCN 4.0':'AMD', - 'RDNA 2.0':'AMD', - 'PowerVR Series5XT':'PowerVR', - 'G100':'Matrox', - 'MP':'Matrox', - 'RDNA 3.0':'AMD', - 'GCN 5.1':'AMD', - 'CDNA 1.0':'AMD', - 'CDNA 2.0':'AMD', - 'CDNA 3.0':'AMD', - 'RDNA 1.0':'AMD', - 'Fahrenheit':'Nvidia', - 'Voodoo Scalable':'3dfx', - 'VLIW Vec4':'Nvidia', - 'XG4':'XGI' -} \ No newline at end of file diff --git a/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml new file mode 100644 index 00000000..424968bd --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml @@ -0,0 +1,19 @@ +name: GCN-1.0-Console +humanName: GCN 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + Release Date: '2011-12-22' + Manufacturer: AMD +sections: + - header: Xbox + members: + - Xbox-One-GPU + - Xbox-One-S-GPU + - header: AeroBox + members: + - AeroBox-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml index ac94df94..f08f0de1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/AeroBox-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml @@ -31,3 +31,4 @@ data: Length: 289 mm Width: 238 mm Height: 56 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml index b4d49c7f..178c12d3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 333 mm Width: 274 mm Height: 79 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml index 00f6b1fc..8b471bd8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Xbox-One-S-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 295 mm Width: 230 mm Height: 64 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml new file mode 100644 index 00000000..d6665cc1 --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml @@ -0,0 +1,20 @@ +name: GCN-2.0-Console +humanName: GCN 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + Release Date: '2013-03-22' + Manufacturer: AMD +sections: + - header: Playstation + members: + - Playstation-4-GPU + - Playstation-4-Pro-GPU + - Playstation-4-Slim-GPU + - header: Xbox + members: + - Xbox-One-X-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml index feedaf18..a554c492 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 305 mm Width: 275 mm Height: 53 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml index 66daab28..7c4c16f8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml @@ -29,3 +29,4 @@ data: Length: 327 mm Width: 295 mm Height: 55 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml index af6636a5..12ae6939 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 288 mm Width: 265 mm Height: 39 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml index 42a7f15f..86df1b69 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Xbox-One-X-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml @@ -29,3 +29,4 @@ data: Length: 300 mm Width: 240 mm Height: 60 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/GCN-5.0.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0.yaml new file mode 100644 index 00000000..606639a7 --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0.yaml @@ -0,0 +1,19 @@ +name: GCN-5.0-Console +humanName: GCN 5.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2017-06-27' + Manufacturer: AMD +sections: + - header: Atari + members: + - Atari-VCS-400-GPU + - Atari-VCS-800-GPU + - header: Zhongshan + members: + - Zhongshan-Subor-Z+-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml index 9813c8a6..a54f014e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml @@ -31,3 +31,4 @@ data: Length: 295 mm Width: 150 mm Height: 48 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml index ce1c988e..0e38f4aa 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml @@ -31,3 +31,4 @@ data: Length: 295 mm Width: 150 mm Height: 48 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml index 631f2bb2..e97a9cd8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml @@ -28,3 +28,4 @@ data: FP32 Compute: 3.994 TFLOPS FP64 Compute: 249.6 GFLOPS (1:16) Outputs: 2x HDMI 2.0 + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml new file mode 100644 index 00000000..8d8d4c03 --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml @@ -0,0 +1,23 @@ +name: RDNA-2.0-Console +humanName: RDNA 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2020-10-28' + Manufacturer: AMD +sections: + - header: Steam Deck + members: + - Steam-Deck-GPU + - Steam-Deck-OLED-GPU + - header: Playstation + members: + - Playstation-5-GPU + - header: Xbox + members: + - Xbox-Series-S-GPU + - Xbox-Series-X-GPU diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml index 02250f73..bf4d3e95 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Playstation-5-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml @@ -32,3 +32,4 @@ data: Length: 390 mm Width: 260 mm Height: 104 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml index 1d05bea0..f7f871da 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml @@ -33,3 +33,4 @@ data: Width: 117 mm Height: 49 mm Ray Tracing Cores: 8 + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml index d709d44d..8b8d1e68 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml @@ -32,3 +32,4 @@ data: Width: 117 mm Height: 49 mm Ray Tracing Cores: 8 + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml index 421452f8..ce32b4a8 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 274 mm Width: 151 mm Height: 64 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml index 31e3a81a..3f75ff10 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 301 mm Width: 151 mm Height: 151 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml new file mode 100644 index 00000000..aa9b089a --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml @@ -0,0 +1,16 @@ +name: RDNA-3.0-Console +humanName: RDNA 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022-11-03' + Manufacturer: AMD +sections: + - header: ROG Ally + members: + - ROG-Ally-Extreme-GPU + - ROG-Ally-GPU diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml index d7826213..c579a859 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml @@ -33,3 +33,4 @@ data: Width: 111 mm Height: 21 mm Ray Tracing Cores: 12 + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml index 30162128..7ff47933 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/ROG-Ally-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml @@ -33,3 +33,4 @@ data: Width: 111 mm Height: 21 mm Ray Tracing Cores: 4 + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml new file mode 100644 index 00000000..7251d0f6 --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml @@ -0,0 +1,15 @@ +name: TeraScale-2-Console +humanName: TeraScale 2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2009-09-23' + Manufacturer: AMD +sections: + - header: Wii U + members: + - Wii-U-GPU diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml index f587297e..991a938d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Wii-U-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml @@ -28,3 +28,4 @@ data: Length: 269 mm Width: 172 mm Height: 46 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale.yaml new file mode 100644 index 00000000..8cb653e1 --- /dev/null +++ b/specs/GPUs-CONSOLE/AMD/TeraScale.yaml @@ -0,0 +1,19 @@ +name: TeraScale-Console +humanName: TeraScale +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2005-11-22' + Manufacturer: AMD +sections: + - header: Xbox + members: + - Xbox-360-E-GPU + - Xbox-360-GPU-65nm + - Xbox-360-GPU-80nm + - Xbox-360-GPU-90nm + - Xbox-360-S-GPU diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml index 52a43b8c..dfcf2145 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-E-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 264 mm Width: 254 mm Height: 67 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml index 4d6d5023..28c89091 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-65nm.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml @@ -30,3 +30,4 @@ data: Length: 310 mm Width: 269 mm Height: 79 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml index f003ca45..e5e2f4ce 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-80nm.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml @@ -30,3 +30,4 @@ data: Length: 310 mm Width: 269 mm Height: 79 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml index 10641a3e..a2f3d130 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-GPU-90nm.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml @@ -30,3 +30,4 @@ data: Length: 310 mm Width: 269 mm Height: 79 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml rename to specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml index a0822cd4..00bf290b 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/Xbox-360-S-GPU.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml @@ -30,3 +30,4 @@ data: Length: 260 mm Width: 270 mm Height: 78 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/ATI/Rage-5.yaml b/specs/GPUs-CONSOLE/ATI/Rage-5.yaml similarity index 92% rename from specs/GPUs-CONSUMER/ATI/Rage-5.yaml rename to specs/GPUs-CONSOLE/ATI/Rage-5.yaml index 3b9f69cf..ffe5bb16 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-5.yaml +++ b/specs/GPUs-CONSOLE/ATI/Rage-5.yaml @@ -1,4 +1,4 @@ -name: Rage-5 +name: Rage-5-Console humanName: Rage 5 type: Graphics Architecture isPart: false diff --git a/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml rename to specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml index dad5adfa..e7c9d855 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-5/GameCube-GPU.yaml +++ b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml @@ -28,3 +28,4 @@ data: Length: 150 mm Width: 161 mm Height: 110 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE.yaml new file mode 100644 index 00000000..1cef5817 --- /dev/null +++ b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE.yaml @@ -0,0 +1,15 @@ +name: Ultra-Threaded-SE-Console +humanName: Ultra-Threaded SE +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2005-10-01' + Manufacturer: ATI +sections: + - header: WHOLE RANGE + members: + - Wii-GPU diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml rename to specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml index dae0a2fb..014485b1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Wii-GPU.yaml +++ b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml @@ -27,3 +27,4 @@ data: Length: 157 mm Width: 197 mm Height: 60 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml b/specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml new file mode 100644 index 00000000..b47be5f5 --- /dev/null +++ b/specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml @@ -0,0 +1,22 @@ +name: GPUs-CONSOLE-AMD +humanName: Console GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: AMD +sections: + - header: RDNA + members: + - RDNA-2.0-Console + - RDNA-3.0-Console + - header: GCN + members: + - GCN-1.0-Console + - GCN-2.0-Console + - GCN-5.0-Console + - header: TeraScale + members: + - TeraScale-Console + - TeraScale-2-Console + diff --git a/specs/GPUs-CONSOLE/GPUs-CONSOLE-ATI.yaml b/specs/GPUs-CONSOLE/GPUs-CONSOLE-ATI.yaml new file mode 100644 index 00000000..cb44af4f --- /dev/null +++ b/specs/GPUs-CONSOLE/GPUs-CONSOLE-ATI.yaml @@ -0,0 +1,14 @@ +name: GPUs-CONSOLE-ATI +humanName: Console GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: ATI +sections: + - header: Ultra Threaded SE + members: + - Wii-GPU + - header: Rage 5 + members: + - GameCube-GPU diff --git a/specs/GPUs-CONSOLE/GPUs-CONSOLE-Nvidia.yaml b/specs/GPUs-CONSOLE/GPUs-CONSOLE-Nvidia.yaml new file mode 100644 index 00000000..fa54cf27 --- /dev/null +++ b/specs/GPUs-CONSOLE/GPUs-CONSOLE-Nvidia.yaml @@ -0,0 +1,22 @@ +name: GPUs-CONSOLE-Nvidia +humanName: Console GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: Nvidia +sections: + - header: Maxwell-2.0 + members: + - Switch-GPU-16nm + - Switch-GPU-20nm + - header: Curie + members: + - Playstation-3-GPU-28nm + - Playstation-3-GPU-40nm + - Playstation-3-GPU-65nm + - Playstation-3-GPU-90nm + - header: Kelvin + members: + - Xbox-GPU + diff --git a/specs/GPUs-CONSOLE/GPUs-CONSOLE-Sony.yaml.disable b/specs/GPUs-CONSOLE/GPUs-CONSOLE-Sony.yaml.disable new file mode 100644 index 00000000..087ae2ed --- /dev/null +++ b/specs/GPUs-CONSOLE/GPUs-CONSOLE-Sony.yaml.disable @@ -0,0 +1 @@ +# these are missing, i have the data in the database... look for gpus with no architecture \ No newline at end of file diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie.yaml new file mode 100644 index 00000000..1aefaedb --- /dev/null +++ b/specs/GPUs-CONSOLE/Nvidia/Curie.yaml @@ -0,0 +1,18 @@ +name: Curie-Console +humanName: Curie +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2003-12-22' + Manufacturer: Nvidia +sections: + - header: WHOLE RANGE + members: + - Playstation-3-GPU-28nm + - Playstation-3-GPU-40nm + - Playstation-3-GPU-65nm + - Playstation-3-GPU-90nm diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml index 78779e5b..dc61b465 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-28nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml @@ -28,3 +28,4 @@ data: Length: 290 mm Width: 60 mm Height: 230 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml index f6340c8b..5d20fd87 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-40nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml @@ -28,3 +28,4 @@ data: Length: 290 mm Width: 290 mm Height: 65 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml index a3965e88..aec33996 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-65nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml @@ -28,3 +28,4 @@ data: Length: 325 mm Width: 98 mm Height: 274 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml index e30c407a..b4f3e2cc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Playstation-3-GPU-90nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml @@ -28,3 +28,4 @@ data: Length: 325 mm Width: 98 mm Height: 274 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml new file mode 100644 index 00000000..f1d5ac0c --- /dev/null +++ b/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml @@ -0,0 +1,15 @@ +name: Kelvin-Console +humanName: Kelvin +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '8.1' + Vulkan Support: 'N/A' + Release Date: '2001-02-27' + Manufacturer: Nvidia +sections: + - header: WHOLE RANGE + members: + - Xbox-GPU diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml rename to specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml index ae56cc05..7d2fab91 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Xbox-GPU.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml @@ -29,3 +29,4 @@ data: Length: 320 mm Width: 100 mm Height: 260 mm + Market: Console diff --git a/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml new file mode 100644 index 00000000..5f12e522 --- /dev/null +++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml @@ -0,0 +1,16 @@ +name: Maxwell-2.0-Console +humanName: Maxwell 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2014-09-19' + Manufacturer: Nvidia +sections: + - header: WHOLE RANGE + members: + - Switch-GPU-16nm + - Switch-GPU-20nm diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml index 078ace49..79ce6ce6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml @@ -32,3 +32,4 @@ data: Length: 239 mm Width: 101 mm Height: 28 mm + Market: Console diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml rename to specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml index 3fcb0a67..3a6f3a61 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml @@ -32,3 +32,4 @@ data: Length: 239 mm Width: 101 mm Height: 28 mm + Market: Console diff --git a/specs/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER-AMD.yaml index 38a63387..861c5713 100755 --- a/specs/GPUs-CONSUMER-AMD.yaml +++ b/specs/GPUs-CONSUMER-AMD.yaml @@ -6,22 +6,30 @@ topHeader: 'SELECT SERIES:' data: Manufacturer: AMD sections: - - header: uncategorised Graphics Cards + - header: RDNA members: - - Mach - - GCN-1.0 - - GCN-5.0 - - TeraScale - - TeraScale-2 - - TeraScale-3 - - GCN-2.0 - - GCN-3.0 - - GCN-4.0 + - RDNA-1.0 - RDNA-2.0 - RDNA-3.0 - - GCN-5.1 + - header: CDNA + members: - CDNA-1.0 - CDNA-2.0 - CDNA-3.0 - - RDNA-1.0 + - header: GCN + members: + - GCN-1.0 + - GCN-2.0 + - GCN-3.0 + - GCN-4.0 + - GCN-5.0 + - GCN-5.1 + - header: TeraScale + members: + - TeraScale + - TeraScale-2 + - TeraScale-3 + - header: Mach + members: + - Mach diff --git a/specs/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER-Nvidia.yaml index 027b56c3..fcfb6eb2 100755 --- a/specs/GPUs-CONSUMER-Nvidia.yaml +++ b/specs/GPUs-CONSUMER-Nvidia.yaml @@ -6,10 +6,13 @@ topHeader: 'SELECT SERIES:' data: Manufacturer: Nvidia sections: - - header: uncategorised Graphics Cards + - header: RTX members: - Ada-Lovelace - Ampere + - Turing + - header: uncategorised Graphics Cards + members: - Celsius - Curie - Fahrenheit @@ -25,7 +28,6 @@ sections: - Rankine - Tesla - Tesla-2.0 - - Turing - VLIW-Vec4 - Volta diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml index aeeb91fd..85f738cc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml @@ -12,7 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - AeroBox-GPU - FirePro-D300 - FirePro-D500 - FirePro-D700 @@ -181,5 +180,3 @@ sections: - Radeon-Sky-700 - Radeon-Sky-900 - Radeon-R9-M290X - - Xbox-One-GPU - - Xbox-One-S-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml index 49cacc4e..1212cd43 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml @@ -3,6 +3,7 @@ humanName: FirePro D300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml index 31d2473d..0b65e748 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml @@ -3,6 +3,7 @@ humanName: FirePro D500 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml index c7dc0ecd..5531b81e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml @@ -3,6 +3,7 @@ humanName: FirePro D700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml index a253e432..3865e869 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml @@ -3,6 +3,7 @@ humanName: FirePro M3100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml index 78f36b4b..7e332354 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml @@ -3,6 +3,7 @@ humanName: FirePro M4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml index b8d5e165..492045f4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml @@ -3,6 +3,7 @@ humanName: FirePro M4100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml index 02b71d84..58d8e7db 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml @@ -3,6 +3,7 @@ humanName: FirePro M4150 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml index 4c686223..87dc58b2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml @@ -3,6 +3,7 @@ humanName: FirePro M4170 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml index c719c69f..ca2769ac 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml @@ -3,6 +3,7 @@ humanName: FirePro M5100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml index 82e3ed05..df0ad91a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml @@ -3,6 +3,7 @@ humanName: FirePro M6000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml index 9aeb37cb..b277d36e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml @@ -3,6 +3,7 @@ humanName: FirePro R5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml index b92b4a8d..f0434c82 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml @@ -3,6 +3,7 @@ humanName: FirePro S10000 Passive 12GB isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml index 9f7e149b..bf0012b0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml @@ -3,6 +3,7 @@ humanName: FirePro S10000 Passive isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml index dc1d9563..6eba1a76 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml @@ -3,6 +3,7 @@ humanName: FirePro S10000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml index 4fafc7ba..e8ef4362 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml @@ -3,6 +3,7 @@ humanName: FirePro S4000X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml index 01a1a517..75ebfeee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml @@ -3,6 +3,7 @@ humanName: FirePro S7000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml index 9b8fcd0d..0aa4022f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml index 2dcdb0a9..5bf510f3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9010 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml index a11470f9..05ab2e3d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9050 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml index d6cc29e8..00dc1c27 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W2100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml index f311157b..f69317e6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml index c9affd9e..6c205543 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml index 5e67f7b1..7d954eab 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4130M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml index 7134d66c..d189098e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4150M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml index c934ee95..fdf5827b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4170M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml index a85895b1..6fcba548 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4190M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml index 356abed5..f2cb6429 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml @@ -3,6 +3,7 @@ humanName: FirePro W5000 DVI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml index 56e6a17f..f79deb78 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml @@ -3,6 +3,7 @@ humanName: FirePro W5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml index 08f9f94b..635c8357 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W5130M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml index 3cb37719..612d0a31 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W5170M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml index e2ab2e8d..3552c77d 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml @@ -3,6 +3,7 @@ humanName: FirePro W600 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml index c13ac835..4322152f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml @@ -3,6 +3,7 @@ humanName: FirePro W7000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml index 63c2ff62..bb0d7b95 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml @@ -3,6 +3,7 @@ humanName: FirePro W8000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml index bf0eedff..d85d20f5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml @@ -3,6 +3,7 @@ humanName: FirePro W9000 X2 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml index d0ecc983..ecc0cdf4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml @@ -3,6 +3,7 @@ humanName: FirePro W9000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml index e09b4f00..b95ac12c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml @@ -22,9 +22,6 @@ sections: - FirePro-W8100 - FirePro-W9100 - FirePro-W5100 - - Playstation-4-GPU - - Playstation-4-Pro-GPU - - Playstation-4-Slim-GPU - Radeon-E8870-MXM - Radeon-E8870-PCIe - Radeon-HD-7790 @@ -74,4 +71,3 @@ sections: - Radeon-R9-M470 - Radeon-R9-M470X - Radeon-RX-455-OEM - - Xbox-One-X-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml index 72ff9564..245a96d9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml @@ -3,6 +3,7 @@ humanName: FirePro M6100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml index 7e16913f..cc16a1c0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml index 7d71058e..2e34a99e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9150 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml index 0fda6a4c..64effd33 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9170 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml index b2638e93..f970a245 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml @@ -3,6 +3,7 @@ humanName: FirePro W4300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml index 67125dc2..9592190f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W5100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml index fa23d296..944fb95f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W6150M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml index 75c1a946..c39bbbac 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W6170M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml index 3d316b0d..cc62bc82 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W8100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml index 1482fb69..e28454d6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W9100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml index 978f7753..dc7c3d76 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml @@ -3,6 +3,7 @@ humanName: FirePro S7100X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml index a7fe8678..8af021cb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml @@ -3,6 +3,7 @@ humanName: FirePro S7150 x2 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml index ac689169..5f6155f2 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml @@ -3,6 +3,7 @@ humanName: FirePro S7150 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml index f8102389..71b9e4b1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml @@ -3,6 +3,7 @@ humanName: FirePro S9300 X2 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml index 5c6c995b..8134ba7e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml @@ -3,6 +3,7 @@ humanName: FirePro W7100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml index 3286c007..f08d2149 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml @@ -3,6 +3,7 @@ humanName: FirePro W7170M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml index fd93a9a0..4b209433 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 450 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml index f98cb15d..39c761d6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 455 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml index 32b8612b..9a441b2c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 460 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml index f83e0fdf..9f4b4aa8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 555 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml index 3c731f62..d831d617 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 555X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml index db977b2d..509d7f35 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 560 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml index de80d03a..3de987e8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 560X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml index c5dba0ff..92b4e68f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 570 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml index 2465a121..8154b219 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 570X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml index c7cb0db3..7cb6d5aa 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 575 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml index 4ab3267f..eeb5e85c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 575X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml index b17b1457..8aed63df 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 580 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml index f4987dfe..30c60506 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 580X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml index 983fe66d..08c84f4e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Duo Polaris isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml index 07b404ca..386e08c5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V5300X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml index a740ff85..df99a272 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V7300X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml index edb6860a..e10f7d50 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V7350X2 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml index a4cff1de..fbd156ca 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 2100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml index fd0c15b5..874d4e80 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 3100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml index 2d32bde4..89943464 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 3200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml index 209d5d8c..ac9af0c6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 3200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml index 15bca116..eaa11894 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 4100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml index 3f956370..e612afff 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 4130 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml index c88f6a58..d5b11dc5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 4150 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml index c6937441..d2c4b0c4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 4170 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml index b18aa5fc..3ff7bf48 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 5100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml index 81677735..84fcca6b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 7100 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml index 711fae2e..e6e8a4c0 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 7100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml index c1cab609..5d374cfa 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 7130 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml index 3c9500e0..8383cf8b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX Vega M GL isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml index d6d9cf28..804da68f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml @@ -12,8 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - Atari-VCS-400-GPU - - Atari-VCS-800-GPU - Radeon-Instinct-MI25 - Radeon-Pro-V340-8-GB - Radeon-Pro-V340-16-GB @@ -50,4 +48,3 @@ sections: - Radeon-Vega-11-Embedded - Radeon-Vega-Frontier-Edition - Radeon-Vega-Frontier-Edition-Watercooled - - Zhongshan-Subor-Z+-GPU diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml index dd866ab4..a05186df 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V320 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml index b8510049..127e9699 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V340 16 GB isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml index d7a12518..bd914b22 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V340 8 GB isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml index aeb8ea2d..44b8d9cd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 16 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml index 3a4cb6cf..9d85e67b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 20 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml index a68d1498..09680a70 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 48 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml index 51930ca6..a3572bd5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 56 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml index 127385a2..2dba6262 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 64 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml index e4bd86ff..92fb2421 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega 64X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml index 0ac2fd5b..1cb0bc86 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 8100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml index ca95f70f..67c9fc97 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 8200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml index bd66d148..2f800a21 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro WX 9100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml index 9f495df4..e3542e0a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V420 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml index 9a4f52ee..e1f5d51f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro VII isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml index 1296d13a..6dc395b1 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega II Duo isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml index 7b818125..b843a3fb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro Vega II isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml index 6f6480c8..5456b695 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml index eb179d2d..f9a8c10a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5300M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml index 2fe91dcb..54111860 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5500 XT isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml index b893b7f8..14b4ba91 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5500M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml index ea8f759b..27bc0f4a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5600M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml index 1772ed1b..766c9ce5 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5700 XT isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml index 4716b8c0..8fdb684d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro 5700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml index fff7a638..a6c57a76 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V520 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml index 16baf3d3..5073dec7 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro V540 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml index 74ea1e95..96817c02 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5300M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml index df97232c..b72d64b6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5500 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml index 304a24ee..aedff9c7 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5500M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml index eb5d2611..3fe83a53 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5500X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml index 9e7f72ef..4f0c040b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml index 149283d4..5c67645d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W5700X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml index 6221c748..7b133b67 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml @@ -12,7 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - Playstation-5-GPU - Radeon-610M - Radeon-660M - Radeon-680M @@ -59,7 +58,3 @@ sections: - Radeon-RX-6900-XTX - Radeon-RX-6950-XT - Radeon-RX-6700S - - Steam-Deck-GPU - - Steam-Deck-OLED-GPU - - Xbox-Series-S-GPU - - Xbox-Series-X-GPU diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml index 05ef225c..51376236 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO V620 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml index 3ddf505a..535d634b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W6300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml index e4b64617..7960738e 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W6400 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml index 9c200179..78fa84cc 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W6600 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml index 966f3778..094c72f1 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W6800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml index 4424a53f..cc60faa2 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6300M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml index 4896cfb7..f348bce6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6500M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml index 08080eae..cfaf1e4b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6600M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml index eab438d0..59481110 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6600X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml index 02091f84..d9a9275b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6800X Duo isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml index 745c10aa..d8c49884 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6800X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml index b8d774a1..57f7cf78 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Pro W6900X isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml index 36e23d7b..8728d59d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml @@ -37,5 +37,3 @@ sections: - Radeon-RX-7950-XT - Radeon-RX-7950-XTX - Radeon-RX-7990-XTX - - ROG-Ally-Extreme-GPU - - ROG-Ally-GPU diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml index fad52ba0..b6d2b4ca 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W7500 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml index 1fb2436a..7365006e 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W7600 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml index c78b6174..3b3e25a1 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W7700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml index de6ca537..4bfdd84c 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W7800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml index c244cb74..9d636f57 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml @@ -3,6 +3,7 @@ humanName: Radeon PRO W7900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: RDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml index 4293a327..33c4d45c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml @@ -202,4 +202,3 @@ sections: - Radeon-R5-310-OEM - Radeon-R5-A220 - Radeon-R5-220-OEM - - Wii-U-GPU diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml index 6018206c..e5f83c38 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2270 PCIe x1 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml index 3eb6e84c..30db65b7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2270 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml index a3262878..caf25867 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2460 Multi-View isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml index faa763fb..e2c9d574 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml @@ -3,6 +3,7 @@ humanName: FirePro M2000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml index f26f8576..4539044c 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml @@ -3,6 +3,7 @@ humanName: FirePro M3900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml index 7fcfb044..668e166f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml @@ -3,6 +3,7 @@ humanName: FirePro M5800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml index 91083cbb..5aafa49a 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml @@ -3,6 +3,7 @@ humanName: FirePro M5950 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml index b8814313..0caf55cb 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml @@ -3,6 +3,7 @@ humanName: FirePro M7820 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml index c86fe310..05671e2d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml @@ -3,6 +3,7 @@ humanName: FirePro M8900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml index 10eab9fc..0c943390 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V3800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml index 63c2df95..95a5bcd2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml @@ -3,6 +3,7 @@ humanName: FirePro V3900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml index 4c2c33e3..388a940f 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V4800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml index 2fbb0697..c1e4e709 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml @@ -3,6 +3,7 @@ humanName: FirePro V4900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml index 9c5f0d4e..c32a0712 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml @@ -3,6 +3,7 @@ humanName: FirePro V5800 DVI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml index b3228c27..da24b843 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V5800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml index da8805f1..3dd448d5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml index 6643a4c1..686f2ebe 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7800P isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml index 7ad743d1..67a1b89e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V8800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml index d8c539d5..389a63a0 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml @@ -3,6 +3,7 @@ humanName: FirePro V9800 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml index 1e7b51ec..7f570477 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml @@ -3,6 +3,7 @@ humanName: FirePro V9800P isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml index e0159505..222b48b7 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml @@ -3,6 +3,7 @@ humanName: FirePro A300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 3 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml index f4cdd728..b536c594 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml @@ -3,6 +3,7 @@ humanName: FirePro A320 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 3 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml index e147c7ef..82189dfd 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml @@ -3,6 +3,7 @@ humanName: FirePro V5900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 3 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml index 2d73bd0f..4c293fa6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7900 SDI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 3 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml index ff706039..9c73482e 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7900 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale 3 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml index 6a78248d..4f885fba 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml @@ -174,8 +174,3 @@ sections: - Radeon-HD-4890 - Radeon-HD-2350-PRO - Radeon-Xpress-2100-IGP - - Xbox-360-E-GPU - - Xbox-360-GPU-65nm - - Xbox-360-GPU-80nm - - Xbox-360-GPU-90nm - - Xbox-360-S-GPU diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml index cac5af8b..94a22a05 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2260 PCI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml index 9927be97..15ecb082 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2450 Multi-View PCIe x1 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml index e66bd567..e879abf9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml @@ -3,6 +3,7 @@ humanName: FirePro 2450 Multi-View isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml index 46d2fc14..efddf0a6 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml @@ -3,6 +3,7 @@ humanName: FirePro M5725 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml index ffd79144..d11d6036 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml @@ -3,6 +3,7 @@ humanName: FirePro M7740 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml index 798c7749..57886e78 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml @@ -3,6 +3,7 @@ humanName: FirePro RG220 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml index 3cb44420..8bdc42ee 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml @@ -3,6 +3,7 @@ humanName: FirePro RG220A isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml index c4101a0a..9cbb6c31 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml @@ -3,6 +3,7 @@ humanName: FirePro V3700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml index 896de992..9e809923 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml @@ -3,6 +3,7 @@ humanName: FirePro V3750 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml index fa9109c3..451a8100 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml @@ -3,6 +3,7 @@ humanName: FirePro V5700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml index c808c8f6..54c8df08 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7750 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml index 051a1c62..dbea50c9 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7760 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml index 6cabd762..c266f52d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml @@ -3,6 +3,7 @@ humanName: FirePro V7770 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml index 82a2edf9..c49a8795 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml @@ -3,6 +3,7 @@ humanName: FirePro V8700 Duo isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml index a607ccf2..af232867 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml @@ -3,6 +3,7 @@ humanName: FirePro V8700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml index 25c9916a..69feeb44 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml @@ -3,6 +3,7 @@ humanName: FirePro V8750 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml index 1d7a3026..eeeef3da 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml @@ -91,4 +91,3 @@ sections: - Radeon-X1650-PRO-AGP - Radeon-X1650-XT - Stream-Processor - - Wii-GPU diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml index 835fe186..03b6d48f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml @@ -79,8 +79,6 @@ sections: - GeForce-RTX-3080-Ti-Mobile - GeForce-RTX-3090 - GeForce-RTX-3090-Ti - - GRID-A100A - - GRID-A100B - Jetson-AGX-Orin-32-GB - Jetson-AGX-Orin-64-GB - Jetson-Orin-Nano-4-GB diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie.yaml index 990b23b7..f1b58c4d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie.yaml @@ -125,10 +125,6 @@ sections: - GeForce-Go-7950-GTX - GeForce-6800-GT-DDL - GeForce-Go-7400T - - Playstation-3-GPU-28nm - - Playstation-3-GPU-40nm - - Playstation-3-GPU-65nm - - Playstation-3-GPU-90nm - Quadro-FX-350 - Quadro-FX-350M - Quadro-FX-540 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml index 27104cf4..61beeda1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml @@ -78,8 +78,3 @@ sections: - Quadro-5010M - Quadro-7000 - Quadro-Plex-7000 - - Tesla-C2075 - - Tesla-C2090 - - Tesla-M2075 - - Tesla-M2090 - - Tesla-X2090 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml index 4992eb3a..9bf8ffab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml @@ -67,10 +67,3 @@ sections: - Quadro-6000 - Quadro-6000-SDI - NVS-5400M - - Tesla-C2050 - - Tesla-C2070 - - Tesla-M2050 - - Tesla-M2070 - - Tesla-M2070-Q - - Tesla-S2050 - - Tesla-X2070 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml index dfbc5d77..a127678b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml @@ -27,4 +27,3 @@ sections: - Quadro4-900-XGL - Quadro4-980-XGL - Quadro-DCC - - Xbox-GPU diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml index e114591d..da3eb080 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml @@ -32,4 +32,3 @@ sections: - Jetson-TK1 - Quadro-K510M - Quadro-K610M - - Tesla-K80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml index bf1c0685..e8511377 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml @@ -3,6 +3,7 @@ humanName: Jetson TK1 isPart: true type: Graphics Card data: + Market: Embedded Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml index ee3cc552..c8cdcc32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K510M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml index 04f7a93f..fa5c312c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K610M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml index 79ff01ba..6927ce36 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml @@ -76,24 +76,6 @@ sections: - GeForce-GTX-TITAN - GeForce-GTX-TITAN-BLACK - GeForce-GTX-TITAN-Z - - GRID-K1 - - GRID-K2 - - GRID-K100 - - GRID-K120Q - - GRID-K140Q - - GRID-K160Q - - GRID-K180Q - - GRID-K200 - - GRID-K220Q - - GRID-K240Q - - GRID-K260Q - - GRID-K280Q - - GRID-K340 - - GRID-K500 - - GRID-K520 - - GRID-K520Q - - GRID-K540Q - - GRID-K560Q - NVS-510 - NVS-1000 - Quadro-410 @@ -124,16 +106,3 @@ sections: - Quadro-K5200 - Quadro-K6000 - Quadro-K6000-SDI - - Tesla-K8 - - Tesla-K10 - - Tesla-K20c - - Tesla-K20m - - Tesla-K20s - - Tesla-K20X - - Tesla-K20Xm - - Tesla-K40c - - Tesla-K40d - - Tesla-K40m - - Tesla-K40s - - Tesla-K40st - - Tesla-K40t diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml index cc284dc0..991aefad 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml @@ -3,6 +3,7 @@ humanName: Quadro 410 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml index cf96050e..bd4eae60 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml @@ -3,6 +3,7 @@ humanName: Quadro 4100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml index 87e46eda..4ed5d86e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K1000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml index 993b70f5..9d644127 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml index 379784e2..fd35f89b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K1100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml index 44e8147c..a4d02923 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml index 529f5e1e..e8fff042 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2000D isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml index 2d0815ae..29834ca1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2000M Embedded isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml index fa3f1f44..c6e35041 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml index 1a526cc1..73f6b52a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K200M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml index 022ac663..0c8ab51e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml index 4c2464d7..e31dabf8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K3000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml index f274d084..caad8a37 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K3100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml index 9b7b71af..5b507a44 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml @@ -3,6 +3,7 @@ humanName: Quadro K4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml index f5edc666..c953fe0b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K4000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml index c8aed88b..6d964739 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K4100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml index ab2b2e32..9581079c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml @@ -3,6 +3,7 @@ humanName: Quadro K420 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml index ddb68d0d..026d9827 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml @@ -3,6 +3,7 @@ humanName: Quadro K4200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml index 5b977d8c..9c8dbe49 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5000 Mac Edition isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml index 69380f27..c5ea8130 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5000 SYNC isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml index 50560996..d456653c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml index 3b017786..6e352603 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml index bd35052f..c058da55 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K500M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml index ee543727..d5f97b5d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5100M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml index 110fe96f..bdee2887 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml @@ -3,6 +3,7 @@ humanName: Quadro K5200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml index 58d0153a..0ac14a1e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml @@ -3,6 +3,7 @@ humanName: Quadro K600 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml index f1f128a5..e2d3b45a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml @@ -3,6 +3,7 @@ humanName: Quadro K6000 SDI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml index 2c313cfa..624d5441 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml @@ -3,6 +3,7 @@ humanName: Quadro K6000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml index c068cab8..d94a0c14 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml @@ -27,11 +27,6 @@ sections: - GeForce-GTX-980-Ti - GeForce-GTX-980M - GeForce-GTX-TITAN-X - - GRID-M6-8Q - - GRID-M60-1Q - - GRID-M60-2Q - - GRID-M60-4A - - GRID-M60-8Q - Jetson-Nano - Jetson-TX1 - Quadro-M2000 @@ -45,11 +40,3 @@ sections: - Quadro-M5500-Mobile - Quadro-M6000 - Quadro-M6000-24-GB - - Switch-GPU-16nm - - Switch-GPU-20nm - - Tesla-M4 - - Tesla-M6-Mobile - - Tesla-M6-X2-Mobile - - Tesla-M40 - - Tesla-M40-24-GB - - Tesla-M60 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml index 74631b94..f7f58fe0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml @@ -3,6 +3,7 @@ humanName: Quadro M2000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml index 04e1caac..42f9a5d5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro M2200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml index edb464be..bbcf201c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml @@ -3,6 +3,7 @@ humanName: Quadro M3000 SE isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml index 51475815..d8f23fc4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M3000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml index dff6af96..c32cb877 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml @@ -3,6 +3,7 @@ humanName: Quadro M4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml index 775085ef..0d4275aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M4000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml index 3310f67f..801c30b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml @@ -3,6 +3,7 @@ humanName: Quadro M5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml index b729453c..798f2afd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M5000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml index a90956b3..ec8bfdde 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro M5500 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml index 930e0baf..0eefece0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml @@ -3,6 +3,7 @@ humanName: Quadro M6000 24 GB isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml index 9f307572..89371d48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml @@ -3,6 +3,7 @@ humanName: Quadro M6000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml index 60ecb62d..c0e7d49c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml @@ -38,9 +38,6 @@ sections: - GeForce-GTX-860M-OEM - GeForce-MX110 - GeForce-MX130 - - GRID-M3-3020 - - GRID-M10-8Q - - GRID-M40 - NVS-810 - Quadro-K620 - Quadro-K620M @@ -54,4 +51,3 @@ sections: - Quadro-M1000M - Quadro-M1200-Mobile - Quadro-M2000M - - Tesla-M10 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml index 3e1c2ea3..dcefcc58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml @@ -3,6 +3,7 @@ humanName: Quadro K1200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml index a112279a..7a794ca2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml index 87b362bd..2d1b34c5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K2200M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml index abc50ee9..d5833cc6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml @@ -3,6 +3,7 @@ humanName: Quadro K620 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml index 9575df4e..e7059097 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml @@ -3,6 +3,7 @@ humanName: Quadro K620M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml index b6424958..4f075b28 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M1000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml index 8401a7c9..ae046ad7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro M1200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml index 184c48bb..8bae8762 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M2000M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml index b9b3a546..fcf8afab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M500M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml index f5a1cf0d..276927c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro M520 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml index a5d160bc..2a7ebb59 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml @@ -3,6 +3,7 @@ humanName: Quadro M600M isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml index 5e419461..de623863 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro M620 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml index 66095241..2d42e259 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml @@ -88,13 +88,3 @@ sections: - Quadro-P6000 - Quadro-P1000-Mobile - Quadro-P2200 - - Tesla-P4 - - Tesla-P6-Mobile - - Tesla-P10 - - Tesla-P40 - - Tesla-P100-DGXS - - Tesla-P100-PCIe-12-GB - - Tesla-P100-PCIe-16-GB - - Tesla-P100-SXM2 - - TITAN-Xp - - TITAN-X-Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml index abdc71fb..fa1cfe87 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml @@ -3,6 +3,7 @@ humanName: Quadro GP100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml index 46082a80..3bb3f457 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P1000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml index ed1e6d71..d1226b7f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml @@ -3,6 +3,7 @@ humanName: Quadro P1000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml index 7bf93e2d..d10585f6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P2000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml index a366f60c..c528ca87 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml @@ -3,6 +3,7 @@ humanName: Quadro P2000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml index 0ae82d80..cd1d4664 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml @@ -3,6 +3,7 @@ humanName: Quadro P2200 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml index 2f9343bf..2d8b81fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P3000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml index 4d769a32..40560e76 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro P3200 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml index 77ec0c57..c75e71ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P3200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml index a52e3791..390bcbfd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml @@ -3,6 +3,7 @@ humanName: Quadro P400 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml index 74fc5ef9..4a12e55c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro P4000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml index df560324..11fc3642 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P4000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml index 1fbf61c8..ea40ced7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml @@ -3,6 +3,7 @@ humanName: Quadro P4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml index 5e5f5fb2..75a3c7c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro P4200 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml index 67e2033f..5aac0b2e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P4200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml index 7192e444..55e16f45 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P500 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml index fd9a80fa..3c631c7b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P5000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml index 8b265e05..f174190a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P5000 X2 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml index e8bf3fc9..e1e18d6a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml @@ -3,6 +3,7 @@ humanName: Quadro P5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml index 32cbb082..730c997d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro P520 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml index b6f271fc..c56079b9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P520 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml index 84641f27..560d8058 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro P5200 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml index da21795f..5f7e1cb8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P5200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml index 17ddef22..4d60e498 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P600 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml index 0dddd2f7..ce6df637 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml @@ -3,6 +3,7 @@ humanName: Quadro P600 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml index d5a8da68..780dcca6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml @@ -3,6 +3,7 @@ humanName: Quadro P6000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml index 77204d3b..65e84843 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro P620 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml index 73e2303f..29ec0f88 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml @@ -3,6 +3,7 @@ humanName: Quadro P620 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml index 5ad2b463..a2495e0b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 1000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml index 2c1d9704..7861ad87 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 1100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml index 3d20cafa..572e6cef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 1300 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml index 6615b93e..8f4da2ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 2000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml index f0f22a79..7d01c29d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 3000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml index cf71130a..472bc743 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 3000G isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml index fc979b3e..fc802e9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 330 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml index 09b8e09d..cd5dd617 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 500 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml index df54c132..166c5068 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 600 PCI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml index 54abe307..87b1961a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX 700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml index 6a3f2268..793e43e2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX Go1000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml index 29257547..be2c1b7e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml @@ -3,6 +3,7 @@ humanName: Quadro FX Go700 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml index 0aeaf6bd..5a520fe3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml @@ -3,6 +3,7 @@ humanName: Quadro NVS 280 AGP isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml index 63264281..dbcb35f7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml @@ -3,6 +3,7 @@ humanName: Quadro NVS 280 PCI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml index 89c5a5e7..13c4b9f9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml @@ -3,6 +3,7 @@ humanName: Quadro NVS 280 PCIe isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml index 9f918596..f86b3ecf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml @@ -3,6 +3,7 @@ humanName: Quadro NVS 55 PCI isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml index 2e6f317a..180f392e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml @@ -80,8 +80,3 @@ sections: - Quadro-FX-5800 - Quadro-Plex-2200-D2 - Quadro-Plex-2200-S4 - - Tesla-C1060 - - Tesla-C1080 - - Tesla-M1060 - - Tesla-S1070 - - Tesla-S1075 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml index f9b963b6..818441ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml @@ -169,6 +169,3 @@ sections: - Quadro-Plex-2100-D4 - Quadro-Plex-2100-S4 - Quadro-VX-200 - - Tesla-C870 - - Tesla-D870 - - Tesla-S870 diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing.yaml index 829c2e81..dcf399f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing.yaml @@ -98,8 +98,4 @@ sections: - T600-Mobile - T1000 - T1000-8-GB - - Tesla-T4 - - Tesla-T4G - - Tesla-T10-16-GB - - Tesla-T40-24-GB - TITAN-RTX diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml index 626c204f..d9c7026d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 3000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml index fe387ef7..86839416 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 3000 Mobile Refresh isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml index b94bd3a0..68e031a9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 3000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml index 1afdb93e..8a663e5f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 3000 X2 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml index 51c28f8f..81ec668d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 4000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml index 2e8ba334..299d1290 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 4000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml index 13088079..7a8d0af2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 4000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml index d0737e5c..4b667274 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 5000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml index 3eb359bf..00411c36 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 5000 Mobile Refresh isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml index 1cda4804..11d14044 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 5000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml index 54f9bfc2..4a17549c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 5000 X2 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml index babc0bc1..b4986710 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 5000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml index e372b6ef..f290bab2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 6000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml index 4bbe272b..7741580d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 6000 Passive isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml index e96fc7ea..9d2c2451 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 6000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml index 7b139c62..c22091ee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 8000 Passive isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml index 263a4aa7..77f6caa9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml @@ -3,6 +3,7 @@ humanName: Quadro RTX 8000 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml index 0eea26f1..0fb799d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro T1000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml index ec0a6f1d..398213aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml @@ -3,6 +3,7 @@ humanName: Quadro T1000 Mobile GDDR6 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml index 89acd5cc..78e5f689 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro T1000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml index 70550fff..92fc840e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro T1200 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml index 436a9b28..e6dd0ce5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro T1200 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml index 7c07e74c..3514a7bb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: Quadro T2000 Max-Q isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml index 87449aed..c2b2e443 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Quadro T2000 Mobile isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta.yaml index 978c37eb..ad44f7b3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta.yaml @@ -17,16 +17,6 @@ sections: - Jetson-Xavier-NX-8-GB - Jetson-Xavier-NX-16-GB - Quadro-GV100 - - Tesla-PG500-216 - - Tesla-PG503-216 - - Tesla-V100-DGXS-16-GB - - Tesla-V100-DGXS-32-GB - - Tesla-V100-FHHL - - Tesla-V100-PCIe-16-GB - - Tesla-V100-PCIe-32-GB - - Tesla-V100-SXM2-16-GB - - Tesla-V100-SXM3-32-GB - - Tesla-V100S-PCIe-32-GB - TITAN-V - TITAN-V-CEO-Edition - Tesla-V100-SXM2-32-GB diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml index c9d38132..e1a048b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml @@ -3,6 +3,7 @@ humanName: Quadro GV100 isPart: true type: Graphics Card data: + Market: Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml rename to specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml index a71233a1..37e84a72 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI100 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml rename to specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml index b3cad055..71bf525b 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI200 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml rename to specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml index 2bbf9822..7bda6c49 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI210 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml rename to specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml index 1ef0ef1a..b05c43c3 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI250 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml rename to specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml index 875adfc3..e9b68dbf 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI250X isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml rename to specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml index 388dc5c9..627f1840 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI300 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml rename to specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml index 465d769c..dd4239f3 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI300X isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: CDNA 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml rename to specs/GPUs-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml index 30e398e4..69bceeee 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI8 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-SERVER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml rename to specs/GPUs-SERVER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml index 80855bae..5eb9dd63 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI6 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 4.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml rename to specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml index d14d96b5..3286283f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI50 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml rename to specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml index 1a34f0ce..e54d9874 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI60 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.1 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml rename to specs/GPUs-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml index dd88a18f..a0982583 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Instinct-MI25.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml @@ -3,6 +3,7 @@ humanName: Radeon Instinct MI25 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml new file mode 100644 index 00000000..1c5cc1ed --- /dev/null +++ b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml @@ -0,0 +1,35 @@ +name: GPUs-SERVER-Nvidia +humanName: Server GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: Nvidia +sections: + - header: Ampere + members: + - Ampere-server + - header: Turing + members: + - Turing-server + - header: Kepler + members: + - Kepler-server + - header: Maxwell + members: + - Maxwell-server + - Maxwell-2.0-server + - header: Pascal + members: + - Pascal + - header: Tesla + members: + - Tesla-server + - Tesla-2.0-server + - header: Fermi + members: + - Fermi-server + - Fermi-2.0-server + - header: Volta + members: + - Volta-server diff --git a/specs/GPUs-SERVER/Nvidia/Ampere.yaml b/specs/GPUs-SERVER/Nvidia/Ampere.yaml new file mode 100644 index 00000000..d5d3b7b7 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Ampere.yaml @@ -0,0 +1,16 @@ +name: Ampere-server +humanName: Ampere +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '' + Vulkan Support: 'N/A' + Release Date: '2020-05-14' + Manufacturer: Nvidia +sections: + - header: GRID + members: + - GRID-A100A + - GRID-A100B diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100A.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100A.yaml index 200de50a..def3afbc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100A.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100A.yaml @@ -3,6 +3,7 @@ humanName: GRID A100A isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100B.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100B.yaml index a903ef86..5b554146 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GRID-A100B.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100B.yaml @@ -3,6 +3,7 @@ humanName: GRID A100B isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml new file mode 100644 index 00000000..12f09ded --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml @@ -0,0 +1,19 @@ +name: Fermi-2.0-console +humanName: Fermi 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2010-11-09' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-C2075 + - Tesla-C2090 + - Tesla-M2075 + - Tesla-M2090 + - Tesla-X2090 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml index 6af063ab..19c23870 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2075.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml @@ -3,6 +3,7 @@ humanName: Tesla C2075 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml index 7c3700b5..6bedfe68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-C2090.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml @@ -3,6 +3,7 @@ humanName: Tesla C2090 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml index af73192a..f8470b2a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2075.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml @@ -3,6 +3,7 @@ humanName: Tesla M2075 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml index d08f656f..29c5877a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-M2090.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml @@ -3,6 +3,7 @@ humanName: Tesla M2090 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml index 59f0d00a..7f66b751 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Tesla-X2090.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml @@ -3,6 +3,7 @@ humanName: Tesla X2090 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi 2.0 diff --git a/specs/GPUs-SERVER/Nvidia/Fermi.yaml b/specs/GPUs-SERVER/Nvidia/Fermi.yaml new file mode 100644 index 00000000..777d6c48 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Fermi.yaml @@ -0,0 +1,21 @@ +name: Fermi-server +humanName: Fermi +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2010-03-26' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-C2050 + - Tesla-C2070 + - Tesla-M2050 + - Tesla-M2070 + - Tesla-M2070-Q + - Tesla-S2050 + - Tesla-X2070 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2050.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2050.yaml index 8196e023..d78931e0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2050.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2050.yaml @@ -3,6 +3,7 @@ humanName: Tesla C2050 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2070.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2070.yaml index 804fa6e5..170d3a37 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-C2070.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2070.yaml @@ -3,6 +3,7 @@ humanName: Tesla C2070 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2050.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2050.yaml index 10c75925..056e2f0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2050.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2050.yaml @@ -3,6 +3,7 @@ humanName: Tesla M2050 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml index e1f4aa64..e3ab71e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070-Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml @@ -3,6 +3,7 @@ humanName: Tesla M2070-Q isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070.yaml index 3b4c03b6..4eff5b6a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-M2070.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070.yaml @@ -3,6 +3,7 @@ humanName: Tesla M2070 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-S2050.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-S2050.yaml index 6f04c1eb..209fdf70 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-S2050.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-S2050.yaml @@ -3,6 +3,7 @@ humanName: Tesla S2050 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-X2070.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml rename to specs/GPUs-SERVER/Nvidia/Fermi/Tesla-X2070.yaml index 5bf0df92..69847afd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fermi/Tesla-X2070.yaml +++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-X2070.yaml @@ -3,6 +3,7 @@ humanName: Tesla X2070 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Fermi diff --git a/specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml new file mode 100644 index 00000000..1dc9b386 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml @@ -0,0 +1,15 @@ +name: Kepler-2.0-server +humanName: Kepler 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + Release Date: '2013-04-01' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-K80 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml index 56cfb195..0fec555b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Tesla-K80.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml @@ -3,6 +3,7 @@ humanName: Tesla K80 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler 2.0 diff --git a/specs/GPUs-SERVER/Nvidia/Kepler.yaml b/specs/GPUs-SERVER/Nvidia/Kepler.yaml new file mode 100644 index 00000000..bc288b60 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Kepler.yaml @@ -0,0 +1,47 @@ +name: Kepler-server +humanName: Kepler +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.2.175' + Release Date: '2012-03-22' + Manufacturer: Nvidia +sections: + - header: GRID + members: + - GRID-K1 + - GRID-K2 + - GRID-K100 + - GRID-K120Q + - GRID-K140Q + - GRID-K160Q + - GRID-K180Q + - GRID-K200 + - GRID-K220Q + - GRID-K240Q + - GRID-K260Q + - GRID-K280Q + - GRID-K340 + - GRID-K500 + - GRID-K520 + - GRID-K520Q + - GRID-K540Q + - GRID-K560Q + - header: Tesla + members: + - Tesla-K8 + - Tesla-K10 + - Tesla-K20c + - Tesla-K20m + - Tesla-K20s + - Tesla-K20X + - Tesla-K20Xm + - Tesla-K40c + - Tesla-K40d + - Tesla-K40m + - Tesla-K40s + - Tesla-K40st + - Tesla-K40t diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K1.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K1.yaml index 8e2a36db..b173f22e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K1.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K1.yaml @@ -3,6 +3,7 @@ humanName: GRID K1 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K100.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K100.yaml index db4c55be..0399faa0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K100.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K100.yaml @@ -3,6 +3,7 @@ humanName: GRID K100 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K120Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K120Q.yaml index e6bd264c..2028304c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K120Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K120Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K120Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K140Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K140Q.yaml index e71e7b4d..622d58e9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K140Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K140Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K140Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K160Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K160Q.yaml index 7f611883..41adcdf9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K160Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K160Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K160Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K180Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K180Q.yaml index 08bb0bef..5f8b7c33 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K180Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K180Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K180Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K2.yaml index b5ed3a4d..15b12c18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K2.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K2.yaml @@ -3,6 +3,7 @@ humanName: GRID K2 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K200.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K200.yaml index 6ab72d15..adbd871a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K200.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K200.yaml @@ -3,6 +3,7 @@ humanName: GRID K200 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K220Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K220Q.yaml index f241d47b..a0fcfb5e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K220Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K220Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K220Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K240Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K240Q.yaml index b2d92651..5bd768f3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K240Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K240Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K240Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K260Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K260Q.yaml index a9d2b073..0432c039 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K260Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K260Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K260Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K280Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K280Q.yaml index 477981b1..34a3464b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K280Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K280Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K280Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K340.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K340.yaml index 2a41c9a4..f8b8efe8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K340.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K340.yaml @@ -3,6 +3,7 @@ humanName: GRID K340 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K500.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K500.yaml index 6c942141..826b08b3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K500.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K500.yaml @@ -3,6 +3,7 @@ humanName: GRID K500 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520.yaml index 47a2fdb7..a85ef1c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520.yaml @@ -3,6 +3,7 @@ humanName: GRID K520 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520Q.yaml index 43893595..126f8935 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K520Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K520Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K540Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K540Q.yaml index 8848ad6d..4c43e516 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K540Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K540Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K540Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K560Q.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/GRID-K560Q.yaml index 060fc0a1..71fce97b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/GRID-K560Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K560Q.yaml @@ -3,6 +3,7 @@ humanName: GRID K560Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K10.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K10.yaml index 15549089..c3fa906a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K10.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K10.yaml @@ -3,6 +3,7 @@ humanName: Tesla K10 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20X.yaml index dd3929ce..29b6d212 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20X.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20X.yaml @@ -3,6 +3,7 @@ humanName: Tesla K20X isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml index b6cf8794..bdc4dcc0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20Xm.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml @@ -3,6 +3,7 @@ humanName: Tesla K20Xm isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20c.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20c.yaml index 12f2962e..89371dd0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20c.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20c.yaml @@ -3,6 +3,7 @@ humanName: Tesla K20c isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20m.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20m.yaml index 5d40f56a..030184ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20m.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20m.yaml @@ -3,6 +3,7 @@ humanName: Tesla K20m isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20s.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20s.yaml index 0431e801..cca1de5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K20s.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20s.yaml @@ -3,6 +3,7 @@ humanName: Tesla K20s isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40c.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40c.yaml index a3767b75..e4090d0b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40c.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40c.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40c isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40d.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40d.yaml index 2f3339d3..8e06ddbf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40d.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40d.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40d isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40m.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40m.yaml index 3d21fc3d..c3778e70 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40m.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40m.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40m isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40s.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40s.yaml index d29a8287..088c5582 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40s.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40s.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40s isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40st.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40st.yaml index 5c3e88c7..27d2aba1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40st.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40st.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40st isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40t.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40t.yaml index d64ad050..5b156457 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K40t.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40t.yaml @@ -3,6 +3,7 @@ humanName: Tesla K40t isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K8.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml rename to specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K8.yaml index 741030f0..d3c88618 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kepler/Tesla-K8.yaml +++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K8.yaml @@ -3,6 +3,7 @@ humanName: Tesla K8 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Kepler diff --git a/specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml new file mode 100644 index 00000000..a8a6ca73 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml @@ -0,0 +1,27 @@ +name: Maxwell-2.0-server +humanName: Maxwell 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2014-09-19' + Manufacturer: Nvidia +sections: + - header: GRID + members: + - GRID-M6-8Q + - GRID-M60-1Q + - GRID-M60-2Q + - GRID-M60-4A + - GRID-M60-8Q + - header: Tesla + members: + - Tesla-M4 + - Tesla-M6-Mobile + - Tesla-M6-X2-Mobile + - Tesla-M40 + - Tesla-M40-24-GB + - Tesla-M60 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml index d3bd0557..0dde82ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml @@ -3,6 +3,7 @@ humanName: GRID M6-8Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml index d948dffe..b10d0498 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml @@ -3,6 +3,7 @@ humanName: GRID M60-1Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml index c4093f3f..3ae8e278 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml @@ -3,6 +3,7 @@ humanName: GRID M60-2Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml index 89a2e1f3..4d367a48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml @@ -3,6 +3,7 @@ humanName: GRID M60-4A isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml index ab819a15..70c30e9c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml @@ -3,6 +3,7 @@ humanName: GRID M60-8Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml index 1d6a528e..f9427a2b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M4.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml @@ -3,6 +3,7 @@ humanName: Tesla M4 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml index 12db2582..be8bfefd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla M40 24 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml index 18971c01..8772bd35 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M40.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml @@ -3,6 +3,7 @@ humanName: Tesla M40 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml index 457fbbad..ad42378f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Tesla M6 Mobile isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml index 7b2f8f99..e5c025fc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Tesla M6 X2 Mobile isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml index 0d4dfb18..11841891 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Tesla-M60.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml @@ -3,6 +3,7 @@ humanName: Tesla M60 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell 2.0 diff --git a/specs/GPUs-SERVER/Nvidia/Maxwell.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell.yaml new file mode 100644 index 00000000..9d75a6ac --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Maxwell.yaml @@ -0,0 +1,20 @@ +name: Maxwell-server +humanName: Maxwell +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '11.0' + Vulkan Support: '1.3' + Release Date: '2014-01-13' + Manufacturer: Nvidia +sections: + - header: GRID + members: + - GRID-M3-3020 + - GRID-M10-8Q + - GRID-M40 + - header: Tesla + members: + - Tesla-M10 diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml index 0670e92a..5d5823af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M10-8Q.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml @@ -3,6 +3,7 @@ humanName: GRID M10-8Q isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml index 7c4a1f5f..2bb66b9b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M3-3020.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml @@ -3,6 +3,7 @@ humanName: GRID M3-3020 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M40.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M40.yaml index 55a8c40b..5b03de42 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GRID-M40.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M40.yaml @@ -3,6 +3,7 @@ humanName: GRID M40 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/Tesla-M10.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml rename to specs/GPUs-SERVER/Nvidia/Maxwell/Tesla-M10.yaml index 62c65217..c476cc58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Tesla-M10.yaml +++ b/specs/GPUs-SERVER/Nvidia/Maxwell/Tesla-M10.yaml @@ -3,6 +3,7 @@ humanName: Tesla M10 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Maxwell diff --git a/specs/GPUs-SERVER/Nvidia/Pascal.yaml b/specs/GPUs-SERVER/Nvidia/Pascal.yaml new file mode 100644 index 00000000..2724b890 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Pascal.yaml @@ -0,0 +1,24 @@ +name: Pascal-server +humanName: Pascal +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.2' + Release Date: '2016' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-P4 + - Tesla-P6-Mobile + - Tesla-P10 + - Tesla-P40 + - Tesla-P100-DGXS + - Tesla-P100-PCIe-12-GB + - Tesla-P100-PCIe-16-GB + - Tesla-P100-SXM2 + - TITAN-Xp + - TITAN-X-Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P10.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P10.yaml index ee7dcafa..83e63b19 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P10.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P10.yaml @@ -3,6 +3,7 @@ humanName: Tesla P10 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml index 0ed9cda5..cc87cd0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-DGXS.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml @@ -3,6 +3,7 @@ humanName: Tesla P100 DGXS isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml index f964ad88..b8267f4a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla P100 PCIe 12 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml index 70f53b58..c1500c6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla P100 PCIe 16 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml index aaebe81e..90b1fd3a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P100-SXM2.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml @@ -3,6 +3,7 @@ humanName: Tesla P100 SXM2 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P4.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P4.yaml index 47684b9e..799224c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P4.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P4.yaml @@ -3,6 +3,7 @@ humanName: Tesla P4 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P40.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P40.yaml index 94c5d0d2..72d320a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P40.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P40.yaml @@ -3,6 +3,7 @@ humanName: Tesla P40 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml rename to specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml index 4dde875b..03b4e4e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Tesla-P6-Mobile.yaml +++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml @@ -3,6 +3,7 @@ humanName: Tesla P6 Mobile isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml new file mode 100644 index 00000000..49367fb3 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml @@ -0,0 +1,19 @@ +name: Tesla-2.0-server +humanName: Tesla 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.1' + Vulkan Support: 'N/A' + Release Date: '2007-04-17' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-C1060 + - Tesla-C1080 + - Tesla-M1060 + - Tesla-S1070 + - Tesla-S1075 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml index 97398052..ca672294 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1060.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml @@ -3,6 +3,7 @@ humanName: Tesla C1060 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml index c9b7508c..dcb0db63 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-C1080.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml @@ -3,6 +3,7 @@ humanName: Tesla C1080 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml index 1e65c2b3..fb7ecd32 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-M1060.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml @@ -3,6 +3,7 @@ humanName: Tesla M1060 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml index e092554f..16830952 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1070.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml @@ -3,6 +3,7 @@ humanName: Tesla S1070 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla 2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml index 3d134b1c..2f54f491 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Tesla-S1075.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml @@ -3,6 +3,7 @@ humanName: Tesla S1075 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla 2.0 diff --git a/specs/GPUs-SERVER/Nvidia/Tesla.yaml b/specs/GPUs-SERVER/Nvidia/Tesla.yaml new file mode 100644 index 00000000..5b97abd2 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Tesla.yaml @@ -0,0 +1,17 @@ +name: Tesla-server +humanName: Tesla +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '10.0' + Vulkan Support: 'N/A' + Release Date: '2006-11-08' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-C870 + - Tesla-D870 + - Tesla-S870 diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-C870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla/Tesla-C870.yaml index d4065bcf..66843034 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-C870.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-C870.yaml @@ -3,6 +3,7 @@ humanName: Tesla C870 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-D870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla/Tesla-D870.yaml index 2ce235e3..71d4d5ba 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-D870.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-D870.yaml @@ -3,6 +3,7 @@ humanName: Tesla D870 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-S870.yaml similarity index 96% rename from specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml rename to specs/GPUs-SERVER/Nvidia/Tesla/Tesla-S870.yaml index 92c20e69..fbbdc5d8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Tesla/Tesla-S870.yaml +++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-S870.yaml @@ -3,6 +3,7 @@ humanName: Tesla S870 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Tesla diff --git a/specs/GPUs-SERVER/Nvidia/Turing.yaml b/specs/GPUs-SERVER/Nvidia/Turing.yaml new file mode 100644 index 00000000..80f469d3 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Turing.yaml @@ -0,0 +1,24 @@ +name: Turing-server +humanName: Turing +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2018-08-13' + Manufacturer: Nvidia +sections: + - header: GRID + members: + - GRID-RTX-T10-2 + - GRID-RTX-T10-4 + - GRID-RTX-T10-8 + - GRID-RTX-T10-16 + - header: Tesla + members: + - Tesla-T4 + - Tesla-T4G + - Tesla-T10-16-GB + - Tesla-T40-24-GB diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml index f2199969..fe3fe082 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-16.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml @@ -3,6 +3,7 @@ humanName: GRID RTX T10-16 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml index fd83d37f..aa61bf99 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-2.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml @@ -3,6 +3,7 @@ humanName: GRID RTX T10-2 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml index b2cec7b2..ac5b4339 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-4.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml @@ -3,6 +3,7 @@ humanName: GRID RTX T10-4 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml index fc58b2b9..9962edc5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/GRID-RTX-T10-8.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml @@ -3,6 +3,7 @@ humanName: GRID RTX T10-8 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml index 51de4bd5..f9029e69 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T10-16-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla T10 16 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4.yaml index 7c13f833..c72d9ed2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4.yaml @@ -3,6 +3,7 @@ humanName: Tesla T4 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml index cc1c8198..41b77888 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T40-24-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla T40 24 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4G.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml rename to specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4G.yaml index b62f7f0f..cc21cc3f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Turing/Tesla-T4G.yaml +++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4G.yaml @@ -3,6 +3,7 @@ humanName: Tesla T4G isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Turing diff --git a/specs/GPUs-SERVER/Nvidia/Volta.yaml b/specs/GPUs-SERVER/Nvidia/Volta.yaml new file mode 100644 index 00000000..0a5c3a00 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Volta.yaml @@ -0,0 +1,24 @@ +name: Volta-server +humanName: Volta +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2017-06-21' + Manufacturer: Nvidia +sections: + - header: Tesla + members: + - Tesla-PG500-216 + - Tesla-PG503-216 + - Tesla-V100-DGXS-16-GB + - Tesla-V100-DGXS-32-GB + - Tesla-V100-FHHL + - Tesla-V100-PCIe-16-GB + - Tesla-V100-PCIe-32-GB + - Tesla-V100-SXM2-16-GB + - Tesla-V100-SXM3-32-GB + - Tesla-V100S-PCIe-32-GB diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml index 3896e751..996c0db0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG500-216.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml @@ -3,6 +3,7 @@ humanName: Tesla PG500-216 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml index 496e327a..2b97a4cc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-PG503-216.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml @@ -3,6 +3,7 @@ humanName: Tesla PG503-216 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml index 6f4bbde6..1df10435 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 DGXS 16 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml index 7c96fa91..cd933e0e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 DGXS 32 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml index 5cca9dc6..3e030fb5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-FHHL.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 FHHL isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml index 7f2bb4c7..37697aa0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 PCIe 16 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml index 60d011ae..58bca68c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 PCIe 32 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml index 4d64ac7e..2d6374f2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 SXM2 16 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml index d4dae0cb..ea007895 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 SXM2 32 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml index 1b0aa8b2..49f512a3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100 SXM3 32 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml index ab8fc174..409f978b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml @@ -3,6 +3,7 @@ humanName: Tesla V100S PCIe 32 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Volta diff --git a/specs/Root.yaml b/specs/Root.yaml index 48f9eaac..017f211d 100755 --- a/specs/Root.yaml +++ b/specs/Root.yaml @@ -10,6 +10,7 @@ sections: - CPUs-DESKTOP - CPUs-SERVER - GPUs-CONSUMER-AMD + - GPUs-CONSOLE-AMD - APUs-DESKTOP - APUs-MOBILE - header: Intel @@ -22,9 +23,12 @@ sections: - header: ATI members: - GPUs-CONSUMER-ATI + - GPUs-CONSOLE-ATI - header: Nvidia members: - GPUs-CONSUMER-NVIDIA + - GPUs-CONSOLE-Nvidia + - GPUs-SERVER-Nvidia - header: 3dfx members: - GPUs-CONSUMER-3dfx diff --git a/specs/readme.md b/specs/readme.md new file mode 100644 index 00000000..9346d9de --- /dev/null +++ b/specs/readme.md @@ -0,0 +1,5 @@ +missing the following gpus due to no architecture + +```json +["NV1","Playstation 2 GPU 65nm","Playstation 2 GPU 90nm","Playstation 2 GPU 180nm","Playstation 2 GPU 250nm","Playstation GPU 600nm","Playstation Portable GPU 65nm","Playstation Portable GPU 90nm","Playstation GPU 350nm","Riva 128 PCI","Riva 128ZX","STG-2000","Velocity 100","Velocity 200","Voodoo2 8 MB","Voodoo2 12 MB","Voodoo3 1000 AGP","Voodoo3 2000 AGP","Voodoo3 2000 PCI","Voodoo3 3000 AGP","Voodoo3 3000 PCI","Riva 128","Voodoo Banshee AGP 16 MB","Voodoo Banshee PCI 16 MB","Voodoo Graphics 4 MB"] +``` \ No newline at end of file diff --git a/src/js/row-data.js b/src/js/row-data.js index 7f147d06..54fec526 100755 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -100,6 +100,9 @@ module.exports.sections = [ { name: 'Basic Specs', rows: [ + { + name: 'Market' + }, { name: 'Base Frequency', processor: types.unitUp, @@ -153,6 +156,7 @@ module.exports.sections = [ { name: 'Benchmarks', rows: [ + // CPU { name: 'UserBenchmark CPU Score', processor: types.numberUp, @@ -177,6 +181,19 @@ module.exports.sections = [ name: 'Geekbench Multi-Core Score', processor: types.numberUp, }, + // GPU + { + name: '3DMark Score', + processor: types.numberUp, + }, + { + name: 'Geekbench GPU score', + processor: types.numberUp, + }, + { + name: 'PassMark Score', + processor: types.numberUp, + }, ], }, { From 6614342f11805847610797809b30029b712231dc Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 15 Oct 2024 17:04:53 +0100 Subject: [PATCH 14/41] more GPU categorisation --- .../AMD/GCN-1.0/Radeon-Sky-500.yaml | 1 + .../AMD/GCN-1.0/Radeon-Sky-700.yaml | 1 + .../AMD/GCN-1.0/Radeon-Sky-900.yaml | 1 + .../AMD/GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Pro-V320.yaml | 2 +- .../AMD/GCN-5}/Radeon-Pro-V340-16-GB.yaml | 2 +- .../GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Pro-V340-8-GB.yaml | 2 +- .../AMD/RDNA-1.0/Radeon-Pro-V520.yaml | 2 +- .../AMD/RDNA-1.0/Radeon-Pro-V540.yaml | 2 +- .../AMD/RDNA-2.0/Radeon-PRO-V620.yaml | 2 +- .../AMD/TeraScale/FireStream-9170.yaml | 0 .../AMD/TeraScale/FireStream-9250.yaml | 0 .../AMD/TeraScale/FireStream-9270.yaml | 0 12 files changed, 9 insertions(+), 6 deletions(-) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/Radeon-Sky-500.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/Radeon-Sky-700.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/Radeon-Sky-900.yaml (97%) rename specs/{GPUs-CONSUMER/AMD/GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Pro-V320.yaml (97%) rename specs/{GPUs-CONSUMER/AMD/GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Pro-V340-16-GB.yaml (97%) rename specs/{GPUs-CONSUMER/AMD/GCN-5.0 => GPUs-SERVER/AMD/GCN-5}/Radeon-Pro-V340-8-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/RDNA-1.0/Radeon-Pro-V520.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/RDNA-1.0/Radeon-Pro-V540.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/RDNA-2.0/Radeon-PRO-V620.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale/FireStream-9170.yaml (100%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale/FireStream-9250.yaml (100%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale/FireStream-9270.yaml (100%) diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml index caec12eb..06a63ab3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-500.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml @@ -3,6 +3,7 @@ humanName: Radeon Sky 500 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml index a6588edd..daf3f936 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-700.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml @@ -3,6 +3,7 @@ humanName: Radeon Sky 700 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml index bd2d74a3..e79b8e81 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-Sky-900.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml @@ -3,6 +3,7 @@ humanName: Radeon Sky 900 isPart: true type: Graphics Card data: + Market: Cloud Gaming Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml rename to specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml index a05186df..44e47272 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V320.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml @@ -3,7 +3,7 @@ humanName: Radeon Pro V320 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml rename to specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml index 127e9699..88eb8c3f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-16-GB.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml @@ -3,7 +3,7 @@ humanName: Radeon Pro V340 16 GB isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml rename to specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml index bd914b22..6e8179d4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-V340-8-GB.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml @@ -3,7 +3,7 @@ humanName: Radeon Pro V340 8 GB isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 5.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml rename to specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml index a6c57a76..b8d8ed3b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml +++ b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml @@ -3,7 +3,7 @@ humanName: Radeon Pro V520 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml rename to specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml index 5073dec7..4e5f1244 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml +++ b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml @@ -3,7 +3,7 @@ humanName: Radeon Pro V540 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: RDNA 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-SERVER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml rename to specs/GPUs-SERVER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml index 51376236..c044e3d9 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml +++ b/specs/GPUs-SERVER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml @@ -3,7 +3,7 @@ humanName: Radeon PRO V620 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: RDNA 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml similarity index 100% rename from specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9170.yaml rename to specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml similarity index 100% rename from specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9250.yaml rename to specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml similarity index 100% rename from specs/GPUs-CONSUMER/AMD/TeraScale/FireStream-9270.yaml rename to specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml From 34347ce1946345a7fbf535bce91ce41c2cb41670 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 11 Nov 2024 14:43:53 +0000 Subject: [PATCH 15/41] updating scrapers for benchmarking --- Makefile | 29 ++++++++++++---- build/3dmark-parse.js | 40 ++++++++++++++------- build/combine-util.js | 22 ++++++------ build/geekbench-parse.js | 75 +++++++++++++++++++++++++++++----------- build/passmark-parse.js | 0 src/js/row-data.js | 2 +- tmp/.gitignore | 1 + 7 files changed, 117 insertions(+), 52 deletions(-) create mode 100644 build/passmark-parse.js diff --git a/Makefile b/Makefile index 1cecee62..0c820d03 100755 --- a/Makefile +++ b/Makefile @@ -40,19 +40,26 @@ intc_codes := ./tmp/intel-scrape-codenames.json intc_scrape:= ${intc_procs} ${intc_codes} intc_parse := ./tmp/intel-parse.json -ubch_cpus := ./tmp/userbenchmark-scrape-cpus.csv -ubch_gpus := ./tmp/userbenchmark-scrape-gpus.csv +ubch_cpus := ./tmp/scrape/userbenchmark-scrape-cpus.csv +ubch_gpus := ./tmp/scrape/userbenchmark-scrape-gpus.csv ubch_scrape:= ${ubch_cpus} ${ubch_gpus} ubch_parse := ./tmp/userbenchmark-parse.json -3dmk_cpus := ./tmp/3dmark-scrape-cpus.html -3dmk_gpus := ./tmp/3dmark-scrape-gpus.html +3dmk_cpus := ./tmp/scrape/3dmark-scrape-cpus.html +3dmk_gpus := ./tmp/scrape/3dmark-scrape-gpus.html 3dmk_scrape:= ${3dmk_cpus} ${3dmk_gpus} 3dmk_parse := ./tmp/3dmark-parse.json -gbch_scrape:= ./tmp/geekbench-scrape.html +gbch_cpus := ./tmp/scrape/geekmench-scrape-cpus.csv +gbch_gpus_opencl := ./tmp/scrape/geekmench-scrape-gpus-opencl.csv +gbch_gpus_vulkan := ./tmp/scrape/geekbench-scrape-gpus-vulkan.csv +gbch_scrape:= ${gbch_cpus} ${gbch_gpus_opencl} ${gbch_gpus_vulkan} gbch_parse := ./tmp/geekbench-parse.json +psmk_gpus := ./tmp/scrape/pass-mark-scrape-gpus.html +psmk_scrape := ${psmk_gpus} +psmk_parse := ./tmp/pass-mark-parse.json + prod := false development: ${n_sentinel} ${dev_guard} ${css_output} ${js_output} @@ -111,12 +118,20 @@ ${3dmk_parse} : ${3dmk_scrape} build/3dmark-parse.js ${node} build/3dmark-parse.js ${3dmk_scrape} ${3dmk_parse} ${gbch_scrape} : - ${curl} ${gbch_scrape} 'https://browser.geekbench.com/processor-benchmarks' + ${curl} ${gbch_cpus} 'https://browser.geekbench.com/processor-benchmarks' + ${curl} ${gbch_gpus_opencl} 'https://browser.geekbench.com/opencl-benchmarks' + ${curl} ${gbch_gpus_vulkan} 'https://browser.geekbench.com/vulkan-benchmarks' # MAYBE: an implicit rule for -parse.json ${gbch_parse} : ${gbch_scrape} build/geekbench-parse.js ${node} build/geekbench-parse.js ${gbch_scrape} ${gbch_parse} +${psmk_scrape} : + ${curl} ${psmk_gpus} 'https://www.videocardbenchmark.net/high_end_gpus.html' + +${psmk_parse} : ${psmk_scrape} build/passmark-parse.js + ${node} build/passmark-parse.js ${psmk_scrape} ${psmk_parse} + ${n_sentinel} : package.json npm install touch ${n_sentinel} @@ -124,7 +139,7 @@ ${n_sentinel} : package.json # clean everything clean: ${MAKE} clean-nonet - rm -f ${n_sentinel} ${intc_scrape} ${3dmk_scrape} ${ubch_scrape} ${gbch_scrape} + rm -f ${n_sentinel} ${intc_scrape} ${3dmk_scrape} ${ubch_scrape} ${gbch_scrape} ${psmk_scrape} # only clean things that can be regenerated without a network connection clean-nonet: diff --git a/build/3dmark-parse.js b/build/3dmark-parse.js index 80589d5e..c39853d5 100755 --- a/build/3dmark-parse.js +++ b/build/3dmark-parse.js @@ -13,19 +13,35 @@ const parse = (path, partType, benchmarkType) => { }).get(); // c => c.score sometimes gets rid of new GPUs which are listed, but // whose score is displayed as "0" (this is good) - const niceData = rawData.filter(c => c.score).map(c => ({ - combineMetadata: { - matcherInfo: { - name: c.name, - type: partType, - source: '3dmark', + if(partType == "gpu"){ + const niceData = rawData.filter(c => c.score).map(c => ({ + combineMetadata: { + matcherInfo: { + name: c.name, + type: partType, + source: '3dmark', + }, }, - }, - data: { - [`3DMark Fire Strike ${benchmarkType} Score`]: c.score, - }, - })); - return niceData; + data: { + [`3DMark ${benchmarkType} Score`]: c.score, + }, + })); + return niceData; + }else { + const niceData = rawData.filter(c => c.score).map(c => ({ + combineMetadata: { + matcherInfo: { + name: c.name, + type: partType, + source: '3dmark', + }, + }, + data: { + [`3DMark Fire Strike ${benchmarkType} Score`]: c.score, + }, + })); + return niceData; + } } const [cpuPath, gpuPath, outPath] = process.argv.slice(2); diff --git a/build/combine-util.js b/build/combine-util.js index d355e07d..e22b8acc 100755 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -88,20 +88,20 @@ const combineUtil = { const series = [ // RX { - nameTest: /^R[579X]-\d\d\d(?!.*[Ll]aptop)/, + nameTest: /^(Radeon)?.R[579X].\d{3,4}(?!.*[Ll]aptop)(XT)?(XTX)?$/i, brand: 'amd', type: 'gpu', parser: () => { - // TODO: how do we give data with GB specified higher priority than data w/o? - const regexMatch = hints.cleanName.match(/(R[579X]-\d\d\dX?)(-(\d+)GB)?/); - if (regexMatch) { - const [ , rxXxx, , memorySize ] = regexMatch; - return combineUtil.toMatcher( - memorySize ? - `${rxXxx}-${memorySize}GiB` : - new RegExp(`^${rxXxx}(-\\d+GiB)?$`) - ); - } + return hints.cleanName; + }, + }, + // RTX / GTX + { + nameTest: /^Geforce.[RG]TX.[0-9]{4}(.Ti)?\s*$/i, + brand: 'nvidia', + type: 'gpu', + parser: () => { + return hints.cleanName; }, }, // Vega diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js index b06ddddf..68ddf60e 100755 --- a/build/geekbench-parse.js +++ b/build/geekbench-parse.js @@ -3,20 +3,28 @@ const cheerio = require('cheerio'); const _ = require('lodash'); const util = require('./util'); -const [inPath, outPath] = process.argv.slice(2); +const [cpuPath, gpuPath, gpuPath2, outPath] = process.argv.slice(2); +console.log("FIND MEEEEEEEEEEEEEEE!!!!!!!") +console.log(cpuPath, gpuPath, outPath); -const parse = (tableEl, type) => { +const parse = (tableEl, type, partType) => { + const $ = cheerio.load(tableEl); const rawData = $(tableEl).find('tr') .map((i, el) => { - const name = $(el).find('.name a').text(); + let name = ''; + if(partType == 'cpu'){ + name = $(el).find('.name a').text(); + } else { + name = $(el).find('.name').text(); + } const score = +$(el).find('.score').text(); return { name, score }; }).get(); const niceData = rawData.filter(c => c.score).map(c => ({ combineMetadata: { matcherInfo: { - name: c.name, - type: 'cpu', + name: c.name.replace(/\n/g,""), + type: partType, source: 'geekbench', }, }, @@ -27,19 +35,44 @@ const parse = (tableEl, type) => { return niceData; } -const $ = cheerio.load(fs.readFileSync(inPath, 'utf8')); -util.writeJSON(outPath, _.flatten($('#pc.table.benchmark-chart-table tbody').map((i, el) => { - switch (i) { - case 0: - return parse(el, 'Single-Core'); - break; - case 1: - return parse(el, 'Multi-Core'); - break; - default: - console.log('WARNING: More than two geekbench tables! Their site must have changed!'); - return []; - // fuck it just put 'em everywhere - break; - } -}).get())); +const cpuParse = (inPath) => { + const $ = cheerio.load(fs.readFileSync(inPath, 'utf8')); + return _.flatten($('.table.benchmark-chart-table tbody').map((i, el) => { + switch (i) { + case 0: + return parse(el, 'Single-Core', 'cpu'); + break; + case 1: + return parse(el, 'Multi-Core', 'cpu'); + break; + default: + console.log('WARNING: More than two geekbench tables! Their site must have changed!'); + return []; + // fuck it just put 'em everywhere + break; + } + }).get()) +} + +const gpuParse = (inPath) => { + const $ = cheerio.load(fs.readFileSync(inPath, 'utf8')); + return _.flatten($('.table.benchmark-chart-table tbody').map((i, el) => { + switch (i) { + case 0: + return parse(el, 'Vulkan', 'gpu'); + break; + default: + console.log('WARNING: More than one geekbench tables! Their site must have changed!'); + return []; + // fuck it just put 'em everywhere + break; + } + }).get()) +} + + +util.writeJSON(outPath, + cpuParse(cpuPath).concat( + gpuParse(gpuPath) + ) +); diff --git a/build/passmark-parse.js b/build/passmark-parse.js new file mode 100644 index 00000000..e69de29b diff --git a/src/js/row-data.js b/src/js/row-data.js index 54fec526..a45ddc85 100755 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -183,7 +183,7 @@ module.exports.sections = [ }, // GPU { - name: '3DMark Score', + name: '3DMark Graphics Score', processor: types.numberUp, }, { diff --git a/tmp/.gitignore b/tmp/.gitignore index 1a4320af..ea81c415 100755 --- a/tmp/.gitignore +++ b/tmp/.gitignore @@ -1,3 +1,4 @@ * !.gitignore !find-missing-intel-cpus.py +!/scrape/.gitignore From 25e4b13c9e125840eded1fcfe8fc43949f603aad Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 14 Nov 2024 14:30:54 +0000 Subject: [PATCH 16/41] fix geekbench benchmark name and fix radeon benchmarks --- build/combine-util.js | 4 +++- build/geekbench-parse.js | 4 ++-- src/js/row-data.js | 6 +++++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/build/combine-util.js b/build/combine-util.js index e22b8acc..8976cd4f 100755 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -88,10 +88,12 @@ const combineUtil = { const series = [ // RX { - nameTest: /^(Radeon)?.R[579X].\d{3,4}(?!.*[Ll]aptop)(XT)?(XTX)?$/i, + nameTest: /^(Pro.)?R[579X]-\d{3,4}(?!.*[Ll]aptop).(XT)?(XTX)?$/i, brand: 'amd', type: 'gpu', parser: () => { + // console.log(hints.cleanName) + return `Radeon-${hints.cleanName}`; return hints.cleanName; }, }, diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js index 68ddf60e..f2b1bc20 100755 --- a/build/geekbench-parse.js +++ b/build/geekbench-parse.js @@ -4,8 +4,8 @@ const _ = require('lodash'); const util = require('./util'); const [cpuPath, gpuPath, gpuPath2, outPath] = process.argv.slice(2); -console.log("FIND MEEEEEEEEEEEEEEE!!!!!!!") -console.log(cpuPath, gpuPath, outPath); +// console.log("FIND MEEEEEEEEEEEEEEE!!!!!!!") +// console.log(cpuPath, gpuPath, outPath); const parse = (tableEl, type, partType) => { const $ = cheerio.load(tableEl); diff --git a/src/js/row-data.js b/src/js/row-data.js index a45ddc85..d1643db3 100755 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -187,7 +187,11 @@ module.exports.sections = [ processor: types.numberUp, }, { - name: 'Geekbench GPU score', + name: 'Geekbench Vulkan Score', + processor: types.numberUp, + }, + { + name: 'Geekbench OpenCl Score', processor: types.numberUp, }, { From 343362540fe03431532ad312271c2b2b40ab25ef Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 18 Nov 2024 20:53:05 +0000 Subject: [PATCH 17/41] finish passmark --- Makefile | 10 ++++--- build/passmark-parse.js | 58 +++++++++++++++++++++++++++++++++++++++++ src/js/row-data.js | 2 +- 3 files changed, 66 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0c820d03..eb75d783 100755 --- a/Makefile +++ b/Makefile @@ -89,9 +89,9 @@ ${sw_output} : ${sw_m_input} ${sw_output} 2>/dev/null ${spec_output} ${map_output} : ${athr_output} ${intc_parse} ${ubch_parse} ${3dmk_parse} \ - ${gbch_parse} build/combine-specs.js build/combine-util.js build/util.js + ${gbch_parse} ${psmk_parse} build/combine-specs.js build/combine-util.js build/util.js ${node} build/combine-specs.js ${spec_output} ${map_output} \ - ${athr_output} ${ubch_parse} ${3dmk_parse} ${gbch_parse} ${intc_parse} + ${athr_output} ${ubch_parse} ${3dmk_parse} ${gbch_parse} ${psmk_parse} ${intc_parse} ${athr_output} : ${athr_input} build/gen-specs.js ${node} build/gen-specs.js ${athr_folder} ${athr_output} @@ -118,16 +118,20 @@ ${3dmk_parse} : ${3dmk_scrape} build/3dmark-parse.js ${node} build/3dmark-parse.js ${3dmk_scrape} ${3dmk_parse} ${gbch_scrape} : + @echo "Downloading Geekbench data..." ${curl} ${gbch_cpus} 'https://browser.geekbench.com/processor-benchmarks' ${curl} ${gbch_gpus_opencl} 'https://browser.geekbench.com/opencl-benchmarks' ${curl} ${gbch_gpus_vulkan} 'https://browser.geekbench.com/vulkan-benchmarks' + @echo "Geekbench data downloaded." # MAYBE: an implicit rule for -parse.json ${gbch_parse} : ${gbch_scrape} build/geekbench-parse.js ${node} build/geekbench-parse.js ${gbch_scrape} ${gbch_parse} ${psmk_scrape} : + @echo "Downloading PassMark GPU data..." ${curl} ${psmk_gpus} 'https://www.videocardbenchmark.net/high_end_gpus.html' + @echo "PassMark GPU data download complete." ${psmk_parse} : ${psmk_scrape} build/passmark-parse.js ${node} build/passmark-parse.js ${psmk_scrape} ${psmk_parse} @@ -146,6 +150,6 @@ clean-nonet: rm -f ${css_output} ${js_output} ${sw_output} \ ${spec_output} ${map_output} ${intc_parse} \ ${ubch_parse} ${3dmk_parse} ${gbch_parse} \ - ${athr_output} + ${psmk_parse} ${athr_output} .PHONY: development production test clean clean-nonet watch diff --git a/build/passmark-parse.js b/build/passmark-parse.js index e69de29b..52d06b41 100644 --- a/build/passmark-parse.js +++ b/build/passmark-parse.js @@ -0,0 +1,58 @@ +console.log(' find meeeeee'); + +const fs = require('fs'); +const cheerio = require('cheerio'); +const _ = require('lodash'); +const util = require('./util'); + +const parse = (path, partType, benchmarkType) => { + const $ = cheerio.load(fs.readFileSync(path, 'utf8')); + // i fucking hate jQuery + const rawData = $('div#mark.main div.chart_body ul.chartlist li') + .map((i, el) => { + const name = $(el).find('span.prdname').text(); + const score = +(_.trim($(el).find('span.count').text()).replace(',','')); + console.log(name); + console.log(score); + return { name, score }; + }).get(); + // c => c.score sometimes gets rid of new GPUs which are listed, but + // whose score is displayed as "0" (this is good) + if(partType == "gpu"){ + const niceData = rawData.filter(c => c.score).map(c => ({ + combineMetadata: { + matcherInfo: { + name: c.name, + type: partType, + source: 'psmk', + }, + }, + data: { + [`PassMark ${benchmarkType} Score`]: c.score, + }, + })); + return niceData; + }else { + const niceData = rawData.filter(c => c.score).map(c => ({ + combineMetadata: { + matcherInfo: { + name: c.name, + type: partType, + source: 'psmk', + }, + }, + data: { + [`PassMark ${benchmarkType} Score`]: c.score, + }, + })); + return niceData; + } +} + +const [gpuPath, outPath] = process.argv.slice(2); +console.log(process.argv.slice(2)); +util.writeJSON(outPath, + ( + parse(gpuPath, 'gpu', 'Graphics') + ) +); diff --git a/src/js/row-data.js b/src/js/row-data.js index d1643db3..d098eb08 100755 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -195,7 +195,7 @@ module.exports.sections = [ processor: types.numberUp, }, { - name: 'PassMark Score', + name: 'PassMark Graphics Score', processor: types.numberUp, }, ], From 3fed11485900492c19b559c4cc92b16ed1311a70 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 18 Nov 2024 20:53:36 +0000 Subject: [PATCH 18/41] add intel gpu benchmarks --- build/combine-util.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/build/combine-util.js b/build/combine-util.js index 8976cd4f..cb61339e 100755 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -86,6 +86,18 @@ const combineUtil = { } const series = [ + // Intel Arc + { + nameTest: /^(\(R\).)?Arc(\(TM\))?.A[0-9]{3}(.Graphics)?$/i, + brand: 'intel', + type: 'gpu', + parser: () => { + console.log(hints.cleanName); + console.log(hints.cleanName.replace('(R)-','').replace('(TM)','').replace('-Graphics','')); + return hints.cleanName.replace('(r)','').replace('(tm)',''); + }, + // Intel(R) Arc(TM) A770 Graphics + }, // RX { nameTest: /^(Pro.)?R[579X]-\d{3,4}(?!.*[Ll]aptop).(XT)?(XTX)?$/i, @@ -99,10 +111,11 @@ const combineUtil = { }, // RTX / GTX { - nameTest: /^Geforce.[RG]TX.[0-9]{4}(.Ti)?\s*$/i, + nameTest: /^Geforce.[RG]TX.[0-9]{4}(.Ti)?(.SUPER)?(.D)?(.Max.Q)?\s*$/i, brand: 'nvidia', type: 'gpu', parser: () => { + //3d mark has max-q like `with Max-Q Design` return hints.cleanName; }, }, From d1bbfd95ea113a45fd34352a2f8b543175a638dd Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 18 Nov 2024 20:53:49 +0000 Subject: [PATCH 19/41] geekbench opencl --- build/geekbench-parse.js | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js index f2b1bc20..58140665 100755 --- a/build/geekbench-parse.js +++ b/build/geekbench-parse.js @@ -70,9 +70,27 @@ const gpuParse = (inPath) => { }).get()) } +const gpuParse2 = (inPath) => { + const $ = cheerio.load(fs.readFileSync(inPath, 'utf8')); + return _.flatten($('.table.benchmark-chart-table tbody').map((i, el) => { + switch (i) { + case 0: + return parse(el, 'OpenCl', 'gpu'); + break; + default: + console.log('WARNING: More than one geekbench tables! Their site must have changed!'); + return []; + // fuck it just put 'em everywhere + break; + } + }).get()) +} + util.writeJSON(outPath, cpuParse(cpuPath).concat( - gpuParse(gpuPath) + gpuParse(gpuPath).concat( + gpuParse2(gpuPath2) + ) ) ); From 8e492eccf3fc77613e91e844a0f5d740115ecc7b Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Fri, 22 Nov 2024 18:04:26 +0000 Subject: [PATCH 20/41] more benchmark data --- build/combine-util.js | 90 +++++++++++++++++++++++++++++++++++----- build/geekbench-parse.js | 4 +- 2 files changed, 82 insertions(+), 12 deletions(-) diff --git a/build/combine-util.js b/build/combine-util.js index cb61339e..d0c7a32c 100755 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -85,6 +85,8 @@ const combineUtil = { hints.type = hints.type.toLowerCase(); } + + const series = [ // Intel Arc { @@ -92,31 +94,71 @@ const combineUtil = { brand: 'intel', type: 'gpu', parser: () => { - console.log(hints.cleanName); - console.log(hints.cleanName.replace('(R)-','').replace('(TM)','').replace('-Graphics','')); - return hints.cleanName.replace('(r)','').replace('(tm)',''); + return hints.cleanName.replace('(R)-','').replace('(TM)','').replace('-Graphics',''); }, // Intel(R) Arc(TM) A770 Graphics }, // RX { - nameTest: /^(Pro.)?R[579X]-\d{3,4}(?!.*[Ll]aptop).(XT)?(XTX)?$/i, + nameTest: /^(Pro.)?RX-(\(TM\)-)?\d{3,4}(?!.*[Ll]aptop)(.XT)?(.XTX)?$/i, brand: 'amd', type: 'gpu', parser: () => { - // console.log(hints.cleanName) + if(hints.cleanName.includes("Radeon")){ + return hints.cleanName; + } return `Radeon-${hints.cleanName}`; - return hints.cleanName; }, }, // RTX / GTX { - nameTest: /^Geforce.[RG]TX.[0-9]{4}(.Ti)?(.SUPER)?(.D)?(.Max.Q)?\s*$/i, + nameTest: /^(GeForce.)?[RG]TX.([a-z])?[0-9]{3,4}(M)?(.Ti)?(.SUPER)?(.D)?(.Max.Q)?(.(\()?Mobile(\))?)?(.(\()?Laptop.GPU(\))?)?(.Ada.Generation)?\s*$/i, brand: 'nvidia', type: 'gpu', parser: () => { - //3d mark has max-q like `with Max-Q Design` - return hints.cleanName; + return hints.cleanName.replace("(Mobile)","Mobile").replace("Laptop-GPU","Mobile"); + }, + }, + // passmark max-q- geekbench sometimes too + { + nameTest: /^(GeForce.)?[RG]TX.[0-9]{3,4}(M)?(.Ti)?(.Super)?(.D)?(.with.Max.Q.Design)\s*$/i, + brand: 'nvidia', + type: 'gpu', + parser: () => { + //passmark has max-q like `with Max-Q Design` + return hints.cleanName.replace('with-Max-Q-Design',"Max-Q"); + }, + }, + // Titans + { + nameTest: /^(NVIDIA)?(GeForce)?(.[RG]TX)?TITAN(.[a-z]*)?/i, + brand: 'nvidia', + type: 'gpu', + parser: () => { + if(hints.cleanName.includes("Xp")){ + console.log(hints); + console.log(hints.cleanName.replace(/titan/i,"TITAN")) + } + return hints.cleanName.replace(/titan/i,"TITAN"); + } + }, + // 3DMark special GTX + { + nameTest: /^Geforce.[0-9]{3,4}(M)?(.Ti)?(.SUPER)?(.D)?(.Max.Q)?\s*$/i, + brand: 'nvidia', + type: 'gpu', + parser: () => { + return hints.cleanName.replace('GeForce-', 'GeForce-GTX-'); + }, + }, + // Quadro + { + nameTest: /^Quadro/i, + brand: 'nvidia', + type: 'gpu', + parser: () => { + //passmark has max-q like `with Max-Q Design` + return hints.cleanName.replace('with-Max-Q-Design',"Max-Q"); }, }, // Vega @@ -131,6 +173,19 @@ const combineUtil = { `RX-Vega-${num}`; }, }, + // Radeon R9/7/5 + { + nameTest: /^(Radeon.)?R(5|7|8|9)/i, + brand: 'amd', + type: 'gpu', + parser: () => { + + if(hints.cleanName.includes("Radeon")){ + return hints.cleanName.replace("Fury", "FURY"); + } + return `Radeon-${hints.cleanName.replace("Fury", "FURY")}`; + }, + }, // Radeon VII { nameTest: /radeon.vii\s*$/i, @@ -141,7 +196,7 @@ const combineUtil = { }, // HD { - nameTest: /HD-.*\d{4}(-|$)/, + nameTest: /^(Radeon.)?HD-.*\d{4}(-|$)/, brand: 'amd', type: 'gpu', parser: () => { @@ -178,6 +233,15 @@ const combineUtil = { return hints.cleanName.replace('Ryzen-TR-', ''); } }, + // Epyc + { + nameTest: /^Epyc/i, + brand: 'amd', + type: 'cpu', + parser: () => { + return hints.cleanName.replace('EPYC-', 'Epyc-'); + } + }, // simple Intel { nameTest: /^(Pentium|Core|Xeon|Celeron|Atom|core)/, @@ -234,8 +298,14 @@ const combineUtil = { switch (compatibleSeries.length) { case 0: + // if(hints.cleanName.includes("Titan-Xp")){ + // console.log(hints); + // } return false; case 1: + // if(hints.cleanName.includes("Epyc")){ + // console.log(hints); + // } return compatibleSeries[0].parser(); default: console.error(`Multiple series matched third party ${hints.name}: ${compatibleSeries.map(c => c.nameTest)}`); diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js index 58140665..5855e372 100755 --- a/build/geekbench-parse.js +++ b/build/geekbench-parse.js @@ -59,7 +59,7 @@ const gpuParse = (inPath) => { return _.flatten($('.table.benchmark-chart-table tbody').map((i, el) => { switch (i) { case 0: - return parse(el, 'Vulkan', 'gpu'); + return parse(el, 'OpenCl', 'gpu'); break; default: console.log('WARNING: More than one geekbench tables! Their site must have changed!'); @@ -75,7 +75,7 @@ const gpuParse2 = (inPath) => { return _.flatten($('.table.benchmark-chart-table tbody').map((i, el) => { switch (i) { case 0: - return parse(el, 'OpenCl', 'gpu'); + return parse(el, 'Vulkan', 'gpu'); break; default: console.log('WARNING: More than one geekbench tables! Their site must have changed!'); From 92df81479fcbd434045f94c086c2fe4919d05434 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 5 Dec 2024 17:36:12 +0000 Subject: [PATCH 21/41] some cleanup --- .idea/.gitignore | 8 ------- .idea/magento2plugin.xml | 6 ----- .idea/php.xml | 19 ---------------- .idea/vcs.xml | 6 ----- README.md | 48 +++++++++++++++++++++++++++++++++++----- 5 files changed, 43 insertions(+), 44 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/magento2plugin.xml delete mode 100644 .idea/php.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b81..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/magento2plugin.xml b/.idea/magento2plugin.xml deleted file mode 100644 index 6485e055..00000000 --- a/.idea/magento2plugin.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml deleted file mode 100644 index f324872a..00000000 --- a/.idea/php.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddf..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index a86b6d47..98a9559c 100755 --- a/README.md +++ b/README.md @@ -1,8 +1,46 @@ -This branch identifies missing CPUs +# SpecDB -It also serves as a quick fix for the pcpartrank ranker, as it finds benchmark results for the missing cpus too. +SpecDB is a beautiful and easy-to-use AMD equivalent to Intel's ARK. It's powered by Mithril and Browserify on the front-end, and has no backend (just static files). -run make, then run the python file in tmp, then run make again. +SpecDB (master branch) is live at https://specdb.info/, and the beta branch is deployed at https://beta.specdb.info/ -TODO -* make a file of known missing cpus, so next time its ran we dont miss any of the missing ones alreadp found. (geekbench has a limit on their table so as new cpus get on it, others get pushed off) \ No newline at end of file +Visit our [Discord channel](https://discord.gg/xfVHZAb) to chat with other developers! + +Look at the [wiki](https://github.com/markasoftware/SpecDB/wiki) for more detailed technical info than this readme! + +## Prerequisites + +* Unix-like system. Linux, Mac, and some sort of BSD are all ok. +* GNU `make`: This comes out-of-the-box on Linux and Mac. +* `curl`: Also comes out-of-the-box on Mac and *most* Linux distributions. +* Optionally: [entr](https://bitbucket.org/eradman/entr). This will allow you to automatically rebuild SpecDB when you modify a file. + +## Setting up + +1. Clone the repo — `git clone https://github.com/markasoftware/SpecDB.git` +1. `cd SpecDB` +1. `make` — generate front end resources from source code. This must be run after every change to the source code or specs. + +The `make` command will take a while to run the first time -- it has to do all the scraping as well as installing NPM dependencies. However, `make` is smart (thank [RMS](https://rms.sexy)), so subsequent runs will only build the minimum amount necessary. + +Then, you can view SpecDB at file:///home/markasoftware/whatever/specdb/, which should be good enough for development. + +### Bonus Commands + +* `make watch`: Start auto-rebuild daemon. You still need to manually. Requires [entr](https://bitbucket.org/eradman/entr) +* `make test`: Run unit tests. If any of these fail, do not commit! Fix them! +* `make production`: Build for production. If you previously ran `make` without `production`, run `make clean-nonet` before this. +* `make clean`: Destroy all generated files. This will trigger a rescrape the next time you run `make`. +* `make clean-nonet`: Destroy all generated files that can be re-generated without a network connection (i.e, it will not trigger a re-scrape). + +## Contributing + +Specs are in the specs/ folder. You can probably see how they're done by looking at the files there, but there's more detailed documentation in the [wiki](https://github.com/markasoftware/SpecDB/wiki). Additionally, some rudimentary Node.js scripts which can be used to make part creation a bit easier are there. + +To contribute, please make a fork, and in your fork branch off from master to something like `myusername-bulldozer-cpus`, and when making a pull request, go from that branch to `beta`. + +## BrowserStack + +![BrowserStack logo](https://www.browserstack.com/images/layout/browserstack-logo-600x315.png) + +Browserstack won't let me get their open-source plan without including their logo here. I can tell they really love open source and aren't just trying to get free advertising. Especially since the Browserstack backend/whatever is used to do real-device testing remotely isn't open source. But whatever, they're the only ones who provide decent real-device testing so I guess I have to use them because I don't want to buy Apple shit. \ No newline at end of file From 79b153e1955a4cd4286f8b5022670896d76ac355 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 5 Dec 2024 17:51:58 +0000 Subject: [PATCH 22/41] disable GPU tests for now, will completely re-do --- tests/third-party-matchers.js | 62 +++++++++++++++++------------------ 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/tests/third-party-matchers.js b/tests/third-party-matchers.js index cdc430eb..6605d2c0 100755 --- a/tests/third-party-matchers.js +++ b/tests/third-party-matchers.js @@ -97,34 +97,34 @@ test('3PM: Userbenchmark Untagged Intel', t => { t.end(); }); -test('3PM: RX GPUs', t => { - confirmMatches({ - name: 'RX 580', - }, [ - 'RX-580', 'RX-580-4GiB', 'RX-580-8GiB' - ], [], t, 'RX 580'); - confirmMatches({ - name: 'R9 390', - }, [ 'R9-390' ], [ 'R9-390X' ], t, 'R9 390 (but not X)'); - t.equal(threepm({ - brand: 'amd', - type: 'gpu', - name: 'RX 580 4GB', - }), 'RX-580-4GiB'); - - t.end(); -}); - -test('3PM: HD GPUs', t => { - confirmMatches({ - name: 'HD 7780', - }, [ 'HD-7780' ], [ 'HD-7790' ], t, 'HD 7780'); - confirmMatches({ - name: 'HD 4560', - }, [ 'HD-4560', 'HD-4560-DDR2', 'HD-4560-DDR3'], ['HD-4560-X2', 'HD-4570-EyeFinity'], t, 'HD 4560 matching against variants'); - confirmMatches({ - name: 'HD 4560 (X2)', - }, [ 'HD-4560-X2'], [ 'HD-4560', 'HD-4560-DDR3'], t, 'HD 4560 (X2)'); - - t.end(); -}); +// test('3PM: RX GPUs', t => { +// confirmMatches({ +// name: 'RX 580', +// }, [ +// 'RX-580', 'RX-580-4GiB', 'RX-580-8GiB' +// ], [], t, 'RX 580'); +// confirmMatches({ +// name: 'R9 390', +// }, [ 'R9-390' ], [ 'R9-390X' ], t, 'R9 390 (but not X)'); +// t.equal(threepm({ +// brand: 'amd', +// type: 'gpu', +// name: 'RX 580 4GB', +// }), 'RX-580-4GiB'); + +// t.end(); +// }); + +// test('3PM: HD GPUs', t => { +// confirmMatches({ +// name: 'HD 7780', +// }, [ 'HD-7780' ], [ 'HD-7790' ], t, 'HD 7780'); +// confirmMatches({ +// name: 'HD 4560', +// }, [ 'HD-4560', 'HD-4560-DDR2', 'HD-4560-DDR3'], ['HD-4560-X2', 'HD-4570-EyeFinity'], t, 'HD 4560 matching against variants'); +// confirmMatches({ +// name: 'HD 4560 (X2)', +// }, [ 'HD-4560-X2'], [ 'HD-4560', 'HD-4560-DDR3'], t, 'HD 4560 (X2)'); + +// t.end(); +// }); From 73851fde0f0a44c2d718a35d18ab33677c12f0df Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 5 Dec 2024 18:04:10 +0000 Subject: [PATCH 23/41] fix the tmp/scrape .gitkeep --- tmp/.gitignore | 8 ++++---- tmp/scrape/.gitkeep | 0 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 tmp/scrape/.gitkeep diff --git a/tmp/.gitignore b/tmp/.gitignore index ea81c415..72a101c4 100755 --- a/tmp/.gitignore +++ b/tmp/.gitignore @@ -1,4 +1,4 @@ -* -!.gitignore -!find-missing-intel-cpus.py -!/scrape/.gitignore +*.csv +*.html +*.js +*.json \ No newline at end of file diff --git a/tmp/scrape/.gitkeep b/tmp/scrape/.gitkeep new file mode 100644 index 00000000..e69de29b From e2a0b531505765b523326768684e6307b6ae3cfb Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 7 Dec 2024 21:05:00 +0000 Subject: [PATCH 24/41] Revert "wip?" This reverts commit 4ed9897f97cb0120bf3543408e18f9fe2c21e09a. --- .dir-locals.el | 0 .gitignore | 0 .nvmrc | 0 LICENSE | 0 Makefile | 0 README.md | 0 build/3dmark-parse.js | 0 build/combine-specs.js | 0 build/combine-util.js | 0 build/create-cpu.js | 0 build/create-gpu.js | 0 build/create-spec.js | 0 build/geekbench-parse.js | 0 build/gen-specs.js | 0 build/intel-config.js | 0 build/intel-parse.js | 0 build/userbenchmark-parse.js | 0 build/util.js | 0 package.json | 0 public/.gitignore | 0 public/SpecDB-Markasoftware.png | Bin public/SpecDB-zcskwire2.png | Bin public/_redirects | 0 public/favicon.ico | Bin public/fonts/open-sans-v15-latin-600.woff | Bin public/fonts/open-sans-v15-latin-600.woff2 | Bin public/fonts/open-sans-v15-latin-regular.woff | Bin public/fonts/open-sans-v15-latin-regular.woff2 | Bin public/fonts/quicksand-v7-latin-300.woff | Bin public/fonts/quicksand-v7-latin-300.woff2 | Bin public/fonts/quicksand-v7-latin-regular.woff | Bin public/fonts/quicksand-v7-latin-regular.woff2 | Bin public/humans.txt | 0 public/icon-192.png | Bin public/icon-512.png | Bin public/index.html | 0 public/manifest.json | 0 public/robots.txt | 0 specs/.gitignore | 0 specs/APUs-CUSTOM.yaml | 0 specs/APUs-DESKTOP.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml | 0 specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml | 0 specs/APUs-DESKTOP/Cezanne-inherit.yaml | 0 specs/APUs-DESKTOP/Cezanne.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml | 0 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml | 0 specs/APUs-DESKTOP/Kabini-APU.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml | 0 specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml | 0 specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml | 0 specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml | 0 specs/APUs-DESKTOP/Kaveri-APU.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7800.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7600.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml | 0 specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml | 0 specs/APUs-DESKTOP/Llano-APU.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3300.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3400.yaml | 0 specs/APUs-DESKTOP/Llano/A4-3420.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3500.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3600.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3620.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3650.yaml | 0 specs/APUs-DESKTOP/Llano/A6-3670K.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3800.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3820.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3850.yaml | 0 specs/APUs-DESKTOP/Llano/A8-3870K.yaml | 0 specs/APUs-DESKTOP/Llano/E2-3200.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml | 0 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml | 0 specs/APUs-DESKTOP/Renoir-inherit.yaml | 0 specs/APUs-DESKTOP/Renoir.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml | 0 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml | 0 specs/APUs-DESKTOP/Richland-APU.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6700.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6700T.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6790B.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6790K.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6800B.yaml | 0 specs/APUs-DESKTOP/Richland/A10-6800k.yaml | 0 specs/APUs-DESKTOP/Richland/A4-4000.yaml | 0 specs/APUs-DESKTOP/Richland/A4-4020.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6300.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6300B.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6320.yaml | 0 specs/APUs-DESKTOP/Richland/A4-6320B.yaml | 0 specs/APUs-DESKTOP/Richland/A4-7300.yaml | 0 specs/APUs-DESKTOP/Richland/A4-7300B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6400B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6400K.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6420B.yaml | 0 specs/APUs-DESKTOP/Richland/A6-6420K.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500B.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6500T.yaml | 0 specs/APUs-DESKTOP/Richland/A8-6600K.yaml | 0 specs/APUs-DESKTOP/Trinity-APU.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5700.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5800B.yaml | 0 specs/APUs-DESKTOP/Trinity/A10-5800K.yaml | 0 specs/APUs-DESKTOP/Trinity/A4-5300.yaml | 0 specs/APUs-DESKTOP/Trinity/A4-5300B.yaml | 0 specs/APUs-DESKTOP/Trinity/A6-5400B.yaml | 0 specs/APUs-DESKTOP/Trinity/A6-5400k.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5500.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5500B.yaml | 0 specs/APUs-DESKTOP/Trinity/A8-5600K.yaml | 0 specs/APUs-EMBEDDED.yaml | 0 specs/APUs-MOBILE.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge-M.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml | 0 specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml | 0 specs/APUs-MOBILE/Carrizo-M.yaml | 0 specs/APUs-MOBILE/Carrizo-inherit.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8700B.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8700P.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8730B.yaml | 0 specs/APUs-MOBILE/Carrizo/A10-8780P.yaml | 0 specs/APUs-MOBILE/Carrizo/A12-8800B.yaml | 0 specs/APUs-MOBILE/Carrizo/A12-8830B.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8500B.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8500P.yaml | 0 specs/APUs-MOBILE/Carrizo/A6-8530B.yaml | 0 specs/APUs-MOBILE/Carrizo/A8-8600B.yaml | 0 specs/APUs-MOBILE/Carrizo/A8-8600P.yaml | 0 specs/APUs-MOBILE/Carrizo/FX-8800P.yaml | 0 specs/APUs-MOBILE/Cezanne-M-inherit.yaml | 0 specs/APUs-MOBILE/Cezanne-M.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml | 0 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml | 0 specs/APUs-MOBILE/Kaveri-M.yaml | 0 specs/APUs-MOBILE/Kaveri-inherit.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7300.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7350B.yaml | 0 specs/APUs-MOBILE/Kaveri/A10-7400P.yaml | 0 specs/APUs-MOBILE/Kaveri/A6-7000.yaml | 0 specs/APUs-MOBILE/Kaveri/A6-7050B.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7100.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7150B.yaml | 0 specs/APUs-MOBILE/Kaveri/A8-7200P.yaml | 0 specs/APUs-MOBILE/Kaveri/FX-7500.yaml | 0 specs/APUs-MOBILE/Kaveri/FX-7600P.yaml | 0 specs/APUs-MOBILE/Phoenix-inherit.yaml | 0 specs/APUs-MOBILE/Phoenix.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml | 0 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml | 0 specs/APUs-MOBILE/Raven-Ridge-M.yaml | 0 specs/APUs-MOBILE/Raven-Ridge-inherit.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml | 0 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml | 0 .../APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml | 0 specs/APUs-MOBILE/Renoir-M-inherit.yaml | 0 specs/APUs-MOBILE/Renoir-M.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml | 0 specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml | 0 specs/APUs-MOBILE/Richland-M.yaml | 0 specs/APUs-MOBILE/Trinity-M.yaml | 0 specs/APUs-SERVER.yaml | 0 specs/APUs-ULTRA-MOBILE.yaml | 0 specs/CPUs-DESKTOP.yaml | 0 specs/CPUs-DESKTOP/5K86-inherit.yaml | 0 specs/CPUs-DESKTOP/5K86.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR120.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR133.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR150.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR166.yaml | 0 specs/CPUs-DESKTOP/5K86/K5-PR200.yaml | 0 specs/CPUs-DESKTOP/Agena-inherit.yaml | 0 specs/CPUs-DESKTOP/Agena.yaml | 0 specs/CPUs-DESKTOP/Agena/9100e.yaml | 0 specs/CPUs-DESKTOP/Agena/9150e.yaml | 0 specs/CPUs-DESKTOP/Agena/9350e.yaml | 0 specs/CPUs-DESKTOP/Agena/9450e.yaml | 0 specs/CPUs-DESKTOP/Agena/9500.yaml | 0 specs/CPUs-DESKTOP/Agena/9550.yaml | 0 specs/CPUs-DESKTOP/Agena/9600.yaml | 0 specs/CPUs-DESKTOP/Agena/9600B.yaml | 0 specs/CPUs-DESKTOP/Agena/9600BE.yaml | 0 specs/CPUs-DESKTOP/Agena/9650.yaml | 0 specs/CPUs-DESKTOP/Agena/9750.yaml | 0 specs/CPUs-DESKTOP/Agena/9750B.yaml | 0 specs/CPUs-DESKTOP/Agena/9850.yaml | 0 specs/CPUs-DESKTOP/Agena/9850B.yaml | 0 specs/CPUs-DESKTOP/Agena/9850BE.yaml | 0 specs/CPUs-DESKTOP/Agena/9950BE.yaml | 0 specs/CPUs-DESKTOP/Argon-inherit.yaml | 0 specs/CPUs-DESKTOP/Argon.yaml | 0 specs/CPUs-DESKTOP/Argon/500.yaml | 0 specs/CPUs-DESKTOP/Argon/550.yaml | 0 specs/CPUs-DESKTOP/Argon/600.yaml | 0 specs/CPUs-DESKTOP/Argon/650.yaml | 0 specs/CPUs-DESKTOP/Argon/700.yaml | 0 specs/CPUs-DESKTOP/Barton-inherit.yaml | 0 specs/CPUs-DESKTOP/Barton.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2500.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-2800.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-3000.yaml | 0 specs/CPUs-DESKTOP/Barton/XP-3200.yaml | 0 specs/CPUs-DESKTOP/Brisbane-inherit.yaml | 0 specs/CPUs-DESKTOP/Brisbane.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml | 0 specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml | 0 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml | 0 .../Bristol-Ridge/Excavator-4C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer-inherit.yaml | 0 specs/CPUs-DESKTOP/Bulldozer.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml | 0 specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml | 0 specs/CPUs-DESKTOP/Callisto-inherit.yaml | 0 specs/CPUs-DESKTOP/Callisto.yaml | 0 specs/CPUs-DESKTOP/Callisto/545.yaml | 0 specs/CPUs-DESKTOP/Callisto/550.yaml | 0 specs/CPUs-DESKTOP/Callisto/550BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/555BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/560BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/565BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/570BE.yaml | 0 specs/CPUs-DESKTOP/Callisto/B53.yaml | 0 specs/CPUs-DESKTOP/Callisto/B55.yaml | 0 specs/CPUs-DESKTOP/Callisto/B57.yaml | 0 specs/CPUs-DESKTOP/Callisto/B59.yaml | 0 specs/CPUs-DESKTOP/Callisto/B60.yaml | 0 specs/CPUs-DESKTOP/Carrizo-inherit.yaml | 0 specs/CPUs-DESKTOP/Carrizo.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml | 0 specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml | 0 specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml | 0 specs/CPUs-DESKTOP/Chomper-inherit.yaml | 0 specs/CPUs-DESKTOP/Chomper.yaml | 0 specs/CPUs-DESKTOP/Chomper/200.yaml | 0 specs/CPUs-DESKTOP/Chomper/233.yaml | 0 specs/CPUs-DESKTOP/Chomper/266.yaml | 0 specs/CPUs-DESKTOP/Chomper/300.yaml | 0 specs/CPUs-DESKTOP/Chomper/333.yaml | 0 specs/CPUs-DESKTOP/Chomper/350.yaml | 0 specs/CPUs-DESKTOP/Chomper/366.yaml | 0 specs/CPUs-DESKTOP/Chomper/380.yaml | 0 specs/CPUs-DESKTOP/Chomper/400.yaml | 0 specs/CPUs-DESKTOP/Chomper/450.yaml | 0 specs/CPUs-DESKTOP/Chomper/475.yaml | 0 specs/CPUs-DESKTOP/Chomper/500.yaml | 0 specs/CPUs-DESKTOP/Chomper/533.yaml | 0 specs/CPUs-DESKTOP/Chomper/550.yaml | 0 specs/CPUs-DESKTOP/ClawHammer-inherit.yaml | 0 specs/CPUs-DESKTOP/ClawHammer.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/2800+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3000+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3200+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3400+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3600+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3700+.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml | 0 specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml | 0 specs/CPUs-DESKTOP/Colfax-inherit.yaml | 0 specs/CPUs-DESKTOP/Colfax.yaml | 0 specs/CPUs-DESKTOP/Colfax/2920X.yaml | 0 specs/CPUs-DESKTOP/Colfax/2950X.yaml | 0 specs/CPUs-DESKTOP/Colfax/2970WX.yaml | 0 specs/CPUs-DESKTOP/Colfax/2990WX.yaml | 0 specs/CPUs-DESKTOP/Deneb-inherit.yaml | 0 specs/CPUs-DESKTOP/Deneb.yaml | 0 specs/CPUs-DESKTOP/Deneb/805.yaml | 0 specs/CPUs-DESKTOP/Deneb/810.yaml | 0 specs/CPUs-DESKTOP/Deneb/820.yaml | 0 specs/CPUs-DESKTOP/Deneb/830.yaml | 0 specs/CPUs-DESKTOP/Deneb/900e.yaml | 0 specs/CPUs-DESKTOP/Deneb/905e.yaml | 0 specs/CPUs-DESKTOP/Deneb/910.yaml | 0 specs/CPUs-DESKTOP/Deneb/910e.yaml | 0 specs/CPUs-DESKTOP/Deneb/920.yaml | 0 specs/CPUs-DESKTOP/Deneb/925.yaml | 0 specs/CPUs-DESKTOP/Deneb/940BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/945.yaml | 0 specs/CPUs-DESKTOP/Deneb/955.yaml | 0 specs/CPUs-DESKTOP/Deneb/955BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/965BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/970BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/975BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/980BE.yaml | 0 specs/CPUs-DESKTOP/Deneb/B93.yaml | 0 specs/CPUs-DESKTOP/Deneb/B95.yaml | 0 specs/CPUs-DESKTOP/Deneb/B97.yaml | 0 specs/CPUs-DESKTOP/Deneb/B99.yaml | 0 specs/CPUs-DESKTOP/Heka-inherit.yaml | 0 specs/CPUs-DESKTOP/Heka.yaml | 0 specs/CPUs-DESKTOP/Heka/700e.yaml | 0 specs/CPUs-DESKTOP/Heka/705e.yaml | 0 specs/CPUs-DESKTOP/Heka/710.yaml | 0 specs/CPUs-DESKTOP/Heka/715BE.yaml | 0 specs/CPUs-DESKTOP/Heka/720.yaml | 0 specs/CPUs-DESKTOP/Heka/720BE.yaml | 0 specs/CPUs-DESKTOP/Heka/740BE.yaml | 0 specs/CPUs-DESKTOP/Heka/B73.yaml | 0 specs/CPUs-DESKTOP/Heka/B75.yaml | 0 specs/CPUs-DESKTOP/Heka/B77.yaml | 0 specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Kaveri-inherit.yaml | 0 specs/CPUs-DESKTOP/Kaveri.yaml | 0 specs/CPUs-DESKTOP/Kaveri/450.yaml | 0 specs/CPUs-DESKTOP/Kaveri/840.yaml | 0 specs/CPUs-DESKTOP/Kaveri/840P.yaml | 0 specs/CPUs-DESKTOP/Kaveri/860K.yaml | 0 specs/CPUs-DESKTOP/Kaveri/870K.yaml | 0 specs/CPUs-DESKTOP/Kaveri/880K.yaml | 0 specs/CPUs-DESKTOP/Kuma-inherit.yaml | 0 specs/CPUs-DESKTOP/Kuma.yaml | 0 specs/CPUs-DESKTOP/Kuma/6500BE.yaml | 0 specs/CPUs-DESKTOP/Kuma/7450.yaml | 0 specs/CPUs-DESKTOP/Kuma/7550.yaml | 0 specs/CPUs-DESKTOP/Kuma/7750BE.yaml | 0 specs/CPUs-DESKTOP/Kuma/7850BE.yaml | 0 specs/CPUs-DESKTOP/Lima-inherit.yaml | 0 specs/CPUs-DESKTOP/Lima.yaml | 0 specs/CPUs-DESKTOP/Lima/2650E.yaml | 0 specs/CPUs-DESKTOP/Lima/2850E.yaml | 0 specs/CPUs-DESKTOP/Lima/3500+.yaml | 0 specs/CPUs-DESKTOP/Lima/3800+.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1640.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1640B.yaml | 0 specs/CPUs-DESKTOP/Lima/LE-1660.yaml | 0 specs/CPUs-DESKTOP/Little-Foot.yaml | 0 specs/CPUs-DESKTOP/Little-Foot/266.yaml | 0 specs/CPUs-DESKTOP/Little-Foot/300.yaml | 0 specs/CPUs-DESKTOP/Llano-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Llano-inherit.yaml | 0 specs/CPUs-DESKTOP/Llano.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml | 0 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml | 0 specs/CPUs-DESKTOP/Manchester-inherit.yaml | 0 specs/CPUs-DESKTOP/Manchester.yaml | 0 specs/CPUs-DESKTOP/Manchester/3200+.yaml | 0 specs/CPUs-DESKTOP/Manchester/3500+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Matisse-inherit.yaml | 0 specs/CPUs-DESKTOP/Matisse.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml | 0 specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml | 0 specs/CPUs-DESKTOP/Model-6-inherit.yaml | 0 specs/CPUs-DESKTOP/Model-6.yaml | 0 specs/CPUs-DESKTOP/Model-6/166.yaml | 0 specs/CPUs-DESKTOP/Model-6/200.yaml | 0 specs/CPUs-DESKTOP/Model-6/233.yaml | 0 specs/CPUs-DESKTOP/Newcastle-inherit.yaml | 0 specs/CPUs-DESKTOP/Newcastle.yaml | 0 specs/CPUs-DESKTOP/Newcastle/2800+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3000+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3000+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3200+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3200+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3300+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3400+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3400+754.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3500+.yaml | 0 specs/CPUs-DESKTOP/Newcastle/3800+.yaml | 0 specs/CPUs-DESKTOP/Orion.yaml | 0 specs/CPUs-DESKTOP/Orion/1000.yaml | 0 specs/CPUs-DESKTOP/Orion/900.yaml | 0 specs/CPUs-DESKTOP/Orion/950.yaml | 0 specs/CPUs-DESKTOP/Orleans-inherit.yaml | 0 specs/CPUs-DESKTOP/Orleans.yaml | 0 specs/CPUs-DESKTOP/Orleans/3000+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3200+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml | 0 specs/CPUs-DESKTOP/Orleans/3500+.yaml | 0 specs/CPUs-DESKTOP/Orleans/3800+.yaml | 0 specs/CPUs-DESKTOP/Orleans/4000+.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1600.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1620.yaml | 0 specs/CPUs-DESKTOP/Orleans/LE-1640.yaml | 0 specs/CPUs-DESKTOP/Palomino-inherit.yaml | 0 specs/CPUs-DESKTOP/Palomino.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1500.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1600.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1700.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1800.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-1900.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Palomino/XP-2100.yaml | 0 specs/CPUs-DESKTOP/Piledriver-inherit.yaml | 0 specs/CPUs-DESKTOP/Piledriver.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml | 0 specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml | 0 specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml | 0 specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml | 0 .../Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml | 0 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml | 0 .../CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml | 0 .../Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml | 0 .../Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml | 0 specs/CPUs-DESKTOP/Pluto-inherit.yaml | 0 specs/CPUs-DESKTOP/Pluto.yaml | 0 specs/CPUs-DESKTOP/Pluto/550.yaml | 0 specs/CPUs-DESKTOP/Pluto/600.yaml | 0 specs/CPUs-DESKTOP/Pluto/650.yaml | 0 specs/CPUs-DESKTOP/Pluto/700.yaml | 0 specs/CPUs-DESKTOP/Pluto/750.yaml | 0 specs/CPUs-DESKTOP/Pluto/800.yaml | 0 specs/CPUs-DESKTOP/Pluto/850.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/620.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/630.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/635.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/640.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/645.yaml | 0 specs/CPUs-DESKTOP/Propus-Athlon/650.yaml | 0 specs/CPUs-DESKTOP/Propus-inherit.yaml | 0 specs/CPUs-DESKTOP/Propus.yaml | 0 specs/CPUs-DESKTOP/Propus/840.yaml | 0 specs/CPUs-DESKTOP/Propus/850.yaml | 0 specs/CPUs-DESKTOP/Rana-inherit.yaml | 0 specs/CPUs-DESKTOP/Rana.yaml | 0 specs/CPUs-DESKTOP/Rana/400e.yaml | 0 specs/CPUs-DESKTOP/Rana/405e.yaml | 0 specs/CPUs-DESKTOP/Rana/415e.yaml | 0 specs/CPUs-DESKTOP/Rana/420e.yaml | 0 specs/CPUs-DESKTOP/Rana/425.yaml | 0 specs/CPUs-DESKTOP/Rana/425e.yaml | 0 specs/CPUs-DESKTOP/Rana/435.yaml | 0 specs/CPUs-DESKTOP/Rana/440.yaml | 0 specs/CPUs-DESKTOP/Rana/445.yaml | 0 specs/CPUs-DESKTOP/Rana/450.yaml | 0 specs/CPUs-DESKTOP/Rana/455.yaml | 0 specs/CPUs-DESKTOP/Rana/460.yaml | 0 specs/CPUs-DESKTOP/Raphael-inherit.yaml | 0 specs/CPUs-DESKTOP/Raphael.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml | 0 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/215.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/220.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/240.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/245.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/255.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/260.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/265.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/270.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/280.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml | 0 specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron/180.yaml | 0 specs/CPUs-DESKTOP/Regor-Sempron/190.yaml | 0 specs/CPUs-DESKTOP/Regor-inherit.yaml | 0 specs/CPUs-DESKTOP/Regor.yaml | 0 specs/CPUs-DESKTOP/Regor/511.yaml | 0 specs/CPUs-DESKTOP/Regor/521.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron/240.yaml | 0 specs/CPUs-DESKTOP/Richland-Sempron/250.yaml | 0 specs/CPUs-DESKTOP/Richland-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Richland-inherit.yaml | 0 specs/CPUs-DESKTOP/Richland.yaml | 0 specs/CPUs-DESKTOP/Richland/350.yaml | 0 specs/CPUs-DESKTOP/Richland/370K.yaml | 0 specs/CPUs-DESKTOP/Richland/750.yaml | 0 specs/CPUs-DESKTOP/Richland/760K.yaml | 0 specs/CPUs-DESKTOP/SSA5.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml | 0 specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml | 0 specs/CPUs-DESKTOP/San-Diego-inherit.yaml | 0 specs/CPUs-DESKTOP/San-Diego.yaml | 0 specs/CPUs-DESKTOP/San-Diego/3500+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/3700+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/4000+.yaml | 0 specs/CPUs-DESKTOP/San-Diego/FX_55.yaml | 0 specs/CPUs-DESKTOP/San-Diego/FX_57.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml | 0 specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml | 0 specs/CPUs-DESKTOP/Sargas-inherit.yaml | 0 specs/CPUs-DESKTOP/Sargas.yaml | 0 specs/CPUs-DESKTOP/Sargas/160u.yaml | 0 specs/CPUs-DESKTOP/Sargas/170u.yaml | 0 specs/CPUs-DESKTOP/Sharptooth-inherit.yaml | 0 specs/CPUs-DESKTOP/Sharptooth.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/333.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/400.yaml | 0 specs/CPUs-DESKTOP/Sharptooth/450.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml | 0 specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml | 0 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml | 0 specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml | 0 specs/CPUs-DESKTOP/Thorton-inherit.yaml | 0 specs/CPUs-DESKTOP/Thorton.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2000.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2200.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2400.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-2600.yaml | 0 specs/CPUs-DESKTOP/Thorton/XP-3100.yaml | 0 specs/CPUs-DESKTOP/Thuban-inherit.yaml | 0 specs/CPUs-DESKTOP/Thuban.yaml | 0 specs/CPUs-DESKTOP/Thuban/1035T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1045T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1055T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1065T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1075T.yaml | 0 specs/CPUs-DESKTOP/Thuban/1075TBE.yaml | 0 specs/CPUs-DESKTOP/Thuban/1090TBE.yaml | 0 specs/CPUs-DESKTOP/Thuban/1100TBE.yaml | 0 specs/CPUs-DESKTOP/Thunderbird-inherit.yaml | 0 specs/CPUs-DESKTOP/Thunderbird.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1000B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1000C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1100.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1133.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1200B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1200C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1266.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1300.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1333.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1400B.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/1400C.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/600.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/650.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/700.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/750.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/800.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/850.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/900.yaml | 0 specs/CPUs-DESKTOP/Thunderbird/950.yaml | 0 specs/CPUs-DESKTOP/Toledo-inherit.yaml | 0 specs/CPUs-DESKTOP/Toledo.yaml | 0 specs/CPUs-DESKTOP/Toledo/3700+.yaml | 0 specs/CPUs-DESKTOP/Toledo/4000+.yaml | 0 specs/CPUs-DESKTOP/Toledo/FX-60.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Toliman-inherit.yaml | 0 specs/CPUs-DESKTOP/Toliman.yaml | 0 specs/CPUs-DESKTOP/Toliman/8250e.yaml | 0 specs/CPUs-DESKTOP/Toliman/8400.yaml | 0 specs/CPUs-DESKTOP/Toliman/8450.yaml | 0 specs/CPUs-DESKTOP/Toliman/8450e.yaml | 0 specs/CPUs-DESKTOP/Toliman/8550.yaml | 0 specs/CPUs-DESKTOP/Toliman/8600.yaml | 0 specs/CPUs-DESKTOP/Toliman/8600B.yaml | 0 specs/CPUs-DESKTOP/Toliman/8650.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750B.yaml | 0 specs/CPUs-DESKTOP/Toliman/8750BE.yaml | 0 specs/CPUs-DESKTOP/Toliman/8850.yaml | 0 specs/CPUs-DESKTOP/Trinity-Sempron.yaml | 0 specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml | 0 specs/CPUs-DESKTOP/Trinity-inherit.yaml | 0 specs/CPUs-DESKTOP/Trinity.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml | 0 specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml | 0 specs/CPUs-DESKTOP/Valencia/4226.yaml | 0 specs/CPUs-DESKTOP/Valencia/4228HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4230HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4234.yaml | 0 specs/CPUs-DESKTOP/Valencia/4238.yaml | 0 specs/CPUs-DESKTOP/Valencia/4240.yaml | 0 specs/CPUs-DESKTOP/Valencia/4256EE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4274HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4276HE.yaml | 0 specs/CPUs-DESKTOP/Valencia/4280.yaml | 0 specs/CPUs-DESKTOP/Valencia/4284.yaml | 0 specs/CPUs-DESKTOP/Venice-inherit.yaml | 0 specs/CPUs-DESKTOP/Venice.yaml | 0 specs/CPUs-DESKTOP/Venice/1500+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3000+.yaml | 0 specs/CPUs-DESKTOP/Venice/3000+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3200+.yaml | 0 specs/CPUs-DESKTOP/Venice/3200+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3400+.yaml | 0 specs/CPUs-DESKTOP/Venice/3400+754.yaml | 0 specs/CPUs-DESKTOP/Venice/3500+.yaml | 0 specs/CPUs-DESKTOP/Venice/3800+.yaml | 0 specs/CPUs-DESKTOP/Vermeer-inherit.yaml | 0 specs/CPUs-DESKTOP/Vermeer.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml | 0 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven-inherit.yaml | 0 specs/CPUs-DESKTOP/Whitehaven.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1900X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1920X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/1950X.yaml | 0 specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml | 0 specs/CPUs-DESKTOP/Winchester-inherit.yaml | 0 specs/CPUs-DESKTOP/Winchester.yaml | 0 specs/CPUs-DESKTOP/Winchester/3000+.yaml | 0 specs/CPUs-DESKTOP/Winchester/3200+.yaml | 0 specs/CPUs-DESKTOP/Winchester/3500+.yaml | 0 specs/CPUs-DESKTOP/Windsor-inherit.yaml | 0 specs/CPUs-DESKTOP/Windsor.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-62.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-70.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-72.yaml | 0 specs/CPUs-DESKTOP/Windsor/FX-74.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml | 0 specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml | 0 specs/CPUs-DESKTOP/Zosma-inherit.yaml | 0 specs/CPUs-DESKTOP/Zosma.yaml | 0 specs/CPUs-DESKTOP/Zosma/650T.yaml | 0 specs/CPUs-DESKTOP/Zosma/840T.yaml | 0 specs/CPUs-DESKTOP/Zosma/960T.yaml | 0 specs/CPUs-DESKTOP/Zosma/960TBE.yaml | 0 specs/CPUs-EMBEDDED.yaml | 0 specs/CPUs-MOBILE.yaml | 0 specs/CPUs-SERVER.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6308.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6320.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6328.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6344.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6348.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6376.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6378.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6380.yaml | 0 specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml | 0 specs/CPUs-SERVER/Barcelona-inherit.yaml | 0 specs/CPUs-SERVER/Barcelona.yaml | 0 specs/CPUs-SERVER/Barcelona/2344HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2346HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2347.yaml | 0 specs/CPUs-SERVER/Barcelona/2347HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2350.yaml | 0 specs/CPUs-SERVER/Barcelona/2350HE.yaml | 0 specs/CPUs-SERVER/Barcelona/2352.yaml | 0 specs/CPUs-SERVER/Barcelona/2354.yaml | 0 specs/CPUs-SERVER/Barcelona/2356.yaml | 0 specs/CPUs-SERVER/Barcelona/2358SE.yaml | 0 specs/CPUs-SERVER/Barcelona/2360SE.yaml | 0 specs/CPUs-SERVER/Barcelona/8346HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8347.yaml | 0 specs/CPUs-SERVER/Barcelona/8347HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8350.yaml | 0 specs/CPUs-SERVER/Barcelona/8350HE.yaml | 0 specs/CPUs-SERVER/Barcelona/8352.yaml | 0 specs/CPUs-SERVER/Barcelona/8354.yaml | 0 specs/CPUs-SERVER/Barcelona/8356.yaml | 0 specs/CPUs-SERVER/Barcelona/8358SE.yaml | 0 specs/CPUs-SERVER/Barcelona/8360SE.yaml | 0 specs/CPUs-SERVER/Budapest-inherit.yaml | 0 specs/CPUs-SERVER/Budapest.yaml | 0 specs/CPUs-SERVER/Budapest/1352.yaml | 0 specs/CPUs-SERVER/Budapest/1354.yaml | 0 specs/CPUs-SERVER/Budapest/1356.yaml | 0 specs/CPUs-SERVER/Delhi-inherit.yaml | 0 specs/CPUs-SERVER/Delhi.yaml | 0 specs/CPUs-SERVER/Delhi/3320EE.yaml | 0 specs/CPUs-SERVER/Delhi/3350HE.yaml | 0 specs/CPUs-SERVER/Delhi/3365.yaml | 0 specs/CPUs-SERVER/Delhi/3380.yaml | 0 specs/CPUs-SERVER/Genoa-inherit.yaml | 0 specs/CPUs-SERVER/Genoa.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9124.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9224.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9254.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9334.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9354.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9454.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9534.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9554.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9634.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9654.yaml | 0 specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml | 0 specs/CPUs-SERVER/Interlagos-inherit.yaml | 0 specs/CPUs-SERVER/Interlagos.yaml | 0 specs/CPUs-SERVER/Interlagos/6204.yaml | 0 specs/CPUs-SERVER/Interlagos/6212.yaml | 0 specs/CPUs-SERVER/Interlagos/6220.yaml | 0 specs/CPUs-SERVER/Interlagos/6230HE.yaml | 0 specs/CPUs-SERVER/Interlagos/6234.yaml | 0 specs/CPUs-SERVER/Interlagos/6238.yaml | 0 specs/CPUs-SERVER/Interlagos/6262HE.yaml | 0 specs/CPUs-SERVER/Interlagos/6272.yaml | 0 specs/CPUs-SERVER/Interlagos/6274.yaml | 0 specs/CPUs-SERVER/Interlagos/6276.yaml | 0 specs/CPUs-SERVER/Interlagos/6278.yaml | 0 specs/CPUs-SERVER/Interlagos/6282SE.yaml | 0 specs/CPUs-SERVER/Interlagos/6284SE.yaml | 0 specs/CPUs-SERVER/Istanbul-inherit.yaml | 0 specs/CPUs-SERVER/Istanbul.yaml | 0 specs/CPUs-SERVER/Istanbul/2419.yaml | 0 specs/CPUs-SERVER/Istanbul/2419EE.yaml | 0 specs/CPUs-SERVER/Istanbul/2423HE.yaml | 0 specs/CPUs-SERVER/Istanbul/2425HE.yaml | 0 specs/CPUs-SERVER/Istanbul/2427.yaml | 0 specs/CPUs-SERVER/Istanbul/2431.yaml | 0 specs/CPUs-SERVER/Istanbul/2435.yaml | 0 specs/CPUs-SERVER/Istanbul/2439SE.yaml | 0 specs/CPUs-SERVER/Istanbul/8419.yaml | 0 specs/CPUs-SERVER/Istanbul/8419EE.yaml | 0 specs/CPUs-SERVER/Istanbul/8423.yaml | 0 specs/CPUs-SERVER/Istanbul/8425HE.yaml | 0 specs/CPUs-SERVER/Istanbul/8431.yaml | 0 specs/CPUs-SERVER/Istanbul/8435.yaml | 0 specs/CPUs-SERVER/Istanbul/8439SE.yaml | 0 specs/CPUs-SERVER/Lisbon-inherit.yaml | 0 specs/CPUs-SERVER/Lisbon.yaml | 0 specs/CPUs-SERVER/Lisbon/4122.yaml | 0 specs/CPUs-SERVER/Lisbon/4130.yaml | 0 specs/CPUs-SERVER/Lisbon/4133.yaml | 0 specs/CPUs-SERVER/Lisbon/4162EE.yaml | 0 specs/CPUs-SERVER/Lisbon/4164EE.yaml | 0 specs/CPUs-SERVER/Lisbon/4170HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4171HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4174HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4176HE.yaml | 0 specs/CPUs-SERVER/Lisbon/4180.yaml | 0 specs/CPUs-SERVER/Lisbon/4184.yaml | 0 specs/CPUs-SERVER/Magny-Cours-inherit.yaml | 0 specs/CPUs-SERVER/Magny-Cours.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6124HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6128.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6128HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6132HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6134.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6136.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6140.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6164HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6166HE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6168.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6172.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6174.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6176.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6176SE.yaml | 0 specs/CPUs-SERVER/Magny-Cours/6180SE.yaml | 0 specs/CPUs-SERVER/Naples-inherit.yaml | 0 specs/CPUs-SERVER/Naples.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7251.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7261.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7281.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7301.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7351.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7351P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7371.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7401.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7401P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7451.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7501.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7551.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7551P.yaml | 0 specs/CPUs-SERVER/Naples/Epyc-7601.yaml | 0 specs/CPUs-SERVER/Rome-inherit.yaml | 0 specs/CPUs-SERVER/Rome.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7232P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7252.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7262.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7272.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7282.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7302.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7302P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7352.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7402.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7402P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7452.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7502.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7502P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7532.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7542.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7552.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7642.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7662.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7702.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7702P.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7742.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F32.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F52.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7F72.yaml | 0 specs/CPUs-SERVER/Rome/Epyc-7H12.yaml | 0 specs/CPUs-SERVER/Seoul-inherit.yaml | 0 specs/CPUs-SERVER/Seoul.yaml | 0 specs/CPUs-SERVER/Seoul/4310HE.yaml | 0 specs/CPUs-SERVER/Seoul/4332HE.yaml | 0 specs/CPUs-SERVER/Seoul/4334.yaml | 0 specs/CPUs-SERVER/Seoul/4340.yaml | 0 specs/CPUs-SERVER/Seoul/4365EE.yaml | 0 specs/CPUs-SERVER/Seoul/4376HE.yaml | 0 specs/CPUs-SERVER/Seoul/4386.yaml | 0 specs/CPUs-SERVER/Shanghai-inherit.yaml | 0 specs/CPUs-SERVER/Shanghai.yaml | 0 specs/CPUs-SERVER/Shanghai/2372HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2373EE.yaml | 0 specs/CPUs-SERVER/Shanghai/2374HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2376HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2377EE.yaml | 0 specs/CPUs-SERVER/Shanghai/2378.yaml | 0 specs/CPUs-SERVER/Shanghai/2379HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2380.yaml | 0 specs/CPUs-SERVER/Shanghai/2381HE.yaml | 0 specs/CPUs-SERVER/Shanghai/2382.yaml | 0 specs/CPUs-SERVER/Shanghai/2384.yaml | 0 specs/CPUs-SERVER/Shanghai/2386SE.yaml | 0 specs/CPUs-SERVER/Shanghai/2387.yaml | 0 specs/CPUs-SERVER/Shanghai/2389.yaml | 0 specs/CPUs-SERVER/Shanghai/2393SE.yaml | 0 specs/CPUs-SERVER/Shanghai/8374HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8376HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8378.yaml | 0 specs/CPUs-SERVER/Shanghai/8379HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8380.yaml | 0 specs/CPUs-SERVER/Shanghai/8381HE.yaml | 0 specs/CPUs-SERVER/Shanghai/8382.yaml | 0 specs/CPUs-SERVER/Shanghai/8384.yaml | 0 specs/CPUs-SERVER/Shanghai/8386SE.yaml | 0 specs/CPUs-SERVER/Shanghai/8387.yaml | 0 specs/CPUs-SERVER/Shanghai/8389.yaml | 0 specs/CPUs-SERVER/Shanghai/8393SE.yaml | 0 specs/CPUs-SERVER/Snowy-Owl-inherit.yaml | 0 specs/CPUs-SERVER/Snowy-Owl.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml | 0 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml | 0 specs/CPUs-SERVER/Suzuka-inherit.yaml | 0 specs/CPUs-SERVER/Suzuka.yaml | 0 specs/CPUs-SERVER/Suzuka/1381.yaml | 0 specs/CPUs-SERVER/Suzuka/1385.yaml | 0 specs/CPUs-SERVER/Suzuka/1389.yaml | 0 specs/CPUs-SERVER/Valencia-inherit.yaml | 0 specs/CPUs-SERVER/Valencia.yaml | 0 specs/CPUs-SERVER/Warsaw-inherit.yaml | 0 specs/CPUs-SERVER/Warsaw.yaml | 0 specs/CPUs-SERVER/Warsaw/6338P.yaml | 0 specs/CPUs-SERVER/Warsaw/6370P.yaml | 0 specs/CPUs-SERVER/Zurich-inherit.yaml | 0 specs/CPUs-SERVER/Zurich.yaml | 0 specs/CPUs-SERVER/Zurich/3250HE.yaml | 0 specs/CPUs-SERVER/Zurich/3260HE.yaml | 0 specs/CPUs-SERVER/Zurich/3280.yaml | 0 specs/Root.yaml | 0 specs/intel/Desktop-CPUs-Intel.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3355.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3355E.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3455.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J3455E.yaml | 0 .../Desktop-Apollo-Lake/Pentium-J4205.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1750.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1800.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1850.yaml | 0 .../Desktop-Bay-Trail/Pentium-J1900.yaml | 0 .../Desktop-Bay-Trail/Pentium-J2850.yaml | 0 .../Desktop-Bay-Trail/Pentium-J2900.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Bloomfield.yaml | 0 .../Desktop-Bloomfield/Core-i7-920.yaml | 0 .../Desktop-Bloomfield/Core-i7-930.yaml | 0 .../Desktop-Bloomfield/Core-i7-940.yaml | 0 .../Desktop-Bloomfield/Core-i7-950.yaml | 0 .../Desktop-Bloomfield/Core-i7-960.yaml | 0 .../Desktop-Bloomfield/Core-i7-965.yaml | 0 .../Desktop-Bloomfield/Core-i7-975.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml | 0 .../Desktop-Braswell/Pentium-J3060.yaml | 0 .../Desktop-Braswell/Pentium-J3160.yaml | 0 .../Desktop-Braswell/Pentium-J3710.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6800K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6850K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6900K.yaml | 0 .../Desktop-Broadwell-E/Core-i7-6950X.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml | 0 .../Desktop-Broadwell/Core-i5-5575R.yaml | 0 .../Desktop-Broadwell/Core-i5-5675C.yaml | 0 .../Desktop-Broadwell/Core-i5-5675R.yaml | 0 .../Desktop-Broadwell/Core-i7-5775C.yaml | 0 .../Desktop-Broadwell/Core-i7-5775R.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10900X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10920X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10940X.yaml | 0 .../Desktop-Cascade-Lake/Core-i9-10980XE.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml | 0 .../Desktop-Cedarmill/Pentium-347.yaml | 0 .../Desktop-Cedarmill/Pentium-352.yaml | 0 .../Desktop-Cedarmill/Pentium-356.yaml | 0 .../Desktop-Cedarmill/Pentium-365.yaml | 0 .../Desktop-Cedarmill/Pentium-631.yaml | 0 .../Desktop-Cedarmill/Pentium-641.yaml | 0 .../Desktop-Cedarmill/Pentium-651.yaml | 0 .../Desktop-Cedarmill/Pentium-661.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml | 0 .../Desktop-Cedarview/Atom-D2500.yaml | 0 .../Desktop-Cedarview/Atom-D2550.yaml | 0 .../Desktop-Cedarview/Atom-D2700.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml | 0 .../Desktop-Clarkdale/Core-i3-530.yaml | 0 .../Desktop-Clarkdale/Core-i3-540.yaml | 0 .../Desktop-Clarkdale/Core-i3-550.yaml | 0 .../Desktop-Clarkdale/Core-i3-560.yaml | 0 .../Desktop-Clarkdale/Core-i5-650.yaml | 0 .../Desktop-Clarkdale/Core-i5-655K.yaml | 0 .../Desktop-Clarkdale/Core-i5-660.yaml | 0 .../Desktop-Clarkdale/Core-i5-661.yaml | 0 .../Desktop-Clarkdale/Core-i5-670.yaml | 0 .../Desktop-Clarkdale/Core-i5-680.yaml | 0 .../Desktop-Clarkdale/Pentium-G6950.yaml | 0 .../Desktop-Clarkdale/Pentium-G6951.yaml | 0 .../Desktop-Clarkdale/Pentium-G6960.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8100.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8100T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8300.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8300T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-8350K.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100F.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9100T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9300.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9300T.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9320.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9350K.yaml | 0 .../Desktop-Coffee-Lake/Core-i3-9350KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8400.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8400T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8500.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8500T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600K.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-8600T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400F.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9400T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500F.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9500T.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600K.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i5-9600T.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8086K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-8700T.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700F.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700K.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i7-9700T.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900K.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900KF.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900KS.yaml | 0 .../Desktop-Coffee-Lake/Core-i9-9900T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4900.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4900T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4920.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4930.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4930T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G4950.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5400.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5400T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5420.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5420T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5500.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5500T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5600.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5600T.yaml | 0 .../Desktop-Coffee-Lake/Pentium-G5620.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml | 0 .../Desktop-Conroe/Core-E4300.yaml | 0 .../Desktop-Conroe/Core-E4400.yaml | 0 .../Desktop-Conroe/Core-E4500.yaml | 0 .../Desktop-Conroe/Core-E4600.yaml | 0 .../Desktop-Conroe/Core-E4700.yaml | 0 .../Desktop-Conroe/Core-E6300.yaml | 0 .../Desktop-Conroe/Core-E6320.yaml | 0 .../Desktop-Conroe/Core-E6400.yaml | 0 .../Desktop-Conroe/Core-E6420.yaml | 0 .../Desktop-Conroe/Core-E6540.yaml | 0 .../Desktop-Conroe/Core-E6550.yaml | 0 .../Desktop-Conroe/Core-E6600.yaml | 0 .../Desktop-Conroe/Core-E6700.yaml | 0 .../Desktop-Conroe/Core-E6750.yaml | 0 .../Desktop-Conroe/Core-E6850.yaml | 0 .../Desktop-Conroe/Core-X6800.yaml | 0 .../Desktop-Conroe/Pentium-220.yaml | 0 .../Desktop-Conroe/Pentium-420.yaml | 0 .../Desktop-Conroe/Pentium-430.yaml | 0 .../Desktop-Conroe/Pentium-440.yaml | 0 .../Desktop-Conroe/Pentium-450.yaml | 0 .../Desktop-Conroe/Pentium-E1200.yaml | 0 .../Desktop-Conroe/Pentium-E1400.yaml | 0 .../Desktop-Conroe/Pentium-E1500.yaml | 0 .../Desktop-Conroe/Pentium-E1600.yaml | 0 .../Desktop-Conroe/Pentium-E2140.yaml | 0 .../Desktop-Conroe/Pentium-E2160.yaml | 0 .../Desktop-Conroe/Pentium-E2180.yaml | 0 .../Desktop-Conroe/Pentium-E2200.yaml | 0 .../Desktop-Conroe/Pentium-E2220.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml | 0 .../Desktop-Crystal-Well/Core-i5-4570R.yaml | 0 .../Desktop-Crystal-Well/Core-i5-4670R.yaml | 0 .../Desktop-Crystal-Well/Core-i7-4770R.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml | 0 .../Desktop-Devils-Canyon/Core-i5-4690K.yaml | 0 .../Desktop-Devils-Canyon/Core-i7-4790K.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Diamondville.yaml | 0 .../Desktop-Diamondville/Atom-230.yaml | 0 .../Desktop-Diamondville/Atom-330.yaml | 0 .../Desktop-Gemini-Lake-Refresh.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml | 0 .../Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J4005.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J4105.yaml | 0 .../Desktop-Gemini-Lake/Pentium-J5005.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml | 0 .../Desktop-Gulftown/Core-i7-970.yaml | 0 .../Desktop-Gulftown/Core-i7-980.yaml | 0 .../Desktop-Gulftown/Core-i7-980X.yaml | 0 .../Desktop-Gulftown/Core-i7-990X.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml | 0 .../Desktop-Haswell-E/Core-i7-5820K.yaml | 0 .../Desktop-Haswell-E/Core-i7-5930K.yaml | 0 .../Desktop-Haswell-E/Core-i7-5960X.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml | 0 .../Desktop-Haswell/Core-i3-4130.yaml | 0 .../Desktop-Haswell/Core-i3-4130T.yaml | 0 .../Desktop-Haswell/Core-i3-4150.yaml | 0 .../Desktop-Haswell/Core-i3-4150T.yaml | 0 .../Desktop-Haswell/Core-i3-4160.yaml | 0 .../Desktop-Haswell/Core-i3-4160T.yaml | 0 .../Desktop-Haswell/Core-i3-4170.yaml | 0 .../Desktop-Haswell/Core-i3-4170T.yaml | 0 .../Desktop-Haswell/Core-i3-4330.yaml | 0 .../Desktop-Haswell/Core-i3-4330T.yaml | 0 .../Desktop-Haswell/Core-i3-4340.yaml | 0 .../Desktop-Haswell/Core-i3-4350.yaml | 0 .../Desktop-Haswell/Core-i3-4350T.yaml | 0 .../Desktop-Haswell/Core-i3-4360.yaml | 0 .../Desktop-Haswell/Core-i3-4360T.yaml | 0 .../Desktop-Haswell/Core-i3-4370.yaml | 0 .../Desktop-Haswell/Core-i3-4370T.yaml | 0 .../Desktop-Haswell/Core-i5-4430.yaml | 0 .../Desktop-Haswell/Core-i5-4430S.yaml | 0 .../Desktop-Haswell/Core-i5-4440.yaml | 0 .../Desktop-Haswell/Core-i5-4440S.yaml | 0 .../Desktop-Haswell/Core-i5-4460.yaml | 0 .../Desktop-Haswell/Core-i5-4460S.yaml | 0 .../Desktop-Haswell/Core-i5-4460T.yaml | 0 .../Desktop-Haswell/Core-i5-4570.yaml | 0 .../Desktop-Haswell/Core-i5-4570S.yaml | 0 .../Desktop-Haswell/Core-i5-4570T.yaml | 0 .../Desktop-Haswell/Core-i5-4590.yaml | 0 .../Desktop-Haswell/Core-i5-4590S.yaml | 0 .../Desktop-Haswell/Core-i5-4590T.yaml | 0 .../Desktop-Haswell/Core-i5-4670.yaml | 0 .../Desktop-Haswell/Core-i5-4670K.yaml | 0 .../Desktop-Haswell/Core-i5-4670S.yaml | 0 .../Desktop-Haswell/Core-i5-4670T.yaml | 0 .../Desktop-Haswell/Core-i5-4690.yaml | 0 .../Desktop-Haswell/Core-i5-4690S.yaml | 0 .../Desktop-Haswell/Core-i5-4690T.yaml | 0 .../Desktop-Haswell/Core-i7-4765T.yaml | 0 .../Desktop-Haswell/Core-i7-4770.yaml | 0 .../Desktop-Haswell/Core-i7-4770K.yaml | 0 .../Desktop-Haswell/Core-i7-4770S.yaml | 0 .../Desktop-Haswell/Core-i7-4770T.yaml | 0 .../Desktop-Haswell/Core-i7-4771.yaml | 0 .../Desktop-Haswell/Core-i7-4785T.yaml | 0 .../Desktop-Haswell/Core-i7-4790.yaml | 0 .../Desktop-Haswell/Core-i7-4790S.yaml | 0 .../Desktop-Haswell/Core-i7-4790T.yaml | 0 .../Desktop-Haswell/Pentium-G1820.yaml | 0 .../Desktop-Haswell/Pentium-G1820T.yaml | 0 .../Desktop-Haswell/Pentium-G1830.yaml | 0 .../Desktop-Haswell/Pentium-G1840.yaml | 0 .../Desktop-Haswell/Pentium-G1840T.yaml | 0 .../Desktop-Haswell/Pentium-G1850.yaml | 0 .../Desktop-Haswell/Pentium-G3220.yaml | 0 .../Desktop-Haswell/Pentium-G3220T.yaml | 0 .../Desktop-Haswell/Pentium-G3240.yaml | 0 .../Desktop-Haswell/Pentium-G3240T.yaml | 0 .../Desktop-Haswell/Pentium-G3250.yaml | 0 .../Desktop-Haswell/Pentium-G3250T.yaml | 0 .../Desktop-Haswell/Pentium-G3258.yaml | 0 .../Desktop-Haswell/Pentium-G3260.yaml | 0 .../Desktop-Haswell/Pentium-G3260T.yaml | 0 .../Desktop-Haswell/Pentium-G3420.yaml | 0 .../Desktop-Haswell/Pentium-G3420T.yaml | 0 .../Desktop-Haswell/Pentium-G3430.yaml | 0 .../Desktop-Haswell/Pentium-G3440.yaml | 0 .../Desktop-Haswell/Pentium-G3440T.yaml | 0 .../Desktop-Haswell/Pentium-G3450.yaml | 0 .../Desktop-Haswell/Pentium-G3450T.yaml | 0 .../Desktop-Haswell/Pentium-G3460.yaml | 0 .../Desktop-Haswell/Pentium-G3460T.yaml | 0 .../Desktop-Haswell/Pentium-G3470.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml | 0 .../Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3210.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3220.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3220T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3225.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3240.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3240T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3245.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3250.yaml | 0 .../Desktop-Ivy-Bridge/Core-i3-3250T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3330.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3330S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3340.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3340S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3350P.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3450.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3450S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3470T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3475S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3550.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3550S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570K.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i5-3570T.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770K.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770S.yaml | 0 .../Desktop-Ivy-Bridge/Core-i7-3770T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1610.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1610T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1620.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1620T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G1630.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2010.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2020.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2020T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2030.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2030T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2100T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2120.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2120T.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2130.yaml | 0 .../Desktop-Ivy-Bridge/Pentium-G2140.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7100.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7100T.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7101E.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7101TE.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7300.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7300T.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7320.yaml | 0 .../Desktop-Kaby-Lake/Core-i3-7350K.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7400.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7400T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7500.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7500T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600K.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7600T.yaml | 0 .../Desktop-Kaby-Lake/Core-i5-7640X.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700K.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7700T.yaml | 0 .../Desktop-Kaby-Lake/Core-i7-7740X.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930E.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3930TE.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G3950.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4560.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4560T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4600.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4600T.yaml | 0 .../Desktop-Kaby-Lake/Pentium-G4620.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Kentsfield.yaml | 0 .../Desktop-Kentsfield/Core-Q6600.yaml | 0 .../Desktop-Kentsfield/Core-Q6700.yaml | 0 .../Desktop-Kentsfield/Core-QX6700.yaml | 0 .../Desktop-Kentsfield/Core-QX6800.yaml | 0 .../Desktop-Kentsfield/Core-QX6850.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml | 0 .../Desktop-Lynnfield/Core-i5-750.yaml | 0 .../Desktop-Lynnfield/Core-i5-750S.yaml | 0 .../Desktop-Lynnfield/Core-i5-760.yaml | 0 .../Desktop-Lynnfield/Core-i7-860.yaml | 0 .../Desktop-Lynnfield/Core-i7-860S.yaml | 0 .../Desktop-Lynnfield/Core-i7-870.yaml | 0 .../Desktop-Lynnfield/Core-i7-870S.yaml | 0 .../Desktop-Lynnfield/Core-i7-875K.yaml | 0 .../Desktop-Lynnfield/Core-i7-880.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml | 0 .../Desktop-Pineview/Atom-D410.yaml | 0 .../Desktop-Pineview/Atom-D425.yaml | 0 .../Desktop-Pineview/Atom-D510.yaml | 0 .../Desktop-Pineview/Atom-D525.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml | 0 .../Desktop-Prescott/Pentium-315.yaml | 0 .../Desktop-Prescott/Pentium-315J.yaml | 0 .../Desktop-Prescott/Pentium-320.yaml | 0 .../Desktop-Prescott/Pentium-325.yaml | 0 .../Desktop-Prescott/Pentium-325J.yaml | 0 .../Desktop-Prescott/Pentium-326.yaml | 0 .../Desktop-Prescott/Pentium-330J.yaml | 0 .../Desktop-Prescott/Pentium-331.yaml | 0 .../Desktop-Prescott/Pentium-335.yaml | 0 .../Desktop-Prescott/Pentium-335J.yaml | 0 .../Desktop-Prescott/Pentium-336.yaml | 0 .../Desktop-Prescott/Pentium-340J.yaml | 0 .../Desktop-Prescott/Pentium-341.yaml | 0 .../Desktop-Prescott/Pentium-345.yaml | 0 .../Desktop-Prescott/Pentium-345J.yaml | 0 .../Desktop-Prescott/Pentium-346.yaml | 0 .../Desktop-Prescott/Pentium-350J.yaml | 0 .../Desktop-Prescott/Pentium-351.yaml | 0 .../Desktop-Prescott/Pentium-355.yaml | 0 .../Desktop-Prescott/Pentium-505.yaml | 0 .../Desktop-Prescott/Pentium-505J.yaml | 0 .../Desktop-Prescott/Pentium-506.yaml | 0 .../Desktop-Prescott/Pentium-511.yaml | 0 .../Desktop-Prescott/Pentium-515.yaml | 0 .../Desktop-Prescott/Pentium-516.yaml | 0 .../Desktop-Prescott/Pentium-517.yaml | 0 .../Desktop-Prescott/Pentium-519.yaml | 0 .../Desktop-Prescott/Pentium-519K.yaml | 0 .../Desktop-Prescott/Pentium-520J.yaml | 0 .../Desktop-Prescott/Pentium-521.yaml | 0 .../Desktop-Prescott/Pentium-524.yaml | 0 .../Desktop-Prescott/Pentium-530J.yaml | 0 .../Desktop-Prescott/Pentium-531.yaml | 0 .../Desktop-Prescott/Pentium-540J.yaml | 0 .../Desktop-Prescott/Pentium-541.yaml | 0 .../Desktop-Prescott/Pentium-550J.yaml | 0 .../Desktop-Prescott/Pentium-551.yaml | 0 .../Desktop-Prescott/Pentium-560J.yaml | 0 .../Desktop-Prescott/Pentium-561.yaml | 0 .../Desktop-Prescott/Pentium-571.yaml | 0 .../Desktop-Prescott/Pentium-620.yaml | 0 .../Desktop-Prescott/Pentium-630.yaml | 0 .../Desktop-Prescott/Pentium-640.yaml | 0 .../Desktop-Prescott/Pentium-650.yaml | 0 .../Desktop-Prescott/Pentium-660.yaml | 0 .../Desktop-Prescott/Pentium-662.yaml | 0 .../Desktop-Prescott/Pentium-670.yaml | 0 .../Desktop-Prescott/Pentium-672.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml | 0 .../Desktop-Presler/Pentium-915.yaml | 0 .../Desktop-Presler/Pentium-920.yaml | 0 .../Desktop-Presler/Pentium-930.yaml | 0 .../Desktop-Presler/Pentium-935.yaml | 0 .../Desktop-Presler/Pentium-940.yaml | 0 .../Desktop-Presler/Pentium-945.yaml | 0 .../Desktop-Presler/Pentium-950.yaml | 0 .../Desktop-Presler/Pentium-955.yaml | 0 .../Desktop-Presler/Pentium-960.yaml | 0 .../Desktop-Presler/Pentium-965.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3820.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml | 0 .../Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2100.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2100T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2102.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2105.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2120.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2120T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2125.yaml | 0 .../Desktop-Sandy-Bridge/Core-i3-2130.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2300.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2310.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2320.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2380P.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2390T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2400.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2400S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2405S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2450P.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2500T.yaml | 0 .../Desktop-Sandy-Bridge/Core-i5-2550K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600K.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2600S.yaml | 0 .../Desktop-Sandy-Bridge/Core-i7-2700K.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G440.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G460.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G465.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G470.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G530.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G530T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G540.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G540T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G550.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G550T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G555.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G620.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G620T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G622.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G630.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G630T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G632.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G640.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G640T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G645.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G645T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G840.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G850.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G860.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G860T.yaml | 0 .../Desktop-Sandy-Bridge/Pentium-G870.yaml | 0 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml | 0 .../Desktop-Skylake/Core-i3-6098P.yaml | 0 .../Desktop-Skylake/Core-i3-6100.yaml | 0 .../Desktop-Skylake/Core-i3-6100T.yaml | 0 .../Desktop-Skylake/Core-i3-6300.yaml | 0 .../Desktop-Skylake/Core-i3-6300T.yaml | 0 .../Desktop-Skylake/Core-i3-6320.yaml | 0 .../Desktop-Skylake/Core-i5-6400.yaml | 0 .../Desktop-Skylake/Core-i5-6400T.yaml | 0 .../Desktop-Skylake/Core-i5-6402P.yaml | 0 .../Desktop-Skylake/Core-i5-6500.yaml | 0 .../Desktop-Skylake/Core-i5-6500T.yaml | 0 .../Desktop-Skylake/Core-i5-6585R.yaml | 0 .../Desktop-Skylake/Core-i5-6600.yaml | 0 .../Desktop-Skylake/Core-i5-6600K.yaml | 0 .../Desktop-Skylake/Core-i5-6600T.yaml | 0 .../Desktop-Skylake/Core-i5-6685R.yaml | 0 .../Desktop-Skylake/Core-i7-6700.yaml | 0 .../Desktop-Skylake/Core-i7-6700K.yaml | 0 .../Desktop-Skylake/Core-i7-6700T.yaml | 0 .../Desktop-Skylake/Core-i7-6785R.yaml | 0 .../Desktop-Skylake/Core-i7-7800X.yaml | 0 .../Desktop-Skylake/Core-i7-7820X.yaml | 0 .../Desktop-Skylake/Core-i7-9800X.yaml | 0 .../Desktop-Skylake/Core-i9-7900X.yaml | 0 .../Desktop-Skylake/Core-i9-7920X.yaml | 0 .../Desktop-Skylake/Core-i9-7940X.yaml | 0 .../Desktop-Skylake/Core-i9-7960X.yaml | 0 .../Desktop-Skylake/Core-i9-7980XE.yaml | 0 .../Desktop-Skylake/Core-i9-9820X.yaml | 0 .../Desktop-Skylake/Core-i9-9900X.yaml | 0 .../Desktop-Skylake/Core-i9-9920X.yaml | 0 .../Desktop-Skylake/Core-i9-9940X.yaml | 0 .../Desktop-Skylake/Core-i9-9960X.yaml | 0 .../Desktop-Skylake/Core-i9-9980XE.yaml | 0 .../Desktop-Skylake/Pentium-G3900.yaml | 0 .../Desktop-Skylake/Pentium-G3900T.yaml | 0 .../Desktop-Skylake/Pentium-G3920.yaml | 0 .../Desktop-Skylake/Pentium-G4400.yaml | 0 .../Desktop-Skylake/Pentium-G4400T.yaml | 0 .../Desktop-Skylake/Pentium-G4500.yaml | 0 .../Desktop-Skylake/Pentium-G4500T.yaml | 0 .../Desktop-Skylake/Pentium-G4520.yaml | 0 .../Desktop-Skylake/Xeon-W-3175X.yaml | 0 .../Desktop-CPUs-Intel/Desktop-Smithfield.yaml | 0 .../Desktop-Smithfield/Pentium-805.yaml | 0 .../Desktop-Smithfield/Pentium-820.yaml | 0 .../Desktop-Smithfield/Pentium-830.yaml | 0 .../Desktop-Smithfield/Pentium-840.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml | 0 .../Desktop-Wolfdale/Core-E7200.yaml | 0 .../Desktop-Wolfdale/Core-E7300.yaml | 0 .../Desktop-Wolfdale/Core-E7400.yaml | 0 .../Desktop-Wolfdale/Core-E7500.yaml | 0 .../Desktop-Wolfdale/Core-E7600.yaml | 0 .../Desktop-Wolfdale/Core-E8190.yaml | 0 .../Desktop-Wolfdale/Core-E8200.yaml | 0 .../Desktop-Wolfdale/Core-E8300.yaml | 0 .../Desktop-Wolfdale/Core-E8400.yaml | 0 .../Desktop-Wolfdale/Core-E8500.yaml | 0 .../Desktop-Wolfdale/Core-E8600.yaml | 0 .../Desktop-Wolfdale/Pentium-E3200.yaml | 0 .../Desktop-Wolfdale/Pentium-E3300.yaml | 0 .../Desktop-Wolfdale/Pentium-E3400.yaml | 0 .../Desktop-Wolfdale/Pentium-E3500.yaml | 0 .../Desktop-Wolfdale/Pentium-E5200.yaml | 0 .../Desktop-Wolfdale/Pentium-E5300.yaml | 0 .../Desktop-Wolfdale/Pentium-E5400.yaml | 0 .../Desktop-Wolfdale/Pentium-E5500.yaml | 0 .../Desktop-Wolfdale/Pentium-E5700.yaml | 0 .../Desktop-Wolfdale/Pentium-E5800.yaml | 0 .../Desktop-Wolfdale/Pentium-E6300.yaml | 0 .../Desktop-Wolfdale/Pentium-E6500.yaml | 0 .../Desktop-Wolfdale/Pentium-E6500K.yaml | 0 .../Desktop-Wolfdale/Pentium-E6600.yaml | 0 .../Desktop-Wolfdale/Pentium-E6700.yaml | 0 .../Desktop-Wolfdale/Pentium-E6800.yaml | 0 .../intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml | 0 .../Desktop-Yorkfield/Core-Q8200.yaml | 0 .../Desktop-Yorkfield/Core-Q8200S.yaml | 0 .../Desktop-Yorkfield/Core-Q8300.yaml | 0 .../Desktop-Yorkfield/Core-Q8400.yaml | 0 .../Desktop-Yorkfield/Core-Q8400S.yaml | 0 .../Desktop-Yorkfield/Core-Q9300.yaml | 0 .../Desktop-Yorkfield/Core-Q9400.yaml | 0 .../Desktop-Yorkfield/Core-Q9400S.yaml | 0 .../Desktop-Yorkfield/Core-Q9450.yaml | 0 .../Desktop-Yorkfield/Core-Q9500.yaml | 0 .../Desktop-Yorkfield/Core-Q9505.yaml | 0 .../Desktop-Yorkfield/Core-Q9505S.yaml | 0 .../Desktop-Yorkfield/Core-Q9550.yaml | 0 .../Desktop-Yorkfield/Core-Q9550S.yaml | 0 .../Desktop-Yorkfield/Core-Q9650.yaml | 0 .../Desktop-Yorkfield/Core-QX9650.yaml | 0 .../Desktop-Yorkfield/Core-QX9770.yaml | 0 .../Desktop-Yorkfield/Core-QX9775.yaml | 0 specs/intel/Embedded-CPUs-Intel.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3930.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3940.yaml | 0 .../Embedded-Apollo-Lake/Atom-E3950.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Arrandale.yaml | 0 .../Embedded-Arrandale/Core-i5-520E.yaml | 0 .../Embedded-Arrandale/Core-i7-620LE.yaml | 0 .../Embedded-Arrandale/Core-i7-620UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml | 0 .../Embedded-Bay-Trail/Atom-E3805.yaml | 0 .../Embedded-Bay-Trail/Atom-E3815.yaml | 0 .../Embedded-Bay-Trail/Atom-E3825.yaml | 0 .../Embedded-Bay-Trail/Atom-E3826.yaml | 0 .../Embedded-Bay-Trail/Atom-E3827.yaml | 0 .../Embedded-Bay-Trail/Atom-E3845.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Braswell.yaml | 0 .../Embedded-Braswell/Atom-E8000.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Broadwell.yaml | 0 .../Embedded-Broadwell/Core-i7-5700EQ.yaml | 0 .../Embedded-Broadwell/Core-i7-5850EQ.yaml | 0 .../Embedded-Broadwell/Xeon-E3-1258LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E3-1278LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2608LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2618LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2628LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2648LV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2658V4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-2699RV4.yaml | 0 .../Embedded-Broadwell/Xeon-E5-4628LV4.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100E.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100HL.yaml | 0 .../Embedded-Coffee-Lake/Core-i3-9100TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i5-9500E.yaml | 0 .../Embedded-Coffee-Lake/Core-i5-9500TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9700E.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9700TE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9850HE.yaml | 0 .../Embedded-Coffee-Lake/Core-i7-9850HL.yaml | 0 .../Embedded-Coffee-Lake/Pentium-G4930E.yaml | 0 .../Embedded-Coffee-Lake/Pentium-G4932E.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2226GE.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2254ME.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2254ML.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2276ME.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2276ML.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2278GE.yaml | 0 .../Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Harpertown.yaml | 0 .../Embedded-Harpertown/Xeon-L5408.yaml | 0 .../intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml | 0 .../Embedded-Haswell/Core-i3-4100E.yaml | 0 .../Embedded-Haswell/Core-i3-4102E.yaml | 0 .../Embedded-Haswell/Core-i3-4110E.yaml | 0 .../Embedded-Haswell/Core-i3-4112E.yaml | 0 .../Embedded-Haswell/Core-i3-4330TE.yaml | 0 .../Embedded-Haswell/Core-i3-4340TE.yaml | 0 .../Embedded-Haswell/Core-i5-4400E.yaml | 0 .../Embedded-Haswell/Core-i5-4402E.yaml | 0 .../Embedded-Haswell/Core-i5-4402EC.yaml | 0 .../Embedded-Haswell/Core-i5-4410E.yaml | 0 .../Embedded-Haswell/Core-i5-4422E.yaml | 0 .../Embedded-Haswell/Core-i5-4570TE.yaml | 0 .../Embedded-Haswell/Core-i7-4700EC.yaml | 0 .../Embedded-Haswell/Core-i7-4700EQ.yaml | 0 .../Embedded-Haswell/Core-i7-4702EC.yaml | 0 .../Embedded-Haswell/Core-i7-4770TE.yaml | 0 .../Embedded-Haswell/Pentium-2000E.yaml | 0 .../Embedded-Haswell/Pentium-2002E.yaml | 0 .../Embedded-Haswell/Pentium-G1820TE.yaml | 0 .../Embedded-Haswell/Pentium-G3320TE.yaml | 0 .../Embedded-Haswell/Xeon-E3-1268LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-1428LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2408LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2418LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2428LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2438LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2608LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2618LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2628LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2648LV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2658AV3.yaml | 0 .../Embedded-Haswell/Xeon-E5-2658V3.yaml | 0 .../Embedded-Haswell/Xeon-E5-4648V3.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml | 0 .../Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml | 0 .../Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml | 0 .../Embedded-Ivy-Bridge/Core-i3-3120ME.yaml | 0 .../Embedded-Ivy-Bridge/Core-i3-3217UE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i5-3610ME.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3517UE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3555LE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3610QE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3612QE.yaml | 0 .../Embedded-Ivy-Bridge/Core-i7-3615QE.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1020E.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1047UE.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-1405V2.yaml | 0 .../Embedded-Ivy-Bridge/Pentium-927UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml | 0 .../Embedded-Jasper-Forest/Pentium-P1053.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC3539.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5509.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5539.yaml | 0 .../Embedded-Jasper-Forest/Xeon-EC5549.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC3518.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC3528.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC5518.yaml | 0 .../Embedded-Jasper-Forest/Xeon-LC5528.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml | 0 .../Embedded-Kaby-Lake/Core-i3-7100E.yaml | 0 .../Embedded-Kaby-Lake/Core-i3-7102E.yaml | 0 .../Embedded-Kaby-Lake/Core-i5-7440EQ.yaml | 0 .../Embedded-Kaby-Lake/Core-i5-7442EQ.yaml | 0 .../Embedded-Kaby-Lake/Core-i7-7820EQ.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml | 0 .../Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml | 0 .../Embedded-Nehalem-EP/Xeon-L5508.yaml | 0 .../Embedded-Nehalem-EP/Xeon-L5518.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Rangeley.yaml | 0 .../Embedded-Rangeley/Atom-C2308.yaml | 0 .../Embedded-Rangeley/Atom-C2316.yaml | 0 .../Embedded-Rangeley/Atom-C2338.yaml | 0 .../Embedded-Rangeley/Atom-C2358.yaml | 0 .../Embedded-Rangeley/Atom-C2508.yaml | 0 .../Embedded-Rangeley/Atom-C2516.yaml | 0 .../Embedded-Rangeley/Atom-C2518.yaml | 0 .../Embedded-Rangeley/Atom-C2538.yaml | 0 .../Embedded-Rangeley/Atom-C2558.yaml | 0 .../Embedded-Rangeley/Atom-C2718.yaml | 0 .../Embedded-Rangeley/Atom-C2738.yaml | 0 .../Embedded-Rangeley/Atom-C2758.yaml | 0 .../Embedded-Sandy-Bridge-EN.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml | 0 .../Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml | 0 .../Embedded-Sandy-Bridge-EP.yaml | 0 .../Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml | 0 .../Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml | 0 .../Embedded-Sandy-Bridge/Core-i3-2310E.yaml | 0 .../Embedded-Sandy-Bridge/Core-i3-2340UE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i5-2515E.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2610UE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2655LE.yaml | 0 .../Embedded-Sandy-Bridge/Core-i7-2715QE.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-807UE.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-827E.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-847E.yaml | 0 .../Embedded-Sandy-Bridge/Pentium-B810E.yaml | 0 .../intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml | 0 .../Embedded-Skylake/Core-i3-6100E.yaml | 0 .../Embedded-Skylake/Core-i3-6100TE.yaml | 0 .../Embedded-Skylake/Core-i3-6102E.yaml | 0 .../Embedded-Skylake/Core-i5-6440EQ.yaml | 0 .../Embedded-Skylake/Core-i5-6442EQ.yaml | 0 .../Embedded-Skylake/Core-i5-6500TE.yaml | 0 .../Embedded-Skylake/Core-i7-6700TE.yaml | 0 .../Embedded-Skylake/Core-i7-6820EQ.yaml | 0 .../Embedded-Skylake/Core-i7-6822EQ.yaml | 0 .../Embedded-Skylake/Pentium-G3900E.yaml | 0 .../Embedded-Skylake/Pentium-G3900TE.yaml | 0 .../Embedded-Skylake/Pentium-G3902E.yaml | 0 .../Embedded-Skylake/Pentium-G4400TE.yaml | 0 .../Embedded-Skylake/Xeon-E3-1268LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1505LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1558LV5.yaml | 0 .../Embedded-Skylake/Xeon-E3-1578LV5.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Stellarton.yaml | 0 .../Embedded-Stellarton/Atom-E645C.yaml | 0 .../Embedded-Stellarton/Atom-E645CT.yaml | 0 .../Embedded-Stellarton/Atom-E665C.yaml | 0 .../Embedded-Stellarton/Atom-E665CT.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E620.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E620T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E640.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E640T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E660.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E660T.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E680.yaml | 0 .../Embedded-Tunnel-Creek/Atom-E680T.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml | 0 .../Embedded-Whiskey-Lake/Core-i3-8145UE.yaml | 0 .../Embedded-Whiskey-Lake/Core-i5-8365UE.yaml | 0 .../Embedded-Whiskey-Lake/Core-i7-8665UE.yaml | 0 .../Embedded-Whiskey-Lake/Pentium-4305UE.yaml | 0 .../Embedded-CPUs-Intel/Embedded-Wolfdale.yaml | 0 .../Embedded-Wolfdale/Xeon-E5240.yaml | 0 .../Embedded-Wolfdale/Xeon-L3014.yaml | 0 .../Embedded-Wolfdale/Xeon-L5238.yaml | 0 specs/intel/Mobile-CPUs-Intel.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml | 0 .../Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml | 0 .../Mobile-Amber-Lake/Pentium-4425Y.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3350.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3350E.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N3450.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N4200.yaml | 0 .../Mobile-Apollo-Lake/Pentium-N4200E.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml | 0 .../Mobile-Arrandale/Core-i3-330E.yaml | 0 .../Mobile-Arrandale/Core-i3-330M.yaml | 0 .../Mobile-Arrandale/Core-i3-330UM.yaml | 0 .../Mobile-Arrandale/Core-i3-350M.yaml | 0 .../Mobile-Arrandale/Core-i3-370M.yaml | 0 .../Mobile-Arrandale/Core-i3-380M.yaml | 0 .../Mobile-Arrandale/Core-i3-380UM.yaml | 0 .../Mobile-Arrandale/Core-i3-390M.yaml | 0 .../Mobile-Arrandale/Core-i5-430M.yaml | 0 .../Mobile-Arrandale/Core-i5-430UM.yaml | 0 .../Mobile-Arrandale/Core-i5-450M.yaml | 0 .../Mobile-Arrandale/Core-i5-460M.yaml | 0 .../Mobile-Arrandale/Core-i5-470UM.yaml | 0 .../Mobile-Arrandale/Core-i5-480M.yaml | 0 .../Mobile-Arrandale/Core-i5-520M.yaml | 0 .../Mobile-Arrandale/Core-i5-520UM.yaml | 0 .../Mobile-Arrandale/Core-i5-540M.yaml | 0 .../Mobile-Arrandale/Core-i5-540UM.yaml | 0 .../Mobile-Arrandale/Core-i5-560M.yaml | 0 .../Mobile-Arrandale/Core-i5-560UM.yaml | 0 .../Mobile-Arrandale/Core-i5-580M.yaml | 0 .../Mobile-Arrandale/Core-i7-610E.yaml | 0 .../Mobile-Arrandale/Core-i7-620LM.yaml | 0 .../Mobile-Arrandale/Core-i7-620M.yaml | 0 .../Mobile-Arrandale/Core-i7-620UM.yaml | 0 .../Mobile-Arrandale/Core-i7-640LM.yaml | 0 .../Mobile-Arrandale/Core-i7-640M.yaml | 0 .../Mobile-Arrandale/Core-i7-640UM.yaml | 0 .../Mobile-Arrandale/Core-i7-660LM.yaml | 0 .../Mobile-Arrandale/Core-i7-660UE.yaml | 0 .../Mobile-Arrandale/Core-i7-660UM.yaml | 0 .../Mobile-Arrandale/Core-i7-680UM.yaml | 0 .../Mobile-Arrandale/Pentium-P4500.yaml | 0 .../Mobile-Arrandale/Pentium-P4505.yaml | 0 .../Mobile-Arrandale/Pentium-P4600.yaml | 0 .../Mobile-Arrandale/Pentium-P6000.yaml | 0 .../Mobile-Arrandale/Pentium-P6100.yaml | 0 .../Mobile-Arrandale/Pentium-P6200.yaml | 0 .../Mobile-Arrandale/Pentium-P6300.yaml | 0 .../Mobile-Arrandale/Pentium-U3400.yaml | 0 .../Mobile-Arrandale/Pentium-U3405.yaml | 0 .../Mobile-Arrandale/Pentium-U3600.yaml | 0 .../Mobile-Arrandale/Pentium-U5400.yaml | 0 .../Mobile-Arrandale/Pentium-U5600.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml | 0 .../Mobile-Bay-Trail/Pentium-A1020.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2805.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2806.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2807.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2808.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2810.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2815.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2820.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2830.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2840.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2910.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2920.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2930.yaml | 0 .../Mobile-Bay-Trail/Pentium-N2940.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3510.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3520.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3530.yaml | 0 .../Mobile-Bay-Trail/Pentium-N3540.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml | 0 .../Mobile-Braswell/Pentium-N3000.yaml | 0 .../Mobile-Braswell/Pentium-N3010.yaml | 0 .../Mobile-Braswell/Pentium-N3050.yaml | 0 .../Mobile-Braswell/Pentium-N3060.yaml | 0 .../Mobile-Braswell/Pentium-N3150.yaml | 0 .../Mobile-Braswell/Pentium-N3160.yaml | 0 .../Mobile-Braswell/Pentium-N3700.yaml | 0 .../Mobile-Braswell/Pentium-N3710.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml | 0 .../Mobile-Broadwell/Core-5Y10.yaml | 0 .../Mobile-Broadwell/Core-5Y10a.yaml | 0 .../Mobile-Broadwell/Core-5Y10c.yaml | 0 .../Mobile-Broadwell/Core-5Y31.yaml | 0 .../Mobile-Broadwell/Core-5Y51.yaml | 0 .../Mobile-Broadwell/Core-5Y70.yaml | 0 .../Mobile-Broadwell/Core-5Y71.yaml | 0 .../Mobile-Broadwell/Core-i3-5005U.yaml | 0 .../Mobile-Broadwell/Core-i3-5010U.yaml | 0 .../Mobile-Broadwell/Core-i3-5015U.yaml | 0 .../Mobile-Broadwell/Core-i3-5020U.yaml | 0 .../Mobile-Broadwell/Core-i3-5157U.yaml | 0 .../Mobile-Broadwell/Core-i5-5200U.yaml | 0 .../Mobile-Broadwell/Core-i5-5250U.yaml | 0 .../Mobile-Broadwell/Core-i5-5257U.yaml | 0 .../Mobile-Broadwell/Core-i5-5287U.yaml | 0 .../Mobile-Broadwell/Core-i5-5300U.yaml | 0 .../Mobile-Broadwell/Core-i5-5350H.yaml | 0 .../Mobile-Broadwell/Core-i5-5350U.yaml | 0 .../Mobile-Broadwell/Core-i7-5500U.yaml | 0 .../Mobile-Broadwell/Core-i7-5550U.yaml | 0 .../Mobile-Broadwell/Core-i7-5557U.yaml | 0 .../Mobile-Broadwell/Core-i7-5600U.yaml | 0 .../Mobile-Broadwell/Core-i7-5650U.yaml | 0 .../Mobile-Broadwell/Core-i7-5700HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5750HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5850HQ.yaml | 0 .../Mobile-Broadwell/Core-i7-5950HQ.yaml | 0 .../Mobile-Broadwell/Pentium-3205U.yaml | 0 .../Mobile-Broadwell/Pentium-3215U.yaml | 0 .../Mobile-Broadwell/Pentium-3755U.yaml | 0 .../Mobile-Broadwell/Pentium-3765U.yaml | 0 .../Mobile-Broadwell/Pentium-3805U.yaml | 0 .../Mobile-Broadwell/Pentium-3825U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml | 0 .../Mobile-Cedarview/Atom-N2600.yaml | 0 .../Mobile-Cedarview/Atom-N2800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml | 0 .../Mobile-Clarksfield/Core-i7-720QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-740QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-820QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-840QM.yaml | 0 .../Mobile-Clarksfield/Core-i7-920XM.yaml | 0 .../Mobile-Clarksfield/Core-i7-940XM.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8100B.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8100H.yaml | 0 .../Mobile-Coffee-Lake/Core-i3-8109U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8257U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8259U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8269U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8279U.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8300H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8400B.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8400H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-8500B.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9300H.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9300HF.yaml | 0 .../Mobile-Coffee-Lake/Core-i5-9400H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8557U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8559U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8569U.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8700B.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8750H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-8850H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9750H.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9750HF.yaml | 0 .../Mobile-Coffee-Lake/Core-i7-9850H.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-8950HK.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-9880H.yaml | 0 .../Mobile-Coffee-Lake/Core-i9-9980HK.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2176M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2186M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2276M.yaml | 0 .../Mobile-Coffee-Lake/Xeon-E-2286M.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml | 0 .../Mobile-Comet-Lake/Core-i3-10110U.yaml | 0 .../Mobile-Comet-Lake/Core-i5-10210U.yaml | 0 .../Mobile-Comet-Lake/Core-i7-10510U.yaml | 0 .../Mobile-Comet-Lake/Core-i7-10710U.yaml | 0 .../Mobile-Comet-Lake/Pentium-5205U.yaml | 0 .../Mobile-Comet-Lake/Pentium-6405U.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4750HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4760HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4770HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4850HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4860HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4870HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4950HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4960HQ.yaml | 0 .../Mobile-Crystal-Well/Core-i7-4980HQ.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Diamondville.yaml | 0 .../Mobile-Diamondville/Atom-N270.yaml | 0 .../Mobile-Diamondville/Atom-N280.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml | 0 .../Mobile-Dothan/Pentium-350.yaml | 0 .../Mobile-Dothan/Pentium-353.yaml | 0 .../Mobile-Dothan/Pentium-360.yaml | 0 .../Mobile-Dothan/Pentium-370.yaml | 0 .../Mobile-Dothan/Pentium-373.yaml | 0 .../Mobile-Dothan/Pentium-380.yaml | 0 .../Mobile-Dothan/Pentium-383.yaml | 0 .../Mobile-Dothan/Pentium-390.yaml | 0 .../Mobile-Dothan/Pentium-715.yaml | 0 .../Mobile-Dothan/Pentium-725.yaml | 0 .../Mobile-Dothan/Pentium-730.yaml | 0 .../Mobile-Dothan/Pentium-733.yaml | 0 .../Mobile-Dothan/Pentium-735.yaml | 0 .../Mobile-Dothan/Pentium-738.yaml | 0 .../Mobile-Dothan/Pentium-740.yaml | 0 .../Mobile-Dothan/Pentium-745.yaml | 0 .../Mobile-Dothan/Pentium-745A.yaml | 0 .../Mobile-Dothan/Pentium-750.yaml | 0 .../Mobile-Dothan/Pentium-753.yaml | 0 .../Mobile-Dothan/Pentium-755.yaml | 0 .../Mobile-Dothan/Pentium-758.yaml | 0 .../Mobile-Dothan/Pentium-760.yaml | 0 .../Mobile-Dothan/Pentium-765.yaml | 0 .../Mobile-Dothan/Pentium-770.yaml | 0 .../Mobile-Dothan/Pentium-773.yaml | 0 .../Mobile-Dothan/Pentium-778.yaml | 0 .../Mobile-Dothan/Pentium-780.yaml | 0 .../Mobile-Gemini-Lake-Refresh.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml | 0 .../Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N4000.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N4100.yaml | 0 .../Mobile-Gemini-Lake/Pentium-N5000.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml | 0 .../Mobile-Haswell/Core-i3-4000M.yaml | 0 .../Mobile-Haswell/Core-i3-4005U.yaml | 0 .../Mobile-Haswell/Core-i3-4010U.yaml | 0 .../Mobile-Haswell/Core-i3-4010Y.yaml | 0 .../Mobile-Haswell/Core-i3-4012Y.yaml | 0 .../Mobile-Haswell/Core-i3-4020Y.yaml | 0 .../Mobile-Haswell/Core-i3-4025U.yaml | 0 .../Mobile-Haswell/Core-i3-4030U.yaml | 0 .../Mobile-Haswell/Core-i3-4030Y.yaml | 0 .../Mobile-Haswell/Core-i3-4100M.yaml | 0 .../Mobile-Haswell/Core-i3-4100U.yaml | 0 .../Mobile-Haswell/Core-i3-4110M.yaml | 0 .../Mobile-Haswell/Core-i3-4120U.yaml | 0 .../Mobile-Haswell/Core-i3-4158U.yaml | 0 .../Mobile-Haswell/Core-i5-4200H.yaml | 0 .../Mobile-Haswell/Core-i5-4200M.yaml | 0 .../Mobile-Haswell/Core-i5-4200U.yaml | 0 .../Mobile-Haswell/Core-i5-4200Y.yaml | 0 .../Mobile-Haswell/Core-i5-4202Y.yaml | 0 .../Mobile-Haswell/Core-i5-4210H.yaml | 0 .../Mobile-Haswell/Core-i5-4210M.yaml | 0 .../Mobile-Haswell/Core-i5-4210U.yaml | 0 .../Mobile-Haswell/Core-i5-4210Y.yaml | 0 .../Mobile-Haswell/Core-i5-4220Y.yaml | 0 .../Mobile-Haswell/Core-i5-4250U.yaml | 0 .../Mobile-Haswell/Core-i5-4258U.yaml | 0 .../Mobile-Haswell/Core-i5-4260U.yaml | 0 .../Mobile-Haswell/Core-i5-4278U.yaml | 0 .../Mobile-Haswell/Core-i5-4288U.yaml | 0 .../Mobile-Haswell/Core-i5-4300M.yaml | 0 .../Mobile-Haswell/Core-i5-4300U.yaml | 0 .../Mobile-Haswell/Core-i5-4300Y.yaml | 0 .../Mobile-Haswell/Core-i5-4302Y.yaml | 0 .../Mobile-Haswell/Core-i5-4308U.yaml | 0 .../Mobile-Haswell/Core-i5-4310M.yaml | 0 .../Mobile-Haswell/Core-i5-4310U.yaml | 0 .../Mobile-Haswell/Core-i5-4330M.yaml | 0 .../Mobile-Haswell/Core-i5-4340M.yaml | 0 .../Mobile-Haswell/Core-i5-4350U.yaml | 0 .../Mobile-Haswell/Core-i5-4360U.yaml | 0 .../Mobile-Haswell/Core-i7-4500U.yaml | 0 .../Mobile-Haswell/Core-i7-4510U.yaml | 0 .../Mobile-Haswell/Core-i7-4550U.yaml | 0 .../Mobile-Haswell/Core-i7-4558U.yaml | 0 .../Mobile-Haswell/Core-i7-4578U.yaml | 0 .../Mobile-Haswell/Core-i7-4600M.yaml | 0 .../Mobile-Haswell/Core-i7-4600U.yaml | 0 .../Mobile-Haswell/Core-i7-4610M.yaml | 0 .../Mobile-Haswell/Core-i7-4610Y.yaml | 0 .../Mobile-Haswell/Core-i7-4650U.yaml | 0 .../Mobile-Haswell/Core-i7-4700HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4700MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4702HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4702MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4710HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4710MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4712HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4712MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4720HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4722HQ.yaml | 0 .../Mobile-Haswell/Core-i7-4800MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4810MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4900MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4910MQ.yaml | 0 .../Mobile-Haswell/Core-i7-4930MX.yaml | 0 .../Mobile-Haswell/Core-i7-4940MX.yaml | 0 .../Mobile-Haswell/Pentium-2950M.yaml | 0 .../Mobile-Haswell/Pentium-2955U.yaml | 0 .../Mobile-Haswell/Pentium-2957U.yaml | 0 .../Mobile-Haswell/Pentium-2961Y.yaml | 0 .../Mobile-Haswell/Pentium-2970M.yaml | 0 .../Mobile-Haswell/Pentium-2980U.yaml | 0 .../Mobile-Haswell/Pentium-2981U.yaml | 0 .../Mobile-Haswell/Pentium-3550M.yaml | 0 .../Mobile-Haswell/Pentium-3556U.yaml | 0 .../Mobile-Haswell/Pentium-3558U.yaml | 0 .../Mobile-Haswell/Pentium-3560M.yaml | 0 .../Mobile-Haswell/Pentium-3560Y.yaml | 0 .../Mobile-Haswell/Pentium-3561Y.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1000G1.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1000G4.yaml | 0 .../Mobile-Ice-Lake/Core-i3-1005G1.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1030G4.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1030G7.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G1.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G4.yaml | 0 .../Mobile-Ice-Lake/Core-i5-1035G7.yaml | 0 .../Mobile-Ice-Lake/Core-i7-1060G7.yaml | 0 .../Mobile-Ice-Lake/Core-i7-1065G7.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3110M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3120M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3130M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3217U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3227U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i3-3229Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3210M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3230M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3317U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3320M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3337U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3339Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3340M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3360M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3380M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3427U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3437U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i5-3439Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3517U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3520M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3537U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3540M.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3610QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3612QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3615QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3630QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3632QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3635QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3667U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3687U.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3689Y.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3720QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3740QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3820QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3840QM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3920XM.yaml | 0 .../Mobile-Ivy-Bridge/Core-i7-3940XM.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1000M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1005M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1007U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1017U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1019Y.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1020M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-1037U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2020M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2030M.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2117U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2127U.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-2129Y.yaml | 0 .../Mobile-Ivy-Bridge/Pentium-A1018.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i5-8305G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8705G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8706G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8709G.yaml | 0 .../Mobile-Kaby-Lake-G/Core-i7-8809G.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i5-8250U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i5-8350U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i7-8550U.yaml | 0 .../Mobile-Kaby-Lake-R/Core-i7-8650U.yaml | 0 .../Mobile-Kaby-Lake-R/Pentium-3867U.yaml | 0 .../Mobile-Kaby-Lake-R/Pentium-4417U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml | 0 .../Mobile-Kaby-Lake/Core-M3-7Y30.yaml | 0 .../Mobile-Kaby-Lake/Core-M3-7Y32.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7020U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7100H.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7100U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7130U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-7167U.yaml | 0 .../Mobile-Kaby-Lake/Core-i3-8130U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7200U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7260U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7267U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7287U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7300HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7300U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7360U.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7440HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7Y54.yaml | 0 .../Mobile-Kaby-Lake/Core-i5-7Y57.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7500U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7560U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7567U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7600U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7660U.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7700HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7820HK.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7820HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7920HQ.yaml | 0 .../Mobile-Kaby-Lake/Core-i7-7Y75.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3865U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3965U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-3965Y.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4410Y.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4415U.yaml | 0 .../Mobile-Kaby-Lake/Pentium-4415Y.yaml | 0 .../Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml | 0 .../Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml | 0 .../Mobile-Lincroft/Atom-Z600.yaml | 0 .../Mobile-Lincroft/Atom-Z615.yaml | 0 .../Mobile-Lincroft/Atom-Z625.yaml | 0 .../Mobile-Lincroft/Atom-Z650.yaml | 0 .../Mobile-Lincroft/Atom-Z670.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml | 0 .../Mobile-Merom/Pentium-T1600.yaml | 0 .../Mobile-Merom/Pentium-T1700.yaml | 0 .../Mobile-Merom/Pentium-T2310.yaml | 0 .../Mobile-Merom/Pentium-T2330.yaml | 0 .../Mobile-Merom/Pentium-T2370.yaml | 0 .../Mobile-Merom/Pentium-T2390.yaml | 0 .../Mobile-Merom/Pentium-T3200.yaml | 0 .../Mobile-Merom/Pentium-T3400.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml | 0 .../Mobile-Penryn/Core-QX9300.yaml | 0 .../Mobile-Penryn/Core-SL9300.yaml | 0 .../Mobile-Penryn/Core-SL9380.yaml | 0 .../Mobile-Penryn/Core-SL9400.yaml | 0 .../Mobile-Penryn/Core-SL9600.yaml | 0 .../Mobile-Penryn/Core-SP9300.yaml | 0 .../Mobile-Penryn/Core-SP9400.yaml | 0 .../Mobile-Penryn/Core-SP9600.yaml | 0 .../Mobile-Penryn/Core-SU3500.yaml | 0 .../Mobile-Penryn/Core-SU9300.yaml | 0 .../Mobile-Penryn/Core-SU9400.yaml | 0 .../Mobile-Penryn/Core-SU9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml | 0 .../Mobile-Penryn/Pentium-722.yaml | 0 .../Mobile-Penryn/Pentium-723.yaml | 0 .../Mobile-Penryn/Pentium-743.yaml | 0 .../Mobile-Penryn/Pentium-763.yaml | 0 .../Mobile-Penryn/Pentium-900.yaml | 0 .../Mobile-Penryn/Pentium-925.yaml | 0 .../Mobile-Penryn/Pentium-SU2300.yaml | 0 .../Mobile-Penryn/Pentium-T3100.yaml | 0 .../Mobile-Penryn/Pentium-T3300.yaml | 0 .../Mobile-Penryn/Pentium-T3500.yaml | 0 .../Mobile-Penryn/Pentium-T4200.yaml | 0 .../Mobile-Penryn/Pentium-T4300.yaml | 0 .../Mobile-Penryn/Pentium-T4400.yaml | 0 .../Mobile-Penryn/Pentium-T4500.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml | 0 .../Mobile-Pineview/Atom-N450.yaml | 0 .../Mobile-Pineview/Atom-N455.yaml | 0 .../Mobile-Pineview/Atom-N470.yaml | 0 .../Mobile-Pineview/Atom-N475.yaml | 0 .../Mobile-Pineview/Atom-N550.yaml | 0 .../Mobile-Pineview/Atom-N570.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2310M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2312M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2328M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2330E.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2330M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2348M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2350M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2357M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2365M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2367M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2370M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2375M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i3-2377M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2410M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2430M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2435M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2450M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2467M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2510E.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2520M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2537M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2540M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i5-2557M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2617M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2620M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2629M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2630QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2635QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2637M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2640M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2649M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2657M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2670QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2675QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2677M.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2710QE.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2720QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2760QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2820QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2860QM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2920XM.yaml | 0 .../Mobile-Sandy-Bridge/Core-i7-2960XM.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-787.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-797.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-807.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-847.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-857.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-867.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-877.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-887.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-957.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-967.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-977.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-987.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-997.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B710.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B720.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B800.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B810.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B815.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B820.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B830.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B840.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B940.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B950.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B960.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B970.yaml | 0 .../Mobile-Sandy-Bridge/Pentium-B980.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Silverthorne.yaml | 0 .../Mobile-Silverthorne/Atom-Z500.yaml | 0 .../Mobile-Silverthorne/Atom-Z510.yaml | 0 .../Mobile-Silverthorne/Atom-Z510P.yaml | 0 .../Mobile-Silverthorne/Atom-Z510PT.yaml | 0 .../Mobile-Silverthorne/Atom-Z515.yaml | 0 .../Mobile-Silverthorne/Atom-Z520.yaml | 0 .../Mobile-Silverthorne/Atom-Z520PT.yaml | 0 .../Mobile-Silverthorne/Atom-Z530.yaml | 0 .../Mobile-Silverthorne/Atom-Z530P.yaml | 0 .../Mobile-Silverthorne/Atom-Z540.yaml | 0 .../Mobile-Silverthorne/Atom-Z550.yaml | 0 .../Mobile-Silverthorne/Atom-Z560.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml | 0 .../Mobile-Skylake/Core-M3-6Y30.yaml | 0 .../Mobile-Skylake/Core-M5-6Y54.yaml | 0 .../Mobile-Skylake/Core-M5-6Y57.yaml | 0 .../Mobile-Skylake/Core-M7-6Y75.yaml | 0 .../Mobile-Skylake/Core-i3-6006U.yaml | 0 .../Mobile-Skylake/Core-i3-6100H.yaml | 0 .../Mobile-Skylake/Core-i3-6100U.yaml | 0 .../Mobile-Skylake/Core-i3-6157U.yaml | 0 .../Mobile-Skylake/Core-i3-6167U.yaml | 0 .../Mobile-Skylake/Core-i5-6200U.yaml | 0 .../Mobile-Skylake/Core-i5-6260U.yaml | 0 .../Mobile-Skylake/Core-i5-6267U.yaml | 0 .../Mobile-Skylake/Core-i5-6287U.yaml | 0 .../Mobile-Skylake/Core-i5-6300HQ.yaml | 0 .../Mobile-Skylake/Core-i5-6300U.yaml | 0 .../Mobile-Skylake/Core-i5-6350HQ.yaml | 0 .../Mobile-Skylake/Core-i5-6360U.yaml | 0 .../Mobile-Skylake/Core-i5-6440HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6500U.yaml | 0 .../Mobile-Skylake/Core-i7-6560U.yaml | 0 .../Mobile-Skylake/Core-i7-6567U.yaml | 0 .../Mobile-Skylake/Core-i7-6600U.yaml | 0 .../Mobile-Skylake/Core-i7-6650U.yaml | 0 .../Mobile-Skylake/Core-i7-6660U.yaml | 0 .../Mobile-Skylake/Core-i7-6700HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6770HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6820HK.yaml | 0 .../Mobile-Skylake/Core-i7-6820HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6870HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6920HQ.yaml | 0 .../Mobile-Skylake/Core-i7-6970HQ.yaml | 0 .../Mobile-Skylake/Pentium-3855U.yaml | 0 .../Mobile-Skylake/Pentium-3955U.yaml | 0 .../Mobile-Skylake/Pentium-4405U.yaml | 0 .../Mobile-Skylake/Pentium-4405Y.yaml | 0 .../Mobile-Skylake/Xeon-E3-1505MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1515MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1535MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1545MV5.yaml | 0 .../Mobile-Skylake/Xeon-E3-1575MV5.yaml | 0 .../intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml | 0 .../Mobile-Whiskey-Lake/Core-i3-8145U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i5-8265U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i5-8365U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i7-8565U.yaml | 0 .../Mobile-Whiskey-Lake/Core-i7-8665U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-4205U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-4305U.yaml | 0 .../Mobile-Whiskey-Lake/Pentium-5405U.yaml | 0 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml | 0 .../Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml | 0 .../Mobile-Yonah/Pentium-T2060.yaml | 0 .../Mobile-Yonah/Pentium-T2080.yaml | 0 .../Mobile-Yonah/Pentium-T2130.yaml | 0 specs/intel/Server-CPUs-Intel.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Avoton.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml | 0 .../Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml | 0 .../intel/Server-CPUs-Intel/Server-Bloomfield.yaml | 0 .../Server-Bloomfield/Xeon-W3520.yaml | 0 .../Server-Bloomfield/Xeon-W3530.yaml | 0 .../Server-Bloomfield/Xeon-W3540.yaml | 0 .../Server-Bloomfield/Xeon-W3550.yaml | 0 .../Server-Bloomfield/Xeon-W3565.yaml | 0 .../Server-Bloomfield/Xeon-W3570.yaml | 0 .../Server-Bloomfield/Xeon-W3580.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml | 0 .../Server-Briarwood/Atom-S1269.yaml | 0 .../Server-Briarwood/Atom-S1279.yaml | 0 .../Server-Briarwood/Atom-S1289.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml | 0 .../Server-Broadwell/Pentium-D1507.yaml | 0 .../Server-Broadwell/Pentium-D1508.yaml | 0 .../Server-Broadwell/Pentium-D1509.yaml | 0 .../Server-Broadwell/Pentium-D1517.yaml | 0 .../Server-Broadwell/Pentium-D1519.yaml | 0 .../Server-Broadwell/Xeon-D-1513N.yaml | 0 .../Server-Broadwell/Xeon-D-1518.yaml | 0 .../Server-Broadwell/Xeon-D-1520.yaml | 0 .../Server-Broadwell/Xeon-D-1521.yaml | 0 .../Server-Broadwell/Xeon-D-1523N.yaml | 0 .../Server-Broadwell/Xeon-D-1527.yaml | 0 .../Server-Broadwell/Xeon-D-1528.yaml | 0 .../Server-Broadwell/Xeon-D-1529.yaml | 0 .../Server-Broadwell/Xeon-D-1531.yaml | 0 .../Server-Broadwell/Xeon-D-1533N.yaml | 0 .../Server-Broadwell/Xeon-D-1537.yaml | 0 .../Server-Broadwell/Xeon-D-1539.yaml | 0 .../Server-Broadwell/Xeon-D-1540.yaml | 0 .../Server-Broadwell/Xeon-D-1541.yaml | 0 .../Server-Broadwell/Xeon-D-1543N.yaml | 0 .../Server-Broadwell/Xeon-D-1548.yaml | 0 .../Server-Broadwell/Xeon-D-1553N.yaml | 0 .../Server-Broadwell/Xeon-D-1557.yaml | 0 .../Server-Broadwell/Xeon-D-1559.yaml | 0 .../Server-Broadwell/Xeon-D-1567.yaml | 0 .../Server-Broadwell/Xeon-D-1571.yaml | 0 .../Server-Broadwell/Xeon-D-1577.yaml | 0 .../Server-Broadwell/Xeon-E3-1265LV4.yaml | 0 .../Server-Broadwell/Xeon-E3-1285LV4.yaml | 0 .../Server-Broadwell/Xeon-E3-1285V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1630V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-1680V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2603V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2609V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2623V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2630LV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2630V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2637V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2640V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2643V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2650LV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2667V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2680V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2683V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2687WV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2690V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2695V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2697AV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2697V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2698V4.yaml | 0 .../Server-Broadwell/Xeon-E5-2699AV4.yaml | 0 .../Server-Broadwell/Xeon-E5-2699V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4610V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4620V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4627V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4640V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4650V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4655V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4660V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4667V4.yaml | 0 .../Server-Broadwell/Xeon-E5-4669V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4809V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4820V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4830V4.yaml | 0 .../Server-Broadwell/Xeon-E7-4850V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8860V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8867V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8870V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8880V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8890V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8891V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8893V4.yaml | 0 .../Server-Broadwell/Xeon-E7-8894V4.yaml | 0 .../Server-CPUs-Intel/Server-Cascade-Lake.yaml | 0 .../Server-Cascade-Lake/Xeon-3204.yaml | 0 .../Server-Cascade-Lake/Xeon-4208.yaml | 0 .../Server-Cascade-Lake/Xeon-4209T.yaml | 0 .../Server-Cascade-Lake/Xeon-4210.yaml | 0 .../Server-Cascade-Lake/Xeon-4214.yaml | 0 .../Server-Cascade-Lake/Xeon-4214Y.yaml | 0 .../Server-Cascade-Lake/Xeon-4215.yaml | 0 .../Server-Cascade-Lake/Xeon-4216.yaml | 0 .../Server-Cascade-Lake/Xeon-5215.yaml | 0 .../Server-Cascade-Lake/Xeon-5215L.yaml | 0 .../Server-Cascade-Lake/Xeon-5215M.yaml | 0 .../Server-Cascade-Lake/Xeon-5217.yaml | 0 .../Server-Cascade-Lake/Xeon-5218.yaml | 0 .../Server-Cascade-Lake/Xeon-5218B.yaml | 0 .../Server-Cascade-Lake/Xeon-5218N.yaml | 0 .../Server-Cascade-Lake/Xeon-5218T.yaml | 0 .../Server-Cascade-Lake/Xeon-5220.yaml | 0 .../Server-Cascade-Lake/Xeon-5220S.yaml | 0 .../Server-Cascade-Lake/Xeon-5220T.yaml | 0 .../Server-Cascade-Lake/Xeon-5222.yaml | 0 .../Server-Cascade-Lake/Xeon-6222V.yaml | 0 .../Server-Cascade-Lake/Xeon-6226.yaml | 0 .../Server-Cascade-Lake/Xeon-6230.yaml | 0 .../Server-Cascade-Lake/Xeon-6230N.yaml | 0 .../Server-Cascade-Lake/Xeon-6230T.yaml | 0 .../Server-Cascade-Lake/Xeon-6234.yaml | 0 .../Server-Cascade-Lake/Xeon-6238.yaml | 0 .../Server-Cascade-Lake/Xeon-6238L.yaml | 0 .../Server-Cascade-Lake/Xeon-6238M.yaml | 0 .../Server-Cascade-Lake/Xeon-6238T.yaml | 0 .../Server-Cascade-Lake/Xeon-6240.yaml | 0 .../Server-Cascade-Lake/Xeon-6240L.yaml | 0 .../Server-Cascade-Lake/Xeon-6240M.yaml | 0 .../Server-Cascade-Lake/Xeon-6240Y.yaml | 0 .../Server-Cascade-Lake/Xeon-6242.yaml | 0 .../Server-Cascade-Lake/Xeon-6244.yaml | 0 .../Server-Cascade-Lake/Xeon-6246.yaml | 0 .../Server-Cascade-Lake/Xeon-6248.yaml | 0 .../Server-Cascade-Lake/Xeon-6252.yaml | 0 .../Server-Cascade-Lake/Xeon-6252N.yaml | 0 .../Server-Cascade-Lake/Xeon-6254.yaml | 0 .../Server-Cascade-Lake/Xeon-6262V.yaml | 0 .../Server-Cascade-Lake/Xeon-8253.yaml | 0 .../Server-Cascade-Lake/Xeon-8256.yaml | 0 .../Server-Cascade-Lake/Xeon-8260.yaml | 0 .../Server-Cascade-Lake/Xeon-8260L.yaml | 0 .../Server-Cascade-Lake/Xeon-8260M.yaml | 0 .../Server-Cascade-Lake/Xeon-8260Y.yaml | 0 .../Server-Cascade-Lake/Xeon-8268.yaml | 0 .../Server-Cascade-Lake/Xeon-8270.yaml | 0 .../Server-Cascade-Lake/Xeon-8276.yaml | 0 .../Server-Cascade-Lake/Xeon-8276L.yaml | 0 .../Server-Cascade-Lake/Xeon-8276M.yaml | 0 .../Server-Cascade-Lake/Xeon-8280.yaml | 0 .../Server-Cascade-Lake/Xeon-8280L.yaml | 0 .../Server-Cascade-Lake/Xeon-8280M.yaml | 0 .../Server-Cascade-Lake/Xeon-9221.yaml | 0 .../Server-Cascade-Lake/Xeon-9222.yaml | 0 .../Server-Cascade-Lake/Xeon-9242.yaml | 0 .../Server-Cascade-Lake/Xeon-9282.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Centerton.yaml | 0 .../Server-Centerton/Atom-S1220.yaml | 0 .../Server-Centerton/Atom-S1240.yaml | 0 .../Server-Centerton/Atom-S1260.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml | 0 .../Server-Clarkdale/Xeon-L3406.yaml | 0 .../intel/Server-CPUs-Intel/Server-Clovertown.yaml | 0 .../Server-Clovertown/Xeon-E5310.yaml | 0 .../Server-Clovertown/Xeon-E5320.yaml | 0 .../Server-Clovertown/Xeon-E5335.yaml | 0 .../Server-Clovertown/Xeon-E5345.yaml | 0 .../Server-Clovertown/Xeon-L5310.yaml | 0 .../Server-Clovertown/Xeon-L5318.yaml | 0 .../Server-Clovertown/Xeon-L5320.yaml | 0 .../Server-Clovertown/Xeon-L5335.yaml | 0 .../Server-Clovertown/Xeon-X5355.yaml | 0 .../Server-Clovertown/Xeon-X5365.yaml | 0 .../intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2124.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2124G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2126G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2134.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2136.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2144G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2146G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2174G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2176G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2186G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2224.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2224G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2226G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2234.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2236.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2244G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2246G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2274G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2276G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2278G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2286G.yaml | 0 .../Server-Coffee-Lake/Xeon-E-2288G.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Conroe.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml | 0 .../Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Denverton.yaml | 0 .../Server-Denverton/Atom-C3308.yaml | 0 .../Server-Denverton/Atom-C3336.yaml | 0 .../Server-Denverton/Atom-C3338.yaml | 0 .../Server-Denverton/Atom-C3508.yaml | 0 .../Server-Denverton/Atom-C3538.yaml | 0 .../Server-Denverton/Atom-C3558.yaml | 0 .../Server-Denverton/Atom-C3708.yaml | 0 .../Server-Denverton/Atom-C3750.yaml | 0 .../Server-Denverton/Atom-C3758.yaml | 0 .../Server-Denverton/Atom-C3808.yaml | 0 .../Server-Denverton/Atom-C3830.yaml | 0 .../Server-Denverton/Atom-C3850.yaml | 0 .../Server-Denverton/Atom-C3858.yaml | 0 .../Server-Denverton/Atom-C3950.yaml | 0 .../Server-Denverton/Atom-C3955.yaml | 0 .../Server-Denverton/Atom-C3958.yaml | 0 .../intel/Server-CPUs-Intel/Server-Dunnington.yaml | 0 .../Server-Dunnington/Xeon-E7420.yaml | 0 .../Server-Dunnington/Xeon-E7430.yaml | 0 .../Server-Dunnington/Xeon-E7440.yaml | 0 .../Server-Dunnington/Xeon-E7450.yaml | 0 .../Server-Dunnington/Xeon-L7445.yaml | 0 .../Server-Dunnington/Xeon-L7455.yaml | 0 .../Server-Dunnington/Xeon-X7460.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml | 0 .../Server-Gulftown/Xeon-W3690.yaml | 0 .../intel/Server-CPUs-Intel/Server-Harpertown.yaml | 0 .../Server-Harpertown/Xeon-E5405.yaml | 0 .../Server-Harpertown/Xeon-E5410.yaml | 0 .../Server-Harpertown/Xeon-E5420.yaml | 0 .../Server-Harpertown/Xeon-E5430.yaml | 0 .../Server-Harpertown/Xeon-E5440.yaml | 0 .../Server-Harpertown/Xeon-E5450.yaml | 0 .../Server-Harpertown/Xeon-E5462.yaml | 0 .../Server-Harpertown/Xeon-E5472.yaml | 0 .../Server-Harpertown/Xeon-L5410.yaml | 0 .../Server-Harpertown/Xeon-L5420.yaml | 0 .../Server-Harpertown/Xeon-L5430.yaml | 0 .../Server-Harpertown/Xeon-X5450.yaml | 0 .../Server-Harpertown/Xeon-X5460.yaml | 0 .../Server-Harpertown/Xeon-X5470.yaml | 0 .../Server-Harpertown/Xeon-X5472.yaml | 0 .../Server-Harpertown/Xeon-X5482.yaml | 0 .../Server-Harpertown/Xeon-X5492.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Haswell.yaml | 0 .../Server-Haswell/Xeon-E3-1220-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1220LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1225V3.yaml | 0 .../Server-Haswell/Xeon-E3-1226V3.yaml | 0 .../Server-Haswell/Xeon-E3-1230-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1230Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1231V3.yaml | 0 .../Server-Haswell/Xeon-E3-1240-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1240LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1241V3.yaml | 0 .../Server-Haswell/Xeon-E3-1245-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1246V3.yaml | 0 .../Server-Haswell/Xeon-E3-1265Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1270-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1271V3.yaml | 0 .../Server-Haswell/Xeon-E3-1275-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1275LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1276V3.yaml | 0 .../Server-Haswell/Xeon-E3-1280-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1281V3.yaml | 0 .../Server-Haswell/Xeon-E3-1285-v3.yaml | 0 .../Server-Haswell/Xeon-E3-1285Lv3.yaml | 0 .../Server-Haswell/Xeon-E3-1286LV3.yaml | 0 .../Server-Haswell/Xeon-E3-1286V3.yaml | 0 .../Server-Haswell/Xeon-E5-1620V3.yaml | 0 .../Server-Haswell/Xeon-E5-1630V3.yaml | 0 .../Server-Haswell/Xeon-E5-1650V3.yaml | 0 .../Server-Haswell/Xeon-E5-1660V3.yaml | 0 .../Server-Haswell/Xeon-E5-1680V3.yaml | 0 .../Server-Haswell/Xeon-E5-2603V3.yaml | 0 .../Server-Haswell/Xeon-E5-2609V3.yaml | 0 .../Server-Haswell/Xeon-E5-2620V3.yaml | 0 .../Server-Haswell/Xeon-E5-2623V3.yaml | 0 .../Server-Haswell/Xeon-E5-2630LV3.yaml | 0 .../Server-Haswell/Xeon-E5-2630V3.yaml | 0 .../Server-Haswell/Xeon-E5-2637V3.yaml | 0 .../Server-Haswell/Xeon-E5-2640V3.yaml | 0 .../Server-Haswell/Xeon-E5-2643V3.yaml | 0 .../Server-Haswell/Xeon-E5-2650LV3.yaml | 0 .../Server-Haswell/Xeon-E5-2650V3.yaml | 0 .../Server-Haswell/Xeon-E5-2660V3.yaml | 0 .../Server-Haswell/Xeon-E5-2667V3.yaml | 0 .../Server-Haswell/Xeon-E5-2670V3.yaml | 0 .../Server-Haswell/Xeon-E5-2680V3.yaml | 0 .../Server-Haswell/Xeon-E5-2683V3.yaml | 0 .../Server-Haswell/Xeon-E5-2687WV3.yaml | 0 .../Server-Haswell/Xeon-E5-2690V3.yaml | 0 .../Server-Haswell/Xeon-E5-2695V3.yaml | 0 .../Server-Haswell/Xeon-E5-2697V3.yaml | 0 .../Server-Haswell/Xeon-E5-2698V3.yaml | 0 .../Server-Haswell/Xeon-E5-2699V3.yaml | 0 .../Server-Haswell/Xeon-E5-4610V3.yaml | 0 .../Server-Haswell/Xeon-E5-4620V3.yaml | 0 .../Server-Haswell/Xeon-E5-4627V3.yaml | 0 .../Server-Haswell/Xeon-E5-4640V3.yaml | 0 .../Server-Haswell/Xeon-E5-4650V3.yaml | 0 .../Server-Haswell/Xeon-E5-4655V3.yaml | 0 .../Server-Haswell/Xeon-E5-4660V3.yaml | 0 .../Server-Haswell/Xeon-E5-4667V3.yaml | 0 .../Server-Haswell/Xeon-E5-4669V3.yaml | 0 .../Server-Haswell/Xeon-E7-4809V3.yaml | 0 .../Server-Haswell/Xeon-E7-4820V3.yaml | 0 .../Server-Haswell/Xeon-E7-4830V3.yaml | 0 .../Server-Haswell/Xeon-E7-4850V3.yaml | 0 .../Server-Haswell/Xeon-E7-8860V3.yaml | 0 .../Server-Haswell/Xeon-E7-8867V3.yaml | 0 .../Server-Haswell/Xeon-E7-8870V3.yaml | 0 .../Server-Haswell/Xeon-E7-8880LV3.yaml | 0 .../Server-Haswell/Xeon-E7-8880V3.yaml | 0 .../Server-Haswell/Xeon-E7-8890V3.yaml | 0 .../Server-Haswell/Xeon-E7-8891V3.yaml | 0 .../Server-Haswell/Xeon-E7-8893V3.yaml | 0 .../intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1602.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1622.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1623N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1627.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1633N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1637.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1649N.yaml | 0 .../Server-Hewitt-Lake/Xeon-D-1653N.yaml | 0 .../Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml | 0 .../Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml | 0 .../Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml | 0 .../Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml | 0 .../intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1220V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1225V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1230V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1240V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1245V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1270V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1275V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1280V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E3-1290V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-2890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4809V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4820V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4830V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4860V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-4890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8850V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8857V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8870V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8880V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8890V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8891V2.yaml | 0 .../Server-Ivy-Bridge/Xeon-E7-8893V2.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1220V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1225V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1230V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1240V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1245V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1270V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1275V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1280V6.yaml | 0 .../Server-Kaby-Lake/Xeon-E3-1285V6.yaml | 0 .../intel/Server-CPUs-Intel/Server-Kentsfield.yaml | 0 .../Server-Kentsfield/Xeon-X3210.yaml | 0 .../Server-Kentsfield/Xeon-X3220.yaml | 0 .../Server-Kentsfield/Xeon-X3230.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml | 0 .../Server-Lynnfield/Xeon-L3426.yaml | 0 .../Server-Lynnfield/Xeon-X3430.yaml | 0 .../Server-Lynnfield/Xeon-X3440.yaml | 0 .../Server-Lynnfield/Xeon-X3450.yaml | 0 .../Server-Lynnfield/Xeon-X3460.yaml | 0 .../Server-Lynnfield/Xeon-X3470.yaml | 0 .../Server-Lynnfield/Xeon-X3480.yaml | 0 .../intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml | 0 .../Server-Nehalem-EP/Xeon-E5502.yaml | 0 .../Server-Nehalem-EP/Xeon-E5503.yaml | 0 .../Server-Nehalem-EP/Xeon-E5504.yaml | 0 .../Server-Nehalem-EP/Xeon-E5506.yaml | 0 .../Server-Nehalem-EP/Xeon-E5507.yaml | 0 .../Server-Nehalem-EP/Xeon-E5520.yaml | 0 .../Server-Nehalem-EP/Xeon-E5530.yaml | 0 .../Server-Nehalem-EP/Xeon-E5540.yaml | 0 .../Server-Nehalem-EP/Xeon-L5506.yaml | 0 .../Server-Nehalem-EP/Xeon-L5520.yaml | 0 .../Server-Nehalem-EP/Xeon-L5530.yaml | 0 .../Server-Nehalem-EP/Xeon-W5580.yaml | 0 .../Server-Nehalem-EP/Xeon-W5590.yaml | 0 .../Server-Nehalem-EP/Xeon-X5550.yaml | 0 .../Server-Nehalem-EP/Xeon-X5560.yaml | 0 .../Server-Nehalem-EP/Xeon-X5570.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml | 0 .../Server-Sandy-Bridge-EN/Pentium-1405.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml | 0 .../Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml | 0 .../Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml | 0 .../Server-CPUs-Intel/Server-Sandy-Bridge.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1220.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1220L.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1225.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1230.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1235.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1240.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1245.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1260L.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1270.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1275.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1280.yaml | 0 .../Server-Sandy-Bridge/Xeon-E3-1290.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Skylake.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml | 0 .../Server-Skylake/Xeon-4109T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml | 0 .../Server-Skylake/Xeon-4114T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml | 0 .../Server-Skylake/Xeon-4116T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml | 0 .../Server-Skylake/Xeon-5119T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml | 0 .../Server-Skylake/Xeon-5120T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml | 0 .../Server-Skylake/Xeon-6126F.yaml | 0 .../Server-Skylake/Xeon-6126T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml | 0 .../Server-Skylake/Xeon-6130F.yaml | 0 .../Server-Skylake/Xeon-6130T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml | 0 .../Server-Skylake/Xeon-6138F.yaml | 0 .../Server-Skylake/Xeon-6138P.yaml | 0 .../Server-Skylake/Xeon-6138T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml | 0 .../Server-Skylake/Xeon-6142F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml | 0 .../Server-Skylake/Xeon-6148F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml | 0 .../Server-Skylake/Xeon-8160F.yaml | 0 .../Server-Skylake/Xeon-8160T.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml | 0 .../Server-Skylake/Xeon-8176F.yaml | 0 .../Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml | 0 .../Server-Skylake/Xeon-D-2123IT.yaml | 0 .../Server-Skylake/Xeon-D-2141I.yaml | 0 .../Server-Skylake/Xeon-D-2142IT.yaml | 0 .../Server-Skylake/Xeon-D-2143IT.yaml | 0 .../Server-Skylake/Xeon-D-2145NT.yaml | 0 .../Server-Skylake/Xeon-D-2146NT.yaml | 0 .../Server-Skylake/Xeon-D-2161I.yaml | 0 .../Server-Skylake/Xeon-D-2163IT.yaml | 0 .../Server-Skylake/Xeon-D-2166NT.yaml | 0 .../Server-Skylake/Xeon-D-2173IT.yaml | 0 .../Server-Skylake/Xeon-D-2177NT.yaml | 0 .../Server-Skylake/Xeon-D-2183IT.yaml | 0 .../Server-Skylake/Xeon-D-2187NT.yaml | 0 .../Server-Skylake/Xeon-E3-1220V5.yaml | 0 .../Server-Skylake/Xeon-E3-1225V5.yaml | 0 .../Server-Skylake/Xeon-E3-1230V5.yaml | 0 .../Server-Skylake/Xeon-E3-1235LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1240LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1240V5.yaml | 0 .../Server-Skylake/Xeon-E3-1245V5.yaml | 0 .../Server-Skylake/Xeon-E3-1260LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1270V5.yaml | 0 .../Server-Skylake/Xeon-E3-1275V5.yaml | 0 .../Server-Skylake/Xeon-E3-1280V5.yaml | 0 .../Server-Skylake/Xeon-E3-1565LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1585LV5.yaml | 0 .../Server-Skylake/Xeon-E3-1585V5.yaml | 0 .../Server-Skylake/Xeon-W-2123.yaml | 0 .../Server-Skylake/Xeon-W-2125.yaml | 0 .../Server-Skylake/Xeon-W-2133.yaml | 0 .../Server-Skylake/Xeon-W-2135.yaml | 0 .../Server-Skylake/Xeon-W-2145.yaml | 0 .../Server-Skylake/Xeon-W-2155.yaml | 0 .../Server-Skylake/Xeon-W-2175.yaml | 0 .../Server-Skylake/Xeon-W-2195.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml | 0 .../Server-Tigerton/Xeon-E7210.yaml | 0 .../Server-Tigerton/Xeon-E7220.yaml | 0 .../Server-Tigerton/Xeon-E7310.yaml | 0 .../Server-Tigerton/Xeon-E7320.yaml | 0 .../Server-Tigerton/Xeon-E7330.yaml | 0 .../Server-Tigerton/Xeon-E7340.yaml | 0 .../Server-Tigerton/Xeon-L7345.yaml | 0 .../Server-Tigerton/Xeon-X7350.yaml | 0 .../intel/Server-CPUs-Intel/Server-Westmere-EP.yaml | 0 .../Server-Westmere-EP/Xeon-E5603.yaml | 0 .../Server-Westmere-EP/Xeon-E5606.yaml | 0 .../Server-Westmere-EP/Xeon-E5607.yaml | 0 .../Server-Westmere-EP/Xeon-E5620.yaml | 0 .../Server-Westmere-EP/Xeon-E5630.yaml | 0 .../Server-Westmere-EP/Xeon-E5640.yaml | 0 .../Server-Westmere-EP/Xeon-E5645.yaml | 0 .../Server-Westmere-EP/Xeon-E5649.yaml | 0 .../Server-Westmere-EP/Xeon-L5609.yaml | 0 .../Server-Westmere-EP/Xeon-L5618.yaml | 0 .../Server-Westmere-EP/Xeon-L5630.yaml | 0 .../Server-Westmere-EP/Xeon-L5638.yaml | 0 .../Server-Westmere-EP/Xeon-L5640.yaml | 0 .../Server-Westmere-EP/Xeon-W3670.yaml | 0 .../Server-Westmere-EP/Xeon-W3680.yaml | 0 .../Server-Westmere-EP/Xeon-X5647.yaml | 0 .../Server-Westmere-EP/Xeon-X5650.yaml | 0 .../Server-Westmere-EP/Xeon-X5660.yaml | 0 .../Server-Westmere-EP/Xeon-X5667.yaml | 0 .../Server-Westmere-EP/Xeon-X5670.yaml | 0 .../Server-Westmere-EP/Xeon-X5672.yaml | 0 .../Server-Westmere-EP/Xeon-X5675.yaml | 0 .../Server-Westmere-EP/Xeon-X5677.yaml | 0 .../Server-Westmere-EP/Xeon-X5680.yaml | 0 .../Server-Westmere-EP/Xeon-X5687.yaml | 0 .../Server-Westmere-EP/Xeon-X5690.yaml | 0 .../intel/Server-CPUs-Intel/Server-Westmere-EX.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2803.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2820.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-2870.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4807.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4820.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-4870.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8830.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8837.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8850.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8860.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8867L.yaml | 0 .../Server-Westmere-EX/Xeon-E7-8870.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml | 0 .../Server-Wolfdale/Xeon-E3110.yaml | 0 .../Server-Wolfdale/Xeon-E3120.yaml | 0 .../Server-Wolfdale/Xeon-E5205.yaml | 0 .../Server-Wolfdale/Xeon-E5220.yaml | 0 .../Server-Wolfdale/Xeon-L3110.yaml | 0 .../Server-Wolfdale/Xeon-L5215.yaml | 0 .../Server-Wolfdale/Xeon-L5240.yaml | 0 .../Server-Wolfdale/Xeon-X5260.yaml | 0 .../Server-Wolfdale/Xeon-X5270.yaml | 0 .../Server-Wolfdale/Xeon-X5272.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml | 0 .../Server-Woodcrest/Xeon-5110.yaml | 0 .../Server-Woodcrest/Xeon-5113.yaml | 0 .../Server-Woodcrest/Xeon-5128.yaml | 0 .../Server-Woodcrest/Xeon-5130.yaml | 0 .../Server-Woodcrest/Xeon-5133.yaml | 0 .../Server-Woodcrest/Xeon-5138.yaml | 0 .../Server-Woodcrest/Xeon-5140.yaml | 0 .../Server-Woodcrest/Xeon-5148.yaml | 0 .../Server-Woodcrest/Xeon-5150.yaml | 0 .../Server-Woodcrest/Xeon-5160.yaml | 0 specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml | 0 .../Server-Yorkfield/Xeon-L3360.yaml | 0 .../Server-Yorkfield/Xeon-X3320.yaml | 0 .../Server-Yorkfield/Xeon-X3330.yaml | 0 .../Server-Yorkfield/Xeon-X3350.yaml | 0 .../Server-Yorkfield/Xeon-X3360.yaml | 0 .../Server-Yorkfield/Xeon-X3370.yaml | 0 .../Server-Yorkfield/Xeon-X3380.yaml | 0 specs/intel/undefined-CPUs-Intel.yaml | 0 .../undefined-Cascade-Lake.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2223.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2225.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2235.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2245.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2255.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2265.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2275.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-2295.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3223.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3225.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3235.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3245.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3245M.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3265.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3265M.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3275.yaml | 0 .../undefined-Cascade-Lake/Xeon-W-3275M.yaml | 0 src/css/about.css | 0 src/css/base.css | 0 src/css/fonts.css | 0 src/css/mobile.css | 0 src/css/part-selector.css | 0 src/css/scrollbar.css | 0 src/css/spec-viewer.css | 0 src/js/about.js | 0 src/js/components/info-links.js | 0 src/js/components/main-selector.js | 0 src/js/components/part.js | 0 src/js/components/svg.js | 0 src/js/dates.js | 0 src/js/entry.js | 0 src/js/hash.js | 0 src/js/part-selector.js | 0 src/js/pure.js | 0 src/js/row-data.js | 0 src/js/seo.js | 0 src/js/spec-viewer.js | 0 src/js/units.js | 0 tests/bucket.js | 0 tests/combine.js | 0 tests/dates.js | 0 tests/genscrapedsections.js | 0 tests/gensubtext.js | 0 tests/gettabledata.js | 0 tests/row-data.js | 0 tests/seo.js | 0 tests/third-party-matchers.js | 0 tests/units.js | 0 tests/yaml-verify.js | 0 tmp/.gitignore | 0 tmp/find-missing-intel-cpus.py | 0 3335 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 .dir-locals.el mode change 100755 => 100644 .gitignore mode change 100755 => 100644 .nvmrc mode change 100755 => 100644 LICENSE mode change 100755 => 100644 Makefile mode change 100755 => 100644 README.md mode change 100755 => 100644 build/3dmark-parse.js mode change 100755 => 100644 build/combine-specs.js mode change 100755 => 100644 build/combine-util.js mode change 100755 => 100644 build/create-cpu.js mode change 100755 => 100644 build/create-gpu.js mode change 100755 => 100644 build/create-spec.js mode change 100755 => 100644 build/geekbench-parse.js mode change 100755 => 100644 build/gen-specs.js mode change 100755 => 100644 build/intel-config.js mode change 100755 => 100644 build/intel-parse.js mode change 100755 => 100644 build/userbenchmark-parse.js mode change 100755 => 100644 build/util.js mode change 100755 => 100644 package.json mode change 100755 => 100644 public/.gitignore mode change 100755 => 100644 public/SpecDB-Markasoftware.png mode change 100755 => 100644 public/SpecDB-zcskwire2.png mode change 100755 => 100644 public/_redirects mode change 100755 => 100644 public/favicon.ico mode change 100755 => 100644 public/fonts/open-sans-v15-latin-600.woff mode change 100755 => 100644 public/fonts/open-sans-v15-latin-600.woff2 mode change 100755 => 100644 public/fonts/open-sans-v15-latin-regular.woff mode change 100755 => 100644 public/fonts/open-sans-v15-latin-regular.woff2 mode change 100755 => 100644 public/fonts/quicksand-v7-latin-300.woff mode change 100755 => 100644 public/fonts/quicksand-v7-latin-300.woff2 mode change 100755 => 100644 public/fonts/quicksand-v7-latin-regular.woff mode change 100755 => 100644 public/fonts/quicksand-v7-latin-regular.woff2 mode change 100755 => 100644 public/humans.txt mode change 100755 => 100644 public/icon-192.png mode change 100755 => 100644 public/icon-512.png mode change 100755 => 100644 public/index.html mode change 100755 => 100644 public/manifest.json mode change 100755 => 100644 public/robots.txt mode change 100755 => 100644 specs/.gitignore mode change 100755 => 100644 specs/APUs-CUSTOM.yaml mode change 100755 => 100644 specs/APUs-DESKTOP.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne-inherit.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7800.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A8-7600.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A4-3300.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A4-3400.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A4-3420.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A6-3500.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A6-3600.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A6-3620.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A6-3650.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A6-3670K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A8-3800.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A8-3820.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A8-3850.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/A8-3870K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Llano/E2-3200.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Raven-Ridge.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir-inherit.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6700.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6700T.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6790B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6790K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6800B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A10-6800k.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-4000.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-4020.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-6300.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-6300B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-6320.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-6320B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-7300.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A4-7300B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A6-6400B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A6-6400K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A6-6420B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A6-6420K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A8-6500.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A8-6500B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A8-6500T.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Richland/A8-6600K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity-APU.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A10-5700.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A10-5800B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A10-5800K.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A4-5300.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A4-5300B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A6-5400B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A6-5400k.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A8-5500.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A8-5500B.yaml mode change 100755 => 100644 specs/APUs-DESKTOP/Trinity/A8-5600K.yaml mode change 100755 => 100644 specs/APUs-EMBEDDED.yaml mode change 100755 => 100644 specs/APUs-MOBILE.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A10-8700B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A10-8700P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A10-8730B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A10-8780P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A12-8800B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A12-8830B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A6-8500B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A6-8500P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A6-8530B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A8-8600B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/A8-8600P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Carrizo/FX-8800P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne-M-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A10-7300.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A10-7350B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A10-7400P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A6-7000.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A6-7050B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A8-7100.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A8-7150B.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/A8-7200P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/FX-7500.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Kaveri/FX-7600P.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir-M-inherit.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Richland-M.yaml mode change 100755 => 100644 specs/APUs-MOBILE/Trinity-M.yaml mode change 100755 => 100644 specs/APUs-SERVER.yaml mode change 100755 => 100644 specs/APUs-ULTRA-MOBILE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86/K5-PR120.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86/K5-PR133.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86/K5-PR150.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86/K5-PR166.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/5K86/K5-PR200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9100e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9150e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9350e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9450e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9600B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9600BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9750B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9850B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9850BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Agena/9950BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon/500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon/550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon/600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon/650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Argon/700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton/XP-2500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton/XP-2600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton/XP-2800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton/XP-3000.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Barton/XP-3200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/545.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/550BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/555BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/560BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/565BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/570BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/B53.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/B55.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/B57.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/B59.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Callisto/B60.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Carrizo-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Carrizo.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Castle-Peak.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/233.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/266.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/333.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/366.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/380.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/475.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/533.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Chomper/550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/2800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3700+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax/2920X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax/2950X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax/2970WX.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Colfax/2990WX.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/805.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/810.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/820.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/830.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/900e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/905e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/910.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/910e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/920.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/925.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/940BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/945.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/955.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/955BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/965BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/970BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/975BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/980BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/B93.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/B95.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/B97.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Deneb/B99.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/700e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/705e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/710.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/715BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/720.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/720BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/740BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/B73.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/B75.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Heka/B77.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/840.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/840P.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/860K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/870K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kaveri/880K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma/6500BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma/7450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma/7550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma/7750BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Kuma/7850BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/2650E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/2850E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/LE-1640.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/LE-1640B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Lima/LE-1660.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Little-Foot.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Little-Foot/266.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Little-Foot/300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano-X2-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Model-6-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Model-6.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Model-6/166.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Model-6/200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Model-6/233.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/2800+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3000+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3200+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3300+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3400+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Newcastle/3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orion.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orion/1000.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orion/900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orion/950.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/3000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/4000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/LE-1600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/LE-1620.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Orleans/LE-1640.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-1500.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-1600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-1700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-1800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-1900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-2000.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Palomino/XP-2100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Pluto/850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/620.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/630.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/635.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/640.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/645.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-Athlon/650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus/840.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Propus/850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/400e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/405e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/415e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/420e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/425.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/425e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/435.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/440.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/445.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/455.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Rana/460.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/215.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/220.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/240.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/245.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/250.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/255.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/260.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/265.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/270.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/280.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Sempron.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Sempron/180.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-Sempron/190.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor/511.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Regor/521.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland-Sempron.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland-Sempron/240.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland-Sempron/250.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland-X2-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland/350.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland/370K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland/750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Richland/760K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SSA5.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego/3700+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego/4000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego/FX_55.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/San-Diego/FX_57.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas/160u.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sargas/170u.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sharptooth-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sharptooth.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sharptooth/333.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sharptooth/400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Sharptooth/450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SledgeHammer.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton/XP-2000.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton/XP-2200.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton/XP-2400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton/XP-2600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thorton/XP-3100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1035T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1045T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1055T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1065T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1075T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1075TBE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1090TBE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thuban/1100TBE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1000B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1000C.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1100.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1133.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1200B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1200C.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1266.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1300.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1333.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1400B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/1400C.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/700.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Thunderbird/950.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/3700+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/4000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/FX-60.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8250e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8400.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8450.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8450e.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8550.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8600.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8600B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8650.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8750.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8750B.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8750BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Toliman/8850.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity-Sempron.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4226.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4228HE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4230HE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4234.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4238.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4240.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4256EE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4274HE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4276HE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4280.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Valencia/4284.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/1500+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3000+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3200+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3400+754.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Venice/3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven/1900X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven/1920X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven/1950X.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Winchester-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Winchester.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Winchester/3000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Winchester/3200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Winchester/3500+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/FX-62.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/FX-70.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/FX-72.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/FX-74.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma-inherit.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma/650T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma/840T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma/960T.yaml mode change 100755 => 100644 specs/CPUs-DESKTOP/Zosma/960TBE.yaml mode change 100755 => 100644 specs/CPUs-EMBEDDED.yaml mode change 100755 => 100644 specs/CPUs-MOBILE.yaml mode change 100755 => 100644 specs/CPUs-SERVER.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6308.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6320.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6328.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6344.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6348.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6376.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6378.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6380.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2344HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2346HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2347.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2347HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2350.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2350HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2352.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2354.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2356.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2358SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/2360SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8346HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8347.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8347HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8350.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8350HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8352.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8354.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8356.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8358SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Barcelona/8360SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Budapest-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Budapest.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Budapest/1352.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Budapest/1354.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Budapest/1356.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi/3320EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi/3350HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi/3365.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Delhi/3380.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9124.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9224.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9254.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9334.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9354.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9454.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9534.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9554.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9634.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9654.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6204.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6212.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6220.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6230HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6234.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6238.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6262HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6272.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6274.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6276.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6278.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6282SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Interlagos/6284SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2419.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2419EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2423HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2425HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2427.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2431.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2435.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/2439SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8419.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8419EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8423.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8425HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8431.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8435.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Istanbul/8439SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4122.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4130.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4133.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4162EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4164EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4170HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4171HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4174HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4176HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4180.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Lisbon/4184.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6124HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6128.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6128HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6132HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6134.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6136.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6140.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6164HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6166HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6168.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6172.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6174.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6176.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6176SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Magny-Cours/6180SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7251.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7261.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7281.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7301.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7351.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7351P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7371.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7401.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7401P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7451.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7501.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7551.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7551P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Naples/Epyc-7601.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7232P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7252.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7262.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7272.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7282.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7302.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7302P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7352.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7402.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7402P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7452.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7502.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7502P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7532.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7542.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7552.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7642.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7662.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7702.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7702P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7742.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7F32.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7F52.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7F72.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Rome/Epyc-7H12.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4310HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4332HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4334.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4340.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4365EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4376HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Seoul/4386.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2372HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2373EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2374HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2376HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2377EE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2378.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2379HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2380.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2381HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2382.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2384.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2386SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2387.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2389.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/2393SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8374HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8376HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8378.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8379HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8380.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8381HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8382.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8384.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8386SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8387.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8389.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Shanghai/8393SE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Suzuka-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Suzuka.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Suzuka/1381.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Suzuka/1385.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Suzuka/1389.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Valencia-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Valencia.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Warsaw-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Warsaw.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Warsaw/6338P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Warsaw/6370P.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Zurich-inherit.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Zurich.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Zurich/3250HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Zurich/3260HE.yaml mode change 100755 => 100644 specs/CPUs-SERVER/Zurich/3280.yaml mode change 100755 => 100644 specs/Root.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml mode change 100755 => 100644 specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml mode change 100755 => 100644 specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml mode change 100755 => 100644 specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Centerton.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml mode change 100755 => 100644 specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml mode change 100755 => 100644 specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml mode change 100755 => 100644 src/css/about.css mode change 100755 => 100644 src/css/base.css mode change 100755 => 100644 src/css/fonts.css mode change 100755 => 100644 src/css/mobile.css mode change 100755 => 100644 src/css/part-selector.css mode change 100755 => 100644 src/css/scrollbar.css mode change 100755 => 100644 src/css/spec-viewer.css mode change 100755 => 100644 src/js/about.js mode change 100755 => 100644 src/js/components/info-links.js mode change 100755 => 100644 src/js/components/main-selector.js mode change 100755 => 100644 src/js/components/part.js mode change 100755 => 100644 src/js/components/svg.js mode change 100755 => 100644 src/js/dates.js mode change 100755 => 100644 src/js/entry.js mode change 100755 => 100644 src/js/hash.js mode change 100755 => 100644 src/js/part-selector.js mode change 100755 => 100644 src/js/pure.js mode change 100755 => 100644 src/js/row-data.js mode change 100755 => 100644 src/js/seo.js mode change 100755 => 100644 src/js/spec-viewer.js mode change 100755 => 100644 src/js/units.js mode change 100755 => 100644 tests/bucket.js mode change 100755 => 100644 tests/combine.js mode change 100755 => 100644 tests/dates.js mode change 100755 => 100644 tests/genscrapedsections.js mode change 100755 => 100644 tests/gensubtext.js mode change 100755 => 100644 tests/gettabledata.js mode change 100755 => 100644 tests/row-data.js mode change 100755 => 100644 tests/seo.js mode change 100755 => 100644 tests/third-party-matchers.js mode change 100755 => 100644 tests/units.js mode change 100755 => 100644 tests/yaml-verify.js mode change 100755 => 100644 tmp/.gitignore mode change 100755 => 100644 tmp/find-missing-intel-cpus.py diff --git a/.dir-locals.el b/.dir-locals.el old mode 100755 new mode 100644 diff --git a/.gitignore b/.gitignore old mode 100755 new mode 100644 diff --git a/.nvmrc b/.nvmrc old mode 100755 new mode 100644 diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 diff --git a/Makefile b/Makefile old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/build/3dmark-parse.js b/build/3dmark-parse.js old mode 100755 new mode 100644 diff --git a/build/combine-specs.js b/build/combine-specs.js old mode 100755 new mode 100644 diff --git a/build/combine-util.js b/build/combine-util.js old mode 100755 new mode 100644 diff --git a/build/create-cpu.js b/build/create-cpu.js old mode 100755 new mode 100644 diff --git a/build/create-gpu.js b/build/create-gpu.js old mode 100755 new mode 100644 diff --git a/build/create-spec.js b/build/create-spec.js old mode 100755 new mode 100644 diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js old mode 100755 new mode 100644 diff --git a/build/gen-specs.js b/build/gen-specs.js old mode 100755 new mode 100644 diff --git a/build/intel-config.js b/build/intel-config.js old mode 100755 new mode 100644 diff --git a/build/intel-parse.js b/build/intel-parse.js old mode 100755 new mode 100644 diff --git a/build/userbenchmark-parse.js b/build/userbenchmark-parse.js old mode 100755 new mode 100644 diff --git a/build/util.js b/build/util.js old mode 100755 new mode 100644 diff --git a/package.json b/package.json old mode 100755 new mode 100644 diff --git a/public/.gitignore b/public/.gitignore old mode 100755 new mode 100644 diff --git a/public/SpecDB-Markasoftware.png b/public/SpecDB-Markasoftware.png old mode 100755 new mode 100644 diff --git a/public/SpecDB-zcskwire2.png b/public/SpecDB-zcskwire2.png old mode 100755 new mode 100644 diff --git a/public/_redirects b/public/_redirects old mode 100755 new mode 100644 diff --git a/public/favicon.ico b/public/favicon.ico old mode 100755 new mode 100644 diff --git a/public/fonts/open-sans-v15-latin-600.woff b/public/fonts/open-sans-v15-latin-600.woff old mode 100755 new mode 100644 diff --git a/public/fonts/open-sans-v15-latin-600.woff2 b/public/fonts/open-sans-v15-latin-600.woff2 old mode 100755 new mode 100644 diff --git a/public/fonts/open-sans-v15-latin-regular.woff b/public/fonts/open-sans-v15-latin-regular.woff old mode 100755 new mode 100644 diff --git a/public/fonts/open-sans-v15-latin-regular.woff2 b/public/fonts/open-sans-v15-latin-regular.woff2 old mode 100755 new mode 100644 diff --git a/public/fonts/quicksand-v7-latin-300.woff b/public/fonts/quicksand-v7-latin-300.woff old mode 100755 new mode 100644 diff --git a/public/fonts/quicksand-v7-latin-300.woff2 b/public/fonts/quicksand-v7-latin-300.woff2 old mode 100755 new mode 100644 diff --git a/public/fonts/quicksand-v7-latin-regular.woff b/public/fonts/quicksand-v7-latin-regular.woff old mode 100755 new mode 100644 diff --git a/public/fonts/quicksand-v7-latin-regular.woff2 b/public/fonts/quicksand-v7-latin-regular.woff2 old mode 100755 new mode 100644 diff --git a/public/humans.txt b/public/humans.txt old mode 100755 new mode 100644 diff --git a/public/icon-192.png b/public/icon-192.png old mode 100755 new mode 100644 diff --git a/public/icon-512.png b/public/icon-512.png old mode 100755 new mode 100644 diff --git a/public/index.html b/public/index.html old mode 100755 new mode 100644 diff --git a/public/manifest.json b/public/manifest.json old mode 100755 new mode 100644 diff --git a/public/robots.txt b/public/robots.txt old mode 100755 new mode 100644 diff --git a/specs/.gitignore b/specs/.gitignore old mode 100755 new mode 100644 diff --git a/specs/APUs-CUSTOM.yaml b/specs/APUs-CUSTOM.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP.yaml b/specs/APUs-DESKTOP.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml b/specs/APUs-DESKTOP/Bristol-Ridge-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A10-9700E.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A12-9800E.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9500E.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A6-9550.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml b/specs/APUs-DESKTOP/Bristol-Ridge/A8-9600.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne-inherit.yaml b/specs/APUs-DESKTOP/Cezanne-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne.yaml b/specs/APUs-DESKTOP/Cezanne.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-5300GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-3-PRO-5350GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-5600GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-5-PRO-5650GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-5700GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml b/specs/APUs-DESKTOP/Cezanne/Ryzen-7-PRO-5750GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini-APU.yaml b/specs/APUs-DESKTOP/Kabini-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5150.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5350.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml b/specs/APUs-DESKTOP/Kabini/Athlon-5370.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml b/specs/APUs-DESKTOP/Kabini/Sempron-2650.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml b/specs/APUs-DESKTOP/Kabini/Sempron-3850.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri-APU.yaml b/specs/APUs-DESKTOP/Kaveri-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7700k.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7800.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7800.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7850K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7860K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7870K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml b/specs/APUs-DESKTOP/Kaveri/A10-7890K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml b/specs/APUs-DESKTOP/Kaveri/A10-PRO-7800B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml b/specs/APUs-DESKTOP/Kaveri/A10-PRO-7850B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml b/specs/APUs-DESKTOP/Kaveri/A6-7400K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml b/specs/APUs-DESKTOP/Kaveri/A6-7470K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml b/specs/APUs-DESKTOP/Kaveri/A6-PRO-7350B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml b/specs/APUs-DESKTOP/Kaveri/A6-PRO-7400B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7600.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7600.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7650K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml b/specs/APUs-DESKTOP/Kaveri/A8-7670K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml b/specs/APUs-DESKTOP/Kaveri/A8-PRO-7600B-.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano-APU.yaml b/specs/APUs-DESKTOP/Llano-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A4-3300.yaml b/specs/APUs-DESKTOP/Llano/A4-3300.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A4-3400.yaml b/specs/APUs-DESKTOP/Llano/A4-3400.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A4-3420.yaml b/specs/APUs-DESKTOP/Llano/A4-3420.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A6-3500.yaml b/specs/APUs-DESKTOP/Llano/A6-3500.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A6-3600.yaml b/specs/APUs-DESKTOP/Llano/A6-3600.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A6-3620.yaml b/specs/APUs-DESKTOP/Llano/A6-3620.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A6-3650.yaml b/specs/APUs-DESKTOP/Llano/A6-3650.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A6-3670K.yaml b/specs/APUs-DESKTOP/Llano/A6-3670K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A8-3800.yaml b/specs/APUs-DESKTOP/Llano/A8-3800.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A8-3820.yaml b/specs/APUs-DESKTOP/Llano/A8-3820.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A8-3850.yaml b/specs/APUs-DESKTOP/Llano/A8-3850.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/A8-3870K.yaml b/specs/APUs-DESKTOP/Llano/A8-3870K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Llano/E2-3200.yaml b/specs/APUs-DESKTOP/Llano/E2-3200.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Raven-Ridge.yaml b/specs/APUs-DESKTOP/Raven-Ridge.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml b/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-3-2200G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml b/specs/APUs-DESKTOP/Raven-Ridge/Ryzen-5-2400G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir-inherit.yaml b/specs/APUs-DESKTOP/Renoir-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir.yaml b/specs/APUs-DESKTOP/Renoir.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-4300GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-3-PRO-4350GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-4600GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-5-PRO-4650GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-4700GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750G.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml b/specs/APUs-DESKTOP/Renoir/Ryzen-7-PRO-4750GE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland-APU.yaml b/specs/APUs-DESKTOP/Richland-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6700.yaml b/specs/APUs-DESKTOP/Richland/A10-6700.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6700T.yaml b/specs/APUs-DESKTOP/Richland/A10-6700T.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6790B.yaml b/specs/APUs-DESKTOP/Richland/A10-6790B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6790K.yaml b/specs/APUs-DESKTOP/Richland/A10-6790K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6800B.yaml b/specs/APUs-DESKTOP/Richland/A10-6800B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A10-6800k.yaml b/specs/APUs-DESKTOP/Richland/A10-6800k.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-4000.yaml b/specs/APUs-DESKTOP/Richland/A4-4000.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-4020.yaml b/specs/APUs-DESKTOP/Richland/A4-4020.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-6300.yaml b/specs/APUs-DESKTOP/Richland/A4-6300.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-6300B.yaml b/specs/APUs-DESKTOP/Richland/A4-6300B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-6320.yaml b/specs/APUs-DESKTOP/Richland/A4-6320.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-6320B.yaml b/specs/APUs-DESKTOP/Richland/A4-6320B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-7300.yaml b/specs/APUs-DESKTOP/Richland/A4-7300.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A4-7300B.yaml b/specs/APUs-DESKTOP/Richland/A4-7300B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A6-6400B.yaml b/specs/APUs-DESKTOP/Richland/A6-6400B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A6-6400K.yaml b/specs/APUs-DESKTOP/Richland/A6-6400K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A6-6420B.yaml b/specs/APUs-DESKTOP/Richland/A6-6420B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A6-6420K.yaml b/specs/APUs-DESKTOP/Richland/A6-6420K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500.yaml b/specs/APUs-DESKTOP/Richland/A8-6500.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500B.yaml b/specs/APUs-DESKTOP/Richland/A8-6500B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A8-6500T.yaml b/specs/APUs-DESKTOP/Richland/A8-6500T.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Richland/A8-6600K.yaml b/specs/APUs-DESKTOP/Richland/A8-6600K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity-APU.yaml b/specs/APUs-DESKTOP/Trinity-APU.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5700.yaml b/specs/APUs-DESKTOP/Trinity/A10-5700.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5800B.yaml b/specs/APUs-DESKTOP/Trinity/A10-5800B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A10-5800K.yaml b/specs/APUs-DESKTOP/Trinity/A10-5800K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A4-5300.yaml b/specs/APUs-DESKTOP/Trinity/A4-5300.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A4-5300B.yaml b/specs/APUs-DESKTOP/Trinity/A4-5300B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A6-5400B.yaml b/specs/APUs-DESKTOP/Trinity/A6-5400B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A6-5400k.yaml b/specs/APUs-DESKTOP/Trinity/A6-5400k.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5500.yaml b/specs/APUs-DESKTOP/Trinity/A8-5500.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5500B.yaml b/specs/APUs-DESKTOP/Trinity/A8-5500B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-DESKTOP/Trinity/A8-5600K.yaml b/specs/APUs-DESKTOP/Trinity/A8-5600K.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-EMBEDDED.yaml b/specs/APUs-EMBEDDED.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE.yaml b/specs/APUs-MOBILE.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge-M.yaml b/specs/APUs-MOBILE/Bristol-Ridge-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml b/specs/APUs-MOBILE/Bristol-Ridge-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9600P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9620P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9630P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A10-9700B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9700P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9720P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9730B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9730P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9800B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A12-9830B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A6-9500B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A8-9600B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml b/specs/APUs-MOBILE/Bristol-Ridge/A8-9630B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/FX-9800P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml b/specs/APUs-MOBILE/Bristol-Ridge/FX-9830P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo-M.yaml b/specs/APUs-MOBILE/Carrizo-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo-inherit.yaml b/specs/APUs-MOBILE/Carrizo-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8700B.yaml b/specs/APUs-MOBILE/Carrizo/A10-8700B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8700P.yaml b/specs/APUs-MOBILE/Carrizo/A10-8700P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8730B.yaml b/specs/APUs-MOBILE/Carrizo/A10-8730B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A10-8780P.yaml b/specs/APUs-MOBILE/Carrizo/A10-8780P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A12-8800B.yaml b/specs/APUs-MOBILE/Carrizo/A12-8800B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A12-8830B.yaml b/specs/APUs-MOBILE/Carrizo/A12-8830B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8500B.yaml b/specs/APUs-MOBILE/Carrizo/A6-8500B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8500P.yaml b/specs/APUs-MOBILE/Carrizo/A6-8500P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A6-8530B.yaml b/specs/APUs-MOBILE/Carrizo/A6-8530B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A8-8600B.yaml b/specs/APUs-MOBILE/Carrizo/A8-8600B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/A8-8600P.yaml b/specs/APUs-MOBILE/Carrizo/A8-8600P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Carrizo/FX-8800P.yaml b/specs/APUs-MOBILE/Carrizo/FX-8800P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne-M-inherit.yaml b/specs/APUs-MOBILE/Cezanne-M-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne-M.yaml b/specs/APUs-MOBILE/Cezanne-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-3-5400U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-3-PRO-5450U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-5600U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-5-PRO-5650U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-5800U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-7-PRO-5850U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5900HX.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml b/specs/APUs-MOBILE/Cezanne/Ryzen-9-5980HX.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri-M.yaml b/specs/APUs-MOBILE/Kaveri-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri-inherit.yaml b/specs/APUs-MOBILE/Kaveri-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7300.yaml b/specs/APUs-MOBILE/Kaveri/A10-7300.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7350B.yaml b/specs/APUs-MOBILE/Kaveri/A10-7350B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A10-7400P.yaml b/specs/APUs-MOBILE/Kaveri/A10-7400P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A6-7000.yaml b/specs/APUs-MOBILE/Kaveri/A6-7000.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A6-7050B.yaml b/specs/APUs-MOBILE/Kaveri/A6-7050B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7100.yaml b/specs/APUs-MOBILE/Kaveri/A8-7100.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7150B.yaml b/specs/APUs-MOBILE/Kaveri/A8-7150B.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/A8-7200P.yaml b/specs/APUs-MOBILE/Kaveri/A8-7200P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/FX-7500.yaml b/specs/APUs-MOBILE/Kaveri/FX-7500.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Kaveri/FX-7600P.yaml b/specs/APUs-MOBILE/Kaveri/FX-7600P.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix-inherit.yaml b/specs/APUs-MOBILE/Phoenix-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix.yaml b/specs/APUs-MOBILE/Phoenix.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-3-7440U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7540U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-5-7640U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-7-7840U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml b/specs/APUs-MOBILE/Phoenix/Ryzen-9-7940HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge-M.yaml b/specs/APUs-MOBILE/Raven-Ridge-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge-inherit.yaml b/specs/APUs-MOBILE/Raven-Ridge-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2200U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-2300U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-3-PRO-2300U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-2500U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-5-PRO-2500U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-2700U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml b/specs/APUs-MOBILE/Raven-Ridge/Ryzen-7-PRO-2700U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir-M-inherit.yaml b/specs/APUs-MOBILE/Renoir-M-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir-M.yaml b/specs/APUs-MOBILE/Renoir-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-3-4300U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-3-PRO-4450U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4500U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4600U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-4680U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-5-PRO-4650U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4700U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4800U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-4980U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-7-PRO-4750U.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-9-4900H.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml b/specs/APUs-MOBILE/Renoir/Ryzen-9-4900HS.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Richland-M.yaml b/specs/APUs-MOBILE/Richland-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-MOBILE/Trinity-M.yaml b/specs/APUs-MOBILE/Trinity-M.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-SERVER.yaml b/specs/APUs-SERVER.yaml old mode 100755 new mode 100644 diff --git a/specs/APUs-ULTRA-MOBILE.yaml b/specs/APUs-ULTRA-MOBILE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP.yaml b/specs/CPUs-DESKTOP.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86-inherit.yaml b/specs/CPUs-DESKTOP/5K86-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86.yaml b/specs/CPUs-DESKTOP/5K86.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR120.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR120.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR133.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR133.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR150.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR150.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR166.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR166.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/5K86/K5-PR200.yaml b/specs/CPUs-DESKTOP/5K86/K5-PR200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena-inherit.yaml b/specs/CPUs-DESKTOP/Agena-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena.yaml b/specs/CPUs-DESKTOP/Agena.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9100e.yaml b/specs/CPUs-DESKTOP/Agena/9100e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9150e.yaml b/specs/CPUs-DESKTOP/Agena/9150e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9350e.yaml b/specs/CPUs-DESKTOP/Agena/9350e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9450e.yaml b/specs/CPUs-DESKTOP/Agena/9450e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9500.yaml b/specs/CPUs-DESKTOP/Agena/9500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9550.yaml b/specs/CPUs-DESKTOP/Agena/9550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9600.yaml b/specs/CPUs-DESKTOP/Agena/9600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9600B.yaml b/specs/CPUs-DESKTOP/Agena/9600B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9600BE.yaml b/specs/CPUs-DESKTOP/Agena/9600BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9650.yaml b/specs/CPUs-DESKTOP/Agena/9650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9750.yaml b/specs/CPUs-DESKTOP/Agena/9750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9750B.yaml b/specs/CPUs-DESKTOP/Agena/9750B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9850.yaml b/specs/CPUs-DESKTOP/Agena/9850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9850B.yaml b/specs/CPUs-DESKTOP/Agena/9850B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9850BE.yaml b/specs/CPUs-DESKTOP/Agena/9850BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Agena/9950BE.yaml b/specs/CPUs-DESKTOP/Agena/9950BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon-inherit.yaml b/specs/CPUs-DESKTOP/Argon-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon.yaml b/specs/CPUs-DESKTOP/Argon.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon/500.yaml b/specs/CPUs-DESKTOP/Argon/500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon/550.yaml b/specs/CPUs-DESKTOP/Argon/550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon/600.yaml b/specs/CPUs-DESKTOP/Argon/600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon/650.yaml b/specs/CPUs-DESKTOP/Argon/650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Argon/700.yaml b/specs/CPUs-DESKTOP/Argon/700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton-inherit.yaml b/specs/CPUs-DESKTOP/Barton-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton.yaml b/specs/CPUs-DESKTOP/Barton.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2500.yaml b/specs/CPUs-DESKTOP/Barton/XP-2500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2600.yaml b/specs/CPUs-DESKTOP/Barton/XP-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton/XP-2800.yaml b/specs/CPUs-DESKTOP/Barton/XP-2800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton/XP-3000.yaml b/specs/CPUs-DESKTOP/Barton/XP-3000.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Barton/XP-3200.yaml b/specs/CPUs-DESKTOP/Barton/XP-3200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane-inherit.yaml b/specs/CPUs-DESKTOP/Brisbane-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane.yaml b/specs/CPUs-DESKTOP/Brisbane.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9100e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9150e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9350e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9450e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9600BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9750B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9850BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml b/specs/CPUs-DESKTOP/Brisbane/Agena/9950BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-3250E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-3600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4450B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4450E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4850B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-4850E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000+BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5000B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5050E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5200B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400+BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5400B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5600B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-5800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-6000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml b/specs/CPUs-DESKTOP/Brisbane/X2-BE-2400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-940.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-950.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Athlon-X4-970.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml b/specs/CPUs-DESKTOP/Bristol-Ridge/Excavator-4C-Base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer-inherit.yaml b/specs/CPUs-DESKTOP/Bulldozer-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer.yaml b/specs/CPUs-DESKTOP/Bulldozer.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-4C-Base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-6C-Base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml b/specs/CPUs-DESKTOP/Bulldozer/Bulldozer-8C-Base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4130.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-4170.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6120.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-6200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8120.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml b/specs/CPUs-DESKTOP/Bulldozer/FX-8150.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto-inherit.yaml b/specs/CPUs-DESKTOP/Callisto-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto.yaml b/specs/CPUs-DESKTOP/Callisto.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/545.yaml b/specs/CPUs-DESKTOP/Callisto/545.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/550.yaml b/specs/CPUs-DESKTOP/Callisto/550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/550BE.yaml b/specs/CPUs-DESKTOP/Callisto/550BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/555BE.yaml b/specs/CPUs-DESKTOP/Callisto/555BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/560BE.yaml b/specs/CPUs-DESKTOP/Callisto/560BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/565BE.yaml b/specs/CPUs-DESKTOP/Callisto/565BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/570BE.yaml b/specs/CPUs-DESKTOP/Callisto/570BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/B53.yaml b/specs/CPUs-DESKTOP/Callisto/B53.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/B55.yaml b/specs/CPUs-DESKTOP/Callisto/B55.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/B57.yaml b/specs/CPUs-DESKTOP/Callisto/B57.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/B59.yaml b/specs/CPUs-DESKTOP/Callisto/B59.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Callisto/B60.yaml b/specs/CPUs-DESKTOP/Callisto/B60.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Carrizo-inherit.yaml b/specs/CPUs-DESKTOP/Carrizo-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Carrizo.yaml b/specs/CPUs-DESKTOP/Carrizo.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml b/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-835.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml b/specs/CPUs-DESKTOP/Carrizo/Athlon-X4-845.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml b/specs/CPUs-DESKTOP/Carrizo/Carrizo-Base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml b/specs/CPUs-DESKTOP/Castle-Peak-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Castle-Peak.yaml b/specs/CPUs-DESKTOP/Castle-Peak.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3960X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3970X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml b/specs/CPUs-DESKTOP/Castle-Peak/3990X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper-inherit.yaml b/specs/CPUs-DESKTOP/Chomper-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper.yaml b/specs/CPUs-DESKTOP/Chomper.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/200.yaml b/specs/CPUs-DESKTOP/Chomper/200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/233.yaml b/specs/CPUs-DESKTOP/Chomper/233.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/266.yaml b/specs/CPUs-DESKTOP/Chomper/266.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/300.yaml b/specs/CPUs-DESKTOP/Chomper/300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/333.yaml b/specs/CPUs-DESKTOP/Chomper/333.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/350.yaml b/specs/CPUs-DESKTOP/Chomper/350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/366.yaml b/specs/CPUs-DESKTOP/Chomper/366.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/380.yaml b/specs/CPUs-DESKTOP/Chomper/380.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/400.yaml b/specs/CPUs-DESKTOP/Chomper/400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/450.yaml b/specs/CPUs-DESKTOP/Chomper/450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/475.yaml b/specs/CPUs-DESKTOP/Chomper/475.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/500.yaml b/specs/CPUs-DESKTOP/Chomper/500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/533.yaml b/specs/CPUs-DESKTOP/Chomper/533.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Chomper/550.yaml b/specs/CPUs-DESKTOP/Chomper/550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer-inherit.yaml b/specs/CPUs-DESKTOP/ClawHammer-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer.yaml b/specs/CPUs-DESKTOP/ClawHammer.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/2800+.yaml b/specs/CPUs-DESKTOP/ClawHammer/2800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3000+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3200+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml b/specs/CPUs-DESKTOP/ClawHammer/3200+1m.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3400+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml b/specs/CPUs-DESKTOP/ClawHammer/3400+1m.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/3500+939.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3600+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3700+.yaml b/specs/CPUs-DESKTOP/ClawHammer/3700+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/3800+939.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml b/specs/CPUs-DESKTOP/ClawHammer/4000+939.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml b/specs/CPUs-DESKTOP/ClawHammer/FX-53.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml b/specs/CPUs-DESKTOP/ClawHammer/FX-55.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax-inherit.yaml b/specs/CPUs-DESKTOP/Colfax-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax.yaml b/specs/CPUs-DESKTOP/Colfax.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax/2920X.yaml b/specs/CPUs-DESKTOP/Colfax/2920X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax/2950X.yaml b/specs/CPUs-DESKTOP/Colfax/2950X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax/2970WX.yaml b/specs/CPUs-DESKTOP/Colfax/2970WX.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Colfax/2990WX.yaml b/specs/CPUs-DESKTOP/Colfax/2990WX.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb-inherit.yaml b/specs/CPUs-DESKTOP/Deneb-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb.yaml b/specs/CPUs-DESKTOP/Deneb.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/805.yaml b/specs/CPUs-DESKTOP/Deneb/805.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/810.yaml b/specs/CPUs-DESKTOP/Deneb/810.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/820.yaml b/specs/CPUs-DESKTOP/Deneb/820.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/830.yaml b/specs/CPUs-DESKTOP/Deneb/830.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/900e.yaml b/specs/CPUs-DESKTOP/Deneb/900e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/905e.yaml b/specs/CPUs-DESKTOP/Deneb/905e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/910.yaml b/specs/CPUs-DESKTOP/Deneb/910.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/910e.yaml b/specs/CPUs-DESKTOP/Deneb/910e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/920.yaml b/specs/CPUs-DESKTOP/Deneb/920.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/925.yaml b/specs/CPUs-DESKTOP/Deneb/925.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/940BE.yaml b/specs/CPUs-DESKTOP/Deneb/940BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/945.yaml b/specs/CPUs-DESKTOP/Deneb/945.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/955.yaml b/specs/CPUs-DESKTOP/Deneb/955.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/955BE.yaml b/specs/CPUs-DESKTOP/Deneb/955BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/965BE.yaml b/specs/CPUs-DESKTOP/Deneb/965BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/970BE.yaml b/specs/CPUs-DESKTOP/Deneb/970BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/975BE.yaml b/specs/CPUs-DESKTOP/Deneb/975BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/980BE.yaml b/specs/CPUs-DESKTOP/Deneb/980BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/B93.yaml b/specs/CPUs-DESKTOP/Deneb/B93.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/B95.yaml b/specs/CPUs-DESKTOP/Deneb/B95.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/B97.yaml b/specs/CPUs-DESKTOP/Deneb/B97.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Deneb/B99.yaml b/specs/CPUs-DESKTOP/Deneb/B99.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka-inherit.yaml b/specs/CPUs-DESKTOP/Heka-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka.yaml b/specs/CPUs-DESKTOP/Heka.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/700e.yaml b/specs/CPUs-DESKTOP/Heka/700e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/705e.yaml b/specs/CPUs-DESKTOP/Heka/705e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/710.yaml b/specs/CPUs-DESKTOP/Heka/710.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/715BE.yaml b/specs/CPUs-DESKTOP/Heka/715BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/720.yaml b/specs/CPUs-DESKTOP/Heka/720.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/720BE.yaml b/specs/CPUs-DESKTOP/Heka/720BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/740BE.yaml b/specs/CPUs-DESKTOP/Heka/740BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/B73.yaml b/specs/CPUs-DESKTOP/Heka/B73.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/B75.yaml b/specs/CPUs-DESKTOP/Heka/B75.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Heka/B77.yaml b/specs/CPUs-DESKTOP/Heka/B77.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml b/specs/CPUs-DESKTOP/Kaveri-X2-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri-inherit.yaml b/specs/CPUs-DESKTOP/Kaveri-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri.yaml b/specs/CPUs-DESKTOP/Kaveri.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/450.yaml b/specs/CPUs-DESKTOP/Kaveri/450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/840.yaml b/specs/CPUs-DESKTOP/Kaveri/840.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/840P.yaml b/specs/CPUs-DESKTOP/Kaveri/840P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/860K.yaml b/specs/CPUs-DESKTOP/Kaveri/860K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/870K.yaml b/specs/CPUs-DESKTOP/Kaveri/870K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kaveri/880K.yaml b/specs/CPUs-DESKTOP/Kaveri/880K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma-inherit.yaml b/specs/CPUs-DESKTOP/Kuma-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma.yaml b/specs/CPUs-DESKTOP/Kuma.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma/6500BE.yaml b/specs/CPUs-DESKTOP/Kuma/6500BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma/7450.yaml b/specs/CPUs-DESKTOP/Kuma/7450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma/7550.yaml b/specs/CPUs-DESKTOP/Kuma/7550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma/7750BE.yaml b/specs/CPUs-DESKTOP/Kuma/7750BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Kuma/7850BE.yaml b/specs/CPUs-DESKTOP/Kuma/7850BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima-inherit.yaml b/specs/CPUs-DESKTOP/Lima-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima.yaml b/specs/CPUs-DESKTOP/Lima.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/2650E.yaml b/specs/CPUs-DESKTOP/Lima/2650E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/2850E.yaml b/specs/CPUs-DESKTOP/Lima/2850E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/3500+.yaml b/specs/CPUs-DESKTOP/Lima/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/3800+.yaml b/specs/CPUs-DESKTOP/Lima/3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1640.yaml b/specs/CPUs-DESKTOP/Lima/LE-1640.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1640B.yaml b/specs/CPUs-DESKTOP/Lima/LE-1640B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Lima/LE-1660.yaml b/specs/CPUs-DESKTOP/Lima/LE-1660.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Little-Foot.yaml b/specs/CPUs-DESKTOP/Little-Foot.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Little-Foot/266.yaml b/specs/CPUs-DESKTOP/Little-Foot/266.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Little-Foot/300.yaml b/specs/CPUs-DESKTOP/Little-Foot/300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano-X2-inherit.yaml b/specs/CPUs-DESKTOP/Llano-X2-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano-inherit.yaml b/specs/CPUs-DESKTOP/Llano-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano.yaml b/specs/CPUs-DESKTOP/Llano.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X2-221.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-631.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-638.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-641.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml b/specs/CPUs-DESKTOP/Llano/Athlon-II-X4-651K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester-inherit.yaml b/specs/CPUs-DESKTOP/Manchester-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester.yaml b/specs/CPUs-DESKTOP/Manchester.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/3200+.yaml b/specs/CPUs-DESKTOP/Manchester/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/3500+.yaml b/specs/CPUs-DESKTOP/Manchester/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-3600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-4200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml b/specs/CPUs-DESKTOP/Manchester/X2-4600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse-inherit.yaml b/specs/CPUs-DESKTOP/Matisse-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse.yaml b/specs/CPUs-DESKTOP/Matisse.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3500x.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-3600X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-5-PRO-3600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3700X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-3800XT.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-7-PRO-3700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3900XT.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-3950X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml b/specs/CPUs-DESKTOP/Matisse/Ryzen-9-PRO-3900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Model-6-inherit.yaml b/specs/CPUs-DESKTOP/Model-6-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Model-6.yaml b/specs/CPUs-DESKTOP/Model-6.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Model-6/166.yaml b/specs/CPUs-DESKTOP/Model-6/166.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Model-6/200.yaml b/specs/CPUs-DESKTOP/Model-6/200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Model-6/233.yaml b/specs/CPUs-DESKTOP/Model-6/233.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle-inherit.yaml b/specs/CPUs-DESKTOP/Newcastle-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle.yaml b/specs/CPUs-DESKTOP/Newcastle.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/2800+754.yaml b/specs/CPUs-DESKTOP/Newcastle/2800+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3000+.yaml b/specs/CPUs-DESKTOP/Newcastle/3000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3000+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3000+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3200+.yaml b/specs/CPUs-DESKTOP/Newcastle/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3200+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3200+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3300+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3300+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3400+.yaml b/specs/CPUs-DESKTOP/Newcastle/3400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3400+754.yaml b/specs/CPUs-DESKTOP/Newcastle/3400+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3500+.yaml b/specs/CPUs-DESKTOP/Newcastle/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Newcastle/3800+.yaml b/specs/CPUs-DESKTOP/Newcastle/3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orion.yaml b/specs/CPUs-DESKTOP/Orion.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orion/1000.yaml b/specs/CPUs-DESKTOP/Orion/1000.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orion/900.yaml b/specs/CPUs-DESKTOP/Orion/900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orion/950.yaml b/specs/CPUs-DESKTOP/Orion/950.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans-inherit.yaml b/specs/CPUs-DESKTOP/Orleans-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans.yaml b/specs/CPUs-DESKTOP/Orleans.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/3000+.yaml b/specs/CPUs-DESKTOP/Orleans/3000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/3200+.yaml b/specs/CPUs-DESKTOP/Orleans/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml b/specs/CPUs-DESKTOP/Orleans/3500+(oul).yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/3500+.yaml b/specs/CPUs-DESKTOP/Orleans/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/3800+.yaml b/specs/CPUs-DESKTOP/Orleans/3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/4000+.yaml b/specs/CPUs-DESKTOP/Orleans/4000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1600.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1620.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1620.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Orleans/LE-1640.yaml b/specs/CPUs-DESKTOP/Orleans/LE-1640.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino-inherit.yaml b/specs/CPUs-DESKTOP/Palomino-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino.yaml b/specs/CPUs-DESKTOP/Palomino.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1500.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1500.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1600.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1700.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1800.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-1900.yaml b/specs/CPUs-DESKTOP/Palomino/XP-1900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-2000.yaml b/specs/CPUs-DESKTOP/Palomino/XP-2000.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Palomino/XP-2100.yaml b/specs/CPUs-DESKTOP/Palomino/XP-2100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver-inherit.yaml b/specs/CPUs-DESKTOP/Piledriver-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver.yaml b/specs/CPUs-DESKTOP/Piledriver.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-4300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-4350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8310.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8320.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8320E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8370.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-8370E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-9370.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml b/specs/CPUs-DESKTOP/Piledriver/FX-9590.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml b/specs/CPUs-DESKTOP/Piledriver/fx-6300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml b/specs/CPUs-DESKTOP/Piledriver/fx-6350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-3-2300X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2500X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-2600X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-5-PRO-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700E.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-2700X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml b/specs/CPUs-DESKTOP/Pinnacle-Ridge/Ryzen-7-PRO-2700X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto-inherit.yaml b/specs/CPUs-DESKTOP/Pluto-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto.yaml b/specs/CPUs-DESKTOP/Pluto.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/550.yaml b/specs/CPUs-DESKTOP/Pluto/550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/600.yaml b/specs/CPUs-DESKTOP/Pluto/600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/650.yaml b/specs/CPUs-DESKTOP/Pluto/650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/700.yaml b/specs/CPUs-DESKTOP/Pluto/700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/750.yaml b/specs/CPUs-DESKTOP/Pluto/750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/800.yaml b/specs/CPUs-DESKTOP/Pluto/800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Pluto/850.yaml b/specs/CPUs-DESKTOP/Pluto/850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml b/specs/CPUs-DESKTOP/Propus-Athlon-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon.yaml b/specs/CPUs-DESKTOP/Propus-Athlon.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/600e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/605e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/610e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/615e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/620.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/620.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/620e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/630.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/630.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/635.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/635.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/640.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/640.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/645.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/645.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-Athlon/650.yaml b/specs/CPUs-DESKTOP/Propus-Athlon/650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus-inherit.yaml b/specs/CPUs-DESKTOP/Propus-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus.yaml b/specs/CPUs-DESKTOP/Propus.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus/840.yaml b/specs/CPUs-DESKTOP/Propus/840.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Propus/850.yaml b/specs/CPUs-DESKTOP/Propus/850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana-inherit.yaml b/specs/CPUs-DESKTOP/Rana-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana.yaml b/specs/CPUs-DESKTOP/Rana.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/400e.yaml b/specs/CPUs-DESKTOP/Rana/400e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/405e.yaml b/specs/CPUs-DESKTOP/Rana/405e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/415e.yaml b/specs/CPUs-DESKTOP/Rana/415e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/420e.yaml b/specs/CPUs-DESKTOP/Rana/420e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/425.yaml b/specs/CPUs-DESKTOP/Rana/425.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/425e.yaml b/specs/CPUs-DESKTOP/Rana/425e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/435.yaml b/specs/CPUs-DESKTOP/Rana/435.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/440.yaml b/specs/CPUs-DESKTOP/Rana/440.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/445.yaml b/specs/CPUs-DESKTOP/Rana/445.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/450.yaml b/specs/CPUs-DESKTOP/Rana/450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/455.yaml b/specs/CPUs-DESKTOP/Rana/455.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Rana/460.yaml b/specs/CPUs-DESKTOP/Rana/460.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael-inherit.yaml b/specs/CPUs-DESKTOP/Raphael-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael.yaml b/specs/CPUs-DESKTOP/Raphael.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-5-7600X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7700X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-7-7800X3D.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7900X3D.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml b/specs/CPUs-DESKTOP/Raphael/Ryzen-9-7950X3D.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml b/specs/CPUs-DESKTOP/Regor-Athlon-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon.yaml b/specs/CPUs-DESKTOP/Regor-Athlon.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/210e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/215.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/215.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/220.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/220.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/235e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/240.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/240.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/240e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/245.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/245.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/245e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/250u.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/255.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/255.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/260.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/260.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/260u.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/265.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/265.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/270.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/270.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/270u.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/280.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/280.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B22.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B24.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B26.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B28.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml b/specs/CPUs-DESKTOP/Regor-Athlon/B30.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml b/specs/CPUs-DESKTOP/Regor-Sempron-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron.yaml b/specs/CPUs-DESKTOP/Regor-Sempron.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron/180.yaml b/specs/CPUs-DESKTOP/Regor-Sempron/180.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-Sempron/190.yaml b/specs/CPUs-DESKTOP/Regor-Sempron/190.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor-inherit.yaml b/specs/CPUs-DESKTOP/Regor-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor.yaml b/specs/CPUs-DESKTOP/Regor.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor/511.yaml b/specs/CPUs-DESKTOP/Regor/511.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Regor/521.yaml b/specs/CPUs-DESKTOP/Regor/521.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron.yaml b/specs/CPUs-DESKTOP/Richland-Sempron.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron/240.yaml b/specs/CPUs-DESKTOP/Richland-Sempron/240.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland-Sempron/250.yaml b/specs/CPUs-DESKTOP/Richland-Sempron/250.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland-X2-inherit.yaml b/specs/CPUs-DESKTOP/Richland-X2-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland-inherit.yaml b/specs/CPUs-DESKTOP/Richland-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland.yaml b/specs/CPUs-DESKTOP/Richland.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland/350.yaml b/specs/CPUs-DESKTOP/Richland/350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland/370K.yaml b/specs/CPUs-DESKTOP/Richland/370K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland/750.yaml b/specs/CPUs-DESKTOP/Richland/750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Richland/760K.yaml b/specs/CPUs-DESKTOP/Richland/760K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SSA5.yaml b/specs/CPUs-DESKTOP/SSA5.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR75.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml b/specs/CPUs-DESKTOP/SSA5/K5-PR90.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego-inherit.yaml b/specs/CPUs-DESKTOP/San-Diego-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego.yaml b/specs/CPUs-DESKTOP/San-Diego.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego/3500+.yaml b/specs/CPUs-DESKTOP/San-Diego/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego/3700+.yaml b/specs/CPUs-DESKTOP/San-Diego/3700+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego/4000+.yaml b/specs/CPUs-DESKTOP/San-Diego/4000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego/FX_55.yaml b/specs/CPUs-DESKTOP/San-Diego/FX_55.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/San-Diego/FX_57.yaml b/specs/CPUs-DESKTOP/San-Diego/FX_57.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/130.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/140.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/145.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml b/specs/CPUs-DESKTOP/Sargas-Sempron/150.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas-inherit.yaml b/specs/CPUs-DESKTOP/Sargas-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas.yaml b/specs/CPUs-DESKTOP/Sargas.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas/160u.yaml b/specs/CPUs-DESKTOP/Sargas/160u.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sargas/170u.yaml b/specs/CPUs-DESKTOP/Sargas/170u.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sharptooth-inherit.yaml b/specs/CPUs-DESKTOP/Sharptooth-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sharptooth.yaml b/specs/CPUs-DESKTOP/Sharptooth.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sharptooth/333.yaml b/specs/CPUs-DESKTOP/Sharptooth/333.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sharptooth/400.yaml b/specs/CPUs-DESKTOP/Sharptooth/400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Sharptooth/450.yaml b/specs/CPUs-DESKTOP/Sharptooth/450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml b/specs/CPUs-DESKTOP/SledgeHammer-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SledgeHammer.yaml b/specs/CPUs-DESKTOP/SledgeHammer.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml b/specs/CPUs-DESKTOP/SledgeHammer/FX-51.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml b/specs/CPUs-DESKTOP/SledgeHammer/FX-53.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml b/specs/CPUs-DESKTOP/Summit-Ridge-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge.yaml b/specs/CPUs-DESKTOP/Summit-Ridge.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-1300X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-3-base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1500X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-1600X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-5-base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1700X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-1800X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml b/specs/CPUs-DESKTOP/Summit-Ridge/Ryzen-7-base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml b/specs/CPUs-DESKTOP/Thoroughbred-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred.yaml b/specs/CPUs-DESKTOP/Thoroughbred.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-1900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2000.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml b/specs/CPUs-DESKTOP/Thoroughbred/XP-2800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton-inherit.yaml b/specs/CPUs-DESKTOP/Thorton-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton.yaml b/specs/CPUs-DESKTOP/Thorton.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2000.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2000.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2200.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2200.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2400.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-2600.yaml b/specs/CPUs-DESKTOP/Thorton/XP-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thorton/XP-3100.yaml b/specs/CPUs-DESKTOP/Thorton/XP-3100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban-inherit.yaml b/specs/CPUs-DESKTOP/Thuban-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban.yaml b/specs/CPUs-DESKTOP/Thuban.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1035T.yaml b/specs/CPUs-DESKTOP/Thuban/1035T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1045T.yaml b/specs/CPUs-DESKTOP/Thuban/1045T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1055T.yaml b/specs/CPUs-DESKTOP/Thuban/1055T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1065T.yaml b/specs/CPUs-DESKTOP/Thuban/1065T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1075T.yaml b/specs/CPUs-DESKTOP/Thuban/1075T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1075TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1075TBE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1090TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1090TBE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thuban/1100TBE.yaml b/specs/CPUs-DESKTOP/Thuban/1100TBE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird-inherit.yaml b/specs/CPUs-DESKTOP/Thunderbird-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird.yaml b/specs/CPUs-DESKTOP/Thunderbird.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1000B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1000B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1000C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1000C.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1100.yaml b/specs/CPUs-DESKTOP/Thunderbird/1100.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1133.yaml b/specs/CPUs-DESKTOP/Thunderbird/1133.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1200B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1200B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1200C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1200C.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1266.yaml b/specs/CPUs-DESKTOP/Thunderbird/1266.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1300.yaml b/specs/CPUs-DESKTOP/Thunderbird/1300.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1333.yaml b/specs/CPUs-DESKTOP/Thunderbird/1333.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1400B.yaml b/specs/CPUs-DESKTOP/Thunderbird/1400B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/1400C.yaml b/specs/CPUs-DESKTOP/Thunderbird/1400C.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/600.yaml b/specs/CPUs-DESKTOP/Thunderbird/600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/650.yaml b/specs/CPUs-DESKTOP/Thunderbird/650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/700.yaml b/specs/CPUs-DESKTOP/Thunderbird/700.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/750.yaml b/specs/CPUs-DESKTOP/Thunderbird/750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/800.yaml b/specs/CPUs-DESKTOP/Thunderbird/800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/850.yaml b/specs/CPUs-DESKTOP/Thunderbird/850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/900.yaml b/specs/CPUs-DESKTOP/Thunderbird/900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Thunderbird/950.yaml b/specs/CPUs-DESKTOP/Thunderbird/950.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo-inherit.yaml b/specs/CPUs-DESKTOP/Toledo-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo.yaml b/specs/CPUs-DESKTOP/Toledo.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/3700+.yaml b/specs/CPUs-DESKTOP/Toledo/3700+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/4000+.yaml b/specs/CPUs-DESKTOP/Toledo/4000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/FX-60.yaml b/specs/CPUs-DESKTOP/Toledo/FX-60.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml b/specs/CPUs-DESKTOP/Toledo/X2-4800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman-inherit.yaml b/specs/CPUs-DESKTOP/Toliman-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman.yaml b/specs/CPUs-DESKTOP/Toliman.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8250e.yaml b/specs/CPUs-DESKTOP/Toliman/8250e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8400.yaml b/specs/CPUs-DESKTOP/Toliman/8400.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8450.yaml b/specs/CPUs-DESKTOP/Toliman/8450.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8450e.yaml b/specs/CPUs-DESKTOP/Toliman/8450e.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8550.yaml b/specs/CPUs-DESKTOP/Toliman/8550.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8600.yaml b/specs/CPUs-DESKTOP/Toliman/8600.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8600B.yaml b/specs/CPUs-DESKTOP/Toliman/8600B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8650.yaml b/specs/CPUs-DESKTOP/Toliman/8650.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8750.yaml b/specs/CPUs-DESKTOP/Toliman/8750.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8750B.yaml b/specs/CPUs-DESKTOP/Toliman/8750B.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8750BE.yaml b/specs/CPUs-DESKTOP/Toliman/8750BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Toliman/8850.yaml b/specs/CPUs-DESKTOP/Toliman/8850.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity-Sempron.yaml b/specs/CPUs-DESKTOP/Trinity-Sempron.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml b/specs/CPUs-DESKTOP/Trinity-X2-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity-inherit.yaml b/specs/CPUs-DESKTOP/Trinity-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity.yaml b/specs/CPUs-DESKTOP/Trinity.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X2-340.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X4-740.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml b/specs/CPUs-DESKTOP/Trinity/Athlon-X4-750K.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4226.yaml b/specs/CPUs-DESKTOP/Valencia/4226.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4228HE.yaml b/specs/CPUs-DESKTOP/Valencia/4228HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4230HE.yaml b/specs/CPUs-DESKTOP/Valencia/4230HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4234.yaml b/specs/CPUs-DESKTOP/Valencia/4234.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4238.yaml b/specs/CPUs-DESKTOP/Valencia/4238.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4240.yaml b/specs/CPUs-DESKTOP/Valencia/4240.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4256EE.yaml b/specs/CPUs-DESKTOP/Valencia/4256EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4274HE.yaml b/specs/CPUs-DESKTOP/Valencia/4274HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4276HE.yaml b/specs/CPUs-DESKTOP/Valencia/4276HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4280.yaml b/specs/CPUs-DESKTOP/Valencia/4280.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Valencia/4284.yaml b/specs/CPUs-DESKTOP/Valencia/4284.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice-inherit.yaml b/specs/CPUs-DESKTOP/Venice-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice.yaml b/specs/CPUs-DESKTOP/Venice.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/1500+754.yaml b/specs/CPUs-DESKTOP/Venice/1500+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3000+.yaml b/specs/CPUs-DESKTOP/Venice/3000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3000+754.yaml b/specs/CPUs-DESKTOP/Venice/3000+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3200+.yaml b/specs/CPUs-DESKTOP/Venice/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3200+754.yaml b/specs/CPUs-DESKTOP/Venice/3200+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3400+.yaml b/specs/CPUs-DESKTOP/Venice/3400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3400+754.yaml b/specs/CPUs-DESKTOP/Venice/3400+754.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3500+.yaml b/specs/CPUs-DESKTOP/Venice/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Venice/3800+.yaml b/specs/CPUs-DESKTOP/Venice/3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer-inherit.yaml b/specs/CPUs-DESKTOP/Vermeer-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer.yaml b/specs/CPUs-DESKTOP/Vermeer.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-5-5600X3D.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-7-5800X3D.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5900X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml b/specs/CPUs-DESKTOP/Vermeer/Ryzen-9-5950X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven-inherit.yaml b/specs/CPUs-DESKTOP/Whitehaven-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven.yaml b/specs/CPUs-DESKTOP/Whitehaven.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1900X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1900X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1920X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1920X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven/1950X.yaml b/specs/CPUs-DESKTOP/Whitehaven/1950X.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml b/specs/CPUs-DESKTOP/Whitehaven/R9-base.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Winchester-inherit.yaml b/specs/CPUs-DESKTOP/Winchester-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Winchester.yaml b/specs/CPUs-DESKTOP/Winchester.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Winchester/3000+.yaml b/specs/CPUs-DESKTOP/Winchester/3000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Winchester/3200+.yaml b/specs/CPUs-DESKTOP/Winchester/3200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Winchester/3500+.yaml b/specs/CPUs-DESKTOP/Winchester/3500+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor-inherit.yaml b/specs/CPUs-DESKTOP/Windsor-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor.yaml b/specs/CPUs-DESKTOP/Windsor.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-62.yaml b/specs/CPUs-DESKTOP/Windsor/FX-62.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-70.yaml b/specs/CPUs-DESKTOP/Windsor/FX-70.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-72.yaml b/specs/CPUs-DESKTOP/Windsor/FX-72.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/FX-74.yaml b/specs/CPUs-DESKTOP/Windsor/FX-74.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3600+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml b/specs/CPUs-DESKTOP/Windsor/X2-3800+UL.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4000+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4200+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4400+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4600+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4800+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-4800+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5000+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5200+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5200+EF.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5400+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-5600+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml b/specs/CPUs-DESKTOP/Windsor/X2-6000+.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml b/specs/CPUs-DESKTOP/Windsor/X2-6400+BE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma-inherit.yaml b/specs/CPUs-DESKTOP/Zosma-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma.yaml b/specs/CPUs-DESKTOP/Zosma.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma/650T.yaml b/specs/CPUs-DESKTOP/Zosma/650T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma/840T.yaml b/specs/CPUs-DESKTOP/Zosma/840T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma/960T.yaml b/specs/CPUs-DESKTOP/Zosma/960T.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-DESKTOP/Zosma/960TBE.yaml b/specs/CPUs-DESKTOP/Zosma/960TBE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-EMBEDDED.yaml b/specs/CPUs-EMBEDDED.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-MOBILE.yaml b/specs/CPUs-MOBILE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER.yaml b/specs/CPUs-SERVER.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml b/specs/CPUs-SERVER/Abu-Dhabi-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi.yaml b/specs/CPUs-SERVER/Abu-Dhabi.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6308.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6308.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6320.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6320.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6328.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6328.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6344.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6344.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6348.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6348.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6366HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6376.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6376.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6378.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6378.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6380.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6380.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml b/specs/CPUs-SERVER/Abu-Dhabi/6386SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona-inherit.yaml b/specs/CPUs-SERVER/Barcelona-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona.yaml b/specs/CPUs-SERVER/Barcelona.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2344HE.yaml b/specs/CPUs-SERVER/Barcelona/2344HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2346HE.yaml b/specs/CPUs-SERVER/Barcelona/2346HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2347.yaml b/specs/CPUs-SERVER/Barcelona/2347.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2347HE.yaml b/specs/CPUs-SERVER/Barcelona/2347HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2350.yaml b/specs/CPUs-SERVER/Barcelona/2350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2350HE.yaml b/specs/CPUs-SERVER/Barcelona/2350HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2352.yaml b/specs/CPUs-SERVER/Barcelona/2352.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2354.yaml b/specs/CPUs-SERVER/Barcelona/2354.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2356.yaml b/specs/CPUs-SERVER/Barcelona/2356.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2358SE.yaml b/specs/CPUs-SERVER/Barcelona/2358SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/2360SE.yaml b/specs/CPUs-SERVER/Barcelona/2360SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8346HE.yaml b/specs/CPUs-SERVER/Barcelona/8346HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8347.yaml b/specs/CPUs-SERVER/Barcelona/8347.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8347HE.yaml b/specs/CPUs-SERVER/Barcelona/8347HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8350.yaml b/specs/CPUs-SERVER/Barcelona/8350.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8350HE.yaml b/specs/CPUs-SERVER/Barcelona/8350HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8352.yaml b/specs/CPUs-SERVER/Barcelona/8352.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8354.yaml b/specs/CPUs-SERVER/Barcelona/8354.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8356.yaml b/specs/CPUs-SERVER/Barcelona/8356.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8358SE.yaml b/specs/CPUs-SERVER/Barcelona/8358SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Barcelona/8360SE.yaml b/specs/CPUs-SERVER/Barcelona/8360SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Budapest-inherit.yaml b/specs/CPUs-SERVER/Budapest-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Budapest.yaml b/specs/CPUs-SERVER/Budapest.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Budapest/1352.yaml b/specs/CPUs-SERVER/Budapest/1352.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Budapest/1354.yaml b/specs/CPUs-SERVER/Budapest/1354.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Budapest/1356.yaml b/specs/CPUs-SERVER/Budapest/1356.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi-inherit.yaml b/specs/CPUs-SERVER/Delhi-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi.yaml b/specs/CPUs-SERVER/Delhi.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi/3320EE.yaml b/specs/CPUs-SERVER/Delhi/3320EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi/3350HE.yaml b/specs/CPUs-SERVER/Delhi/3350HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi/3365.yaml b/specs/CPUs-SERVER/Delhi/3365.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Delhi/3380.yaml b/specs/CPUs-SERVER/Delhi/3380.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa-inherit.yaml b/specs/CPUs-SERVER/Genoa-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa.yaml b/specs/CPUs-SERVER/Genoa.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9124.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9124.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9174F.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9224.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9224.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9254.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9254.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9274F.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9334.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9334.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9354.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9354.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9354P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9374F.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9454.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9454.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9454P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9474F.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9534.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9534.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9554.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9554.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9554P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9634.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9634.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9654.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9654.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml b/specs/CPUs-SERVER/Genoa/EPYC-9654P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos-inherit.yaml b/specs/CPUs-SERVER/Interlagos-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos.yaml b/specs/CPUs-SERVER/Interlagos.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6204.yaml b/specs/CPUs-SERVER/Interlagos/6204.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6212.yaml b/specs/CPUs-SERVER/Interlagos/6212.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6220.yaml b/specs/CPUs-SERVER/Interlagos/6220.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6230HE.yaml b/specs/CPUs-SERVER/Interlagos/6230HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6234.yaml b/specs/CPUs-SERVER/Interlagos/6234.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6238.yaml b/specs/CPUs-SERVER/Interlagos/6238.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6262HE.yaml b/specs/CPUs-SERVER/Interlagos/6262HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6272.yaml b/specs/CPUs-SERVER/Interlagos/6272.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6274.yaml b/specs/CPUs-SERVER/Interlagos/6274.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6276.yaml b/specs/CPUs-SERVER/Interlagos/6276.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6278.yaml b/specs/CPUs-SERVER/Interlagos/6278.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6282SE.yaml b/specs/CPUs-SERVER/Interlagos/6282SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Interlagos/6284SE.yaml b/specs/CPUs-SERVER/Interlagos/6284SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul-inherit.yaml b/specs/CPUs-SERVER/Istanbul-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul.yaml b/specs/CPUs-SERVER/Istanbul.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2419.yaml b/specs/CPUs-SERVER/Istanbul/2419.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2419EE.yaml b/specs/CPUs-SERVER/Istanbul/2419EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2423HE.yaml b/specs/CPUs-SERVER/Istanbul/2423HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2425HE.yaml b/specs/CPUs-SERVER/Istanbul/2425HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2427.yaml b/specs/CPUs-SERVER/Istanbul/2427.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2431.yaml b/specs/CPUs-SERVER/Istanbul/2431.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2435.yaml b/specs/CPUs-SERVER/Istanbul/2435.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/2439SE.yaml b/specs/CPUs-SERVER/Istanbul/2439SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8419.yaml b/specs/CPUs-SERVER/Istanbul/8419.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8419EE.yaml b/specs/CPUs-SERVER/Istanbul/8419EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8423.yaml b/specs/CPUs-SERVER/Istanbul/8423.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8425HE.yaml b/specs/CPUs-SERVER/Istanbul/8425HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8431.yaml b/specs/CPUs-SERVER/Istanbul/8431.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8435.yaml b/specs/CPUs-SERVER/Istanbul/8435.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Istanbul/8439SE.yaml b/specs/CPUs-SERVER/Istanbul/8439SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon-inherit.yaml b/specs/CPUs-SERVER/Lisbon-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon.yaml b/specs/CPUs-SERVER/Lisbon.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4122.yaml b/specs/CPUs-SERVER/Lisbon/4122.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4130.yaml b/specs/CPUs-SERVER/Lisbon/4130.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4133.yaml b/specs/CPUs-SERVER/Lisbon/4133.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4162EE.yaml b/specs/CPUs-SERVER/Lisbon/4162EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4164EE.yaml b/specs/CPUs-SERVER/Lisbon/4164EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4170HE.yaml b/specs/CPUs-SERVER/Lisbon/4170HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4171HE.yaml b/specs/CPUs-SERVER/Lisbon/4171HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4174HE.yaml b/specs/CPUs-SERVER/Lisbon/4174HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4176HE.yaml b/specs/CPUs-SERVER/Lisbon/4176HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4180.yaml b/specs/CPUs-SERVER/Lisbon/4180.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Lisbon/4184.yaml b/specs/CPUs-SERVER/Lisbon/4184.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours-inherit.yaml b/specs/CPUs-SERVER/Magny-Cours-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours.yaml b/specs/CPUs-SERVER/Magny-Cours.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6124HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6124HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6128.yaml b/specs/CPUs-SERVER/Magny-Cours/6128.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6128HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6128HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6132HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6132HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6134.yaml b/specs/CPUs-SERVER/Magny-Cours/6134.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6136.yaml b/specs/CPUs-SERVER/Magny-Cours/6136.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6140.yaml b/specs/CPUs-SERVER/Magny-Cours/6140.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6164HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6164HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6166HE.yaml b/specs/CPUs-SERVER/Magny-Cours/6166HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6168.yaml b/specs/CPUs-SERVER/Magny-Cours/6168.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6172.yaml b/specs/CPUs-SERVER/Magny-Cours/6172.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6174.yaml b/specs/CPUs-SERVER/Magny-Cours/6174.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6176.yaml b/specs/CPUs-SERVER/Magny-Cours/6176.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6176SE.yaml b/specs/CPUs-SERVER/Magny-Cours/6176SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Magny-Cours/6180SE.yaml b/specs/CPUs-SERVER/Magny-Cours/6180SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples-inherit.yaml b/specs/CPUs-SERVER/Naples-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples.yaml b/specs/CPUs-SERVER/Naples.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7251.yaml b/specs/CPUs-SERVER/Naples/Epyc-7251.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7261.yaml b/specs/CPUs-SERVER/Naples/Epyc-7261.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7281.yaml b/specs/CPUs-SERVER/Naples/Epyc-7281.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7301.yaml b/specs/CPUs-SERVER/Naples/Epyc-7301.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7351.yaml b/specs/CPUs-SERVER/Naples/Epyc-7351.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7351P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7351P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7371.yaml b/specs/CPUs-SERVER/Naples/Epyc-7371.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7401.yaml b/specs/CPUs-SERVER/Naples/Epyc-7401.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7401P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7401P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7451.yaml b/specs/CPUs-SERVER/Naples/Epyc-7451.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7501.yaml b/specs/CPUs-SERVER/Naples/Epyc-7501.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7551.yaml b/specs/CPUs-SERVER/Naples/Epyc-7551.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7551P.yaml b/specs/CPUs-SERVER/Naples/Epyc-7551P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Naples/Epyc-7601.yaml b/specs/CPUs-SERVER/Naples/Epyc-7601.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome-inherit.yaml b/specs/CPUs-SERVER/Rome-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome.yaml b/specs/CPUs-SERVER/Rome.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7232P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7232P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7252.yaml b/specs/CPUs-SERVER/Rome/Epyc-7252.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7262.yaml b/specs/CPUs-SERVER/Rome/Epyc-7262.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7272.yaml b/specs/CPUs-SERVER/Rome/Epyc-7272.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7282.yaml b/specs/CPUs-SERVER/Rome/Epyc-7282.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7302.yaml b/specs/CPUs-SERVER/Rome/Epyc-7302.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7302P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7302P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7352.yaml b/specs/CPUs-SERVER/Rome/Epyc-7352.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7402.yaml b/specs/CPUs-SERVER/Rome/Epyc-7402.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7402P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7402P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7452.yaml b/specs/CPUs-SERVER/Rome/Epyc-7452.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7502.yaml b/specs/CPUs-SERVER/Rome/Epyc-7502.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7502P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7502P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7532.yaml b/specs/CPUs-SERVER/Rome/Epyc-7532.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7542.yaml b/specs/CPUs-SERVER/Rome/Epyc-7542.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7552.yaml b/specs/CPUs-SERVER/Rome/Epyc-7552.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7642.yaml b/specs/CPUs-SERVER/Rome/Epyc-7642.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7662.yaml b/specs/CPUs-SERVER/Rome/Epyc-7662.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7702.yaml b/specs/CPUs-SERVER/Rome/Epyc-7702.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7702P.yaml b/specs/CPUs-SERVER/Rome/Epyc-7702P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7742.yaml b/specs/CPUs-SERVER/Rome/Epyc-7742.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F32.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F32.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F52.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F52.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7F72.yaml b/specs/CPUs-SERVER/Rome/Epyc-7F72.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Rome/Epyc-7H12.yaml b/specs/CPUs-SERVER/Rome/Epyc-7H12.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul-inherit.yaml b/specs/CPUs-SERVER/Seoul-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul.yaml b/specs/CPUs-SERVER/Seoul.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4310HE.yaml b/specs/CPUs-SERVER/Seoul/4310HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4332HE.yaml b/specs/CPUs-SERVER/Seoul/4332HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4334.yaml b/specs/CPUs-SERVER/Seoul/4334.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4340.yaml b/specs/CPUs-SERVER/Seoul/4340.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4365EE.yaml b/specs/CPUs-SERVER/Seoul/4365EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4376HE.yaml b/specs/CPUs-SERVER/Seoul/4376HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Seoul/4386.yaml b/specs/CPUs-SERVER/Seoul/4386.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai-inherit.yaml b/specs/CPUs-SERVER/Shanghai-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai.yaml b/specs/CPUs-SERVER/Shanghai.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2372HE.yaml b/specs/CPUs-SERVER/Shanghai/2372HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2373EE.yaml b/specs/CPUs-SERVER/Shanghai/2373EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2374HE.yaml b/specs/CPUs-SERVER/Shanghai/2374HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2376HE.yaml b/specs/CPUs-SERVER/Shanghai/2376HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2377EE.yaml b/specs/CPUs-SERVER/Shanghai/2377EE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2378.yaml b/specs/CPUs-SERVER/Shanghai/2378.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2379HE.yaml b/specs/CPUs-SERVER/Shanghai/2379HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2380.yaml b/specs/CPUs-SERVER/Shanghai/2380.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2381HE.yaml b/specs/CPUs-SERVER/Shanghai/2381HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2382.yaml b/specs/CPUs-SERVER/Shanghai/2382.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2384.yaml b/specs/CPUs-SERVER/Shanghai/2384.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2386SE.yaml b/specs/CPUs-SERVER/Shanghai/2386SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2387.yaml b/specs/CPUs-SERVER/Shanghai/2387.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2389.yaml b/specs/CPUs-SERVER/Shanghai/2389.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/2393SE.yaml b/specs/CPUs-SERVER/Shanghai/2393SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8374HE.yaml b/specs/CPUs-SERVER/Shanghai/8374HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8376HE.yaml b/specs/CPUs-SERVER/Shanghai/8376HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8378.yaml b/specs/CPUs-SERVER/Shanghai/8378.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8379HE.yaml b/specs/CPUs-SERVER/Shanghai/8379HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8380.yaml b/specs/CPUs-SERVER/Shanghai/8380.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8381HE.yaml b/specs/CPUs-SERVER/Shanghai/8381HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8382.yaml b/specs/CPUs-SERVER/Shanghai/8382.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8384.yaml b/specs/CPUs-SERVER/Shanghai/8384.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8386SE.yaml b/specs/CPUs-SERVER/Shanghai/8386SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8387.yaml b/specs/CPUs-SERVER/Shanghai/8387.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8389.yaml b/specs/CPUs-SERVER/Shanghai/8389.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Shanghai/8393SE.yaml b/specs/CPUs-SERVER/Shanghai/8393SE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl-inherit.yaml b/specs/CPUs-SERVER/Snowy-Owl-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl.yaml b/specs/CPUs-SERVER/Snowy-Owl.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3101.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3151.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3201.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3251.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3301.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3351.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3401.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml b/specs/CPUs-SERVER/Snowy-Owl/EPYC-Embedded-3451.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Suzuka-inherit.yaml b/specs/CPUs-SERVER/Suzuka-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Suzuka.yaml b/specs/CPUs-SERVER/Suzuka.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Suzuka/1381.yaml b/specs/CPUs-SERVER/Suzuka/1381.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Suzuka/1385.yaml b/specs/CPUs-SERVER/Suzuka/1385.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Suzuka/1389.yaml b/specs/CPUs-SERVER/Suzuka/1389.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Valencia-inherit.yaml b/specs/CPUs-SERVER/Valencia-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Valencia.yaml b/specs/CPUs-SERVER/Valencia.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Warsaw-inherit.yaml b/specs/CPUs-SERVER/Warsaw-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Warsaw.yaml b/specs/CPUs-SERVER/Warsaw.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Warsaw/6338P.yaml b/specs/CPUs-SERVER/Warsaw/6338P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Warsaw/6370P.yaml b/specs/CPUs-SERVER/Warsaw/6370P.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Zurich-inherit.yaml b/specs/CPUs-SERVER/Zurich-inherit.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Zurich.yaml b/specs/CPUs-SERVER/Zurich.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Zurich/3250HE.yaml b/specs/CPUs-SERVER/Zurich/3250HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Zurich/3260HE.yaml b/specs/CPUs-SERVER/Zurich/3260HE.yaml old mode 100755 new mode 100644 diff --git a/specs/CPUs-SERVER/Zurich/3280.yaml b/specs/CPUs-SERVER/Zurich/3280.yaml old mode 100755 new mode 100644 diff --git a/specs/Root.yaml b/specs/Root.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel.yaml b/specs/intel/Desktop-CPUs-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3355E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J3455E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J1900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-965.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3060.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-347.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-352.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-356.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-365.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-631.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-641.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-651.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarmill/Pentium-661.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-560.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-655K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6951.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6960.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9300T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4900T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4920.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4930T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G4950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5420T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E4700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-E6850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Core-X6800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E1600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2140.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2180.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Conroe/Pentium-E2220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4670R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i7-4770R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4025.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J4125.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake-Refresh/Pentium-J5040.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4005.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J4105.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gemini-Lake/Pentium-J5005.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1820T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1840T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G1850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3245.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1610T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1620T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G1630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2140.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3930TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G3950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-Q6700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Kentsfield/Core-QX6850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D425.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-315J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-325J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-326.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-330J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-331.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-335J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-336.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-340J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-341.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-345J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-346.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-350J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-351.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-355.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-505J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-506.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-511.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-515.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-516.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-517.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-519K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-520J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-521.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-524.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-530J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-531.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-540J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-541.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-550J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-551.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-560J.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-561.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-571.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-662.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Prescott/Pentium-672.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-915.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-920.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-935.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-940.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-945.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-955.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-960.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Presler/Pentium-965.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2102.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2380P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2390T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G465.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G530T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G540T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G550T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G555.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G622.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G632.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6585R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6685R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6785R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3900T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G3920.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-805.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Smithfield/Pentium-840.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E7600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8190.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Core-E8600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E3500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500K.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8200S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q8400S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9400S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9505S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9550S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-Q9650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9770.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml b/specs/intel/Desktop-CPUs-Intel/Desktop-Yorkfield/Core-QX9775.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel.yaml b/specs/intel/Embedded-CPUs-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3940.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Apollo-Lake/Atom-E3950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i5-520E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620LE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Arrandale/Core-i7-620UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3805.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3815.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3825.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3826.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3827.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Bay-Trail/Atom-E3845.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Braswell/Atom-E8000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5700EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Core-i7-5850EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1258LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E3-1278LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2608LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2618LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2628LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2648LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2658V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-2699RV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Broadwell/Xeon-E5-4628LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100HL.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i3-9100TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i5-9500TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9700TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Core-i7-9850HL.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4930E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Pentium-G4932E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2226GE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ME.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2254ML.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ME.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2276ML.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Coffee-Lake/Xeon-E-2278GEL.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Harpertown/Xeon-L5408.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4100E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4102E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4110E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4112E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4330TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i3-4340TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4400E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4402EC.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4410E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4422E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i5-4570TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EC.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4700EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4702EC.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Core-i7-4770TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2000E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-2002E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G1820TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Pentium-G3320TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E3-1268LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-1428LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2408LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2418LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2428LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2438LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2608LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2618LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2628LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2648LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658AV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-2658V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Haswell/Xeon-E5-4648V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-1428LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2418LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2428LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EN/Xeon-E5-2448LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2618LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2628LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2648LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-2658V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge-EP/Xeon-E5-4624LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3120ME.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i3-3217UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i5-3610ME.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3517UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3555LE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3612QE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3615QE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1020E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1047UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-1405V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Pentium-927UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Pentium-P1053.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC3539.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5509.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5539.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-EC5549.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3518.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC3528.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5518.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Jasper-Forest/Xeon-LC5528.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7100E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i3-7102E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7440EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i5-7442EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Core-i7-7820EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501LV6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1501MV6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Kaby-Lake/Xeon-E3-1505LV6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5508.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Nehalem-EP/Xeon-L5518.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2308.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2316.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2338.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2358.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2508.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2516.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2518.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2538.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2558.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2718.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2738.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Rangeley/Atom-C2758.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2418L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2428L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EN/Xeon-E5-2448L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2648L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge-EP/Xeon-E5-2658.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2310E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i3-2340UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i5-2515E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2610UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2655LE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Core-i7-2715QE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-807UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-827E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-847E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Sandy-Bridge/Pentium-B810E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6100TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i3-6102E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6440EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6442EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i5-6500TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6700TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6820EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Core-i7-6822EQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3900TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G3902E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Pentium-G4400TE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1268LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1505LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1558LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Skylake/Xeon-E3-1578LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645C.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E645CT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665C.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Stellarton/Atom-E665CT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E620T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E640T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E660T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Tunnel-Creek/Atom-E680T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i3-8145UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i5-8365UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Core-i7-8665UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Whiskey-Lake/Pentium-4305UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-E5240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L3014.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml b/specs/intel/Embedded-CPUs-Intel/Embedded-Wolfdale/Xeon-L5238.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel.yaml b/specs/intel/Mobile-CPUs-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i3-10110Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10310Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8310Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake/Pentium-4425Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3350E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N3450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-390M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-470UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-610E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620LM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640LM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660LM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-660UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-680UM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4505.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P4600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3405.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U3600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-U5600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-A1020.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2805.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2806.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2807.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2808.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2810.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2815.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2840.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2910.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2920.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2930.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N2940.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3010.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3050.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3060.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3150.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10a.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y10c.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y31.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y51.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y70.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-5Y71.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5157U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5750HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3205U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3215U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3755U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3765U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cherry-Trail.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-820QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-920XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-940XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Cloverview.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8269U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400B.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8557U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750HF.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2186M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2286M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-5205U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Pentium-6405U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4760HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4860HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4950HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-353.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-360.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-370.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-373.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-380.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-383.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-390.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-715.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-725.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-730.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-733.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-735.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-738.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-740.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-745A.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-753.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-755.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-758.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-760.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-765.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-770.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-773.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-778.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Dothan/Pentium-780.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4020.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N4120.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake-Refresh/Pentium-N5030.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N4100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Gemini-Lake/Pentium-N5000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4025U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4110M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4120U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4158U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4220Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4302Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4330M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4340M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4350U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4360U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2950M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2955U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2957U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2961Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2970M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2980U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-2981U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3556U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3558U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3560Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3561Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G1.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1000G4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1030G7.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1060G7.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3130M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3229Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3439Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1000M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1005M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1007U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1017U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1019Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1020M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-1037U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2030M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2129Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-A1018.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8709G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-3867U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y30.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-M3-7Y32.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7287U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y57.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3865U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-3965Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1505MV6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Xeon-E3-1535MV6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z615.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z625.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Lincroft/Atom-Z670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-L7700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5270.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T5870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-T7800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U2200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-U7700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Core-X7900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-523.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-560.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-573.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-575.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-585.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T1700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2310.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2370.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T2390.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merom/Pentium-T3400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Merrifield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Moorefield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7370.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P7570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P8800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-P9700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-Q9100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-QX9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9380.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SL9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SP9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU3500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-SU9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T6670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T8300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-T9900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9000.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Core-X9100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-722.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-723.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-743.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-763.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-900.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-925.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-SU2300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3100.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T3500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Penwell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N475.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2312M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2377M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2510E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2617M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2629M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2649M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2657M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2710QE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-787.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-797.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-807.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-847.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-857.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-867.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-877.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-887.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-957.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-977.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-997.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B710.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B720.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B800.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B810.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B815.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B840.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z510PT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z515.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520PT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z530P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z560.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M3-6Y30.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y54.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M5-6Y57.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-M7-6Y75.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100H.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6287U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6350HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6660U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6870HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6970HQ.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3855U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-3955U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1505MV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1515MV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1535MV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1545MV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Xeon-E3-1575MV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-3G-R.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-SoFIA-LTE.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4205U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-4305U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-L2500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T1400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2050.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300E.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2700.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1300.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U1500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2400.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-U2500.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-215.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-410.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-423.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-443.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2060.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2080.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Pentium-T2130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel.yaml b/specs/intel/Server-CPUs-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2730.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml b/specs/intel/Server-CPUs-Intel/Server-Avoton/Atom-C2750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3580.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1269.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1279.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml b/specs/intel/Server-CPUs-Intel/Server-Briarwood/Atom-S1289.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1507.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1508.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1509.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1517.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Pentium-D1519.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1513N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1518.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1521.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1523N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1527.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1528.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1529.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1531.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1533N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1537.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1539.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1543N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1548.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1553N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1557.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1559.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1567.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1571.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1577.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1265LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E3-1285V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1620V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1630V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1650V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1660V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-1680V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2603V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2609V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2620V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2623V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2630V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2637V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2640V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2643V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650LV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2650V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2660V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2667V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2680V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2683V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2687WV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2690V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2695V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697AV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2697V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2698V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699AV4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-2699V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4610V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4620V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4627V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4640V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4650V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4655V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4660V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4667V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E5-4669V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4809V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4820V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4830V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-4850V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8860V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8867V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8870V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8880V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8890V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8891V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8893V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-E7-8894V4.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-3204.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4208.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4209T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4210.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4214Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4215.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-4216.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5215M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5217.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218B.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5218T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220S.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5220T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-5222.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6222V.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6226.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6230T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6234.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6238T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6240Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6242.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6244.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6246.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6248.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6252N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6254.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-6262V.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8253.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8256.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8260Y.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8268.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8270.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8276M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-8280M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9221.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9222.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9242.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml b/specs/intel/Server-CPUs-Intel/Server-Cascade-Lake/Xeon-9282.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml b/specs/intel/Server-CPUs-Intel/Server-Centerton/Atom-S1260.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml b/specs/intel/Server-CPUs-Intel/Server-Clarkdale/Xeon-L3406.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5310.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5318.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-L5335.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5355.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-X5365.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2124G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2126G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2134.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2144G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2174G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2176G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2186G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2224G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2226G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2234.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2236.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2244G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2246G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2274G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2276G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2278G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2286G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2288G.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3040.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3050.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3060.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3065.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml b/specs/intel/Server-CPUs-Intel/Server-Conroe/Xeon-3070.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3308.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3336.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3338.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3508.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3538.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3558.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3708.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3750.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3758.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3808.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3858.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3950.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3955.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml b/specs/intel/Server-CPUs-Intel/Server-Denverton/Atom-C3958.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-E7450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7445.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-L7455.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml b/specs/intel/Server-CPUs-Intel/Server-Dunnington/Xeon-X7460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5410.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5410.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5482.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5492.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1225V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1226V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230Lv3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1231V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1241V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1246V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1265Lv3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1271V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1276V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1281V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285-v3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1285Lv3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1286V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1620V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1630V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1650V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1660V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-1680V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2603V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2609V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2620V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2623V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2630V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2637V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2640V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2643V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2650V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2660V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2667V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2670V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2680V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2683V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2687WV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2690V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2695V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2697V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2698V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-2699V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4610V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4620V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4627V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4640V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4650V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4655V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4660V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4667V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E5-4669V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4809V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4820V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4830V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-4850V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8860V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8867V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8870V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880LV3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8880V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8890V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8891V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E7-8893V3.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1602.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1622.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1623N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1627.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1633N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1637.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1649N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml b/specs/intel/Server-CPUs-Intel/Server-Hewitt-Lake/Xeon-D-1653N.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2403V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2407V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2420V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2430V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2440V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2450V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EN/Xeon-E5-2470V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1620V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1650V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-1660V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2603V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2609V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2620V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2630V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2637V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2640V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2643V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2650V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2660V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2667V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2670V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2680V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2687WV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2690V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2695V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-2697V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4603V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4607V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4610V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4620V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4627V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4640V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4650V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge-EP/Xeon-E5-4657LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1220V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1225V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1240V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1245V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1265LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1270V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1275V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1280V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1290V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2850V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2870V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2880V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-2890V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4809V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4820V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4830V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4850V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4860V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4870V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4880V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-4890V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8850V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8857V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8870V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880LV2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8880V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8890V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8891V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E7-8893V2.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1220V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1225V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1230V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1240V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1245V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1270V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1275V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1280V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml b/specs/intel/Server-CPUs-Intel/Server-Kaby-Lake/Xeon-E3-1285V6.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3210.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3230.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-L3426.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3480.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5502.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5503.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5506.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5530.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5580.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-W5590.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5550.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Pentium-1405.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-1428L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2403.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2407.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2440.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2450L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2470.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2603.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2609.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2630L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2637.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2650L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2665.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2667.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4603.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4607.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4610.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4617.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-4650L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1235.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1245.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1275.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1280.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1290.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3104.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-3106.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4108.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4109T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4110.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4112.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4114T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-4116T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5115.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5118.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5119T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5120T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-5122.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6126T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6128.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6130T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6132.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6134.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6136.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138P.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6138T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6140.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6142F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6144.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6146.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6148F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6150.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6152.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-6154.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8153.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8156.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8158.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8160T.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8164.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8168.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8170.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8176F.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-8180.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2123IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2141I.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2142IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2143IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2145NT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2146NT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2161I.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2163IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2166NT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2173IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2177NT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2183IT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-D-2187NT.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1220V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1225V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1230V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1235LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1240V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1245V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1260LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1270V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1275V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1280V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1565LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585LV5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-E3-1585V5.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2175.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2195.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7210.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7310.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-E7340.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-L7345.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml b/specs/intel/Server-CPUs-Intel/Server-Tigerton/Xeon-X7350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5603.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5606.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5607.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5645.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5649.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5609.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5618.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5630.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5638.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-L5640.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5647.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5672.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5677.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5687.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2803.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2860.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-2870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4807.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4820.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4860.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-4870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8830.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8837.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8850.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8860.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8867L.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml b/specs/intel/Server-CPUs-Intel/Server-Westmere-EX/Xeon-E7-8870.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3120.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5205.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E5220.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L3110.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5215.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-L5240.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5260.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5270.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-X5272.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5110.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5113.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5128.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5130.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5133.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5138.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5140.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5148.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5150.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml b/specs/intel/Server-CPUs-Intel/Server-Woodcrest/Xeon-5160.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-L3360.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3320.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3330.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3350.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3360.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3370.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml b/specs/intel/Server-CPUs-Intel/Server-Yorkfield/Xeon-X3380.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel.yaml b/specs/intel/undefined-CPUs-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2223.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2225.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2235.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2245.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2255.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2265.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2275.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3225.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275.yaml old mode 100755 new mode 100644 diff --git a/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.yaml old mode 100755 new mode 100644 diff --git a/src/css/about.css b/src/css/about.css old mode 100755 new mode 100644 diff --git a/src/css/base.css b/src/css/base.css old mode 100755 new mode 100644 diff --git a/src/css/fonts.css b/src/css/fonts.css old mode 100755 new mode 100644 diff --git a/src/css/mobile.css b/src/css/mobile.css old mode 100755 new mode 100644 diff --git a/src/css/part-selector.css b/src/css/part-selector.css old mode 100755 new mode 100644 diff --git a/src/css/scrollbar.css b/src/css/scrollbar.css old mode 100755 new mode 100644 diff --git a/src/css/spec-viewer.css b/src/css/spec-viewer.css old mode 100755 new mode 100644 diff --git a/src/js/about.js b/src/js/about.js old mode 100755 new mode 100644 diff --git a/src/js/components/info-links.js b/src/js/components/info-links.js old mode 100755 new mode 100644 diff --git a/src/js/components/main-selector.js b/src/js/components/main-selector.js old mode 100755 new mode 100644 diff --git a/src/js/components/part.js b/src/js/components/part.js old mode 100755 new mode 100644 diff --git a/src/js/components/svg.js b/src/js/components/svg.js old mode 100755 new mode 100644 diff --git a/src/js/dates.js b/src/js/dates.js old mode 100755 new mode 100644 diff --git a/src/js/entry.js b/src/js/entry.js old mode 100755 new mode 100644 diff --git a/src/js/hash.js b/src/js/hash.js old mode 100755 new mode 100644 diff --git a/src/js/part-selector.js b/src/js/part-selector.js old mode 100755 new mode 100644 diff --git a/src/js/pure.js b/src/js/pure.js old mode 100755 new mode 100644 diff --git a/src/js/row-data.js b/src/js/row-data.js old mode 100755 new mode 100644 diff --git a/src/js/seo.js b/src/js/seo.js old mode 100755 new mode 100644 diff --git a/src/js/spec-viewer.js b/src/js/spec-viewer.js old mode 100755 new mode 100644 diff --git a/src/js/units.js b/src/js/units.js old mode 100755 new mode 100644 diff --git a/tests/bucket.js b/tests/bucket.js old mode 100755 new mode 100644 diff --git a/tests/combine.js b/tests/combine.js old mode 100755 new mode 100644 diff --git a/tests/dates.js b/tests/dates.js old mode 100755 new mode 100644 diff --git a/tests/genscrapedsections.js b/tests/genscrapedsections.js old mode 100755 new mode 100644 diff --git a/tests/gensubtext.js b/tests/gensubtext.js old mode 100755 new mode 100644 diff --git a/tests/gettabledata.js b/tests/gettabledata.js old mode 100755 new mode 100644 diff --git a/tests/row-data.js b/tests/row-data.js old mode 100755 new mode 100644 diff --git a/tests/seo.js b/tests/seo.js old mode 100755 new mode 100644 diff --git a/tests/third-party-matchers.js b/tests/third-party-matchers.js old mode 100755 new mode 100644 diff --git a/tests/units.js b/tests/units.js old mode 100755 new mode 100644 diff --git a/tests/yaml-verify.js b/tests/yaml-verify.js old mode 100755 new mode 100644 diff --git a/tmp/.gitignore b/tmp/.gitignore old mode 100755 new mode 100644 diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py old mode 100755 new mode 100644 From 925ecd011a31a147e4024b001684b0e91ce572dc Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 7 Dec 2024 21:26:31 +0000 Subject: [PATCH 25/41] remove console logs --- build/combine-util.js | 10 ---------- build/geekbench-parse.js | 2 -- build/passmark-parse.js | 5 ----- 3 files changed, 17 deletions(-) diff --git a/build/combine-util.js b/build/combine-util.js index d0c7a32c..e6248580 100644 --- a/build/combine-util.js +++ b/build/combine-util.js @@ -135,10 +135,6 @@ const combineUtil = { brand: 'nvidia', type: 'gpu', parser: () => { - if(hints.cleanName.includes("Xp")){ - console.log(hints); - console.log(hints.cleanName.replace(/titan/i,"TITAN")) - } return hints.cleanName.replace(/titan/i,"TITAN"); } }, @@ -298,14 +294,8 @@ const combineUtil = { switch (compatibleSeries.length) { case 0: - // if(hints.cleanName.includes("Titan-Xp")){ - // console.log(hints); - // } return false; case 1: - // if(hints.cleanName.includes("Epyc")){ - // console.log(hints); - // } return compatibleSeries[0].parser(); default: console.error(`Multiple series matched third party ${hints.name}: ${compatibleSeries.map(c => c.nameTest)}`); diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js index 5855e372..2c7e0054 100644 --- a/build/geekbench-parse.js +++ b/build/geekbench-parse.js @@ -4,8 +4,6 @@ const _ = require('lodash'); const util = require('./util'); const [cpuPath, gpuPath, gpuPath2, outPath] = process.argv.slice(2); -// console.log("FIND MEEEEEEEEEEEEEEE!!!!!!!") -// console.log(cpuPath, gpuPath, outPath); const parse = (tableEl, type, partType) => { const $ = cheerio.load(tableEl); diff --git a/build/passmark-parse.js b/build/passmark-parse.js index 52d06b41..d74d3780 100644 --- a/build/passmark-parse.js +++ b/build/passmark-parse.js @@ -1,5 +1,3 @@ -console.log(' find meeeeee'); - const fs = require('fs'); const cheerio = require('cheerio'); const _ = require('lodash'); @@ -12,8 +10,6 @@ const parse = (path, partType, benchmarkType) => { .map((i, el) => { const name = $(el).find('span.prdname').text(); const score = +(_.trim($(el).find('span.count').text()).replace(',','')); - console.log(name); - console.log(score); return { name, score }; }).get(); // c => c.score sometimes gets rid of new GPUs which are listed, but @@ -50,7 +46,6 @@ const parse = (path, partType, benchmarkType) => { } const [gpuPath, outPath] = process.argv.slice(2); -console.log(process.argv.slice(2)); util.writeJSON(outPath, ( parse(gpuPath, 'gpu', 'Graphics') From 5dac70c211811fa481d457d9a4eb884d88f3ff3e Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 7 Dec 2024 21:26:43 +0000 Subject: [PATCH 26/41] add user agent to curl --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eb75d783..ff677572 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PATH := ./node_modules/.bin:${PATH} # to dl, this followed by output file followed by url -curl := curl --retry 5 --retry-delay 5 --connect-timeout 30 -fo +curl := curl -A "Mozilla/5.0 (X11; Linux x86_64; rv:131.0) Gecko/20100101 Firefox/131.0" --retry 5 --retry-delay 5 --connect-timeout 30 -fo node := node ${NODE_OPTS} tests := ./tests/*.js From 47a80d20a381a6e274604b8b45fd726cfc265ef7 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 7 Dec 2024 21:31:22 +0000 Subject: [PATCH 27/41] remove old never implemented code --- src/toSQL/converter.py | 14 -------------- src/toSQL/specs.js | 1 - 2 files changed, 15 deletions(-) delete mode 100644 src/toSQL/converter.py delete mode 100755 src/toSQL/specs.js diff --git a/src/toSQL/converter.py b/src/toSQL/converter.py deleted file mode 100644 index 20bc92c3..00000000 --- a/src/toSQL/converter.py +++ /dev/null @@ -1,14 +0,0 @@ -import json -import sqlite3 - -# Load JSON data -with open('specs.js', 'r') as file: - data = json.load(file) - -# Initialize SQLite database connection -conn = sqlite3.connect('specs.db') -cursor = conn.cursor() - -for section in data['sections']: - print(section) - exit() \ No newline at end of file diff --git a/src/toSQL/specs.js b/src/toSQL/specs.js deleted file mode 100755 index 9d5ce73e..00000000 --- a/src/toSQL/specs.js +++ /dev/null @@ -1 +0,0 @@ -{"130":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"Q2 2011","L2 Cache (Total)":"1 MiB"},"humanName":"130","isPart":true,"type":"CPU"},"140":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2009-06","L2 Cache (Total)":"2 MiB"},"humanName":"140","isPart":true,"type":"CPU"},"145":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2010-09","L2 Cache (Total)":"2 MiB"},"humanName":"145","isPart":true,"type":"CPU"},"150":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2010-10-07","L2 Cache (Total)":"2 MiB"},"humanName":"150","isPart":true,"type":"CPU"},"180":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"Q3 2010"},"humanName":"180","isPart":true,"type":"CPU"},"190":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","TDP":"45 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"Q3 2011"},"humanName":"190","isPart":true,"type":"CPU"},"215":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2009-10-20"},"humanName":"X2 215","isPart":true,"type":"CPU"},"220":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2010-09-21"},"humanName":"X2 220","isPart":true,"type":"CPU"},"240":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Core Count":2,"Thread Count":2,"Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2013-06","Boost Frequency":"3.6 GHz"},"humanName":"240","isPart":true,"type":"CPU"},"245":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-07-23"},"humanName":"X2 245","isPart":true,"type":"CPU"},"250":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Core Count":2,"Thread Count":2,"Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"1 MiB","Release Date":"2013-06","Boost Frequency":"3.6 GHz"},"humanName":"250","isPart":true,"type":"CPU"},"255":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-01-25"},"humanName":"X2 255","isPart":true,"type":"CPU"},"260":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 260","isPart":true,"type":"CPU"},"265":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 265","isPart":true,"type":"CPU"},"270":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2011-06"},"humanName":"X2 270","isPart":true,"type":"CPU"},"280":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2013-02-01"},"humanName":"X2 280","isPart":true,"type":"CPU"},"350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","TDP":"65 W","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz"},"humanName":"X2 350","isPart":true,"type":"CPU"},"425":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"95 W","Release Date":"2009-10-20"},"humanName":"X3 425","isPart":true,"type":"CPU"},"435":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"95 W","Release Date":"2009-10-20"},"humanName":"X3 435","isPart":true,"type":"CPU"},"440":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"95 W","Release Date":"2010-01-25"},"humanName":"X3 440","isPart":true,"type":"CPU"},"445":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X3 445","isPart":true,"type":"CPU"},"450":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"95 W","Release Date":"2010-09-21"},"humanName":"X3 450","isPart":true,"type":"CPU"},"455":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","TDP":"95 W","Release Date":"2010-12-07"},"humanName":"X3 455","isPart":true,"type":"CPU"},"460":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"95 W","Release Date":"2011-05-03"},"humanName":"X3 460","isPart":true,"type":"CPU"},"511":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","TDP":"65 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Release Date":"2011-01"},"humanName":"X2 511","isPart":true,"type":"CPU"},"521":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","TDP":"65 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Release Date":"Q2 2011"},"humanName":"X2 521","isPart":true,"type":"CPU"},"545":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2009-06-01"},"humanName":"X2 545","isPart":true,"type":"CPU"},"550":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Release Date":"2009-11-04"},"humanName":"X2 550","isPart":true,"type":"CPU"},"620":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"95 W","Release Date":"2009-09-16"},"humanName":"X4 620","isPart":true,"type":"CPU"},"630":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"95 W","Release Date":"2009-09-16"},"humanName":"X4 630","isPart":true,"type":"CPU"},"635":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"95 W","Release Date":"2010-1-25"},"humanName":"X4 635","isPart":true,"type":"CPU"},"640":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X4 640","isPart":true,"type":"CPU"},"645":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-9-21"},"humanName":"X4 645","isPart":true,"type":"CPU"},"650":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"95 W","Release Date":"Q2 2011"},"humanName":"X4 650","isPart":true,"type":"CPU"},"710":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X3 710","isPart":true,"type":"CPU"},"720":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W"},"humanName":"X3 720","isPart":true,"type":"CPU"},"750":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":4,"Thread Count":4,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W"},"humanName":"X4 750","isPart":true,"type":"CPU"},"805":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 805","isPart":true,"type":"CPU"},"810":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 810","isPart":true,"type":"CPU"},"820":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"Q3 2009"},"humanName":"X4 820","isPart":true,"type":"CPU"},"830":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"Q3 2010"},"humanName":"X4 830","isPart":true,"type":"CPU"},"840":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","TDP":"95 W","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2011-01-04"},"humanName":"X4 840","isPart":true,"type":"CPU"},"850":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","TDP":"95 W","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"Q2 2011"},"humanName":"X4 850","isPart":true,"type":"CPU"},"910":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-02-09"},"humanName":"X4 910","isPart":true,"type":"CPU"},"920":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Release Date":"2009-01-08"},"humanName":"X4 920","isPart":true,"type":"CPU"},"925":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-05-11"},"humanName":"X4 925","isPart":true,"type":"CPU"},"945":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-04-23"},"humanName":"X4 945","isPart":true,"type":"CPU"},"955":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-04"},"humanName":"X4 955","isPart":true,"type":"CPU"},"1352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz"},"isPart":true,"type":"CPU","humanName":"1352"},"1354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"isPart":true,"type":"CPU","humanName":"1354"},"1356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"AM2+","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2008-04","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz"},"isPart":true,"type":"CPU","humanName":"1356"},"1381":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz"},"isPart":true,"type":"CPU","humanName":"1381"},"1385":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz"},"isPart":true,"type":"CPU","humanName":"1385"},"1389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"AM3","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"TDP":"115W","Release Date":"2009-06","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz"},"isPart":true,"type":"CPU","humanName":"1389"},"2347":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2347"},"2350":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2350"},"2352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2352"},"2354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2354"},"2356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2356"},"2378":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2378"},"2380":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2380"},"2382":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2382"},"2384":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.7 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"2384"},"2387":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2387"},"2389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.9 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2389"},"2419":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2419"},"2427":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2427"},"2431":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2431"},"2435":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"2435"},"3280":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.4 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2012-03-20","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"3280"},"3365":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"3365"},"3380":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"3380"},"4122":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4122"},"4130":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4130"},"4133":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":4,"Core Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4133"},"4180":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4180"},"4184":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","TDP":"95 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4184"},"4226":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.7 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4226"},"4234":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4234"},"4238":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL","X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100","SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2012-05-01","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4238"},"4280":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4280"},"4284":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4284"},"4334":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4334"},"4340":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"95 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4340"},"4386":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4386"},"6128":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6128"},"6134":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6134"},"6136":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6136"},"6140":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6140"},"6168":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.9 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6168"},"6172":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6172"},"6174":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6174"},"6176":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"6 MiB","TDP":"115 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6176"},"6204":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"6204"},"6212":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6212"},"6220":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"3.0 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6220"},"6234":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.4 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6234"},"6238":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6238"},"6272":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.1 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6272"},"6274":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6274"},"6276":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6276"},"6278":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","Release Date":"2012-05-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6278"},"6308":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"115 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"6308"},"6320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6320"},"6328":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"115 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"6328"},"6344":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6344"},"6348":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"12 MiB","TDP":"115 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6348"},"6376":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6376"},"6378":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6378"},"6380":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","TDP":"115 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6380"},"7450":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2008-12-15"},"humanName":"X2 7450","isPart":true,"type":"CPU"},"7550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-12-15"},"humanName":"X2 7550","isPart":true,"type":"CPU"},"8347":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8347"},"8350":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8350"},"8352":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8352"},"8354":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8354"},"8356":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8356"},"8378":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8378"},"8380":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8380"},"8382":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8382"},"8384":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.7 GHz","TDP":"115 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8384"},"8387":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8387"},"8389":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.9 GHz","TDP":"115 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8389"},"8400":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X3 8400","isPart":true,"type":"CPU"},"8419":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8419"},"8423":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8423"},"8431":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"115 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8431"},"8435":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","TDP":"115 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8435"},"8450":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8450","isPart":true,"type":"CPU"},"8550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8550","isPart":true,"type":"CPU"},"8600":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X3 8600","isPart":true,"type":"CPU"},"8650":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8650","isPart":true,"type":"CPU"},"8750":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-04-23"},"humanName":"X3 8750","isPart":true,"type":"CPU"},"8850":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"95 W","Release Date":"2008-10-21"},"humanName":"X3 8850","isPart":true,"type":"CPU"},"9500":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9500","isPart":true,"type":"CPU"},"9550":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X4 9550","isPart":true,"type":"CPU"},"9600":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9600","isPart":true,"type":"CPU"},"9650":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-03-27"},"humanName":"X4 9650","isPart":true,"type":"CPU"},"9750":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2007-11-19"},"humanName":"X4 9750","isPart":true,"type":"CPU"},"9850":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"125 W","Release Date":"2008-06-01"},"humanName":"X4 9850","isPart":true,"type":"CPU"},"Core-i9-13900KS":{"data":{"Geekbench Single-Core Score":3094,"Geekbench Multi-Core Score":21711,"3DMark Fire Strike Physics Score":16764,"UserBenchmark CPU Score":"131","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900KS","isPart":true,"type":"CPU"},"Core-i9-13900KF":{"data":{"Geekbench Single-Core Score":2973,"Geekbench Multi-Core Score":20156,"3DMark Fire Strike Physics Score":16449,"UserBenchmark CPU Score":"129","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900KF","isPart":true,"type":"CPU"},"Core-i9-13900K":{"data":{"Geekbench Single-Core Score":2967,"Geekbench Multi-Core Score":20066,"3DMark Fire Strike Physics Score":16453,"UserBenchmark CPU Score":"129","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900K","isPart":true,"type":"CPU"},"Core-i7-13700KF":{"data":{"Geekbench Single-Core Score":2862,"Geekbench Multi-Core Score":17569,"3DMark Fire Strike Physics Score":12656,"UserBenchmark CPU Score":"126","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700KF","isPart":true,"type":"CPU"},"Core-i7-13700K":{"data":{"Geekbench Single-Core Score":2827,"Geekbench Multi-Core Score":17471,"3DMark Fire Strike Physics Score":12665,"UserBenchmark CPU Score":"126","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700K","isPart":true,"type":"CPU"},"Core-i9-13900F":{"data":{"Geekbench Single-Core Score":2700,"Geekbench Multi-Core Score":16965,"UserBenchmark CPU Score":"124","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900F","isPart":true,"type":"CPU"},"Core-i9-13900":{"data":{"Geekbench Single-Core Score":2710,"Geekbench Multi-Core Score":15882,"UserBenchmark CPU Score":"124","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 13900","isPart":true,"type":"CPU"},"Ryzen-9-7950X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2909,"Geekbench Multi-Core Score":19660,"UserBenchmark CPU Score":"122","Release Date":"2023-02-28","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","TDP":"120 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.2 GHz","Boost Frequency":"5.7 GHz"},"humanName":"Ryzen 9 7950X3D","isPart":true,"type":"CPU"},"Core-i5-13600K":{"data":{"Geekbench Single-Core Score":2657,"Geekbench Multi-Core Score":14805,"3DMark Fire Strike Physics Score":10332,"UserBenchmark CPU Score":"122","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600K","isPart":true,"type":"CPU"},"Core-i5-13600KF":{"data":{"Geekbench Single-Core Score":2702,"Geekbench Multi-Core Score":15168,"3DMark Fire Strike Physics Score":10328,"UserBenchmark CPU Score":"122","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600KF","isPart":true,"type":"CPU"},"Core-i7-13700F":{"data":{"Geekbench Single-Core Score":2655,"Geekbench Multi-Core Score":15351,"3DMark Fire Strike Physics Score":11921,"UserBenchmark CPU Score":"121","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700F","isPart":true,"type":"CPU"},"Core-i7-13700":{"data":{"Geekbench Single-Core Score":2638,"Geekbench Multi-Core Score":14803,"3DMark Fire Strike Physics Score":12013,"UserBenchmark CPU Score":"121","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700","isPart":true,"type":"CPU"},"Core-i9-12900KS":{"data":{"Geekbench Single-Core Score":2701,"Geekbench Multi-Core Score":16312,"3DMark Fire Strike Physics Score":12236,"UserBenchmark CPU Score":"119","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900KS","isPart":true,"type":"CPU"},"Ryzen-7-7800X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2716,"Geekbench Multi-Core Score":15207,"3DMark Fire Strike Physics Score":8016,"UserBenchmark CPU Score":"117","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"96 MiB","TDP":"120 W","Core Count":8,"Thread Count":16,"Base Frequency":"4.2 GHz","Boost Frequency":"5.0 GHz"},"humanName":"Ryzen 7 7800X3D","isPart":true,"type":"CPU"},"Core-i9-12900KF":{"data":{"Geekbench Single-Core Score":2522,"Geekbench Multi-Core Score":14849,"3DMark Fire Strike Physics Score":11718,"UserBenchmark CPU Score":"117","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900KF","isPart":true,"type":"CPU"},"Ryzen-9-7900X3D":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2796,"Geekbench Multi-Core Score":17376,"UserBenchmark CPU Score":"117","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","TDP":"120 W","Core Count":12,"Thread Count":24,"Base Frequency":"4.4 GHz","Boost Frequency":"5.6 GHz"},"humanName":"Ryzen 9 7900X3D","isPart":true,"type":"CPU"},"Core-i9-12900K":{"data":{"Geekbench Single-Core Score":2608,"Geekbench Multi-Core Score":15419,"3DMark Fire Strike Physics Score":11746,"UserBenchmark CPU Score":"117","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900K","isPart":true,"type":"CPU"},"Core-i5-13600":{"data":{"Geekbench Single-Core Score":2406,"Geekbench Multi-Core Score":12381,"UserBenchmark CPU Score":"116","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600","isPart":true,"type":"CPU"},"Core-i7-12700K":{"data":{"Geekbench Single-Core Score":2509,"Geekbench Multi-Core Score":13564,"3DMark Fire Strike Physics Score":10080,"UserBenchmark CPU Score":"114","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700K","isPart":true,"type":"CPU"},"Ryzen-9-7950X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2926,"Geekbench Multi-Core Score":19214,"3DMark Fire Strike Physics Score":16025,"UserBenchmark CPU Score":"114","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"170 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.5 GHz","Boost Frequency":"5.7 GHz"},"humanName":"Ryzen 9 7950X","isPart":true,"type":"CPU"},"Core-i7-12700KF":{"data":{"Geekbench Single-Core Score":2506,"Geekbench Multi-Core Score":13465,"3DMark Fire Strike Physics Score":10074,"UserBenchmark CPU Score":"114","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700KF","isPart":true,"type":"CPU"},"Core-i9-12900F":{"data":{"Geekbench Single-Core Score":2543,"Geekbench Multi-Core Score":13851,"UserBenchmark CPU Score":"113","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900F","isPart":true,"type":"CPU"},"Ryzen-9-7900X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2901,"Geekbench Multi-Core Score":17674,"3DMark Fire Strike Physics Score":12861,"UserBenchmark CPU Score":"113","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"170 W","Core Count":12,"Thread Count":24,"Base Frequency":"4.7 GHz","Boost Frequency":"5.6 GHz"},"humanName":"Ryzen 9 7900X","isPart":true,"type":"CPU"},"Core-i5-13500":{"data":{"Geekbench Single-Core Score":2400,"Geekbench Multi-Core Score":12289,"3DMark Fire Strike Physics Score":9107,"UserBenchmark CPU Score":"113","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13500","isPart":true,"type":"CPU"},"Ryzen-7-7700X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2897,"Geekbench Multi-Core Score":15202,"3DMark Fire Strike Physics Score":9056,"UserBenchmark CPU Score":"112","Release Date":"2022-09-27","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"4.5 GHz","Boost Frequency":"5.4 GHz"},"humanName":"Ryzen 7 7700X","isPart":true,"type":"CPU"},"Core-i9-12900":{"data":{"Geekbench Single-Core Score":2468,"Geekbench Multi-Core Score":12958,"3DMark Fire Strike Physics Score":10757,"UserBenchmark CPU Score":"111","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900","isPart":true,"type":"CPU"},"Ryzen-5-7600X":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2847,"Geekbench Multi-Core Score":12710,"3DMark Fire Strike Physics Score":7048,"UserBenchmark CPU Score":"110","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.7 GHz","Boost Frequency":"5.3 GHz"},"humanName":"Ryzen 5 7600X","isPart":true,"type":"CPU"},"Core-i5-12600K":{"data":{"Geekbench Single-Core Score":2436,"Geekbench Multi-Core Score":11733,"3DMark Fire Strike Physics Score":8033,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600K","isPart":true,"type":"CPU"},"Ryzen-7-7700":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2812,"Geekbench Multi-Core Score":14384,"3DMark Fire Strike Physics Score":8541,"UserBenchmark CPU Score":"109","Release Date":"2023-01-10","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"5.3 GHz"},"humanName":"Ryzen 7 7700","isPart":true,"type":"CPU"},"Core-i5-12600KF":{"data":{"Geekbench Single-Core Score":2453,"Geekbench Multi-Core Score":11940,"3DMark Fire Strike Physics Score":8005,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600KF","isPart":true,"type":"CPU"},"Ryzen-9-7900":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2826,"Geekbench Multi-Core Score":16823,"3DMark Fire Strike Physics Score":11186,"UserBenchmark CPU Score":"109","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"65 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.6 GHz","Boost Frequency":"5.4 GHz"},"humanName":"Ryzen 9 7900","isPart":true,"type":"CPU"},"Core-i7-12700F":{"data":{"Geekbench Single-Core Score":2333,"Geekbench Multi-Core Score":11425,"3DMark Fire Strike Physics Score":9543,"UserBenchmark CPU Score":"109","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700F","isPart":true,"type":"CPU"},"Core-i7-12700":{"data":{"Geekbench Single-Core Score":2220,"Geekbench Multi-Core Score":10328,"3DMark Fire Strike Physics Score":9536,"UserBenchmark CPU Score":"108","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700","isPart":true,"type":"CPU"},"Ryzen-5-7600":{"data":{"Lithography":"5 nm","Socket":"AM5","Unlocked":true,"Architecture":"Zen 4","Memory Type":"DDR5 or DDR4","PCIe 5.0 Lanes":28,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2728,"Geekbench Multi-Core Score":12238,"3DMark Fire Strike Physics Score":6633,"UserBenchmark CPU Score":"106","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz"},"humanName":"Ryzen 5 7600","isPart":true,"type":"CPU"},"Core-i5-13400":{"data":{"Geekbench Single-Core Score":2277,"Geekbench Multi-Core Score":10443,"3DMark Fire Strike Physics Score":7354,"UserBenchmark CPU Score":"106","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400","isPart":true,"type":"CPU"},"Core-i5-13400F":{"data":{"Geekbench Single-Core Score":2279,"Geekbench Multi-Core Score":10635,"3DMark Fire Strike Physics Score":7360,"UserBenchmark CPU Score":"106","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400F","isPart":true,"type":"CPU"},"Ryzen-7-5800X3D":{"data":{"Release Date":"2022-04-20","Lithography":"7 nm","Socket":"AM4","Unlocked":false,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2084,"Geekbench Multi-Core Score":10931,"3DMark Fire Strike Physics Score":7290,"UserBenchmark CPU Score":"104","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"96 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.4 GHz","Boost Frequency":"4.5 GHz"},"humanName":"Ryzen 7 5800X3D","isPart":true,"type":"CPU"},"Core-i9-11900KF":{"data":{"Geekbench Single-Core Score":2302,"Geekbench Multi-Core Score":10147,"3DMark Fire Strike Physics Score":8377,"UserBenchmark CPU Score":"104","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900KF","isPart":true,"type":"CPU"},"Core-i9-11900K":{"data":{"Geekbench Single-Core Score":2370,"Geekbench Multi-Core Score":10998,"3DMark Fire Strike Physics Score":8419,"UserBenchmark CPU Score":"103","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900K","isPart":true,"type":"CPU"},"Core-i5-12600":{"data":{"Geekbench Single-Core Score":2363,"Geekbench Multi-Core Score":9805,"3DMark Fire Strike Physics Score":6527,"UserBenchmark CPU Score":"102","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600","isPart":true,"type":"CPU"},"Core-i7-11700KF":{"data":{"Geekbench Single-Core Score":2246,"Geekbench Multi-Core Score":10177,"3DMark Fire Strike Physics Score":8127,"UserBenchmark CPU Score":"102","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700KF","isPart":true,"type":"CPU"},"Core-i7-11700K":{"data":{"Geekbench Single-Core Score":2213,"Geekbench Multi-Core Score":9793,"3DMark Fire Strike Physics Score":8157,"UserBenchmark CPU Score":"101","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700K","isPart":true,"type":"CPU"},"Ryzen-5-5600X3D":{"data":{"Release Date":"2023-07-07","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2066,"Geekbench Multi-Core Score":9323,"UserBenchmark CPU Score":"100","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"96 MiB","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","cTDP Support":false},"humanName":"Ryzen 5 5600X3D","isPart":true,"type":"CPU"},"Ryzen-9-5950X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2179,"Geekbench Multi-Core Score":12231,"3DMark Fire Strike Physics Score":11900,"UserBenchmark CPU Score":"100","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"105 W","Core Count":16,"Thread Count":32,"Base Frequency":"3.4 GHz","Boost Frequency":"4.9 GHz"},"humanName":"Ryzen 9 5950X","isPart":true,"type":"CPU"},"Core-i9-11900F":{"data":{"Geekbench Single-Core Score":2182,"Geekbench Multi-Core Score":9280,"UserBenchmark CPU Score":"100","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900F","isPart":true,"type":"CPU"},"Core-i9-11900":{"data":{"Geekbench Single-Core Score":2121,"Geekbench Multi-Core Score":8739,"UserBenchmark CPU Score":"99.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900","isPart":true,"type":"CPU"},"Core-i9-10900K":{"data":{"Geekbench Single-Core Score":1752,"Geekbench Multi-Core Score":9290,"3DMark Fire Strike Physics Score":9008,"UserBenchmark CPU Score":"99.6","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900K","isPart":true,"type":"CPU"},"Core-i9-10900KF":{"data":{"Geekbench Single-Core Score":1763,"Geekbench Multi-Core Score":9244,"3DMark Fire Strike Physics Score":8972,"UserBenchmark CPU Score":"99.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900KF","isPart":true,"type":"CPU"},"Core-i5-11600K":{"data":{"Geekbench Single-Core Score":2170,"Geekbench Multi-Core Score":8546,"3DMark Fire Strike Physics Score":6326,"UserBenchmark CPU Score":"99.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600K","isPart":true,"type":"CPU"},"Core-i5-11600KF":{"data":{"Geekbench Single-Core Score":2177,"Geekbench Multi-Core Score":8687,"3DMark Fire Strike Physics Score":6311,"UserBenchmark CPU Score":"99.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600KF","isPart":true,"type":"CPU"},"Core-i5-12500":{"data":{"Geekbench Single-Core Score":2279,"Geekbench Multi-Core Score":9109,"3DMark Fire Strike Physics Score":6086,"UserBenchmark CPU Score":"98.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12500","isPart":true,"type":"CPU"},"Core-i9-10850K":{"data":{"Geekbench Single-Core Score":1738,"Geekbench Multi-Core Score":9098,"3DMark Fire Strike Physics Score":8824,"UserBenchmark CPU Score":"98.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10850K","isPart":true,"type":"CPU"},"Core-i9-9900KS":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"127 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-10-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1750,"Geekbench Multi-Core Score":8622,"3DMark Fire Strike Physics Score":7344,"UserBenchmark CPU Score":"98.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9900KS"},"Ryzen-9-5900X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2171,"Geekbench Multi-Core Score":11890,"3DMark Fire Strike Physics Score":10233,"UserBenchmark CPU Score":"98.8","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","TDP":"105 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.7 GHz","Boost Frequency":"4.8 GHz"},"humanName":"Ryzen 9 5900X","isPart":true,"type":"CPU"},"Core-i7-11700F":{"data":{"Geekbench Single-Core Score":2095,"Geekbench Multi-Core Score":8801,"3DMark Fire Strike Physics Score":7661,"UserBenchmark CPU Score":"98.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700F","isPart":true,"type":"CPU"},"Core-i5-12400":{"data":{"Geekbench Single-Core Score":2168,"Geekbench Multi-Core Score":8808,"3DMark Fire Strike Physics Score":5950,"UserBenchmark CPU Score":"98.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400","isPart":true,"type":"CPU"},"Core-i7-11700":{"data":{"Geekbench Single-Core Score":2086,"Geekbench Multi-Core Score":8530,"3DMark Fire Strike Physics Score":7708,"UserBenchmark CPU Score":"98.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700","isPart":true,"type":"CPU"},"Core-i5-12400F":{"data":{"Geekbench Single-Core Score":2184,"Geekbench Multi-Core Score":8862,"3DMark Fire Strike Physics Score":5957,"UserBenchmark CPU Score":"98","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400F","isPart":true,"type":"CPU"},"Ryzen-7-5800X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2171,"Geekbench Multi-Core Score":10298,"3DMark Fire Strike Physics Score":7642,"UserBenchmark CPU Score":"98","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","TDP":"105 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz"},"humanName":"Ryzen 7 5800X","isPart":true,"type":"CPU"},"Core-i9-9900K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1659,"Geekbench Multi-Core Score":7962,"3DMark Fire Strike Physics Score":7060,"UserBenchmark CPU Score":"97.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9900K"},"Core-i9-9900KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1687,"Geekbench Multi-Core Score":8052,"3DMark Fire Strike Physics Score":7084,"UserBenchmark CPU Score":"97.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9900KF"},"Core-i7-9700KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1660,"Geekbench Multi-Core Score":7100,"3DMark Fire Strike Physics Score":5893,"UserBenchmark CPU Score":"97.1"},"isPart":true,"type":"CPU","humanName":"Core i7-9700KF"},"Ryzen-9-5900":{"data":{"Release Date":"2021-01-12","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2049,"Geekbench Multi-Core Score":9801,"UserBenchmark CPU Score":"97.1","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","TDP":"65 W","Core Count":12,"Thread Count":24,"Base Frequency":"3.0 GHz","Boost Frequency":"4.7 GHz"},"humanName":"Ryzen 9 5900","isPart":true,"type":"CPU"},"Core-i5-11600":{"data":{"Geekbench Single-Core Score":2132,"Geekbench Multi-Core Score":8211,"UserBenchmark CPU Score":"97","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11600","isPart":true,"type":"CPU"},"Core-i7-9700K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1660,"Geekbench Multi-Core Score":7085,"3DMark Fire Strike Physics Score":5876,"UserBenchmark CPU Score":"96.9"},"isPart":true,"type":"CPU","humanName":"Core i7-9700K"},"Core-i7-10700K":{"data":{"Geekbench Single-Core Score":1704,"Geekbench Multi-Core Score":8167,"3DMark Fire Strike Physics Score":7298,"UserBenchmark CPU Score":"96.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700K","isPart":true,"type":"CPU"},"Core-i7-10700KF":{"data":{"Geekbench Single-Core Score":1695,"Geekbench Multi-Core Score":8150,"3DMark Fire Strike Physics Score":7286,"UserBenchmark CPU Score":"96.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700KF","isPart":true,"type":"CPU"},"Core-i5-11500":{"data":{"Geekbench Single-Core Score":1987,"Geekbench Multi-Core Score":7415,"UserBenchmark CPU Score":"96.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500","isPart":true,"type":"CPU"},"Core-i3-13100":{"data":{"Geekbench Single-Core Score":2245,"Geekbench Multi-Core Score":7336,"UserBenchmark CPU Score":"96.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100","isPart":true,"type":"CPU"},"Core-i3-13100F":{"data":{"Geekbench Single-Core Score":2275,"Geekbench Multi-Core Score":7763,"UserBenchmark CPU Score":"96","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100F","isPart":true,"type":"CPU"},"Core-i3-12300":{"data":{"Geekbench Single-Core Score":2258,"Geekbench Multi-Core Score":7918,"UserBenchmark CPU Score":"95.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12300","isPart":true,"type":"CPU"},"Ryzen-7-5800":{"data":{"Release Date":"2021-01-12","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2046,"Geekbench Multi-Core Score":8712,"3DMark Fire Strike Physics Score":6943,"UserBenchmark CPU Score":"95.9","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz"},"humanName":"Ryzen 7 5800","isPart":true,"type":"CPU"},"Ryzen-5-5600X":{"data":{"Release Date":"2020-11-05","Lithography":"7 nm","Socket":"AM4","Unlocked":true,"Architecture":"Zen 3","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"PCIe 4.0 Lanes":24,"XFR Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["X86-64","AMD-V","MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRAND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":2082,"Geekbench Multi-Core Score":8639,"3DMark Fire Strike Physics Score":5676,"UserBenchmark CPU Score":"95.9","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz"},"humanName":"Ryzen 5 5600X","isPart":true,"type":"CPU"},"Core-i9-10900F":{"data":{"Geekbench Single-Core Score":1673,"Geekbench Multi-Core Score":8369,"3DMark Fire Strike Physics Score":8359,"UserBenchmark CPU Score":"95.4","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900F","isPart":true,"type":"CPU"},"Core-i5-11400":{"data":{"Geekbench Single-Core Score":1937,"Geekbench Multi-Core Score":7301,"3DMark Fire Strike Physics Score":5717,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400","isPart":true,"type":"CPU"},"Core-i5-11400F":{"data":{"Geekbench Single-Core Score":1955,"Geekbench Multi-Core Score":7594,"3DMark Fire Strike Physics Score":5715,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400F","isPart":true,"type":"CPU"},"Core-i3-12100":{"data":{"Geekbench Single-Core Score":2138,"Geekbench Multi-Core Score":6878,"3DMark Fire Strike Physics Score":4040,"UserBenchmark CPU Score":"94.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100","isPart":true,"type":"CPU"},"Core-i3-12100F":{"data":{"Geekbench Single-Core Score":2216,"Geekbench Multi-Core Score":7438,"3DMark Fire Strike Physics Score":4044,"UserBenchmark CPU Score":"94.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100F","isPart":true,"type":"CPU"},"Core-i9-10900":{"data":{"Geekbench Single-Core Score":1684,"Geekbench Multi-Core Score":8353,"UserBenchmark CPU Score":"94","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900","isPart":true,"type":"CPU"},"Core-i5-9600K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-10-08","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1691,"Geekbench Multi-Core Score":6345,"3DMark Fire Strike Physics Score":4264,"UserBenchmark CPU Score":"93.2"},"isPart":true,"type":"CPU","humanName":"Core i5-9600K"},"Core-i7-10700F":{"data":{"Geekbench Single-Core Score":1604,"Geekbench Multi-Core Score":7218,"3DMark Fire Strike Physics Score":6997,"UserBenchmark CPU Score":"93.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700F","isPart":true,"type":"CPU"},"Core-i5-9600KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1581,"Geekbench Multi-Core Score":5730,"3DMark Fire Strike Physics Score":4296,"UserBenchmark CPU Score":"93.2"},"isPart":true,"type":"CPU","humanName":"Core i5-9600KF"},"Core-i7-10700":{"data":{"Geekbench Single-Core Score":1562,"Geekbench Multi-Core Score":6927,"3DMark Fire Strike Physics Score":6976,"UserBenchmark CPU Score":"92.6","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700","isPart":true,"type":"CPU"},"Core-i5-9600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1444,"Geekbench Multi-Core Score":4947,"UserBenchmark CPU Score":"92.3"},"isPart":true,"type":"CPU","humanName":"Core i5-9600"},"Core-i5-10600K":{"data":{"Geekbench Single-Core Score":1645,"Geekbench Multi-Core Score":6803,"3DMark Fire Strike Physics Score":5413,"UserBenchmark CPU Score":"92.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600K","isPart":true,"type":"CPU"},"Core-i7-9700":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1542,"Geekbench Multi-Core Score":6143,"3DMark Fire Strike Physics Score":5240,"UserBenchmark CPU Score":"92"},"isPart":true,"type":"CPU","humanName":"Core i7-9700"},"Core-i7-9700F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1540,"Geekbench Multi-Core Score":6263,"3DMark Fire Strike Physics Score":5322,"UserBenchmark CPU Score":"92"},"isPart":true,"type":"CPU","humanName":"Core i7-9700F"},"Core-i5-10600KF":{"data":{"Geekbench Single-Core Score":1677,"Geekbench Multi-Core Score":6873,"3DMark Fire Strike Physics Score":5403,"UserBenchmark CPU Score":"91.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600KF","isPart":true,"type":"CPU"},"Core-i9-9900":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1608,"Geekbench Multi-Core Score":7167,"UserBenchmark CPU Score":"91.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9900"},"Ryzen-7-4700G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"UserBenchmark CPU Score":"90.9","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 4700G","isPart":true,"type":"CPU"},"Ryzen-7-5700G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1980,"Geekbench Multi-Core Score":8781,"3DMark Fire Strike Physics Score":6708,"UserBenchmark CPU Score":"90.9","Release Date":"2021-04-13","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5700G","isPart":true,"type":"CPU"},"Core-i7-8086K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-06-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1675,"Geekbench Multi-Core Score":7032,"3DMark Fire Strike Physics Score":5114,"UserBenchmark CPU Score":"90.8"},"isPart":true,"type":"CPU","humanName":"Core i7-8086K"},"Core-i5-8600K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1515,"Geekbench Multi-Core Score":5520,"3DMark Fire Strike Physics Score":4137,"UserBenchmark CPU Score":"90.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8600K"},"Core-i5-10600":{"data":{"Geekbench Single-Core Score":1580,"Geekbench Multi-Core Score":6162,"UserBenchmark CPU Score":"90.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600","isPart":true,"type":"CPU"},"Ryzen-9-3950X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-11-25","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1701,"Geekbench Multi-Core Score":10679,"3DMark Fire Strike Physics Score":10822,"UserBenchmark CPU Score":"89.3","Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 9 3950X","isPart":true,"type":"CPU"},"Core-i3-9350KF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1544,"Geekbench Multi-Core Score":4112,"UserBenchmark CPU Score":"89.3"},"isPart":true,"type":"CPU","humanName":"Core i3-9350KF"},"Core-i7-11850H":{"data":{"Geekbench Single-Core Score":1967,"Geekbench Multi-Core Score":8115,"UserBenchmark CPU Score":"88.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11850H","isPart":true,"type":"CPU"},"Ryzen-9-3900XT":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2020-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1715,"Geekbench Multi-Core Score":9910,"3DMark Fire Strike Physics Score":8607,"UserBenchmark CPU Score":"88.7","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 9 3900XT","isPart":true,"type":"CPU"},"Core-i7-8700K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1572,"Geekbench Multi-Core Score":6423,"3DMark Fire Strike Physics Score":5104,"UserBenchmark CPU Score":"88.4"},"isPart":true,"type":"CPU","humanName":"Core i7-8700K"},"Core-i5-8600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1413,"Geekbench Multi-Core Score":4944,"UserBenchmark CPU Score":"88.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8600"},"Ryzen-7-3800XT":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2020-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1758,"Geekbench Multi-Core Score":8475,"3DMark Fire Strike Physics Score":6350,"UserBenchmark CPU Score":"88.1","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.9 GHz","Boost Frequency":"4.7 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3800XT","isPart":true,"type":"CPU"},"Ryzen-5-5600G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1913,"Geekbench Multi-Core Score":7649,"3DMark Fire Strike Physics Score":5523,"UserBenchmark CPU Score":"88","Release Date":"2021-04-13","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.9 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 5600G","isPart":true,"type":"CPU"},"Core-i7-11800H":{"data":{"Geekbench Single-Core Score":1892,"Geekbench Multi-Core Score":7863,"3DMark Fire Strike Physics Score":6820,"UserBenchmark CPU Score":"88","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11800H","isPart":true,"type":"CPU"},"Ryzen-9-3900X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1687,"Geekbench Multi-Core Score":9917,"3DMark Fire Strike Physics Score":8608,"UserBenchmark CPU Score":"87.9","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","TDP":"105 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 3900X","isPart":true,"type":"CPU"},"3960X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"87.2","Release Date":"2019-11-25","Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.5 GHz","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"3960x","isPart":true,"type":"CPU"},"Core-i9-10920X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1580,"Geekbench Multi-Core Score":10567,"UserBenchmark CPU Score":"87.2"},"isPart":true,"type":"CPU","humanName":"Core i9-10920X"},"Ryzen-7-3800X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1696,"Geekbench Multi-Core Score":8593,"3DMark Fire Strike Physics Score":6223,"UserBenchmark CPU Score":"87","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.9 GHz","Boost Frequency":"4.5 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3800X","isPart":true,"type":"CPU"},"Core-i7-7740X":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"112 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1637,"Geekbench Multi-Core Score":5325,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i7-7740X"},"Core-i7-8700":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1508,"Geekbench Multi-Core Score":5902,"3DMark Fire Strike Physics Score":4877,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i7-8700"},"Core-i5-9500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1470,"Geekbench Multi-Core Score":4990,"UserBenchmark CPU Score":"87"},"isPart":true,"type":"CPU","humanName":"Core i5-9500"},"Core-i7-6950X":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1279,"Geekbench Multi-Core Score":8331,"3DMark Fire Strike Physics Score":6158,"UserBenchmark CPU Score":"86.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6950X"},"Core-i5-9400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1381,"Geekbench Multi-Core Score":4803,"UserBenchmark CPU Score":"86.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9400"},"Core-i9-9920X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1392,"Geekbench Multi-Core Score":9865,"UserBenchmark CPU Score":"86.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9920X"},"Ryzen-9-7940HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2485,"Geekbench Multi-Core Score":11817,"3DMark Fire Strike Physics Score":7776,"UserBenchmark CPU Score":"86.1","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"4 GHz","Boost Frequency":"5.2 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2800 MHz"},"humanName":"Ryzen 9 7940HS","isPart":true,"type":"CPU"},"3970X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"86.1","Release Date":"2019-11-25","Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"3970x","isPart":true,"type":"CPU"},"Ryzen-7-3700X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1645,"Geekbench Multi-Core Score":8088,"3DMark Fire Strike Physics Score":6058,"UserBenchmark CPU Score":"85.9","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 3700X","isPart":true,"type":"CPU"},"Core-i7-6900K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1232,"Geekbench Multi-Core Score":7134,"UserBenchmark CPU Score":"85.9"},"isPart":true,"type":"CPU","humanName":"Core i7-6900K"},"3990X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","TDP":"280 W","Socket":"sTRX4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"UserBenchmark CPU Score":"85.8","Release Date":"2020-02-07","Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.3 GHz","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"3990x","isPart":true,"type":"CPU"},"Core-i9-10940X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1571,"Geekbench Multi-Core Score":10835,"UserBenchmark CPU Score":"85.7"},"isPart":true,"type":"CPU","humanName":"Core i9-10940X"},"Core-i9-10900T":{"data":{"Geekbench Single-Core Score":1410,"Geekbench Multi-Core Score":6493,"UserBenchmark CPU Score":"85.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10900T","isPart":true,"type":"CPU"},"Core-i9-9940X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1437,"Geekbench Multi-Core Score":10544,"UserBenchmark CPU Score":"85.4"},"isPart":true,"type":"CPU","humanName":"Core i9-9940X"},"Core-i5-10600T":{"data":{"Geekbench Single-Core Score":1352,"Geekbench Multi-Core Score":4563,"UserBenchmark CPU Score":"85.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10600T","isPart":true,"type":"CPU"},"Core-i5-10400F":{"data":{"Geekbench Single-Core Score":1428,"Geekbench Multi-Core Score":5736,"3DMark Fire Strike Physics Score":4776,"UserBenchmark CPU Score":"85.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400F","isPart":true,"type":"CPU"},"Core-i7-10700T":{"data":{"Geekbench Single-Core Score":1396,"Geekbench Multi-Core Score":5335,"UserBenchmark CPU Score":"85.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10700T","isPart":true,"type":"CPU"},"Core-i9-10900X":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1572,"Geekbench Multi-Core Score":9267,"UserBenchmark CPU Score":"85.1"},"isPart":true,"type":"CPU","humanName":"Core i9-10900X"},"Core-i7-5775C":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1401,"Geekbench Multi-Core Score":4800,"UserBenchmark CPU Score":"84.9"},"isPart":true,"type":"CPU","humanName":"Core i7-5775C"},"Core-i9-9960X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":10126,"UserBenchmark CPU Score":"84.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9960X"},"Core-i5-9400F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-01-07","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1368,"Geekbench Multi-Core Score":4816,"3DMark Fire Strike Physics Score":3766,"UserBenchmark CPU Score":"84.8"},"isPart":true,"type":"CPU","humanName":"Core i5-9400F"},"Core-i5-10400":{"data":{"Geekbench Single-Core Score":1418,"Geekbench Multi-Core Score":5452,"3DMark Fire Strike Physics Score":4755,"UserBenchmark CPU Score":"84.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400","isPart":true,"type":"CPU"},"Ryzen-7-7840HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2397,"Geekbench Multi-Core Score":11102,"UserBenchmark CPU Score":"84.2","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz"},"humanName":"Ryzen 7 7840HS","isPart":true,"type":"CPU"},"Core-i5-10500":{"data":{"Geekbench Single-Core Score":1517,"Geekbench Multi-Core Score":5441,"UserBenchmark CPU Score":"84.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500","isPart":true,"type":"CPU"},"Core-i9-10980XE":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-10-07","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1560,"Geekbench Multi-Core Score":11918,"UserBenchmark CPU Score":"84.2"},"isPart":true,"type":"CPU","humanName":"Core i9-10980XE"},"Core-i5-7640X":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"112 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1761,"Geekbench Multi-Core Score":5275,"UserBenchmark CPU Score":"84.1"},"isPart":true,"type":"CPU","humanName":"Core i5-7640X"},"Ryzen-5-3600X":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1632,"Geekbench Multi-Core Score":6954,"3DMark Fire Strike Physics Score":4735,"UserBenchmark CPU Score":"84.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.4 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3600X","isPart":true,"type":"CPU"},"Core-i7-7700K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.2 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1561,"Geekbench Multi-Core Score":5093,"3DMark Fire Strike Physics Score":3480,"UserBenchmark CPU Score":"84"},"isPart":true,"type":"CPU","humanName":"Core i7-7700K"},"Core-i9-9900X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1441,"Geekbench Multi-Core Score":9109,"UserBenchmark CPU Score":"83.7"},"isPart":true,"type":"CPU","humanName":"Core i9-9900X"},"Core-i7-6850K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1266,"Geekbench Multi-Core Score":5839,"UserBenchmark CPU Score":"83.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6850K"},"Core-i9-7940X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1361,"Geekbench Multi-Core Score":9892,"UserBenchmark CPU Score":"83.3"},"isPart":true,"type":"CPU","humanName":"Core i9-7940X"},"Core-i9-7960X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1389,"Geekbench Multi-Core Score":10468,"UserBenchmark CPU Score":"83.2"},"isPart":true,"type":"CPU","humanName":"Core i9-7960X"},"Ryzen-5-3600":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX","X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450","X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1587,"Geekbench Multi-Core Score":6848,"3DMark Fire Strike Physics Score":4634,"UserBenchmark CPU Score":"83.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3600","isPart":true,"type":"CPU"},"Core-i9-9980XE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1398,"Geekbench Multi-Core Score":11043,"UserBenchmark CPU Score":"83"},"isPart":true,"type":"CPU","humanName":"Core i9-9980XE"},"Ryzen-7-PRO-4750G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1621,"Geekbench Multi-Core Score":7532,"UserBenchmark CPU Score":"83","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 PRO 4750G","isPart":true,"type":"CPU"},"Core-i7-9800X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1387,"Geekbench Multi-Core Score":7628,"UserBenchmark CPU Score":"82.9"},"isPart":true,"type":"CPU","humanName":"Core i7-9800X"},"Core-i5-8600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1256,"Geekbench Multi-Core Score":4734,"UserBenchmark CPU Score":"82.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8600T"},"Core-i5-8500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1384,"Geekbench Multi-Core Score":4842,"3DMark Fire Strike Physics Score":3771,"UserBenchmark CPU Score":"82.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8500"},"Core-i9-7900X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1433,"Geekbench Multi-Core Score":8960,"3DMark Fire Strike Physics Score":7045,"UserBenchmark CPU Score":"81.9"},"isPart":true,"type":"CPU","humanName":"Core i9-7900X"},"Core-i9-9820X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-10-08","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","UserBenchmark CPU Score":"81.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9820X"},"Core-i9-9980HK":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1422,"Geekbench Multi-Core Score":6278,"UserBenchmark CPU Score":"81.8"},"isPart":true,"type":"CPU","humanName":"Core i9-9980HK"},"Core-i5-8400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4737,"3DMark Fire Strike Physics Score":3667,"UserBenchmark CPU Score":"81.8"},"isPart":true,"type":"CPU","humanName":"Core i5-8400"},"Core-i3-8350K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1452,"Geekbench Multi-Core Score":4231,"UserBenchmark CPU Score":"81.7"},"isPart":true,"type":"CPU","humanName":"Core i3-8350K"},"Core-i9-7920X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-08-07","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1339,"Geekbench Multi-Core Score":8876,"UserBenchmark CPU Score":"81.6"},"isPart":true,"type":"CPU","humanName":"Core i9-7920X"},"Core-i5-5675C":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":3945,"UserBenchmark CPU Score":"81.5"},"isPart":true,"type":"CPU","humanName":"Core i5-5675C"},"2950X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"81.1","Release Date":"2018-08-31","Core Count":16,"Thread Count":32,"Base Frequency":"3.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"180 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"2950X","isPart":true,"type":"CPU"},"Core-i7-6700K":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-08-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1474,"Geekbench Multi-Core Score":4895,"3DMark Fire Strike Physics Score":3231,"UserBenchmark CPU Score":"80.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6700K"},"2920X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"80.7","Release Date":"2018-10-29","Core Count":12,"Thread Count":24,"Base Frequency":"3.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"180 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"2920X","isPart":true,"type":"CPU"},"Core-i7-6800K":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell E","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-05-30","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":5685,"UserBenchmark CPU Score":"80.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6800K"},"Core-i7-5775R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1071,"Geekbench Multi-Core Score":3513,"UserBenchmark CPU Score":"80.5"},"isPart":true,"type":"CPU","humanName":"Core i7-5775R"},"Core-i7-8809G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":1382,"Geekbench Multi-Core Score":4547,"UserBenchmark CPU Score":"80.5","TDP":"100 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8809G"},"Core-i7-5960X":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":7450,"3DMark Fire Strike Physics Score":5203,"UserBenchmark CPU Score":"80.5"},"isPart":true,"type":"CPU","humanName":"Core i7-5960X"},"Core-i7-5950HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"80.4"},"isPart":true,"type":"CPU","humanName":"Core i7-5950HQ"},"Core-i3-10100F":{"data":{"Geekbench Single-Core Score":1423,"Geekbench Multi-Core Score":4401,"3DMark Fire Strike Physics Score":3199,"UserBenchmark CPU Score":"80.4","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100F","isPart":true,"type":"CPU"},"Core-i5-10500H":{"data":{"Geekbench Single-Core Score":1433,"Geekbench Multi-Core Score":4961,"UserBenchmark CPU Score":"80.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500H","isPart":true,"type":"CPU"},"Ryzen-5-PRO-4650G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1548,"Geekbench Multi-Core Score":6167,"UserBenchmark CPU Score":"80.2","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 4650G","isPart":true,"type":"CPU"},"Core-i7-7820X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1407,"Geekbench Multi-Core Score":7815,"3DMark Fire Strike Physics Score":5989,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i7-7820X"},"Core-i9-7980XE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-09-25","Socket":"FCLGA2066","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1519,"Geekbench Multi-Core Score":11659,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i9-7980XE"},"Core-i5-11400H":{"data":{"Geekbench Single-Core Score":1811,"Geekbench Multi-Core Score":6299,"3DMark Fire Strike Physics Score":5485,"UserBenchmark CPU Score":"80.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400H","isPart":true,"type":"CPU"},"Core-i3-9100F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1370,"Geekbench Multi-Core Score":3671,"3DMark Fire Strike Physics Score":2568,"UserBenchmark CPU Score":"80.1"},"isPart":true,"type":"CPU","humanName":"Core i3-9100F"},"Ryzen-7-4800U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":5553,"UserBenchmark CPU Score":"80.1","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"1.8 GHz","Boost Frequency":"4.2 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 7 4800U","isPart":true,"type":"APU"},"Core-i3-8300":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1277,"Geekbench Multi-Core Score":3772,"UserBenchmark CPU Score":"79.9"},"isPart":true,"type":"CPU","humanName":"Core i3-8300"},"Core-i3-10100":{"data":{"Geekbench Single-Core Score":1421,"Geekbench Multi-Core Score":4221,"UserBenchmark CPU Score":"79.9","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100","isPart":true,"type":"CPU"},"Core-i7-5930K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1146,"Geekbench Multi-Core Score":5447,"3DMark Fire Strike Physics Score":3949,"UserBenchmark CPU Score":"79.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5930K"},"Core-i3-9100":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":3544,"UserBenchmark CPU Score":"79.7"},"isPart":true,"type":"CPU","humanName":"Core i3-9100"},"Core-i7-10850H":{"data":{"Geekbench Single-Core Score":1463,"Geekbench Multi-Core Score":5379,"UserBenchmark CPU Score":"79.5","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10850H","isPart":true,"type":"CPU"},"Core-i7-8700T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1321,"Geekbench Multi-Core Score":4615,"UserBenchmark CPU Score":"79.4"},"isPart":true,"type":"CPU","humanName":"Core i7-8700T"},"Core-i5-10400H":{"data":{"Geekbench Single-Core Score":1358,"Geekbench Multi-Core Score":4000,"UserBenchmark CPU Score":"79.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400H","isPart":true,"type":"CPU"},"Core-i7-10870H":{"data":{"Geekbench Single-Core Score":1444,"Geekbench Multi-Core Score":6111,"3DMark Fire Strike Physics Score":5625,"UserBenchmark CPU Score":"79.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10870H","isPart":true,"type":"CPU"},"2970WX":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"79","Release Date":"2018-10-29","Core Count":24,"Thread Count":48,"Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"250 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"2970WX","isPart":true,"type":"CPU"},"Core-i7-4790K":{"data":{"Manufacturer":"Intel","Architecture":"Devil's Canyon","Market":"Desktop","Lithography":"22 nm","TDP":"88 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"4 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1382,"Geekbench Multi-Core Score":4402,"3DMark Fire Strike Physics Score":2803,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4790K"},"Core-i9-9880H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1351,"Geekbench Multi-Core Score":6031,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i9-9880H"},"2990WX":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","UserBenchmark CPU Score":"78.9","Release Date":"2018-08-13","Core Count":32,"Thread Count":64,"Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"250 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"2990WX","isPart":true,"type":"CPU"},"Core-i5-9400H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1375,"Geekbench Multi-Core Score":4147,"UserBenchmark CPU Score":"78.9"},"isPart":true,"type":"CPU","humanName":"Core i5-9400H"},"Core-i7-4960X":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":678,"Geekbench Multi-Core Score":3379,"UserBenchmark CPU Score":"78.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4960X"},"Ryzen-5-4600G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1568,"Geekbench Multi-Core Score":6113,"UserBenchmark CPU Score":"78.2","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.7 GHz","Boost Frequency":"4.2 GHz","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 4600G","isPart":true,"type":"CPU"},"Core-i5-10500T":{"data":{"Geekbench Single-Core Score":1264,"Geekbench Multi-Core Score":4500,"UserBenchmark CPU Score":"78.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10500T","isPart":true,"type":"CPU"},"Core-i5-10400T":{"data":{"Geekbench Single-Core Score":1132,"Geekbench Multi-Core Score":4132,"UserBenchmark CPU Score":"78.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10400T","isPart":true,"type":"CPU"},"Ryzen-9-5980HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"UserBenchmark CPU Score":"78","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.0 GHz","Boost Frequency":"4.8 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5980HS","isPart":true,"type":"CPU"},"Core-i7-3970X":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"150 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-11-12","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":644,"Geekbench Multi-Core Score":3303,"UserBenchmark CPU Score":"77.9"},"isPart":true,"type":"CPU","humanName":"Core i7-3970X"},"Core-i7-7800X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-05-30","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1325,"Geekbench Multi-Core Score":6044,"UserBenchmark CPU Score":"77.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7800X"},"Ryzen-9-5900HX":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1835,"Geekbench Multi-Core Score":7471,"3DMark Fire Strike Physics Score":6592,"UserBenchmark CPU Score":"77.8","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5900HX","isPart":true,"type":"CPU"},"Core-i7-5850HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"77.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5850HQ"},"Core-i7-8706G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-08-21","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"77.7","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8706G"},"Core-i7-3960X":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2011-11-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":667,"Geekbench Multi-Core Score":3271,"UserBenchmark CPU Score":"77.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3960X"},"1920X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"77.6","Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"1920X","isPart":true,"type":"CPU"},"Core-i7-8559U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1338,"Geekbench Multi-Core Score":4138,"UserBenchmark CPU Score":"77.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8559U"},"Core-i3-10100T":{"data":{"Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":3849,"UserBenchmark CPU Score":"77.2","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10100T","isPart":true,"type":"CPU"},"Xeon-E3-1275-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":1177,"Geekbench Multi-Core Score":3712,"UserBenchmark CPU Score":"77.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275 v3"},"Core-i7-9850H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1363,"Geekbench Multi-Core Score":4992,"UserBenchmark CPU Score":"77.1"},"isPart":true,"type":"CPU","humanName":"Core i7-9850H"},"Ryzen-3-5300G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1688,"Geekbench Multi-Core Score":5431,"UserBenchmark CPU Score":"77","Release Date":"2021-04-13","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 5300G","isPart":true,"type":"CPU"},"Core-i7-4930K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":662,"Geekbench Multi-Core Score":3299,"UserBenchmark CPU Score":"76.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4930K"},"Xeon-W3690":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":559,"Geekbench Multi-Core Score":2681,"UserBenchmark CPU Score":"76.9"},"isPart":true,"type":"CPU","humanName":"Xeon W3690"},"Core-i7-5820K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell E","Market":"Desktop","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-08-29","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1150,"Geekbench Multi-Core Score":5394,"3DMark Fire Strike Physics Score":3703,"UserBenchmark CPU Score":"76.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5820K"},"Core-i7-10750H":{"data":{"Geekbench Single-Core Score":1438,"Geekbench Multi-Core Score":5385,"3DMark Fire Strike Physics Score":4302,"UserBenchmark CPU Score":"76.8","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 10750H","isPart":true,"type":"CPU"},"1950X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"76.7","Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"1950X","isPart":true,"type":"CPU"},"Core-i5-8400H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1283,"Geekbench Multi-Core Score":3561,"UserBenchmark CPU Score":"76.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8400H"},"1900X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"TR4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X399"],"Steppings":"B2","Release Date":"2017-08-12","XFR Support":true,"UserBenchmark CPU Score":"76.3","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.2 GHz","TDP":"180 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"1900X","isPart":true,"type":"CPU"},"Core-i7-7700":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1379,"Geekbench Multi-Core Score":4453,"3DMark Fire Strike Physics Score":3066,"UserBenchmark CPU Score":"76.2"},"isPart":true,"type":"CPU","humanName":"Core i7-7700"},"Ryzen-9-5900HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"3DMark Fire Strike Physics Score":6272,"UserBenchmark CPU Score":"75.9","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.0 GHz","Boost Frequency":"4.6 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5900HS","isPart":true,"type":"CPU"},"Core-i5-7600K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1498,"Geekbench Multi-Core Score":4199,"3DMark Fire Strike Physics Score":2726,"UserBenchmark CPU Score":"75.8"},"isPart":true,"type":"CPU","humanName":"Core i5-7600K"},"Ryzen-7-2700X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1241,"Geekbench Multi-Core Score":6104,"3DMark Fire Strike Physics Score":4803,"UserBenchmark CPU Score":"75.7","Release Date":"2018-04-19","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700X","isPart":true,"type":"CPU"},"Xeon-W3680":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":2581,"UserBenchmark CPU Score":"75.3"},"isPart":true,"type":"CPU","humanName":"Xeon W3680"},"Xeon-E3-1270-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1183,"Geekbench Multi-Core Score":3861,"UserBenchmark CPU Score":"75.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270 v3"},"Core-i7-980":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-06-26","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"75.2"},"isPart":true,"type":"CPU","humanName":"Core i7-980"},"Ryzen-7-4700U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":4885,"UserBenchmark CPU Score":"75.2","Core Count":8,"Thread Count":8,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2 GHz","Boost Frequency":"4.1 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4700U","isPart":true,"type":"APU"},"Core-i5-7600T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1199,"Geekbench Multi-Core Score":3364,"UserBenchmark CPU Score":"75.1"},"isPart":true,"type":"CPU","humanName":"Core i5-7600T"},"Ryzen-7-5800H":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1742,"Geekbench Multi-Core Score":7071,"3DMark Fire Strike Physics Score":6277,"UserBenchmark CPU Score":"75.1","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800H","isPart":true,"type":"CPU"},"Xeon-X5690":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":2566,"UserBenchmark CPU Score":"74.7"},"isPart":true,"type":"CPU","humanName":"Xeon X5690"},"Ryzen-5-4600U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1342,"Geekbench Multi-Core Score":4616,"UserBenchmark CPU Score":"74.7","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600U","isPart":true,"type":"APU"},"Core-i5-8400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1097,"Geekbench Multi-Core Score":3903,"UserBenchmark CPU Score":"74.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8400T"},"Core-i9-8950HK":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1367,"Geekbench Multi-Core Score":4905,"UserBenchmark CPU Score":"74.5"},"isPart":true,"type":"CPU","humanName":"Core i9-8950HK"},"Core-i7-3930K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-11-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":605,"Geekbench Multi-Core Score":2986,"UserBenchmark CPU Score":"74.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3930K"},"Core-i5-10300H":{"data":{"Geekbench Single-Core Score":1358,"Geekbench Multi-Core Score":3976,"3DMark Fire Strike Physics Score":2981,"UserBenchmark CPU Score":"74.3","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10300H","isPart":true,"type":"CPU"},"Ryzen-9-4900H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1552,"Geekbench Multi-Core Score":6833,"UserBenchmark CPU Score":"74.3","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 9 4900H","isPart":true,"type":"APU"},"Core-i5-8279U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-05-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1224,"Geekbench Multi-Core Score":3772,"UserBenchmark CPU Score":"74.2"},"isPart":true,"type":"CPU","humanName":"Core i5-8279U"},"Ryzen-5-2600X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":5239,"3DMark Fire Strike Physics Score":3665,"UserBenchmark CPU Score":"74","Release Date":"2018-04-19","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.25 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600X","isPart":true,"type":"CPU"},"Core-i7-11370H":{"data":{"Geekbench Single-Core Score":1734,"Geekbench Multi-Core Score":5454,"3DMark Fire Strike Physics Score":3621,"UserBenchmark CPU Score":"74","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11370H","isPart":true,"type":"CPU"},"Ryzen-7-4800H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1451,"Geekbench Multi-Core Score":5872,"3DMark Fire Strike Physics Score":5763,"UserBenchmark CPU Score":"73.9","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.2 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4800H","isPart":true,"type":"APU"},"Core-i5-2550K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":687,"Geekbench Multi-Core Score":2060,"UserBenchmark CPU Score":"73.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2550K"},"Ryzen-7-2700":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1106,"Geekbench Multi-Core Score":5446,"3DMark Fire Strike Physics Score":4149,"UserBenchmark CPU Score":"73.8","Release Date":"2018-04-19","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700","isPart":true,"type":"CPU"},"Ryzen-5-1600X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1126,"Geekbench Multi-Core Score":4757,"3DMark Fire Strike Physics Score":3461,"UserBenchmark CPU Score":"73.7","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.1 GHz","TDP":"95 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 1600X","isPart":true,"type":"CPU"},"Core-i7-4770K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1262,"Geekbench Multi-Core Score":4057,"3DMark Fire Strike Physics Score":2568,"UserBenchmark CPU Score":"73.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4770K"},"Core-i7-4771":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1189,"Geekbench Multi-Core Score":3845,"UserBenchmark CPU Score":"73.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4771"},"Core-i7-970":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"Q3 2010","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":495,"Geekbench Multi-Core Score":2337,"UserBenchmark CPU Score":"73.4"},"isPart":true,"type":"CPU","humanName":"Core i7-970"},"Ryzen-5-2600":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":4823,"3DMark Fire Strike Physics Score":3468,"UserBenchmark CPU Score":"73.3","Release Date":"2018-04-19","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600","isPart":true,"type":"CPU"},"Core-i7-9750H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1345,"Geekbench Multi-Core Score":4911,"3DMark Fire Strike Physics Score":3778,"UserBenchmark CPU Score":"73.3"},"isPart":true,"type":"CPU","humanName":"Core i7-9750H"},"Core-i3-7320":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1393,"Geekbench Multi-Core Score":2798,"UserBenchmark CPU Score":"73.2"},"isPart":true,"type":"CPU","humanName":"Core i3-7320"},"Core-i5-8259U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1220,"Geekbench Multi-Core Score":4031,"UserBenchmark CPU Score":"73.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8259U"},"Core-i5-10200H":{"data":{"Geekbench Single-Core Score":1319,"Geekbench Multi-Core Score":3869,"UserBenchmark CPU Score":"73.1","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10200H","isPart":true,"type":"CPU"},"Core-i7-2700K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-10-24","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":661,"Geekbench Multi-Core Score":2281,"UserBenchmark CPU Score":"73"},"isPart":true,"type":"CPU","humanName":"Core i7-2700K"},"Ryzen-5-5600H":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1595,"Geekbench Multi-Core Score":5706,"3DMark Fire Strike Physics Score":5005,"UserBenchmark CPU Score":"73","Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600H","isPart":true,"type":"CPU"},"Core-i5-8500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1166,"Geekbench Multi-Core Score":4036,"UserBenchmark CPU Score":"73"},"isPart":true,"type":"CPU","humanName":"Core i5-8500T"},"Core-i5-8305G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-08-21","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"72.9","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i5-8305G"},"Ryzen-7-5800HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"UserBenchmark CPU Score":"72.9","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"2.8 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800HS","isPart":true,"type":"CPU"},"Core-i5-6600T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1173,"Geekbench Multi-Core Score":3224,"UserBenchmark CPU Score":"72.9"},"isPart":true,"type":"CPU","humanName":"Core i5-6600T"},"Xeon-E3-1230-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1137,"Geekbench Multi-Core Score":3727,"UserBenchmark CPU Score":"72.8"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230 v3"},"Xeon-W3570":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"72.7"},"isPart":true,"type":"CPU","humanName":"Xeon W3570"},"Ryzen-5-2500X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"8 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1022,"Geekbench Multi-Core Score":3570,"UserBenchmark CPU Score":"72.6","Release Date":"2018-09-10","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 2500X","isPart":true,"type":"CPU"},"Core-i7-8705G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":1248,"Geekbench Multi-Core Score":3949,"UserBenchmark CPU Score":"72.5","TDP":"65 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8705G"},"Core-i5-4670S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1119,"Geekbench Multi-Core Score":3190,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4670S"},"Core-i7-3770K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":709,"Geekbench Multi-Core Score":2479,"3DMark Fire Strike Physics Score":2122,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3770K"},"Core-i7-975":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-06-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":545,"Geekbench Multi-Core Score":1902,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i7-975"},"Core-i5-6600K":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-08-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1407,"Geekbench Multi-Core Score":3987,"3DMark Fire Strike Physics Score":2632,"UserBenchmark CPU Score":"72.4"},"isPart":true,"type":"CPU","humanName":"Core i5-6600K"},"Core-i7-6700":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1285,"Geekbench Multi-Core Score":4111,"3DMark Fire Strike Physics Score":2832,"UserBenchmark CPU Score":"72.3"},"isPart":true,"type":"CPU","humanName":"Core i7-6700"},"Xeon-E3-1240-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1149,"Geekbench Multi-Core Score":3730,"UserBenchmark CPU Score":"72.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240 v3"},"Core-i5-7600":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1362,"Geekbench Multi-Core Score":3789,"UserBenchmark CPU Score":"72"},"isPart":true,"type":"CPU","humanName":"Core i5-7600"},"Ryzen-7-4800HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1434,"Geekbench Multi-Core Score":5979,"UserBenchmark CPU Score":"72","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"4.2 GHz","TDP":"35 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 4800HS","isPart":true,"type":"APU"},"Core-i7-4820K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge E","Market":"Desktop","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":655,"Geekbench Multi-Core Score":2414,"UserBenchmark CPU Score":"71.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4820K"},"Ryzen-7-1800X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1135,"Geekbench Multi-Core Score":5833,"3DMark Fire Strike Physics Score":4496,"UserBenchmark CPU Score":"71.8","Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","XFR Frequency":"4.1 GHz","TDP":"95 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1800X","isPart":true,"type":"CPU"},"Core-i7-4790S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1178,"Geekbench Multi-Core Score":3664,"UserBenchmark CPU Score":"71.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4790S"},"Core-i7-7820HK":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1306,"Geekbench Multi-Core Score":4136,"UserBenchmark CPU Score":"71.7"},"isPart":true,"type":"CPU","humanName":"Core i7-7820HK"},"Core-i7-7700T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1201,"Geekbench Multi-Core Score":3608,"UserBenchmark CPU Score":"71.7"},"isPart":true,"type":"CPU","humanName":"Core i7-7700T"},"Ryzen-9-4900HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1450,"Geekbench Multi-Core Score":6423,"UserBenchmark CPU Score":"71.5","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4.3 GHz","TDP":"35 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1750 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"112 GFLOPS"},"humanName":"Ryzen 9 4900HS","isPart":true,"type":"APU"},"Core-i3-7350K":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"60 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1420,"Geekbench Multi-Core Score":2803,"UserBenchmark CPU Score":"71.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7350K"},"Xeon-E3-1245-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":1181,"Geekbench Multi-Core Score":3801,"UserBenchmark CPU Score":"71.5"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245 v3"},"Ryzen-5-4500U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","UserBenchmark CPU Score":"71.4","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4500U","isPart":true,"type":"APU"},"Core-i7-4790":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1209,"Geekbench Multi-Core Score":3830,"3DMark Fire Strike Physics Score":2439,"UserBenchmark CPU Score":"71.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4790"},"Core-i7-7920HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1261,"Geekbench Multi-Core Score":4156,"UserBenchmark CPU Score":"71.4"},"isPart":true,"type":"CPU","humanName":"Core i7-7920HQ"},"Xeon-X5660":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":2077,"UserBenchmark CPU Score":"71.3"},"isPart":true,"type":"CPU","humanName":"Xeon X5660"},"Core-i7-4770S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1131,"Geekbench Multi-Core Score":3567,"UserBenchmark CPU Score":"71.2"},"isPart":true,"type":"CPU","humanName":"Core i7-4770S"},"Core-i3-8100T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1068,"Geekbench Multi-Core Score":3020,"UserBenchmark CPU Score":"71.1"},"isPart":true,"type":"CPU","humanName":"Core i3-8100T"},"Ryzen-7-1700X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1077,"Geekbench Multi-Core Score":5527,"3DMark Fire Strike Physics Score":4253,"UserBenchmark CPU Score":"71","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","XFR Frequency":"3.9 GHz","TDP":"95 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1700X","isPart":true,"type":"CPU"},"Core-i7-4790T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1137,"Geekbench Multi-Core Score":3376,"UserBenchmark CPU Score":"70.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4790T"},"Core-i5-2450P":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"70.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2450P"},"Core-i5-11300H":{"data":{"Geekbench Single-Core Score":1685,"Geekbench Multi-Core Score":4942,"UserBenchmark CPU Score":"70.8","Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11300H","isPart":true,"type":"CPU"},"Xeon-X5667":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"70.8"},"isPart":true,"type":"CPU","humanName":"Xeon X5667"},"Core-i7-8850H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1307,"Geekbench Multi-Core Score":4592,"UserBenchmark CPU Score":"70.7"},"isPart":true,"type":"CPU","humanName":"Core i7-8850H"},"Core-i3-8100":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-10-05","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1235,"Geekbench Multi-Core Score":3381,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i3-8100"},"Core-i7-880":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":518,"Geekbench Multi-Core Score":1651,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i7-880"},"Core-i7-2600K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":670,"Geekbench Multi-Core Score":2338,"3DMark Fire Strike Physics Score":1868,"UserBenchmark CPU Score":"70.6"},"isPart":true,"type":"CPU","humanName":"Core i7-2600K"},"Core-i7-4770":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1180,"Geekbench Multi-Core Score":3769,"3DMark Fire Strike Physics Score":2368,"UserBenchmark CPU Score":"70.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4770"},"Xeon-E3-1240":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":565,"Geekbench Multi-Core Score":2037,"UserBenchmark CPU Score":"70.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240"},"Core-i7-4770T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1119,"Geekbench Multi-Core Score":3201,"UserBenchmark CPU Score":"70.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770T"},"Ryzen-5-1600":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1065,"Geekbench Multi-Core Score":4567,"3DMark Fire Strike Physics Score":3190,"UserBenchmark CPU Score":"70.2","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","XFR Frequency":"3.7 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 1600","isPart":true,"type":"CPU"},"Core-i7-8750H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1289,"Geekbench Multi-Core Score":4553,"3DMark Fire Strike Physics Score":3441,"UserBenchmark CPU Score":"70.1"},"isPart":true,"type":"CPU","humanName":"Core i7-8750H"},"Ryzen-5-4600H":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1349,"Geekbench Multi-Core Score":4995,"3DMark Fire Strike Physics Score":4414,"UserBenchmark CPU Score":"70.1","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","TDP":"45 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600H","isPart":true,"type":"APU"},"Xeon-X5650":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":2243,"UserBenchmark CPU Score":"70.1"},"isPart":true,"type":"CPU","humanName":"Xeon X5650"},"Core-i3-7300":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"70"},"isPart":true,"type":"CPU","humanName":"Core i3-7300"},"Core-i7-6700T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1188,"Geekbench Multi-Core Score":3625,"UserBenchmark CPU Score":"69.9"},"isPart":true,"type":"CPU","humanName":"Core i7-6700T"},"Core-i7-3940XM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":629,"Geekbench Multi-Core Score":2159,"UserBenchmark CPU Score":"69.6"},"isPart":true,"type":"CPU","humanName":"Core i7-3940XM"},"Ryzen-5-4600HS":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-03-16","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1298,"Geekbench Multi-Core Score":5213,"UserBenchmark CPU Score":"69.6","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","TDP":"35 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 4600HS","isPart":true,"type":"APU"},"Core-i5-4690K":{"data":{"Manufacturer":"Intel","Architecture":"Devil's Canyon","Market":"Desktop","Lithography":"22 nm","TDP":"88 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1285,"Geekbench Multi-Core Score":3649,"3DMark Fire Strike Physics Score":2157,"UserBenchmark CPU Score":"69.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4690K"},"Core-i7-3820":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge E","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-02-13","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":614,"Geekbench Multi-Core Score":2297,"UserBenchmark CPU Score":"69.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3820"},"Core-i7-6920HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1154,"Geekbench Multi-Core Score":3758,"UserBenchmark CPU Score":"69.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6920HQ"},"Core-i3-6320":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1298,"Geekbench Multi-Core Score":2618,"UserBenchmark CPU Score":"69.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6320"},"Xeon-E3-1220-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":3218,"UserBenchmark CPU Score":"69.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220 v3"},"Core-i7-4940MX":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"57 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.35 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","Geekbench Single-Core Score":1209,"Geekbench Multi-Core Score":3733,"UserBenchmark CPU Score":"69.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4940MX"},"Core-i7-3770S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":672,"Geekbench Multi-Core Score":2237,"UserBenchmark CPU Score":"69.3"},"isPart":true,"type":"CPU","humanName":"Core i7-3770S"},"Xeon-X5570":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.333 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":487,"Geekbench Multi-Core Score":1874,"UserBenchmark CPU Score":"69.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5570"},"Core-i7-4930MX":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"57 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.35 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3412,"UserBenchmark CPU Score":"69.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4930MX"},"Ryzen-7-1700":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Core Count":8,"Thread Count":16,"Release Date":"2017-03-02","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","XFR Support":true,"Geekbench Single-Core Score":1004,"Geekbench Multi-Core Score":5071,"3DMark Fire Strike Physics Score":3902,"UserBenchmark CPU Score":"69","Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.75 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 1700","isPart":true,"type":"CPU"},"Core-i7-3770":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":669,"Geekbench Multi-Core Score":2296,"3DMark Fire Strike Physics Score":1986,"UserBenchmark CPU Score":"69"},"isPart":true,"type":"CPU","humanName":"Core i7-3770"},"Core-i5-3450S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":583,"Geekbench Multi-Core Score":1668,"UserBenchmark CPU Score":"68.9"},"isPart":true,"type":"CPU","humanName":"Core i5-3450S"},"Core-i7-5700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1084,"Geekbench Multi-Core Score":3209,"UserBenchmark CPU Score":"68.8"},"isPart":true,"type":"CPU","humanName":"Core i7-5700HQ"},"Core-i7-6820HK":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1102,"Geekbench Multi-Core Score":3680,"UserBenchmark CPU Score":"68.8"},"isPart":true,"type":"CPU","humanName":"Core i7-6820HK"},"Xeon-X3470":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"68.7"},"isPart":true,"type":"CPU","humanName":"Xeon X3470"},"Core-i5-3550":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":637,"Geekbench Multi-Core Score":1884,"UserBenchmark CPU Score":"68.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3550"},"Core-i3-7101E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"3.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"68.6"},"isPart":true,"type":"CPU","humanName":"Core i3-7101E"},"Core-i5-3475S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":586,"Geekbench Multi-Core Score":1622,"UserBenchmark CPU Score":"68.5"},"isPart":true,"type":"CPU","humanName":"Core i5-3475S"},"Core-i7-3920XM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","UserBenchmark CPU Score":"68.2"},"isPart":true,"type":"CPU","humanName":"Core i7-3920XM"},"Ryzen-7-5800U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1638,"Geekbench Multi-Core Score":6459,"UserBenchmark CPU Score":"68.1","Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.9 GHz","Boost Frequency":"4.4 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5800U","isPart":true,"type":"CPU"},"Xeon-X5560":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"68.1"},"isPart":true,"type":"CPU","humanName":"Xeon X5560"},"Core-i7-10710U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.1 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i7-10710U"},"Ryzen-3-4300U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-01-06","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1240,"Geekbench Multi-Core Score":3364,"UserBenchmark CPU Score":"68","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","TDP":"15 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","GPU Model":"RX Vega 5","Max Displays":4,"Shader Processor Count":320,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1400 MHz","FP32 Compute":"0.896 TFLOPS","FP64 Compute":"56 GFLOPS"},"humanName":"Ryzen 3 4300U","isPart":true,"type":"APU"},"Core-i7-4960HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1112,"Geekbench Multi-Core Score":3733,"UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i7-4960HQ"},"Core-i5-4670K":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1245,"Geekbench Multi-Core Score":3508,"UserBenchmark CPU Score":"68"},"isPart":true,"type":"CPU","humanName":"Core i5-4670K"},"Xeon-X3460":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":449,"Geekbench Multi-Core Score":1501,"UserBenchmark CPU Score":"67.7"},"isPart":true,"type":"CPU","humanName":"Xeon X3460"},"Core-i7-960":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-10-19","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":493,"Geekbench Multi-Core Score":1666,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i7-960"},"Core-i7-4900MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":992,"Geekbench Multi-Core Score":3018,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4900MQ"},"Core-i5-3570K":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":689,"Geekbench Multi-Core Score":2080,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3570K"},"Core-i5-6600":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1289,"Geekbench Multi-Core Score":3568,"UserBenchmark CPU Score":"67.6"},"isPart":true,"type":"CPU","humanName":"Core i5-6600"},"Xeon-E5-2670":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":506,"Geekbench Multi-Core Score":3032,"UserBenchmark CPU Score":"67.3"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670"},"Core-i7-4910MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1082,"Geekbench Multi-Core Score":3332,"UserBenchmark CPU Score":"67.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4910MQ"},"Core-i5-4590S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1086,"Geekbench Multi-Core Score":2933,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4590S"},"Core-i7-2600":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":611,"Geekbench Multi-Core Score":2048,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i7-2600"},"Core-i5-4690":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":3256,"UserBenchmark CPU Score":"67.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4690"},"Xeon-W3565":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-11-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":488,"Geekbench Multi-Core Score":1685,"UserBenchmark CPU Score":"67"},"isPart":true,"type":"CPU","humanName":"Xeon W3565"},"Core-i7-2600S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":580,"Geekbench Multi-Core Score":1782,"UserBenchmark CPU Score":"67"},"isPart":true,"type":"CPU","humanName":"Core i7-2600S"},"Core-i3-7300T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"66.8"},"isPart":true,"type":"CPU","humanName":"Core i3-7300T"},"Core-i5-7500":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1265,"Geekbench Multi-Core Score":3460,"3DMark Fire Strike Physics Score":2295,"UserBenchmark CPU Score":"66.8"},"isPart":true,"type":"CPU","humanName":"Core i5-7500"},"Pentium-G4620":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":736,"Geekbench Multi-Core Score":1603,"UserBenchmark CPU Score":"66.7"},"isPart":true,"type":"CPU","humanName":"Pentium G4620"},"Core-i3-6300":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1230,"Geekbench Multi-Core Score":2494,"UserBenchmark CPU Score":"66.7"},"isPart":true,"type":"CPU","humanName":"Core i3-6300"},"Core-i5-4670":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1171,"Geekbench Multi-Core Score":3231,"UserBenchmark CPU Score":"66.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4670"},"Ryzen-5-1500X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":1103,"Geekbench Multi-Core Score":3663,"UserBenchmark CPU Score":"66.4","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"16 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 1500X","isPart":true,"type":"CPU"},"Core-i5-7500T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1121,"Geekbench Multi-Core Score":3096,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i5-7500T"},"Core-i7-3820QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":623,"Geekbench Multi-Core Score":2122,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i7-3820QM"},"Core-i7-4722HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-01-12","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4722HQ"},"Core-i5-3450":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":609,"Geekbench Multi-Core Score":1800,"UserBenchmark CPU Score":"66.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3450"},"Core-i5-4570S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1042,"Geekbench Multi-Core Score":2826,"UserBenchmark CPU Score":"66.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4570S"},"Core-i5-4460S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1003,"Geekbench Multi-Core Score":2812,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4460S"},"Core-i5-3340":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":1596,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3340"},"Core-i7-870":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":481,"Geekbench Multi-Core Score":1570,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i7-870"},"Core-i7-3840QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":604,"Geekbench Multi-Core Score":2048,"UserBenchmark CPU Score":"66.1"},"isPart":true,"type":"CPU","humanName":"Core i7-3840QM"},"Core-i7-4850HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1040,"Geekbench Multi-Core Score":3301,"UserBenchmark CPU Score":"66"},"isPart":true,"type":"CPU","humanName":"Core i7-4850HQ"},"Xeon-X3450":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"66"},"isPart":true,"type":"CPU","humanName":"Xeon X3450"},"Core-i3-4350":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":864,"Geekbench Multi-Core Score":2046,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4350"},"Core-i5-2500K":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":639,"Geekbench Multi-Core Score":1902,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2500K"},"Core-i7-950":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-06-03","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":458,"Geekbench Multi-Core Score":1560,"UserBenchmark CPU Score":"65.9"},"isPart":true,"type":"CPU","humanName":"Core i7-950"},"Ryzen-5-5600U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1617,"Geekbench Multi-Core Score":5725,"UserBenchmark CPU Score":"65.8","Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":6,"Thread Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600U","isPart":true,"type":"CPU"},"Core-i3-4370":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1217,"Geekbench Multi-Core Score":2415,"UserBenchmark CPU Score":"65.8"},"isPart":true,"type":"CPU","humanName":"Core i3-4370"},"Xeon-W3550":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":483,"Geekbench Multi-Core Score":1600,"UserBenchmark CPU Score":"65.8"},"isPart":true,"type":"CPU","humanName":"Xeon W3550"},"Core-i7-940":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":1491,"UserBenchmark CPU Score":"65.5"},"isPart":true,"type":"CPU","humanName":"Core i7-940"},"Ryzen-3-1300X":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-07-27","XFR Support":true,"Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3156,"UserBenchmark CPU Score":"65.4","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","XFR Frequency":"3.8 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 1300X","isPart":true,"type":"CPU"},"Core-i5-3470S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":607,"Geekbench Multi-Core Score":1733,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3470S"},"Core-i5-7400T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1020,"Geekbench Multi-Core Score":2808,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-7400T"},"Core-i5-3350P":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":571,"Geekbench Multi-Core Score":1688,"UserBenchmark CPU Score":"65.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3350P"},"Core-i3-6300T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1084,"Geekbench Multi-Core Score":2311,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i3-6300T"},"Xeon-X3440":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":368,"Geekbench Multi-Core Score":1226,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Xeon X3440"},"Core-i5-4570R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":884,"Geekbench Multi-Core Score":2695,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4570R"},"Core-i5-4430":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1003,"Geekbench Multi-Core Score":2846,"UserBenchmark CPU Score":"65.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4430"},"Core-i5-3570":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":656,"Geekbench Multi-Core Score":1921,"UserBenchmark CPU Score":"65.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3570"},"Core-i3-8109U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1164,"Geekbench Multi-Core Score":2407,"UserBenchmark CPU Score":"65"},"isPart":true,"type":"CPU","humanName":"Core i3-8109U"},"Core-i5-9300H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1268,"Geekbench Multi-Core Score":3664,"3DMark Fire Strike Physics Score":2593,"UserBenchmark CPU Score":"65"},"isPart":true,"type":"CPU","humanName":"Core i5-9300H"},"Core-i7-3720QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":594,"Geekbench Multi-Core Score":2002,"UserBenchmark CPU Score":"64.8"},"isPart":true,"type":"CPU","humanName":"Core i7-3720QM"},"Core-i5-2310":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-05-22","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":520,"Geekbench Multi-Core Score":1493,"UserBenchmark CPU Score":"64.8"},"isPart":true,"type":"CPU","humanName":"Core i5-2310"},"Core-i5-8300H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1270,"Geekbench Multi-Core Score":3752,"3DMark Fire Strike Physics Score":2475,"UserBenchmark CPU Score":"64.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8300H"},"Core-i3-4360":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":2318,"UserBenchmark CPU Score":"64.7"},"isPart":true,"type":"CPU","humanName":"Core i3-4360"},"Core-i7-2960XM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-09-04","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":523,"Geekbench Multi-Core Score":1682,"UserBenchmark CPU Score":"64.6"},"isPart":true,"type":"CPU","humanName":"Core i7-2960XM"},"Xeon-W3530":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":429,"Geekbench Multi-Core Score":1500,"UserBenchmark CPU Score":"64.6"},"isPart":true,"type":"CPU","humanName":"Xeon W3530"},"Core-i3-4340":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"64.5"},"isPart":true,"type":"CPU","humanName":"Core i3-4340"},"Core-i7-3740QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":585,"Geekbench Multi-Core Score":1939,"UserBenchmark CPU Score":"64.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3740QM"},"Core-i5-2500S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":1458,"UserBenchmark CPU Score":"64.3"},"isPart":true,"type":"CPU","humanName":"Core i5-2500S"},"Core-i7-860":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":444,"Geekbench Multi-Core Score":1452,"UserBenchmark CPU Score":"64.2"},"isPart":true,"type":"CPU","humanName":"Core i7-860"},"Core-i5-3330S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":549,"Geekbench Multi-Core Score":1630,"UserBenchmark CPU Score":"64.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3330S"},"Core-i5-2300":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":510,"Geekbench Multi-Core Score":1492,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i5-2300"},"Core-i7-4770HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":996,"Geekbench Multi-Core Score":3347,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i7-4770HQ"},"Core-i7-930":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":1440,"UserBenchmark CPU Score":"64"},"isPart":true,"type":"CPU","humanName":"Core i7-930"},"Core-i5-2320":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-09-04","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":534,"Geekbench Multi-Core Score":1535,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2320"},"Core-i5-2405S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-05-22","Socket":"FCLGA1155, LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":527,"Geekbench Multi-Core Score":1414,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2405S"},"Core-i7-7567U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1300,"Geekbench Multi-Core Score":2595,"UserBenchmark CPU Score":"63.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7567U"},"Core-i5-760":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-07-18","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":1285,"UserBenchmark CPU Score":"63.6"},"isPart":true,"type":"CPU","humanName":"Core i5-760"},"Core-i5-6500":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1170,"Geekbench Multi-Core Score":3199,"3DMark Fire Strike Physics Score":2120,"UserBenchmark CPU Score":"63.6"},"isPart":true,"type":"CPU","humanName":"Core i5-6500"},"Core-i5-7400":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1166,"Geekbench Multi-Core Score":3203,"3DMark Fire Strike Physics Score":2085,"UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7400"},"Pentium-G5400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5400T"},"Core-i5-4590":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":3134,"UserBenchmark CPU Score":"63.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4590"},"Core-i7-4750HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":982,"Geekbench Multi-Core Score":3208,"UserBenchmark CPU Score":"63.4"},"isPart":true,"type":"CPU","humanName":"Core i7-4750HQ"},"Core-i7-4800MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1026,"Geekbench Multi-Core Score":3000,"UserBenchmark CPU Score":"63.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4800MQ"},"Xeon-E5540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":1553,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5540"},"Core-i5-3470":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":622,"Geekbench Multi-Core Score":1841,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Core i5-3470"},"Xeon-W3520":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":411,"Geekbench Multi-Core Score":1388,"UserBenchmark CPU Score":"63.1"},"isPart":true,"type":"CPU","humanName":"Xeon W3520"},"FX-9590":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":541,"Geekbench Multi-Core Score":2175,"UserBenchmark CPU Score":"63.1","Thread Count":8,"Core Count":8,"Base Frequency":"4.7 GHz","Boost Frequency":"5.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"220 W","Release Date":"2013-07-06"},"isPart":true,"type":"CPU","humanName":"FX 9590"},"Core-i7-7820HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1179,"Geekbench Multi-Core Score":3519,"UserBenchmark CPU Score":"63"},"isPart":true,"type":"CPU","humanName":"Core i7-7820HQ"},"Pentium-G4600":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":734,"Geekbench Multi-Core Score":1526,"UserBenchmark CPU Score":"62.9"},"isPart":true,"type":"CPU","humanName":"Pentium G4600"},"Core-i5-2500":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":589,"Geekbench Multi-Core Score":1710,"UserBenchmark CPU Score":"62.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2500"},"Pentium-G5500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"62.6"},"isPart":true,"type":"CPU","humanName":"Pentium G5500T"},"Ryzen-5-2400G":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Geekbench Single-Core Score":1058,"Geekbench Multi-Core Score":3292,"UserBenchmark CPU Score":"62.5","Socket":"AM4","Release Date":"2018-02-12","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"RX Vega 11","Shader Processor Count":704,"Texture Mapping Unit Count":44,"Render Output Unit Count":16,"GPU Base Frequency":"1250 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"Ryzen 5 2400G","type":"APU"},"FX-9370":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":2073,"UserBenchmark CPU Score":"62.5","Thread Count":8,"Core Count":8,"Base Frequency":"4.4 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"220 W","Release Date":"2013-07-06","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 9370"},"Core-i5-4570":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1083,"Geekbench Multi-Core Score":3045,"UserBenchmark CPU Score":"62.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4570"},"Core-i7-3615QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":543,"Geekbench Multi-Core Score":1835,"UserBenchmark CPU Score":"62.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3615QM"},"Core-i7-2920XM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":384,"Geekbench Multi-Core Score":1269,"UserBenchmark CPU Score":"62.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2920XM"},"Core-i5-4460":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1043,"Geekbench Multi-Core Score":2916,"3DMark Fire Strike Physics Score":1748,"UserBenchmark CPU Score":"62.1"},"isPart":true,"type":"CPU","humanName":"Core i5-4460"},"FX-8370":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":494,"Geekbench Multi-Core Score":2013,"UserBenchmark CPU Score":"62.1","Thread Count":8,"Core Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8370"},"Core-i7-3635QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":528,"Geekbench Multi-Core Score":1733,"UserBenchmark CPU Score":"62.1"},"isPart":true,"type":"CPU","humanName":"Core i7-3635QM"},"Core-i7-7700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1141,"Geekbench Multi-Core Score":3561,"3DMark Fire Strike Physics Score":2505,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i7-7700HQ"},"Core-i7-3610QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":516,"Geekbench Multi-Core Score":1772,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i7-3610QM"},"Core-i3-6098P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1114,"Geekbench Multi-Core Score":2193,"UserBenchmark CPU Score":"62"},"isPart":true,"type":"CPU","humanName":"Core i3-6098P"},"Core-i7-4700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":962,"Geekbench Multi-Core Score":3008,"UserBenchmark CPU Score":"61.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4700HQ"},"Core-i3-4330":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1049,"Geekbench Multi-Core Score":2135,"UserBenchmark CPU Score":"61.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4330"},"Core-i7-4702HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":929,"Geekbench Multi-Core Score":2939,"UserBenchmark CPU Score":"61.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4702HQ"},"Core-i7-2860QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-09-04","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":554,"Geekbench Multi-Core Score":1686,"UserBenchmark CPU Score":"61.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2860QM"},"Core-i7-4810MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1073,"Geekbench Multi-Core Score":3158,"UserBenchmark CPU Score":"61.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4810MQ"},"Core-i7-920":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":1446,"UserBenchmark CPU Score":"61.6"},"isPart":true,"type":"CPU","humanName":"Core i7-920"},"Core-i5-7260U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1109,"Geekbench Multi-Core Score":2337,"UserBenchmark CPU Score":"61.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7260U"},"Core-i5-750":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":433,"Geekbench Multi-Core Score":1211,"UserBenchmark CPU Score":"61.5"},"isPart":true,"type":"CPU","humanName":"Core i5-750"},"Core-i5-4440":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1018,"Geekbench Multi-Core Score":2853,"UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4440"},"Xeon-X3430":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Xeon X3430"},"Core-i5-3330":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":1643,"UserBenchmark CPU Score":"61.3"},"isPart":true,"type":"CPU","humanName":"Core i5-3330"},"Xeon-E5530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":343,"Geekbench Multi-Core Score":1384,"UserBenchmark CPU Score":"61.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5530"},"Ryzen-5-1400":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-04-11","XFR Support":true,"Geekbench Single-Core Score":946,"Geekbench Multi-Core Score":3102,"UserBenchmark CPU Score":"61","Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","XFR Frequency":"3.45 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 5 1400","isPart":true,"type":"CPU"},"Ryzen-3-5400U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1502,"Geekbench Multi-Core Score":4544,"UserBenchmark CPU Score":"61","Release Date":"2021-01-12","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"15 W","Core Count":4,"Thread Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"4.0 GHz","GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1600 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.229 TFLOPS","FP64 Compute":"76.8 GFLOPS"},"humanName":"Ryzen 3 5400U","isPart":true,"type":"CPU"},"Core-i7-4702MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":914,"Geekbench Multi-Core Score":2798,"UserBenchmark CPU Score":"61"},"isPart":true,"type":"CPU","humanName":"Core i7-4702MQ"},"Core-i5-6400":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1107,"Geekbench Multi-Core Score":3019,"UserBenchmark CPU Score":"60.8"},"isPart":true,"type":"CPU","humanName":"Core i5-6400"},"Core-i7-3630QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":548,"Geekbench Multi-Core Score":1823,"UserBenchmark CPU Score":"60.8"},"isPart":true,"type":"CPU","humanName":"Core i7-3630QM"},"FX-8350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":487,"Geekbench Multi-Core Score":1992,"3DMark Fire Strike Physics Score":1341,"UserBenchmark CPU Score":"60.8","Thread Count":8,"Core Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2012-10-23","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8350"},"Core-i7-4712HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":857,"Geekbench Multi-Core Score":2559,"UserBenchmark CPU Score":"60.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4712HQ"},"Core-i7-3632QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":503,"Geekbench Multi-Core Score":1694,"UserBenchmark CPU Score":"60.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3632QM"},"Core-i7-5557U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1029,"Geekbench Multi-Core Score":2021,"UserBenchmark CPU Score":"60.6"},"isPart":true,"type":"CPU","humanName":"Core i7-5557U"},"Core-i5-2400":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":554,"Geekbench Multi-Core Score":1609,"UserBenchmark CPU Score":"60.6"},"isPart":true,"type":"CPU","humanName":"Core i5-2400"},"Core-i3-7100T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1115,"Geekbench Multi-Core Score":2259,"UserBenchmark CPU Score":"60.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100T"},"Ryzen-3-2200G":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Geekbench Single-Core Score":988,"Geekbench Multi-Core Score":2853,"UserBenchmark CPU Score":"60.5","Socket":"AM4","Release Date":"2018-02-12","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"Ryzen 3 2200G","type":"APU"},"Core-i7-3612QM":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":508,"Geekbench Multi-Core Score":1685,"UserBenchmark CPU Score":"60.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3612QM"},"Core-i5-2400S":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":498,"Geekbench Multi-Core Score":1346,"UserBenchmark CPU Score":"60.4"},"isPart":true,"type":"CPU","humanName":"Core i5-2400S"},"Core-i3-2125":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"60.3"},"isPart":true,"type":"CPU","humanName":"Core i3-2125"},"Pentium-G4560T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":621,"Geekbench Multi-Core Score":1286,"UserBenchmark CPU Score":"60.2"},"isPart":true,"type":"CPU","humanName":"Pentium G4560T"},"Pentium-G4520":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"60.1"},"isPart":true,"type":"CPU","humanName":"Pentium G4520"},"Core-i7-6820HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1099,"Geekbench Multi-Core Score":3459,"UserBenchmark CPU Score":"60.1"},"isPart":true,"type":"CPU","humanName":"Core i7-6820HQ"},"Core-i7-2760QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-09-04","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":535,"Geekbench Multi-Core Score":1701,"UserBenchmark CPU Score":"59.9"},"isPart":true,"type":"CPU","humanName":"Core i7-2760QM"},"Core-i7-4710MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1015,"Geekbench Multi-Core Score":3111,"UserBenchmark CPU Score":"59.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4710MQ"},"Core-i7-5550U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"59.7"},"isPart":true,"type":"CPU","humanName":"Core i7-5550U"},"FX-8310":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","UserBenchmark CPU Score":"59.6","Thread Count":8,"Core Count":8,"Base Frequency":"3.4 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8310"},"Core-i7-8665U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"59.6"},"isPart":true,"type":"CPU","humanName":"Core i7-8665U"},"Xeon-L5520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.48 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"59.5"},"isPart":true,"type":"CPU","humanName":"Xeon L5520"},"Xeon-E5620":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":386,"Geekbench Multi-Core Score":1443,"UserBenchmark CPU Score":"59.4"},"isPart":true,"type":"CPU","humanName":"Xeon E5620"},"Core-i3-7167U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"59.2"},"isPart":true,"type":"CPU","humanName":"Core i3-7167U"},"Xeon-E5520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"59.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5520"},"Pentium-G3470":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"59.1"},"isPart":true,"type":"CPU","humanName":"Pentium G3470"},"Core-i3-3250":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":500,"Geekbench Multi-Core Score":1078,"UserBenchmark CPU Score":"58.7"},"isPart":true,"type":"CPU","humanName":"Core i3-3250"},"Core-i7-6700HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1080,"Geekbench Multi-Core Score":3396,"3DMark Fire Strike Physics Score":2341,"UserBenchmark CPU Score":"58.7"},"isPart":true,"type":"CPU","humanName":"Core i7-6700HQ"},"1100TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"58.6","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-11-07"},"humanName":"X6 1100T Black Edition","isPart":true,"type":"CPU"},"Core-i7-4700MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":997,"Geekbench Multi-Core Score":3017,"UserBenchmark CPU Score":"58.6"},"isPart":true,"type":"CPU","humanName":"Core i7-4700MQ"},"FX-8150":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":1698,"UserBenchmark CPU Score":"58.6","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"125 W","Release Date":"2011-10-12"},"humanName":"FX 8150","isPart":true,"type":"CPU"},"Core-i3-3225":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":527,"Geekbench Multi-Core Score":1105,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i3-3225"},"Core-i7-2820QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":517,"Geekbench Multi-Core Score":1446,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i7-2820QM"},"FX-8320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":1828,"UserBenchmark CPU Score":"58.5","Thread Count":8,"Core Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2012-10-23","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8320"},"Core-i3-2105":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":480,"Geekbench Multi-Core Score":968,"UserBenchmark CPU Score":"58.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2105"},"Core-i7-4610M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1064,"Geekbench Multi-Core Score":2011,"UserBenchmark CPU Score":"58.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4610M"},"Core-i7-2675QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-10-02","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":1362,"UserBenchmark CPU Score":"58"},"isPart":true,"type":"CPU","humanName":"Core i7-2675QM"},"Core-i5-5287U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1022,"Geekbench Multi-Core Score":2000,"UserBenchmark CPU Score":"58"},"isPart":true,"type":"CPU","humanName":"Core i5-5287U"},"Core-i7-4710HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":986,"Geekbench Multi-Core Score":2978,"UserBenchmark CPU Score":"57.9"},"isPart":true,"type":"CPU","humanName":"Core i7-4710HQ"},"Core-i7-4720HQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-01-12","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":991,"Geekbench Multi-Core Score":2983,"UserBenchmark CPU Score":"57.8"},"isPart":true,"type":"CPU","humanName":"Core i7-4720HQ"},"Core-i7-4558U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1017,"Geekbench Multi-Core Score":1878,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i7-4558U"},"Core-i5-1035G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G7"},"Core-i5-4570T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1031,"Geekbench Multi-Core Score":1993,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-4570T"},"Core-i7-2720QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":467,"Geekbench Multi-Core Score":1380,"UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2720QM"},"Core-i5-10210Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.7"},"isPart":true,"type":"CPU","humanName":"Core i5-10210Y"},"Core-i3-6100T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1037,"Geekbench Multi-Core Score":2065,"UserBenchmark CPU Score":"57.6"},"isPart":true,"type":"CPU","humanName":"Core i3-6100T"},"FX-8300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":453,"Geekbench Multi-Core Score":1729,"UserBenchmark CPU Score":"57.6","Thread Count":8,"Core Count":8,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2012-12-29","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8300"},"Pentium-G3460":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"57.6"},"isPart":true,"type":"CPU","humanName":"Pentium G3460"},"Core-i3-2130":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":1057,"UserBenchmark CPU Score":"57.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2130"},"Core-i7-2635QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1224","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":430,"Geekbench Multi-Core Score":1344,"UserBenchmark CPU Score":"57.4"},"isPart":true,"type":"CPU","humanName":"Core i7-2635QM"},"Core-i7-6567U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-07-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1147,"Geekbench Multi-Core Score":2387,"UserBenchmark CPU Score":"57.4"},"isPart":true,"type":"CPU","humanName":"Core i7-6567U"},"Core-i5-8365U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"57.3"},"isPart":true,"type":"CPU","humanName":"Core i5-8365U"},"Pentium-G4560":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":702,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"57.3"},"isPart":true,"type":"CPU","humanName":"Pentium G4560"},"FX-4350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":466,"Geekbench Multi-Core Score":1211,"UserBenchmark CPU Score":"57.3","Thread Count":4,"Core Count":4,"Base Frequency":"4.2 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W","Release Date":"2013-04-30","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"FX 4350"},"Core-i3-3210":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":510,"Geekbench Multi-Core Score":1047,"UserBenchmark CPU Score":"57.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3210"},"Pentium-G3440":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"57.1"},"isPart":true,"type":"CPU","humanName":"Pentium G3440"},"1090TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"57","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-04-27"},"humanName":"X6 1090T Black Edition","isPart":true,"type":"CPU"},"Core-i3-7100":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1231,"Geekbench Multi-Core Score":2408,"UserBenchmark CPU Score":"57"},"isPart":true,"type":"CPU","humanName":"Core i3-7100"},"Ryzen-3-1200":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2666 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2017-07-27","XFR Support":true,"Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":2838,"UserBenchmark CPU Score":"57","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","XFR Frequency":"3.45 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 1200","isPart":true,"type":"CPU"},"Core-i5-4200H":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":932,"Geekbench Multi-Core Score":1840,"UserBenchmark CPU Score":"57"},"isPart":true,"type":"CPU","humanName":"Core i5-4200H"},"Core-i3-4170":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1094,"Geekbench Multi-Core Score":2118,"UserBenchmark CPU Score":"56.9"},"isPart":true,"type":"CPU","humanName":"Core i3-4170"},"Core-i7-10510Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i7-10510Y"},"Pentium-G3430":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Pentium G3430"},"Core-i5-7300HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1076,"Geekbench Multi-Core Score":2922,"UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7300HQ"},"Core-i3-6167U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"56.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6167U"},"Core-i7-10510U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1103,"Geekbench Multi-Core Score":2914,"UserBenchmark CPU Score":"56.4"},"isPart":true,"type":"CPU","humanName":"Core i7-10510U"},"FX-8120":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":1573,"UserBenchmark CPU Score":"56.4","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"125 W","Release Date":"2011-10-12"},"humanName":"FX 8120","isPart":true,"type":"CPU"},"X4-970":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"UserBenchmark CPU Score":"56.3","Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W"},"humanName":"X4 970","isPart":true,"type":"CPU"},"Core-i7-2670QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-10-02","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":460,"Geekbench Multi-Core Score":1447,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Core i7-2670QM"},"Pentium-G4500":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":717,"Geekbench Multi-Core Score":1193,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Pentium G4500"},"Core-i5-4258U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":828,"Geekbench Multi-Core Score":1646,"UserBenchmark CPU Score":"56.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4258U"},"Core-i3-4130T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":909,"Geekbench Multi-Core Score":1810,"UserBenchmark CPU Score":"56.2"},"isPart":true,"type":"CPU","humanName":"Core i3-4130T"},"Core-i7-5650U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":973,"Geekbench Multi-Core Score":1838,"UserBenchmark CPU Score":"56.1"},"isPart":true,"type":"CPU","humanName":"Core i7-5650U"},"Pentium-G3450":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":963,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Pentium G3450"},"Core-i7-4600M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1032,"Geekbench Multi-Core Score":1964,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Core i7-4600M"},"Core-i7-3540M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":1108,"UserBenchmark CPU Score":"56"},"isPart":true,"type":"CPU","humanName":"Core i7-3540M"},"Core-i5-6260U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":944,"Geekbench Multi-Core Score":1961,"UserBenchmark CPU Score":"55.9"},"isPart":true,"type":"CPU","humanName":"Core i5-6260U"},"1075T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"55.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","TDP":"125 W","Release Date":"2010-09-21"},"humanName":"X6 1075T","isPart":true,"type":"CPU"},"1075TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"55.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","TDP":"125 W","Unlocked":true,"Release Date":"2010-04"},"humanName":"X6 1075T Black Edition","isPart":true,"type":"CPU"},"Core-i5-3470T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":548,"Geekbench Multi-Core Score":1106,"UserBenchmark CPU Score":"55.8"},"isPart":true,"type":"CPU","humanName":"Core i5-3470T"},"Core-i5-1035G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"55.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G4"},"Core-i5-3380M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":507,"Geekbench Multi-Core Score":1008,"UserBenchmark CPU Score":"55.4"},"isPart":true,"type":"CPU","humanName":"Core i5-3380M"},"Core-i3-6100":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1184,"Geekbench Multi-Core Score":2311,"UserBenchmark CPU Score":"55.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6100"},"Core-i3-4150":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1034,"Geekbench Multi-Core Score":2040,"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Core i3-4150"},"Core-i7-2630QM":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":1349,"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2630QM"},"FX-6300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":466,"Geekbench Multi-Core Score":1465,"UserBenchmark CPU Score":"55.2","Release Date":"2012-10-23","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","Core Count":6,"Thread Count":6,"L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W"},"humanName":"FX 6300","isPart":true,"type":"CPU"},"Xeon-E5507":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"55.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5507"},"Core-i3-3240":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":552,"Geekbench Multi-Core Score":1135,"UserBenchmark CPU Score":"55.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3240"},"Core-i3-4160":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1039,"Geekbench Multi-Core Score":2010,"UserBenchmark CPU Score":"55.1"},"isPart":true,"type":"CPU","humanName":"Core i3-4160"},"Ryzen-3-2300U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":751,"Geekbench Multi-Core Score":2067,"UserBenchmark CPU Score":"55","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 6","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 2300U","type":"APU"},"Core-i7-7560U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1117,"Geekbench Multi-Core Score":2147,"UserBenchmark CPU Score":"54.9"},"isPart":true,"type":"CPU","humanName":"Core i7-7560U"},"Core-i3-7130U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-06-06","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":845,"Geekbench Multi-Core Score":1718,"UserBenchmark CPU Score":"54.9"},"isPart":true,"type":"CPU","humanName":"Core i3-7130U"},"Core-i7-8565U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"54.7"},"isPart":true,"type":"CPU","humanName":"Core i7-8565U"},"Core-i5-5257U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":897,"Geekbench Multi-Core Score":1688,"UserBenchmark CPU Score":"54.6"},"isPart":true,"type":"CPU","humanName":"Core i5-5257U"},"Core-i3-3220T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":946,"UserBenchmark CPU Score":"54.6"},"isPart":true,"type":"CPU","humanName":"Core i3-3220T"},"Xeon-X5470":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"54.5"},"isPart":true,"type":"CPU","humanName":"Xeon X5470"},"Core-i3-6157U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":771,"Geekbench Multi-Core Score":1676,"UserBenchmark CPU Score":"54.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6157U"},"Xeon-E5506":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"54.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5506"},"Core-i7-7660U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1150,"Geekbench Multi-Core Score":2267,"UserBenchmark CPU Score":"54.2"},"isPart":true,"type":"CPU","humanName":"Core i7-7660U"},"1055T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"54","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","TDP":"95 W","Release Date":"2010-04-27"},"humanName":"X6 1055T","isPart":true,"type":"CPU"},"960T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"6 MiB","TDP":"125 W","Release Date":"Q4 2010"},"humanName":"X4 960T","isPart":true,"type":"CPU"},"960TBE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.9","Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"Q4 2010"},"humanName":"X4 960T Black Edition","isPart":true,"type":"CPU"},"Core-i5-3360M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":515,"Geekbench Multi-Core Score":1114,"UserBenchmark CPU Score":"53.9"},"isPart":true,"type":"CPU","humanName":"Core i5-3360M"},"Core-i5-6300HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":980,"Geekbench Multi-Core Score":2700,"UserBenchmark CPU Score":"53.7"},"isPart":true,"type":"CPU","humanName":"Core i5-6300HQ"},"Core-i7-2640M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-09-04","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":512,"Geekbench Multi-Core Score":994,"UserBenchmark CPU Score":"53.7"},"isPart":true,"type":"CPU","humanName":"Core i7-2640M"},"Pentium-G2130":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":959,"UserBenchmark CPU Score":"53.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2130"},"FX-6100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Geekbench Single-Core Score":385,"Geekbench Multi-Core Score":1220,"UserBenchmark CPU Score":"53.5","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","TDP":"95 W","Release Date":"2011-10-12"},"humanName":"FX 6100","isPart":true,"type":"CPU"},"Pentium-G3420":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":555,"Geekbench Multi-Core Score":904,"UserBenchmark CPU Score":"53.5"},"isPart":true,"type":"CPU","humanName":"Pentium G3420"},"1045T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"53.5","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","TDP":"95 W","Release Date":"2010-09"},"humanName":"X6 1045T","isPart":true,"type":"CPU"},"Core-i5-10210U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1046,"Geekbench Multi-Core Score":2940,"UserBenchmark CPU Score":"53.4"},"isPart":true,"type":"CPU","humanName":"Core i5-10210U"},"Core-i3-2120T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":420,"Geekbench Multi-Core Score":799,"UserBenchmark CPU Score":"53.3"},"isPart":true,"type":"CPU","humanName":"Core i3-2120T"},"Core-i7-3520M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":569,"Geekbench Multi-Core Score":1159,"UserBenchmark CPU Score":"53.2"},"isPart":true,"type":"CPU","humanName":"Core i7-3520M"},"Core-i7-1065G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"53.2"},"isPart":true,"type":"CPU","humanName":"Core i7-1065G7"},"Core-i5-8250U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"53.1"},"isPart":true,"type":"CPU","humanName":"Core i5-8250U"},"Core-i7-6650U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1001,"Geekbench Multi-Core Score":2054,"UserBenchmark CPU Score":"53.1"},"isPart":true,"type":"CPU","humanName":"Core i7-6650U"},"Core-i7-8550U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"53"},"isPart":true,"type":"CPU","humanName":"Core i7-8550U"},"Core-i5-2435M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":469,"Geekbench Multi-Core Score":865,"UserBenchmark CPU Score":"52.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2435M"},"1035T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"52.9","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","TDP":"95 W","Release Date":"2010-05"},"humanName":"X6 1035T","isPart":true,"type":"CPU"},"840T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"UserBenchmark CPU Score":"52.9","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"Q4 2010"},"humanName":"X4 840T","isPart":true,"type":"CPU"},"Core-i3-8145U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"52.8"},"isPart":true,"type":"CPU","humanName":"Core i3-8145U"},"Core-i5-8265U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-08-28","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"52.7"},"isPart":true,"type":"CPU","humanName":"Core i5-8265U"},"Core-i7-3687U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":493,"Geekbench Multi-Core Score":977,"UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Core i7-3687U"},"Pentium-G2120":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2120"},"Pentium-G3258":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-06-02","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":630,"Geekbench Multi-Core Score":1106,"UserBenchmark CPU Score":"52.6","Unlocked":"yes"},"isPart":true,"type":"CPU","humanName":"Pentium G3258"},"Core-i5-3340M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":523,"Geekbench Multi-Core Score":1044,"UserBenchmark CPU Score":"52.6"},"isPart":true,"type":"CPU","humanName":"Core i5-3340M"},"Pentium-G870":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"52.4"},"isPart":true,"type":"CPU","humanName":"Pentium G870"},"Core-i3-4130":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":1938,"UserBenchmark CPU Score":"52.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4130"},"Core-i7-8650U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"52.3"},"isPart":true,"type":"CPU","humanName":"Core i7-8650U"},"Core-i7-2620M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":501,"Geekbench Multi-Core Score":1014,"UserBenchmark CPU Score":"52.2"},"isPart":true,"type":"CPU","humanName":"Core i7-2620M"},"Core-i3-3220":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":520,"Geekbench Multi-Core Score":1082,"UserBenchmark CPU Score":"52.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3220"},"Ryzen-7-2700U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":808,"Geekbench Multi-Core Score":2432,"UserBenchmark CPU Score":"52.1","Core Count":4,"Thread Count":8,"Base Frequency":"2.2 GHz","Boost Frequency":"3.8 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 10","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1300 MHz"},"isPart":true,"humanName":"Ryzen 7 2700U","type":"APU"},"Xeon-E5504":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"51.9"},"isPart":true,"type":"CPU","humanName":"Xeon E5504"},"Pentium-G3260":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":593,"Geekbench Multi-Core Score":1016,"UserBenchmark CPU Score":"51.8"},"isPart":true,"type":"CPU","humanName":"Pentium G3260"},"Core-i5-680":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","UserBenchmark CPU Score":"51.8"},"isPart":true,"type":"CPU","humanName":"Core i5-680"},"FX-4300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Geekbench Single-Core Score":447,"Geekbench Multi-Core Score":1078,"UserBenchmark CPU Score":"51.6","Thread Count":4,"Core Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2012-10-23","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"FX 4300"},"Core-i5-8350U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-08-21","Socket":"FC-BGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"51.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8350U"},"Xeon-X5460":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":421,"Geekbench Multi-Core Score":1158,"UserBenchmark CPU Score":"51.6"},"isPart":true,"type":"CPU","humanName":"Xeon X5460"},"Core-i5-2540M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":498,"Geekbench Multi-Core Score":997,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i5-2540M"},"Core-i7-3537U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":470,"Geekbench Multi-Core Score":932,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i7-3537U"},"Core-i5-4300M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":939,"Geekbench Multi-Core Score":1837,"UserBenchmark CPU Score":"51.5"},"isPart":true,"type":"CPU","humanName":"Core i5-4300M"},"Core-i7-2677M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","UserBenchmark CPU Score":"51.4"},"isPart":true,"type":"CPU","humanName":"Core i7-2677M"},"Pentium-G860":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":440,"Geekbench Multi-Core Score":726,"UserBenchmark CPU Score":"51.4"},"isPart":true,"type":"CPU","humanName":"Pentium G860"},"FX-4100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Geekbench Single-Core Score":414,"Geekbench Multi-Core Score":1047,"UserBenchmark CPU Score":"51.4","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","TDP":"95 W","L3 Cache (Total)":"8 MiB","Release Date":"2011-10-12"},"humanName":"FX 4100","isPart":true,"type":"CPU"},"Pentium-G840":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":447,"Geekbench Multi-Core Score":748,"UserBenchmark CPU Score":"51.3"},"isPart":true,"type":"CPU","humanName":"Pentium G840"},"Core-i5-4210M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":888,"Geekbench Multi-Core Score":1760,"UserBenchmark CPU Score":"51.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4210M"},"Pentium-G3250":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":984,"UserBenchmark CPU Score":"51.2"},"isPart":true,"type":"CPU","humanName":"Pentium G3250"},"Core-i7-4650U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":799,"Geekbench Multi-Core Score":1432,"UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4650U"},"Core-i7-2637M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i7-2637M"},"Core-i5-1035G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1000 MHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"51.1"},"isPart":true,"type":"CPU","humanName":"Core i5-1035G1"},"Core-i3-4000M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":712,"Geekbench Multi-Core Score":1421,"UserBenchmark CPU Score":"51"},"isPart":true,"type":"CPU","humanName":"Core i3-4000M"},"Pentium-G850":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":779,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Pentium G850"},"Core-i7-3667U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":975,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Core i7-3667U"},"Core-i3-2100":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":470,"Geekbench Multi-Core Score":961,"UserBenchmark CPU Score":"50.9"},"isPart":true,"type":"CPU","humanName":"Core i3-2100"},"Xeon-X5472":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"50.8"},"isPart":true,"type":"CPU","humanName":"Xeon X5472"},"Core-i3-2120":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":502,"Geekbench Multi-Core Score":1031,"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Core i3-2120"},"Core-i7-3517U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":449,"Geekbench Multi-Core Score":931,"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Core i7-3517U"},"Xeon-E5472":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"50.7"},"isPart":true,"type":"CPU","humanName":"Xeon E5472"},"Pentium-G2010":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":471,"Geekbench Multi-Core Score":695,"UserBenchmark CPU Score":"50.6"},"isPart":true,"type":"CPU","humanName":"Pentium G2010"},"Xeon-E5450":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":380,"Geekbench Multi-Core Score":1092,"UserBenchmark CPU Score":"50.5"},"isPart":true,"type":"CPU","humanName":"Xeon E5450"},"Core-i7-4550U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"50.5"},"isPart":true,"type":"CPU","humanName":"Core i7-4550U"},"Core-i5-4250U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":754,"Geekbench Multi-Core Score":1450,"UserBenchmark CPU Score":"50.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4250U"},"Pentium-G3240":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":513,"Geekbench Multi-Core Score":897,"UserBenchmark CPU Score":"50.2"},"isPart":true,"type":"CPU","humanName":"Pentium G3240"},"Core-i7-8500Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i7-8500Y"},"Core-i7-4500U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":756,"Geekbench Multi-Core Score":1428,"UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4500U"},"Core-i3-3120M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":385,"Geekbench Multi-Core Score":827,"UserBenchmark CPU Score":"50.1"},"isPart":true,"type":"CPU","humanName":"Core i3-3120M"},"Pentium-G645":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":789,"UserBenchmark CPU Score":"49.9"},"isPart":true,"type":"CPU","humanName":"Pentium G645"},"Core-i5-661":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"87 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"900 MHz","Geekbench Single-Core Score":488,"Geekbench Multi-Core Score":929,"UserBenchmark CPU Score":"49.8"},"isPart":true,"type":"CPU","humanName":"Core i5-661"},"Pentium-5405U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"49.8"},"isPart":true,"type":"CPU","humanName":"Pentium 5405U"},"Core-i5-2557M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":381,"Geekbench Multi-Core Score":742,"UserBenchmark CPU Score":"49.7"},"isPart":true,"type":"CPU","humanName":"Core i5-2557M"},"Core-i5-4200M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":854,"Geekbench Multi-Core Score":1684,"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4200M"},"Core-i7-7600U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i7-7600U"},"X4-651":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Geekbench Single-Core Score":332,"Geekbench Multi-Core Score":1113,"UserBenchmark CPU Score":"49.6","Base Frequency":"3.0 GHz","TDP":"100 W","Release Date":"2011-11-14"},"isPart":true,"type":"CPU","humanName":"X4 651"},"Core-i7-5600U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":908,"Geekbench Multi-Core Score":1724,"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Core i7-5600U"},"Xeon-X5450":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"49.6"},"isPart":true,"type":"CPU","humanName":"Xeon X5450"},"Core-i5-2430M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":448,"Geekbench Multi-Core Score":903,"UserBenchmark CPU Score":"49.5"},"isPart":true,"type":"CPU","humanName":"Core i5-2430M"},"Core-i7-3689Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz","UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i7-3689Y"},"Core-i5-5250U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":800,"Geekbench Multi-Core Score":1554,"UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i5-5250U"},"Core-i5-4310U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":779,"Geekbench Multi-Core Score":1498,"UserBenchmark CPU Score":"49.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4310U"},"Core-i7-4600U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":849,"Geekbench Multi-Core Score":1581,"UserBenchmark CPU Score":"49.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4600U"},"Pentium-3550M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","UserBenchmark CPU Score":"49.1"},"isPart":true,"type":"CPU","humanName":"Pentium 3550M"},"X4-940":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"UserBenchmark CPU Score":"49","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","TDP":"65 W"},"humanName":"X4 940","isPart":true,"type":"CPU"},"Core-i5-3437U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":438,"Geekbench Multi-Core Score":879,"UserBenchmark CPU Score":"49"},"isPart":true,"type":"CPU","humanName":"Core i5-3437U"},"Xeon-E5440":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":358,"Geekbench Multi-Core Score":1044,"UserBenchmark CPU Score":"49"},"isPart":true,"type":"CPU","humanName":"Xeon E5440"},"Pentium-G2020":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":486,"Geekbench Multi-Core Score":837,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Pentium G2020"},"Ryzen-5-2500U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":810,"Geekbench Multi-Core Score":2306,"UserBenchmark CPU Score":"48.9","Core Count":4,"Thread Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"3.6 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 5 2500U","type":"APU"},"Core-i3-2370M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-01-15","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":363,"Geekbench Multi-Core Score":698,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Core i3-2370M"},"Core-i5-2450M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-01-15","Socket":"FCBGA1023, PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":462,"Geekbench Multi-Core Score":890,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2450M"},"Pentium-G2030":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":459,"Geekbench Multi-Core Score":753,"UserBenchmark CPU Score":"48.9"},"isPart":true,"type":"CPU","humanName":"Pentium G2030"},"Core-i3-2348M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":335,"Geekbench Multi-Core Score":635,"UserBenchmark CPU Score":"48.8"},"isPart":true,"type":"CPU","humanName":"Core i3-2348M"},"Core-i5-660":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":480,"Geekbench Multi-Core Score":982,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-660"},"Core-i5-3427U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":885,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-3427U"},"Core-i5-3230M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":506,"Geekbench Multi-Core Score":1020,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Core i5-3230M"},"Pentium-4415U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":428,"Geekbench Multi-Core Score":880,"UserBenchmark CPU Score":"48.7"},"isPart":true,"type":"CPU","humanName":"Pentium 4415U"},"Core-i5-8200Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"48.6"},"isPart":true,"type":"CPU","humanName":"Core i5-8200Y"},"Core-i5-8210Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-31","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":949,"Geekbench Multi-Core Score":1641,"UserBenchmark CPU Score":"48.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8210Y"},"Pentium-4417U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"48.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4417U"},"Pentium-G640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":439,"Geekbench Multi-Core Score":732,"UserBenchmark CPU Score":"48.3"},"isPart":true,"type":"CPU","humanName":"Pentium G640"},"Pentium-G3220":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":532,"Geekbench Multi-Core Score":903,"UserBenchmark CPU Score":"48.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3220"},"Core-i3-3110M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":391,"Geekbench Multi-Core Score":801,"UserBenchmark CPU Score":"48.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3110M"},"Core-i7-7500U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"48.1"},"isPart":true,"type":"CPU","humanName":"Core i7-7500U"},"Xeon-E5430":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Xeon E5430"},"Pentium-4405U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":400,"Geekbench Multi-Core Score":828,"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Pentium 4405U"},"Core-i5-3320M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":513,"Geekbench Multi-Core Score":1046,"UserBenchmark CPU Score":"48"},"isPart":true,"type":"CPU","humanName":"Core i5-3320M"},"X4-641":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"UserBenchmark CPU Score":"47.9","Base Frequency":"2.8 GHz","TDP":"100 W","Release Date":"2012-02-08"},"isPart":true,"type":"CPU","humanName":"X4 641"},"Core-i5-2410M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz","Geekbench Single-Core Score":434,"Geekbench Multi-Core Score":850,"UserBenchmark CPU Score":"47.9"},"isPart":true,"type":"CPU","humanName":"Core i5-2410M"},"Core-i5-3210M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":489,"Geekbench Multi-Core Score":991,"UserBenchmark CPU Score":"47.8"},"isPart":true,"type":"CPU","humanName":"Core i5-3210M"},"Core-i3-5015U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":699,"Geekbench Multi-Core Score":1401,"UserBenchmark CPU Score":"47.8"},"isPart":true,"type":"CPU","humanName":"Core i3-5015U"},"Core-i3-5010U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":662,"Geekbench Multi-Core Score":1339,"UserBenchmark CPU Score":"47.7"},"isPart":true,"type":"CPU","humanName":"Core i3-5010U"},"Xeon-E5462":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Xeon E5462"},"Core-i5-2520M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"PPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.3 GHz","Geekbench Single-Core Score":469,"Geekbench Multi-Core Score":926,"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Core i5-2520M"},"Core-i3-8130U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-02-12","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":984,"Geekbench Multi-Core Score":1832,"UserBenchmark CPU Score":"47.6"},"isPart":true,"type":"CPU","humanName":"Core i3-8130U"},"Core-i3-2328M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-01","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":315,"Geekbench Multi-Core Score":639,"UserBenchmark CPU Score":"47.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2328M"},"Pentium-G4400":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":693,"Geekbench Multi-Core Score":1179,"UserBenchmark CPU Score":"47.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4400"},"Core-m3-8100Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-28","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"47.4"},"isPart":true,"type":"CPU","humanName":"Core m3-8100Y"},"Pentium-G630":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":389,"Geekbench Multi-Core Score":683,"UserBenchmark CPU Score":"47.3"},"isPart":true,"type":"CPU","humanName":"Pentium G630"},"Core-i5-3317U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.7 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":396,"Geekbench Multi-Core Score":795,"UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-3317U"},"Core-i5-7Y54":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-7Y54"},"Core-i5-3337U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":412,"Geekbench Multi-Core Score":840,"UserBenchmark CPU Score":"47.2"},"isPart":true,"type":"CPU","humanName":"Core i5-3337U"},"Core-i7-4510U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":859,"Geekbench Multi-Core Score":1628,"UserBenchmark CPU Score":"47.1"},"isPart":true,"type":"CPU","humanName":"Core i7-4510U"},"Core-i3-2330M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":341,"Geekbench Multi-Core Score":700,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-2330M"},"Core-i3-550":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-06-01","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":414,"Geekbench Multi-Core Score":869,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-550"},"Core-i3-2350M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":342,"Geekbench Multi-Core Score":697,"UserBenchmark CPU Score":"47"},"isPart":true,"type":"CPU","humanName":"Core i3-2350M"},"Core-i3-10110U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1130,"Geekbench Multi-Core Score":2045,"UserBenchmark CPU Score":"46.9"},"isPart":true,"type":"CPU","humanName":"Core i3-10110U"},"Xeon-L5420":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":332,"Geekbench Multi-Core Score":914,"UserBenchmark CPU Score":"46.7"},"isPart":true,"type":"CPU","humanName":"Xeon L5420"},"Pentium-2020M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":399,"Geekbench Multi-Core Score":674,"UserBenchmark CPU Score":"46.7"},"isPart":true,"type":"CPU","humanName":"Pentium 2020M"},"Core-i3-2310M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023, PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":330,"Geekbench Multi-Core Score":665,"UserBenchmark CPU Score":"46.5"},"isPart":true,"type":"CPU","humanName":"Core i3-2310M"},"X4-631":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"UserBenchmark CPU Score":"46.4","Base Frequency":"2.6 GHz","L3 Cache (Total)":"0 Mib","TDP":"100 W","Release Date":"2012-08-15"},"isPart":true,"type":"CPU","humanName":"X4 631"},"Pentium-G620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":392,"Geekbench Multi-Core Score":692,"UserBenchmark CPU Score":"46.4"},"isPart":true,"type":"CPU","humanName":"Pentium G620"},"Core-i5-650":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":448,"Geekbench Multi-Core Score":917,"UserBenchmark CPU Score":"46.3"},"isPart":true,"type":"CPU","humanName":"Core i5-650"},"Core-i7-5500U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":874,"Geekbench Multi-Core Score":1668,"UserBenchmark CPU Score":"46.2"},"isPart":true,"type":"CPU","humanName":"Core i7-5500U"},"Pentium-B980":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":351,"Geekbench Multi-Core Score":595,"UserBenchmark CPU Score":"46.1"},"isPart":true,"type":"CPU","humanName":"Pentium B980"},"Core-i3-540":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":406,"Geekbench Multi-Core Score":859,"UserBenchmark CPU Score":"45.9"},"isPart":true,"type":"CPU","humanName":"Core i3-540"},"Core-i7-6500U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Core i7-6500U"},"Pentium-B970":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":372,"Geekbench Multi-Core Score":586,"UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Pentium B970"},"Core-i3-530":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz","Geekbench Single-Core Score":360,"Geekbench Multi-Core Score":768,"UserBenchmark CPU Score":"45.6"},"isPart":true,"type":"CPU","humanName":"Core i3-530"},"Core-i5-7200U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45.4"},"isPart":true,"type":"CPU","humanName":"Core i5-7200U"},"Core-i3-3227U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":291,"Geekbench Multi-Core Score":633,"UserBenchmark CPU Score":"45.4"},"isPart":true,"type":"CPU","humanName":"Core i3-3227U"},"Core-i5-2467M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":340,"Geekbench Multi-Core Score":659,"UserBenchmark CPU Score":"45.3"},"isPart":true,"type":"CPU","humanName":"Core i5-2467M"},"Xeon-E5420":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"45.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5420"},"Ryzen-3-2200U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":769,"Geekbench Multi-Core Score":1518,"UserBenchmark CPU Score":"45.1","Core Count":2,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","GPU Model":"RX Vega 3","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 2200U","type":"APU"},"X4-845":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-02-02","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Geekbench Single-Core Score":671,"Geekbench Multi-Core Score":1721,"UserBenchmark CPU Score":"45","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz"},"humanName":"X4 845","isPart":true,"type":"CPU"},"Core-i5-7300U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"45"},"isPart":true,"type":"CPU","humanName":"Core i5-7300U"},"Core-i3-4030U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":566,"Geekbench Multi-Core Score":1158,"UserBenchmark CPU Score":"44.6"},"isPart":true,"type":"CPU","humanName":"Core i3-4030U"},"Core-i7-6600U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"44.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6600U"},"Core-i5-4210Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":525,"Geekbench Multi-Core Score":949,"UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Core i5-4210Y"},"Pentium-2127U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":315,"Geekbench Multi-Core Score":572,"UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Pentium 2127U"},"Core-i5-3339Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz","UserBenchmark CPU Score":"44.4"},"isPart":true,"type":"CPU","humanName":"Core i5-3339Y"},"Core-i5-4300Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":530,"Geekbench Multi-Core Score":821,"UserBenchmark CPU Score":"44.2"},"isPart":true,"type":"CPU","humanName":"Core i5-4300Y"},"Pentium-3805U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12","Geekbench Single-Core Score":307,"Geekbench Multi-Core Score":553,"UserBenchmark CPU Score":"44.1"},"isPart":true,"type":"CPU","humanName":"Pentium 3805U"},"Core-i5-2537M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","Geekbench Single-Core Score":298,"Geekbench Multi-Core Score":602,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Core i5-2537M"},"Core-i3-4010U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":514,"Geekbench Multi-Core Score":1073,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Core i3-4010U"},"Pentium-B940":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":299,"Geekbench Multi-Core Score":515,"UserBenchmark CPU Score":"44"},"isPart":true,"type":"CPU","humanName":"Pentium B940"},"Core-i3-1005G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"DDR4, LPDDR4","Base Frequency":"1.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","Socket":"FCBGA1526","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1273,"Geekbench Multi-Core Score":2351,"UserBenchmark CPU Score":"43.8"},"isPart":true,"type":"CPU","humanName":"Core i3-1005G1"},"Pentium-B960":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-10-02","Socket":"FCPGA988, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":321,"Geekbench Multi-Core Score":535,"UserBenchmark CPU Score":"43.7"},"isPart":true,"type":"CPU","humanName":"Pentium B960"},"Core-i5-4300U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":783,"Geekbench Multi-Core Score":1453,"UserBenchmark CPU Score":"43.7"},"isPart":true,"type":"CPU","humanName":"Core i5-4300U"},"Core-i7-7Y75":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"43.6"},"isPart":true,"type":"CPU","humanName":"Core i7-7Y75"},"Core-i3-6100U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":747,"Geekbench Multi-Core Score":1529,"UserBenchmark CPU Score":"43.4"},"isPart":true,"type":"CPU","humanName":"Core i3-6100U"},"Core-i3-7100U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-08-30","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":768,"Geekbench Multi-Core Score":1574,"UserBenchmark CPU Score":"43.4"},"isPart":true,"type":"CPU","humanName":"Core i3-7100U"},"Pentium-B950":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz","Geekbench Single-Core Score":308,"Geekbench Multi-Core Score":511,"UserBenchmark CPU Score":"43.3"},"isPart":true,"type":"CPU","humanName":"Pentium B950"},"Pentium-2117U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":303,"Geekbench Multi-Core Score":517,"UserBenchmark CPU Score":"43.2"},"isPart":true,"type":"CPU","humanName":"Pentium 2117U"},"Xeon-X3220":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"43.1"},"isPart":true,"type":"CPU","humanName":"Xeon X3220"},"Core-i3-3217U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":286,"Geekbench Multi-Core Score":599,"UserBenchmark CPU Score":"43"},"isPart":true,"type":"CPU","humanName":"Core i3-3217U"},"Core-i5-4202Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":946,"UserBenchmark CPU Score":"42.9"},"isPart":true,"type":"CPU","humanName":"Core i5-4202Y"},"Core-i3-2375M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i3-2375M"},"Core-i3-4012Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i3-4012Y"},"Core-i5-4200U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":711,"Geekbench Multi-Core Score":1372,"UserBenchmark CPU Score":"42.6"},"isPart":true,"type":"CPU","humanName":"Core i5-4200U"},"Xeon-E3110":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-14","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":388,"Geekbench Multi-Core Score":648,"UserBenchmark CPU Score":"42.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3110"},"Core-i3-2367M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-10-02","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":219,"Geekbench Multi-Core Score":480,"UserBenchmark CPU Score":"42.2"},"isPart":true,"type":"CPU","humanName":"Core i3-2367M"},"Xeon-E5405":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"41.9"},"isPart":true,"type":"CPU","humanName":"Xeon E5405"},"Core-i5-5200U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":776,"Geekbench Multi-Core Score":1486,"UserBenchmark CPU Score":"41.7"},"isPart":true,"type":"CPU","humanName":"Core i5-5200U"},"Core-i5-5300U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":815,"Geekbench Multi-Core Score":1574,"UserBenchmark CPU Score":"41.6"},"isPart":true,"type":"CPU","humanName":"Core i5-5300U"},"Core-i5-4210U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":745,"Geekbench Multi-Core Score":1432,"UserBenchmark CPU Score":"41.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4210U"},"Core-i5-6200U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"41.3"},"isPart":true,"type":"CPU","humanName":"Core i5-6200U"},"Core-i3-2365M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":196,"Geekbench Multi-Core Score":427,"UserBenchmark CPU Score":"41.2"},"isPart":true,"type":"CPU","humanName":"Core i3-2365M"},"Pentium-G6950":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz","UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Pentium G6950"},"Xeon-E5345":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Xeon E5345"},"Pentium-E6800":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"40.7"},"isPart":true,"type":"CPU","humanName":"Pentium E6800"},"Core-i3-7020U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2018-04-01","Socket":"FC-BGA1356, FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":728,"Geekbench Multi-Core Score":1469,"UserBenchmark CPU Score":"40.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7020U"},"Core-i5-6300U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","UserBenchmark CPU Score":"40.4"},"isPart":true,"type":"CPU","humanName":"Core i5-6300U"},"Pentium-987":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":224,"Geekbench Multi-Core Score":372,"UserBenchmark CPU Score":"39.9"},"isPart":true,"type":"CPU","humanName":"Pentium 987"},"Core-i3-2357M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","UserBenchmark CPU Score":"39.8"},"isPart":true,"type":"CPU","humanName":"Core i3-2357M"},"Pentium-E6700":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2010-06-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":384,"Geekbench Multi-Core Score":637,"UserBenchmark CPU Score":"39.6"},"isPart":true,"type":"CPU","humanName":"Pentium E6700"},"Xeon-E5335":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"39.5"},"isPart":true,"type":"CPU","humanName":"Xeon E5335"},"Pentium-E6500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":324,"Geekbench Multi-Core Score":541,"UserBenchmark CPU Score":"39.2"},"isPart":true,"type":"CPU","humanName":"Pentium E6500"},"Pentium-E6600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q1 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":353,"Geekbench Multi-Core Score":572,"UserBenchmark CPU Score":"39"},"isPart":true,"type":"CPU","humanName":"Pentium E6600"},"Pentium-4410Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"38.9"},"isPart":true,"type":"CPU","humanName":"Pentium 4410Y"},"Core-i3-4005U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":505,"Geekbench Multi-Core Score":1031,"UserBenchmark CPU Score":"38.5"},"isPart":true,"type":"CPU","humanName":"Core i3-4005U"},"Pentium-E6300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-05-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":294,"Geekbench Multi-Core Score":468,"UserBenchmark CPU Score":"37.8"},"isPart":true,"type":"CPU","humanName":"Pentium E6300"},"Pentium-4405Y":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","UserBenchmark CPU Score":"37.7"},"isPart":true,"type":"CPU","humanName":"Pentium 4405Y"},"Pentium-967":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-10-02","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","UserBenchmark CPU Score":"37.6"},"isPart":true,"type":"CPU","humanName":"Pentium 967"},"Core-i3-5005U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":616,"Geekbench Multi-Core Score":1226,"UserBenchmark CPU Score":"37.5"},"isPart":true,"type":"CPU","humanName":"Core i3-5005U"},"Pentium-E5800":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q4 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":369,"Geekbench Multi-Core Score":584,"UserBenchmark CPU Score":"37.5"},"isPart":true,"type":"CPU","humanName":"Pentium E5800"},"Pentium-E5500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q2 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":279,"Geekbench Multi-Core Score":456,"UserBenchmark CPU Score":"36.6"},"isPart":true,"type":"CPU","humanName":"Pentium E5500"},"Pentium-E5700":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":340,"Geekbench Multi-Core Score":553,"UserBenchmark CPU Score":"36.5"},"isPart":true,"type":"CPU","humanName":"Pentium E5700"},"Pentium-P6200":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":280,"Geekbench Multi-Core Score":470,"UserBenchmark CPU Score":"36.2"},"isPart":true,"type":"CPU","humanName":"Pentium P6200"},"Pentium-E5400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":287,"Geekbench Multi-Core Score":466,"UserBenchmark CPU Score":"36.2"},"isPart":true,"type":"CPU","humanName":"Pentium E5400"},"Core-i3-6006U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2016-11-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":639,"Geekbench Multi-Core Score":1318,"UserBenchmark CPU Score":"36.1"},"isPart":true,"type":"CPU","humanName":"Core i3-6006U"},"Pentium-E5200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2008-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":286,"Geekbench Multi-Core Score":469,"UserBenchmark CPU Score":"36"},"isPart":true,"type":"CPU","humanName":"Pentium E5200"},"Pentium-E5300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":291,"Geekbench Multi-Core Score":473,"UserBenchmark CPU Score":"35.9"},"isPart":true,"type":"CPU","humanName":"Pentium E5300"},"Xeon-E5320":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"35.8"},"isPart":true,"type":"CPU","humanName":"Xeon E5320"},"Pentium-J2900":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2","UserBenchmark CPU Score":"35.2"},"isPart":true,"type":"CPU","humanName":"Pentium J2900"},"Pentium-P6100":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":281,"Geekbench Multi-Core Score":431,"UserBenchmark CPU Score":"35.2"},"isPart":true,"type":"CPU","humanName":"Pentium P6100"},"Pentium-N3530":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"896 MHz","Geekbench Single-Core Score":189,"Geekbench Multi-Core Score":549,"UserBenchmark CPU Score":"34.7"},"isPart":true,"type":"CPU","humanName":"Pentium N3530"},"Pentium-N3520":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.166 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz","Geekbench Single-Core Score":170,"Geekbench Multi-Core Score":484,"UserBenchmark CPU Score":"34.4"},"isPart":true,"type":"CPU","humanName":"Pentium N3520"},"Xeon-E5310":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"],"UserBenchmark CPU Score":"34.1"},"isPart":true,"type":"CPU","humanName":"Xeon E5310"},"Pentium-T4400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q4 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":252,"Geekbench Multi-Core Score":410,"UserBenchmark CPU Score":"34"},"isPart":true,"type":"CPU","humanName":"Pentium T4400"},"Pentium-T4500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2010","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":244,"Geekbench Multi-Core Score":360,"UserBenchmark CPU Score":"33.9"},"isPart":true,"type":"CPU","humanName":"Pentium T4500"},"Pentium-T4200":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":216,"Geekbench Multi-Core Score":368,"UserBenchmark CPU Score":"33.9"},"isPart":true,"type":"CPU","humanName":"Pentium T4200"},"Pentium-T4300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Socket":"PGA478","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":204,"Geekbench Multi-Core Score":339,"UserBenchmark CPU Score":"33.7"},"isPart":true,"type":"CPU","humanName":"Pentium T4300"},"Pentium-N3540":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2","Geekbench Single-Core Score":193,"Geekbench Multi-Core Score":560,"UserBenchmark CPU Score":"33.5"},"isPart":true,"type":"CPU","humanName":"Pentium N3540"},"Pentium-J4205":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":261,"Geekbench Multi-Core Score":715,"UserBenchmark CPU Score":"32.9"},"isPart":true,"type":"CPU","humanName":"Pentium J4205"},"Pentium-N3510":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz","UserBenchmark CPU Score":"32.3"},"isPart":true,"type":"CPU","humanName":"Pentium N3510"},"Core-T2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"32.2"},"isPart":true,"type":"CPU","humanName":"Core T2500"},"Core-T2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.9"},"isPart":true,"type":"CPU","humanName":"Core T2400"},"Core-T2600":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.9"},"isPart":true,"type":"CPU","humanName":"Core T2600"},"Core-T2300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"31.5"},"isPart":true,"type":"CPU","humanName":"Core T2300"},"Core-T2250":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}],"UserBenchmark CPU Score":"30"},"isPart":true,"type":"CPU","humanName":"Core T2250"},"Pentium-N4200":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":269,"Geekbench Multi-Core Score":685,"UserBenchmark CPU Score":"29.8"},"isPart":true,"type":"CPU","humanName":"Pentium N4200"},"Atom-D2700":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz","UserBenchmark CPU Score":"26.4"},"isPart":true,"type":"CPU","humanName":"Atom D2700"},"Pentium-N3700":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":179,"Geekbench Multi-Core Score":511,"UserBenchmark CPU Score":"26.2"},"isPart":true,"type":"CPU","humanName":"Pentium N3700"},"Atom-N2800":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Mobile","Lithography":"32 nm","TDP":"6.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-28","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz","UserBenchmark CPU Score":"26"},"isPart":true,"type":"CPU","humanName":"Atom N2800"},"Pentium-N3710":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","UserBenchmark CPU Score":"25.1"},"isPart":true,"type":"CPU","humanName":"Pentium N3710"},"Atom-D525":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3, DDR2","Base Frequency":"1.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2010-06-26","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":76,"Geekbench Multi-Core Score":190,"UserBenchmark CPU Score":"22.9"},"isPart":true,"type":"CPU","humanName":"Atom D525"},"Atom-N2600":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Mobile","Lithography":"32 nm","TDP":"3.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-28","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz","UserBenchmark CPU Score":"21.9"},"isPart":true,"type":"CPU","humanName":"Atom N2600"},"Atom-N570":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2011-03-01","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","UserBenchmark CPU Score":"21.5"},"isPart":true,"type":"CPU","humanName":"Atom N570"},"Atom-N550":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q3 2010","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","Geekbench Single-Core Score":64,"Geekbench Multi-Core Score":141,"UserBenchmark CPU Score":"20.7"},"isPart":true,"type":"CPU","humanName":"Atom N550"},"Atom-N455":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Memory Type":"DDR2/3","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-01","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","UserBenchmark CPU Score":"20.7"},"isPart":true,"type":"CPU","humanName":"Atom N455"},"Atom-330":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Desktop","Lithography":"45 nm","TDP":"8 W","Core Count":2,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"52 mm","Release Date":"2008-09-21","Socket":"PBGA437","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.6"},"isPart":true,"type":"CPU","humanName":"Atom 330"},"Atom-N450":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"667 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.4"},"isPart":true,"type":"CPU","humanName":"Atom N450"},"Atom-D410":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.3"},"isPart":true,"type":"CPU","humanName":"Atom D410"},"Atom-N280":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"Q1 2009","Socket":"PBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.3"},"isPart":true,"type":"CPU","humanName":"Atom N280"},"Atom-N270":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-06-03","Socket":"PBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20.1"},"isPart":true,"type":"CPU","humanName":"Atom N270"},"Atom-D510":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q1 2010","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"20"},"isPart":true,"type":"CPU","humanName":"Atom D510"},"Atom-230":{"data":{"Manufacturer":"Intel","Architecture":"Diamondville","Market":"Desktop","Lithography":"45 nm","TDP":"4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-06-03","Socket":"PBGA437","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"19.2"},"isPart":true,"type":"CPU","humanName":"Atom 230"},"Atom-Z520":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false,"UserBenchmark CPU Score":"17.3"},"isPart":true,"type":"CPU","humanName":"Atom Z520"},"Radeon-VII":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":9291,"UserBenchmark GPU Score":"101","Release Date":"2019-02-07","Shader Processor Count":3840,"Texture Mapping Unit Count":240,"Render Output Unit Count":64,"GPU Base Frequency":"1400 MHz","GPU Boost Frequency":"1750 MHz","VRAM Frequency":"2000 MT/s","VRAM Capacity":"16 GiB","VRAM Bandwidth":"1 TiB/s","VRAM Type":"HBM2","VRAM Bus Width":"4096 Bits","Die Size":"331 mm","GPU":"Vega 20","TDP":"300 W"},"isPart":true,"type":"Graphics Card","humanName":"Radeon VII"},"RX-570-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3874,"UserBenchmark GPU Score":"44.7","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1168 MHz","GPU Boost Frequency":"1244 MHz","VRAM Frequency":"7000 MT/s","VRAM Capacity":"4 GiB","VRAM Bandwidth":"224 GB/s","TDP":"150 W","Codename":"Ellesmere Xl","FP32 Compute":"4.784 GFLOPS","FP64 Compute":"299 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 570 (4GiB)"},"RX-570-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3874,"UserBenchmark GPU Score":"44.7","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1168 MHz","GPU Boost Frequency":"1244 MHz","VRAM Frequency":"7000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"224 GB/s","Codename":"Ellesmere Xl","TDP":"150 W","FP32 Compute":"4.784 TFLOPS","FP64 Compute":"299 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 570 (8GiB)"},"RX-Vega-64-Liquid":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","UserBenchmark GPU Score":"93.8","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1406 MHz","GPU Boost Frequency":"1677 MHz","VRAM Frequency":"1890 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"483.8 GB/s","TDP":"345 W","Codename":"Vega 64 Liquid"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 64 Liquid"},"RX-Vega-64":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","3DMark Fire Strike Graphics Score":7542,"UserBenchmark GPU Score":"86.6","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1247 MHz","GPU Boost Frequency":"1546 MHz","VRAM Frequency":"1890 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"483.8 GB/s","TDP":"295 W","Codename":"Vega 64"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 64"},"RX-560-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1823,"UserBenchmark GPU Score":"19.7","Release Date":"2017-04-20","GPU Base Frequency":"1175 MHz","GPU Boost Frequency":"1275 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":64,"Shader Processor Count":1024,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin XT","TDP":"80 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"2.406 TFLOPS","FP64 Compute":"150 GFLOPS"},"humanName":"RX 560 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-560-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1823,"UserBenchmark GPU Score":"19.7","Release Date":"2017-04-20","GPU Base Frequency":"1175 MHz","GPU Boost Frequency":"1275 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"4 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":64,"Shader Processor Count":1024,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin XT","TDP":"80 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"2.406 TFLOPS","FP64 Compute":"150 GFLOPS"},"humanName":"RX 560 (4GiB)","isPart":true,"type":"Graphics Card"},"RX-Vega-56":{"data":{"Architecture":"5th Gen GCN","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"HBM2","VRAM Bus Width":"2048 Bits","Release Date":"2017-08-14","Die Size":"484 mm","GPU":"Vega 10","3DMark Fire Strike Graphics Score":6906,"UserBenchmark GPU Score":"78","Shader Processor Count":3584,"Texture Mapping Unit Count":224,"Render Output Unit Count":64,"GPU Base Frequency":"1156 MHz","GPU Boost Frequency":"1471 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"410 GB/s","TDP":"210 W","Codename":"Vega 56"},"isPart":true,"type":"Graphics Card","humanName":"RX Vega 56"},"R9-390X":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":4242,"UserBenchmark GPU Score":"53.5","GPU":"Hawaii","Codename":"Hawaii XT","Release Date":"2015-06-18","Die Size":"438 mm","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"8 GiB","VRAM Bus Width":"512 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"384 GB/s","TDP":"275 W","FP32 Compute":"5.914 TFLOPS","FP64 Compute":"739 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 390X"},"RX-580-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3831,"UserBenchmark GPU Score":"51.6","Shader Processor Count":2304,"Texture Mapping Unit Count":144,"Render Output Unit Count":32,"GPU Base Frequency":"1257 MHz","GPU Boost Frequency":"1340 MHz","VRAM Frequency":"8000 MT/s","VRAM Capacity":"4 GB","VRAM Bandwidth":"256 GB/s","TDP":"185 W","Codename":"Ellesmere XTX","FP32 Compute":"5.792 TFLOPS","FP64 Compute":"362 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 580 (4GiB)"},"RX-580-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","Release Date":"2017-04-18","Die Size":"232 mm","GPU":"Polaris 20","3DMark Fire Strike Graphics Score":3831,"UserBenchmark GPU Score":"51.6","Shader Processor Count":2304,"Texture Mapping Unit Count":144,"Render Output Unit Count":32,"GPU Base Frequency":"1257 MHz","GPU Boost Frequency":"1340 MHz","VRAM Frequency":"8000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"256 GB/s","TDP":"185 W","Codename":"Ellesmere XTX","FP32 Compute":"5.792 TFLOPS","FP64 Compute":"362 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"RX 580 (8GiB)"},"R9-290X-4GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2013-10-24","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii XT","FP32 Compute":"5.632 TFLOPS","FP64 Compute":"704 GFLOPS","3DMark Fire Strike Graphics Score":3989,"UserBenchmark GPU Score":"51","VRAM Capacity":"4 GiB"},"humanName":"R9 290X (4GiB)","isPart":true,"type":"Graphics Card"},"R9-290X-8GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2013-10-24","Shader Processor Count":2816,"Texture Mapping Unit Count":176,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii XT","FP32 Compute":"5.632 TFLOPS","FP64 Compute":"704 GFLOPS","3DMark Fire Strike Graphics Score":3989,"UserBenchmark GPU Score":"51","VRAM Capacity":"8 GiB"},"humanName":"R9 290X (8GiB)","isPart":true,"type":"Graphics Card"},"RX-550-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1195,"UserBenchmark GPU Score":"14.1","Release Date":"2017-04-18","GPU Base Frequency":"1100 MHz","GPU Boost Frequency":"1183 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"101 mm","GPU":"Polaris 12","Codename":"Lexa Pro","TDP":"50 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.126 TFLOPS","FP64 Compute":"70 GFLOPS"},"humanName":"RX 550 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-550-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":1195,"UserBenchmark GPU Score":"14.1","Release Date":"2017-04-18","GPU Base Frequency":"1100 MHz","GPU Boost Frequency":"1183 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","VRAM Capacity":"4 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"101 mm","GPU":"Polaris 12","Codename":"Lexa Pro","TDP":"50 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.126 TFLOPS","FP64 Compute":"70 GFLOPS"},"humanName":"RX 550 (4GiB)","isPart":true,"type":"Graphics Card"},"R9-390":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":3965,"UserBenchmark GPU Score":"49.7","GPU":"Hawaii","Codename":"Hawaii Pro","Release Date":"2015-06-18","Die Size":"438 mm","Shader Processor Count":2560,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"8 GiB","VRAM Bus Width":"512 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"384 GB/s","TDP":"275 W","FP32 Compute":"5.120 TFLOPS","FP64 Compute":"640 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 390"},"R9-290":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","3DMark Fire Strike Graphics Score":3693,"UserBenchmark GPU Score":"46.4","Release Date":"2013-11-05","Shader Processor Count":2560,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"947 MHz","VRAM Capacity":"4 GiB","TDP":"250 W","GPU":"Hawaii","Codename":"Hawaii Pro","FP32 Compute":"4.849 TFLOPS","FP64 Compute":"606 GFLOPS"},"humanName":"R9 290","isPart":true,"type":"Graphics Card"},"RX-480-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-29","GPU Base Frequency":"1120 MHz","GPU Boost Frequency":"1266 MHz","Render Output Unit Count":32,"Texture Mapping Unit Count":144,"Shader Processor Count":2304,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere XT","TDP":"150 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"5.161 TFLOPS","FP64 Compute":"323 GFLOPS","3DMark Fire Strike Graphics Score":4167,"UserBenchmark GPU Score":"45.7","VRAM Frequency":"7000 MT/s","VRAM Capacity":"4 GiB","VRAM Bandwidth":"209 GiB/s"},"humanName":"RX 480 (4 GiB)","isPart":true,"type":"Graphics Card"},"RX-480-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-29","GPU Base Frequency":"1120 MHz","GPU Boost Frequency":"1266 MHz","Render Output Unit Count":32,"Texture Mapping Unit Count":144,"Shader Processor Count":2304,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere XT","TDP":"150 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"5.161 TFLOPS","FP64 Compute":"323 GFLOPS","3DMark Fire Strike Graphics Score":4167,"UserBenchmark GPU Score":"45.7","VRAM Frequency":"8000 MT/s","VRAM Capacity":"8 GiB","VRAM Bandwidth":"256 GiB/s"},"humanName":"RX 480 (8 GiB)","isPart":true,"type":"Graphics Card"},"RX-470-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-04","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"6600 MT/s","VRAM Bandwidth":"211 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":128,"Shader Processor Count":2048,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere Pro","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.793 TFLOPS","FP64 Compute":"237 GFLOPS","3DMark Fire Strike Graphics Score":3707,"UserBenchmark GPU Score":"39.5","VRAM Capacity":"4 GiB"},"humanName":"RX 470 (4 GiB)","isPart":true,"type":"Graphics Card"},"RX-470-8GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-04","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"6600 MT/s","VRAM Bandwidth":"211 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":128,"Shader Processor Count":2048,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere Pro","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.793 TFLOPS","FP64 Compute":"237 GFLOPS","3DMark Fire Strike Graphics Score":3707,"UserBenchmark GPU Score":"39.5","VRAM Capacity":"8 GiB"},"humanName":"RX 470 (8 GiB)","isPart":true,"type":"Graphics Card"},"R9-380X":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"37.7","GPU":"Tonga","Codename":"Tonga XT","Release Date":"2015-11-19","Die Size":"359 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.973 TFLOPS","FP64 Compute":"248 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380X"},"HD-7970-3GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"36.4","GPU":"Tahiti","Codename":"Tahiti XT","Release Date":"2012-01-09","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"264 GB/s","TDP":"250 W","FP32 Compute":"3.789 TFLOPS","FP64 Compute":"947 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 (3GiB)"},"HD-7970-6GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"36.4","GPU":"Tahiti","Codename":"Tahiti XT","Release Date":"2012-01-09","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"6 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"264 GB/s","TDP":"250 W","FP32 Compute":"3.789 TFLOPS","FP64 Compute":"947 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 (6GiB)"},"R9-280X":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":2350,"UserBenchmark GPU Score":"35.1","GPU":"Tahiti","Codename":"Tahiti XTL","Release Date":"2013-08-08","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"3.482 TFLOPS","FP64 Compute":"870 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 280X"},"HD-7990":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"34.4","GPU":"Tahiti","Codename":"New Zealand","Release Date":"2013-04-24","Die Size":"352 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"950 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB (per GPU)","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"375 W","FP32 Compute":"8.200 TFLOPS","FP64 Compute":"1.894 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7990"},"R9-380-2GiB":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":2788,"UserBenchmark GPU Score":"33.4","GPU":"Tonga","Codename":"Tonga Pro","Release Date":"2015-06-18","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.477 TFLOPS","FP64 Compute":"217 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380 (2GiB)"},"R9-380-4GiB":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","3DMark Fire Strike Graphics Score":2788,"UserBenchmark GPU Score":"33.4","GPU":"Tonga","Codename":"Tonga Pro","Release Date":"2015-06-18","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"970 MHz","VRAM Frequency":"5700 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"182.4 GB/s","TDP":"190 W","FP32 Compute":"3.477 TFLOPS","FP64 Compute":"217 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 380 (4GiB)"},"R9-285":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"32.1","Release Date":"2014-09-02","GPU":"Tonga","Codename":"Tonga Pro","Die Size":"359 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"918 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Bandwidth":"176 GB/s","TDP":"190 W","FP32 Compute":"3.290 TFLOPS","FP64 Compute":"207 GFLOPS"},"humanName":"R9 285","isPart":true,"type":"Graphics Card"},"R9-280":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"30","GPU":"Tahiti","Codename":"Tahiti Pro","Release Date":"2014-03-04","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"827 MHz","GPU Boost Frequency":"933 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"250 W","FP32 Compute":"2.964 TFLOPS","FP64 Compute":"741 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 280"},"HD-7950":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"28.6","GPU":"Tahiti","Codename":"Tahiti Pro","Release Date":"2012-01-31","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"200 W","FP32 Compute":"2.867 TFLOPS","FP64 Compute":"717 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7950"},"R9-270X-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":1770,"UserBenchmark GPU Score":"26.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013-08-08","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"167 GB/s","TDP":"180 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270X (2GiB)"},"R9-270X-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","3DMark Fire Strike Graphics Score":1770,"UserBenchmark GPU Score":"26.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013-08-08","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"167 GB/s","TDP":"180 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270X (4GiB)"},"HD-7870":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"25.9","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"175 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7870"},"R9-270":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"24.1","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2013-11-13","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"150 W","FP32 Compute":"2.304 TFLOPS","FP64 Compute":"144 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 270"},"R7-370-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2015-06-18","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"975 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"110 W","FP32 Compute":"1.997 TFLOPS","FP64 Compute":"125 GFLOPS","UserBenchmark GPU Score":"21.2","VRAM Capacity":"2 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R7 370 (2GiB)"},"R7-370-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2015-06-18","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"975 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"110 W","FP32 Compute":"1.997 TFLOPS","FP64 Compute":"125 GFLOPS","UserBenchmark GPU Score":"21.2","VRAM Capacity":"4 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R7 370 (4GiB)"},"HD-6990":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"20.8","GPU":"Cayman","Codename":"Antilles XT","Release Date":"2011-03-08","Die Size":"389 mm","Shader Processor Count":3072,"Texture Mapping Unit Count":192,"Render Output Unit Count":64,"GPU Base Frequency":"830 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"2 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"375 W","FP32 Compute":"5.099 TFLOPS","FP64 Compute":"1.277 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6990"},"HD-6970":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"20","GPU":"Cayman","Codename":"Cayman XT","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1536,"Texture Mapping Unit Count":96,"Render Output Unit Count":32,"GPU Base Frequency":"880 MHz","VRAM Frequency":"5500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"176 GB/s","TDP":"250 W","FP32 Compute":"2.703 TFLOPS","FP64 Compute":"673 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6970"},"HD-7790-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2012-03-22","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7790 (1GiB)"},"HD-7790-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2012-03-22","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7790 (2GiB)"},"R7-260X-1GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XTX","Release Date":"2013-08-08","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"115 W","FP32 Compute":"1.971 TFLOPS","FP64 Compute":"123 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260X (1GiB)"},"R7-260X-2GiB":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"19.9","GPU":"Bonaire","Codename":"Bonaire XTX","Release Date":"2013-08-08","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"115 W","FP32 Compute":"1.971 TFLOPS","FP64 Compute":"123 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260X (2GiB)"},"RX-460-2GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-08","GPU Base Frequency":"1090 MHz","GPU Boost Frequency":"1200 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","Render Output Unit Count":16,"Texture Mapping Unit Count":56,"Shader Processor Count":896,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin Pro","TDP":"75 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.953 TFLOPS","FP64 Compute":"122 GFLOPS","3DMark Fire Strike Graphics Score":1734,"UserBenchmark GPU Score":"19.7","VRAM Capacity":"2 GiB"},"humanName":"RX 460 (2GiB)","isPart":true,"type":"Graphics Card"},"RX-460-4GiB":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-08-08","GPU Base Frequency":"1090 MHz","GPU Boost Frequency":"1200 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"112 GB/s","Render Output Unit Count":16,"Texture Mapping Unit Count":56,"Shader Processor Count":896,"Die Size":"123 mm","GPU":"Polaris 11","Codename":"Baffin Pro","TDP":"75 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.953 TFLOPS","FP64 Compute":"122 GFLOPS","3DMark Fire Strike Graphics Score":1734,"UserBenchmark GPU Score":"19.7","VRAM Capacity":"4 GiB"},"humanName":"RX 460 (4 GiB)","isPart":true,"type":"Graphics Card"},"HD-7850-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.3","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"860 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"130 W","FP32 Compute":"1.761 TFLOPS","FP64 Compute":"110 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7850 (1GiB)"},"HD-7850-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19.3","GPU":"Pitcairn","Codename":"Pitcairn Pro","Release Date":"2012-03-19","Die Size":"212 mm","Shader Processor Count":1024,"Texture Mapping Unit Count":64,"Render Output Unit Count":32,"GPU Base Frequency":"860 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"130 W","FP32 Compute":"1.761 TFLOPS","FP64 Compute":"110 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7850 (2GiB)"},"HD-6950-1GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19","GPU":"Cayman","Codename":"Cayman Pro","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1408,"Texture Mapping Unit Count":88,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"200 W","FP32 Compute":"2.253 TFLOPS","FP64 Compute":"563 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6950 1GiB"},"HD-6950-2GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"19","GPU":"Cayman","Codename":"Cayman Pro","Release Date":"2010-12-15","Die Size":"389 mm","Shader Processor Count":1408,"Texture Mapping Unit Count":88,"Render Output Unit Count":32,"GPU Base Frequency":"800 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"160 GB/s","TDP":"200 W","FP32 Compute":"2.253 TFLOPS","FP64 Compute":"563 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6950 2GiB"},"HD-5870-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2009-11-23","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"188 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 1GiB"},"HD-5870-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2009-11-23","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"188 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 2GiB"},"HD-5870-Eyefinity-6":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.63","GPU":"Cypress","Codename":"Cypress XT","Release Date":"2010-04-11","Die Size":"334 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"228 W","FP32 Compute":"2.720 TFLOPS","FP64 Compute":"544 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5870 Eyefinity 6"},"R7-360":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","UserBenchmark GPU Score":"17.9","GPU":"Bonaire","Codename":"Bonaire Pro","Release Date":"2015-06-18","Die Size":"160 mm","Shader Processor Count":768,"Texture Mapping Unit Count":48,"Render Output Unit Count":16,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"6500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"104 GB/s","TDP":"100 W","FP32 Compute":"1.536 TFLOPS","FP64 Compute":"96 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 360"},"HD-8950":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"17.8","GPU":"Tahiti","Codename":"Tahiti PRO","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"225 W","FP32 Compute":"3.046 TFLOPS","FP64 Compute":"762 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8950"},"HD-5970-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"16.7","GPU":"Cypress","Codename":"Hemlock XT","Release Date":"2009-11-18","Die Size":"334 mm","Shader Processor Count":3200,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"294 W","FP32 Compute":"4.640 TFLOPS","FP64 Compute":"928 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5970 1GiB"},"HD-5970-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"16.7","GPU":"Cypress","Codename":"Hemlock XT","Release Date":"2009-11-18","Die Size":"334 mm","Shader Processor Count":3200,"Texture Mapping Unit Count":160,"Render Output Unit Count":64,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"294 W","FP32 Compute":"4.640 TFLOPS","FP64 Compute":"928 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5970 2GiB"},"HD-6870-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"15.4","GPU":"Barts","Codename":"Barts XT","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"151 W","FP32 Compute":"2.016 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6870 1GiB"},"HD-6870-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"15.4","GPU":"Barts","Codename":"Barts XT","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":32,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"151 W","FP32 Compute":"2.016 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6870 2GiB"},"HD-5850-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.08","GPU":"Cypress","Codename":"Cypress PRO","Release Date":"2009-11-30","Die Size":"334 mm","Shader Processor Count":1440,"Texture Mapping Unit Count":72,"Render Output Unit Count":32,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"151 W","FP32 Compute":"2.088 TFLOPS","FP64 Compute":"418 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5850 1GiB"},"HD-5850-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.08","GPU":"Cypress","Codename":"Cypress PRO","Release Date":"2009-11-30","Die Size":"334 mm","Shader Processor Count":1440,"Texture Mapping Unit Count":72,"Render Output Unit Count":32,"GPU Base Frequency":"725 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"151 W","FP32 Compute":"2.088 TFLOPS","FP64 Compute":"418 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5850 2GiB"},"HD-5830":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.9","GPU":"Cypress","Codename":"Cypress LE","Release Date":"2010-02-25","Die Size":"334 mm","Shader Processor Count":1120,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"175 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"358 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5830"},"HD-8760":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.7","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2013","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8760"},"HD-7770-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7770 (1GiB)"},"HD-7770-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Cape Verde","Codename":"Cape Verde XT","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"80 W","FP32 Compute":"1.280 TFLOPS","FP64 Compute":"80 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7770 (2GiB)"},"HD-6850":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"12.1","GPU":"Barts","Codename":"Barts Pro","Release Date":"2010-10-22","Die Size":"255 mm","Shader Processor Count":960,"Texture Mapping Unit Count":48,"Render Output Unit Count":32,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"128 GB/s","TDP":"127 W","FP32 Compute":"1.488 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6850"},"HD-6790":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.7","GPU":"Barts","Codename":"Barts LE","Release Date":"2011-04-04","Die Size":"255 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"840 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"134.4 GB/s","TDP":"150 W","FP32 Compute":"1.344 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6790"},"HD-5770-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 1GiB"},"HD-5770-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 512MiB"},"HD-6770-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2011-04-19","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"67.2 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6770 1GiB"},"HD-6770-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"10.4","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2011-04-19","Die Size":"166 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"108 W","FP32 Compute":"1.360 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6770 512MiB"},"HD-5750-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.36","GPU":"Juniper","Codename":"Juniper PRO","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":720,"Texture Mapping Unit Count":36,"Render Output Unit Count":16,"GPU Base Frequency":"700 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"73.6 GB/s","TDP":"86 W","FP32 Compute":"1.008 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5750 1GiB"},"HD-5750-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"8.36","GPU":"Juniper","Codename":"Juniper PRO","Release Date":"2009-10-13","Die Size":"166 mm","Shader Processor Count":720,"Texture Mapping Unit Count":36,"Render Output Unit Count":16,"GPU Base Frequency":"700 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"73.6 GB/s","TDP":"86 W","FP32 Compute":"1.008 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5750 512MiB"},"HD-7750-1GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (1GiB DDR3)"},"HD-7750-1GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (1GiB)"},"HD-7750-2GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (2GiB DDR3)"},"HD-7750-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (2GiB)"},"HD-7750-4GiB-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"7.8","GPU":"Cape Verde","Codename":"Cape Verde Pro","Release Date":"2012-02-15","Die Size":"123 mm","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"55 W","FP32 Compute":"819 GFLOPS","FP64 Compute":"51.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7750 (4GiB DDR3)"},"HD-7730-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.43","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-04","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"38.4 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7730 (DDR3)"},"HD-7730":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.43","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-04","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"38.4 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7730"},"HD-8570-DDR3":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.25","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"730 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"28.8 GB/s","TDP":"66 W","FP32 Compute":"560 GFLOPS","FP64 Compute":"35 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8570 (DDR3)"},"HD-8570":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","UserBenchmark GPU Score":"6.25","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"730 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"66 W","FP32 Compute":"560 GFLOPS","FP64 Compute":"35 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8570"},"HD-6670-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 1GiB"},"HD-6670-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 2GiB"},"HD-6670-512MiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"6.01","GPU":"Turks","Codename":"Turks XT","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"21.3 GB/s","TDP":"66 W","FP32 Compute":"768 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6670 512MiB (DDR3)"},"HD-5670-1GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 1GiB (GDDR3)"},"HD-5670-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 1GiB"},"HD-5670-2GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5710 2GiB (GDDR3)"},"HD-5670-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 2GiB"},"HD-5670-512MiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 512MiB (GDDR3)"},"HD-5670-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"5.53","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5670 512MiB"},"HD-6570-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.76","GPU":"Turks","Codename":"Turks PRO","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1334 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"21.3 GB/s","TDP":"60 W","FP32 Compute":"624 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6570 DDR3"},"HD-6570":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.76","GPU":"Turks","Codename":"Turks PRO","Release Date":"2011-04-19","Die Size":"118 mm","Shader Processor Count":480,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"60 W","FP32 Compute":"624 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6570"},"HD-5570-2GiB-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 2GiB (GDDR3)"},"HD-5570-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 512MiB"},"HD-5570-GDDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 GDDR3"},"HD-5570-Turks":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Turks","Codename":"Turks LE","Release Date":"2010-10","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"16 GB/s","TDP":"39 W","FP32 Compute":"416 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570 Turks"},"HD-5570":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.6 GB/s","TDP":"39 W"},"isPart":true,"type":"Graphics Card","humanName":"HD 5570"},"HD-5730":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"4.36","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2011-02","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"4000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"64 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5730"},"HD-6450-1GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"14.4 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (1GiB)"},"HD-6450-2GiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"14.4 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (2GiB)"},"HD-6450-512MiB":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.68","GPU":"Caicos","Codename":"Caicos","Release Date":"2011-04-07","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"27 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6450 (512MiB)"},"HD-6350":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.06","GPU":"Cedar","Codename":"Cedar","Release Date":"2011-04-07","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6350"},"HD-5450-1GiB-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 1 GiB (DDR2)"},"HD-5450-1GiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"900 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"7.2 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 1GiB (DDR3)"},"HD-5450-2GiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 2GiB (DDR3)"},"HD-5450-512MiB-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 512MiB (DDR2)"},"HD-5450-512MiB-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","UserBenchmark GPU Score":"1.01","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2010-02-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5450 512MiB (DDR3)"},"Ryzen-9-3900":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-10-08","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1657,"Geekbench Multi-Core Score":9592,"3DMark Fire Strike Physics Score":7961,"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","TDP":"65 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 3900","isPart":true,"type":"CPU"},"Core-i7-13700T":{"data":{"Geekbench Single-Core Score":2409,"Geekbench Multi-Core Score":11468,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 13700T","isPart":true,"type":"CPU"},"Core-i5-13600T":{"data":{"Geekbench Single-Core Score":2386,"Geekbench Multi-Core Score":12528,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13600T","isPart":true,"type":"CPU"},"Ryzen-5-7640HS":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2320,"Geekbench Multi-Core Score":8890,"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.3 GHz","Boost Frequency":"5 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz"},"humanName":"Ryzen 7 7640HS","isPart":true,"type":"CPU"},"Core-i9-12900T":{"data":{"Geekbench Single-Core Score":2312,"Geekbench Multi-Core Score":11882,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 12900T","isPart":true,"type":"CPU"},"Core-i7-12700T":{"data":{"Geekbench Single-Core Score":2252,"Geekbench Multi-Core Score":9934,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 12700T","isPart":true,"type":"CPU"},"Core-i5-13500T":{"data":{"Geekbench Single-Core Score":2232,"Geekbench Multi-Core Score":9831,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13500T","isPart":true,"type":"CPU"},"Core-i5-13400T":{"data":{"Geekbench Single-Core Score":2213,"Geekbench Multi-Core Score":9521,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 13400T","isPart":true,"type":"CPU"},"Core-i5-12600T":{"data":{"Geekbench Single-Core Score":2189,"Geekbench Multi-Core Score":7719,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12600T","isPart":true,"type":"CPU"},"Core-i5-12500T":{"data":{"Geekbench Single-Core Score":2175,"Geekbench Multi-Core Score":7475,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12500T","isPart":true,"type":"CPU"},"Ryzen-7-7840U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"Geekbench Single-Core Score":2078,"Geekbench Multi-Core Score":8589,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz"},"humanName":"Ryzen 7 7840U","isPart":true,"type":"CPU"},"Core-i5-12400T":{"data":{"Geekbench Single-Core Score":2076,"Geekbench Multi-Core Score":7445,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 12400T","isPart":true,"type":"CPU"},"Core-i9-11900T":{"data":{"Geekbench Single-Core Score":2059,"Geekbench Multi-Core Score":8586,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 11900T","isPart":true,"type":"CPU"},"Core-i3-13100T":{"data":{"Geekbench Single-Core Score":2043,"Geekbench Multi-Core Score":6308,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 13100T","isPart":true,"type":"CPU"},"Core-i7-11390H":{"data":{"Geekbench Single-Core Score":1997,"Geekbench Multi-Core Score":5482,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11390H","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5750G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1943,"Geekbench Multi-Core Score":8058,"Release Date":"2021-06-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5750G","isPart":true,"type":"CPU"},"Core-i3-12100T":{"data":{"Geekbench Single-Core Score":1938,"Geekbench Multi-Core Score":5829,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 12100T","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5750GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1930,"Geekbench Multi-Core Score":7298,"Release Date":"2021-06-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5750GE","isPart":true,"type":"CPU"},"Ryzen-9-5980HX":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1922,"Geekbench Multi-Core Score":7718,"Release Date":"2021-01-12","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"45 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.3 GHz","Boost Frequency":"4.8 GHz","GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 9 5980HX","isPart":true,"type":"CPU"},"Ryzen-5-PRO-5650GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1903,"Geekbench Multi-Core Score":6862,"Release Date":"2021-06-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.4 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 5650GE","isPart":true,"type":"CPU"},"Core-i5-11500H":{"data":{"Geekbench Single-Core Score":1898,"Geekbench Multi-Core Score":6350,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500H","isPart":true,"type":"CPU"},"Ryzen-5-PRO-5650G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1890,"Geekbench Multi-Core Score":6911,"Release Date":"2021-06-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"65 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.9 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 5650G","isPart":true,"type":"CPU"},"Core-i7-11600H":{"data":{"Geekbench Single-Core Score":1841,"Geekbench Multi-Core Score":6741,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11600H","isPart":true,"type":"CPU"},"Core-i5-11320H":{"data":{"Geekbench Single-Core Score":1840,"Geekbench Multi-Core Score":5394,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11320H","isPart":true,"type":"CPU"},"Ryzen-3-PRO-5350G":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Geekbench Single-Core Score":1766,"Geekbench Multi-Core Score":5094,"Release Date":"2021-06-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 PRO 5350G","isPart":true,"type":"CPU"},"Core-i5-11260H":{"data":{"Geekbench Single-Core Score":1741,"Geekbench Multi-Core Score":6181,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11260H","isPart":true,"type":"CPU"},"Ryzen-7-PRO-5850U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1707,"Geekbench Multi-Core Score":6201,"Release Date":"2021-03-16","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.9 GHz","Boost Frequency":"4.4 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 PRO 5850U","isPart":true,"type":"CPU"},"Core-i7-11700T":{"data":{"Geekbench Single-Core Score":1706,"Geekbench Multi-Core Score":6440,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i7 11700T","isPart":true,"type":"CPU"},"Core-i5-11500T":{"data":{"Geekbench Single-Core Score":1692,"Geekbench Multi-Core Score":5609,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11500T","isPart":true,"type":"CPU"},"Ryzen-7-PRO-3700":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1665,"Geekbench Multi-Core Score":8173,"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 7 PRO 3700","isPart":true,"type":"CPU"},"Ryzen-9-PRO-3900":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"64 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1650,"Geekbench Multi-Core Score":8827,"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","TDP":"65 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 9 PRO 3900","isPart":true,"type":"CPU"},"Xeon-E-2286G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1648,"Geekbench Multi-Core Score":6855},"isPart":true,"type":"CPU","humanName":"Xeon E-2286G"},"Ryzen-5-PRO-3600":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-09-30","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Geekbench Single-Core Score":1637,"Geekbench Multi-Core Score":6520,"Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 PRO 3600","isPart":true,"type":"CPU"},"Core-i9-10910":{"data":{"Geekbench Single-Core Score":1626,"Geekbench Multi-Core Score":8204,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i9 10910","isPart":true,"type":"CPU"},"Xeon-E-2236":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A","Geekbench Single-Core Score":1602,"Geekbench Multi-Core Score":6532},"isPart":true,"type":"CPU","humanName":"Xeon E-2236"},"Ryzen-5-PRO-5650U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1593,"Geekbench Multi-Core Score":5379,"Release Date":"2021-03-16","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"15 W","Core Count":6,"Thread Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 PRO 5650U","isPart":true,"type":"CPU"},"Core-i5-11400T":{"data":{"Geekbench Single-Core Score":1583,"Geekbench Multi-Core Score":5472,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 11400T","isPart":true,"type":"CPU"},"Xeon-W-2245":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"155 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.9 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1568,"Geekbench Multi-Core Score":8627},"isPart":true,"type":"CPU","humanName":"Xeon W-2245"},"Xeon-E-2176G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1563,"Geekbench Multi-Core Score":6298},"isPart":true,"type":"CPU","humanName":"Xeon E-2176G"},"Xeon-E-2136":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1560,"Geekbench Multi-Core Score":6379},"isPart":true,"type":"CPU","humanName":"Xeon E-2136"},"Xeon-E-2274G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"83 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1554,"Geekbench Multi-Core Score":5128},"isPart":true,"type":"CPU","humanName":"Xeon E-2274G"},"Xeon-W-2235":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1547,"Geekbench Multi-Core Score":6996},"isPart":true,"type":"CPU","humanName":"Xeon W-2235"},"Xeon-W-2265":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1541,"Geekbench Multi-Core Score":10097},"isPart":true,"type":"CPU","humanName":"Xeon W-2265"},"Core-i7-8700B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1537,"Geekbench Multi-Core Score":5891},"isPart":true,"type":"CPU","humanName":"Core i7-8700B"},"Xeon-W-2255":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1534,"Geekbench Multi-Core Score":9337},"isPart":true,"type":"CPU","humanName":"Xeon W-2255"},"Core-i5-10505":{"data":{"Geekbench Single-Core Score":1527,"Geekbench Multi-Core Score":5202,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i5 10505","isPart":true,"type":"CPU"},"Xeon-E-2286M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCBGA1440","AES":true,"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1525,"Geekbench Multi-Core Score":6730},"isPart":true,"type":"CPU","humanName":"Xeon E-2286M"},"Ryzen-3-PRO-5450U":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Geekbench Single-Core Score":1514,"Geekbench Multi-Core Score":4814,"Release Date":"2021-03-16","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"15 W","Core Count":4,"Thread Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1600 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.229 TFLOPS","FP64 Compute":"76.8 GFLOPS"},"humanName":"Ryzen 3 PRO 5450U","isPart":true,"type":"CPU"},"Xeon-E-2224G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1505,"Geekbench Multi-Core Score":4251},"isPart":true,"type":"CPU","humanName":"Xeon E-2224G"},"Ryzen-7-PRO-4750GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1503,"Geekbench Multi-Core Score":6296,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","Unlocked":false,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 PRO 4750GE","isPart":true,"type":"CPU"},"Xeon-W-2275":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1497,"Geekbench Multi-Core Score":10472},"isPart":true,"type":"CPU","humanName":"Xeon W-2275"},"Ryzen-5-PRO-4650GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1495,"Geekbench Multi-Core Score":5637,"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":false,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 PRO 4650GE","isPart":true,"type":"CPU"},"Xeon-W-2295":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1492,"Geekbench Multi-Core Score":10405},"isPart":true,"type":"CPU","humanName":"Xeon W-2295"},"Core-i3-10105":{"data":{"Geekbench Single-Core Score":1490,"Geekbench Multi-Core Score":4689,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i3 10105","isPart":true,"type":"CPU"},"Core-i5-9500F":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1477,"Geekbench Multi-Core Score":5180},"isPart":true,"type":"CPU","humanName":"Core i5-9500F"},"Xeon-E-2224":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A","Geekbench Single-Core Score":1474,"Geekbench Multi-Core Score":4258},"isPart":true,"type":"CPU","humanName":"Xeon E-2224"},"Xeon-W-3175X":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"255 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-01-30","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1470,"Geekbench Multi-Core Score":13557},"isPart":true,"type":"CPU","humanName":"Xeon W-3175X"},"Xeon-E-2146G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1464,"Geekbench Multi-Core Score":5537},"isPart":true,"type":"CPU","humanName":"Xeon E-2146G"},"Core-i7-8569U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-21","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1463,"Geekbench Multi-Core Score":4469},"isPart":true,"type":"CPU","humanName":"Core i7-8569U"},"Xeon-E-2144G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1453,"Geekbench Multi-Core Score":4590},"isPart":true,"type":"CPU","humanName":"Xeon E-2144G"},"Xeon-E-2276M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1442,"Geekbench Multi-Core Score":5435},"isPart":true,"type":"CPU","humanName":"Xeon E-2276M"},"Xeon-E-2124G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1439,"Geekbench Multi-Core Score":3868},"isPart":true,"type":"CPU","humanName":"Xeon E-2124G"},"Ryzen-3-PRO-4350G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"Geekbench Single-Core Score":1434,"Geekbench Multi-Core Score":4624,"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 PRO 4350G","isPart":true,"type":"CPU"},"Core-i9-9900T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1431,"Geekbench Multi-Core Score":6042},"isPart":true,"type":"CPU","humanName":"Core i9-9900T"},"Xeon-W-3235":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"180 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1413,"Geekbench Multi-Core Score":10180},"isPart":true,"type":"CPU","humanName":"Xeon W-3235"},"Xeon-W-2225":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"4.1 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1409,"Geekbench Multi-Core Score":5248},"isPart":true,"type":"CPU","humanName":"Xeon W-2225"},"Xeon-W-2145":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1408,"Geekbench Multi-Core Score":8055},"isPart":true,"type":"CPU","humanName":"Xeon W-2145"},"Xeon-W-2135":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1395,"Geekbench Multi-Core Score":6509},"isPart":true,"type":"CPU","humanName":"Xeon W-2135"},"Xeon-W-3245":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1388,"Geekbench Multi-Core Score":11767},"isPart":true,"type":"CPU","humanName":"Xeon W-3245"},"Xeon-E-2176M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1386,"Geekbench Multi-Core Score":4978},"isPart":true,"type":"CPU","humanName":"Xeon E-2176M"},"Xeon-W-3223":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"160 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1386,"Geekbench Multi-Core Score":7982},"isPart":true,"type":"CPU","humanName":"Xeon W-3223"},"Core-i7-9700T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1375,"Geekbench Multi-Core Score":5191},"isPart":true,"type":"CPU","humanName":"Core i7-9700T"},"Core-i5-8500B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1374,"Geekbench Multi-Core Score":4982},"isPart":true,"type":"CPU","humanName":"Core i5-8500B"},"Ryzen-7-PRO-4750U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1353,"Geekbench Multi-Core Score":5210,"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"1.7 GHz","Boost Frequency":"4.1 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1600 MHz","GPU Base Frequency":"400 MHz","FP32 Compute":"1.434 TFLOPS","FP64 Compute":"89.6 GFLOPS"},"humanName":"Ryzen 7 PRO 4750U","isPart":true,"type":"APU"},"Core-i7-9750HF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-23","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4496},"isPart":true,"type":"CPU","humanName":"Core i7-9750HF"},"Core-i5-9600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1344,"Geekbench Multi-Core Score":4635},"isPart":true,"type":"CPU","humanName":"Core i5-9600T"},"Xeon-W-2155":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1339,"Geekbench Multi-Core Score":8515},"isPart":true,"type":"CPU","humanName":"Xeon W-2155"},"Xeon-W-2125":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1338,"Geekbench Multi-Core Score":4944},"isPart":true,"type":"CPU","humanName":"Xeon W-2125"},"Core-i5-9300HF":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q2 2019","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":1322,"Geekbench Multi-Core Score":4147},"isPart":true,"type":"CPU","humanName":"Core i5-9300HF"},"Xeon-E-2186M":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.9 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1315,"Geekbench Multi-Core Score":5138},"isPart":true,"type":"CPU","humanName":"Xeon E-2186M"},"Ryzen-5-PRO-4650U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1302,"Geekbench Multi-Core Score":4608,"Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 6","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1500 MHz","FP32 Compute":"1.152 TFLOPS","FP64 Compute":"72 GFLOPS"},"humanName":"Ryzen 5 PRO 4650U","isPart":true,"type":"APU"},"Xeon-W-2223":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-10-07","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1264,"Geekbench Multi-Core Score":4647},"isPart":true,"type":"CPU","humanName":"Xeon W-2223"},"Xeon-W-2195":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1248,"Geekbench Multi-Core Score":10002},"isPart":true,"type":"CPU","humanName":"Xeon W-2195"},"Core-i5-9500T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1236,"Geekbench Multi-Core Score":4204},"isPart":true,"type":"CPU","humanName":"Core i5-9500T"},"Xeon-W-2133":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1223,"Geekbench Multi-Core Score":5775},"isPart":true,"type":"CPU","humanName":"Xeon W-2133"},"Core-i3-8100B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-09-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1216,"Geekbench Multi-Core Score":3539},"isPart":true,"type":"CPU","humanName":"Core i3-8100B"},"Xeon-W-2175":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2017-12-07","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1210,"Geekbench Multi-Core Score":8334},"isPart":true,"type":"CPU","humanName":"Xeon W-2175"},"Core-i5-5675R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1208,"Geekbench Multi-Core Score":3636},"isPart":true,"type":"CPU","humanName":"Core i5-5675R"},"Core-i3-9100T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1207,"Geekbench Multi-Core Score":3193},"isPart":true,"type":"CPU","humanName":"Core i3-9100T"},"Ryzen-3-PRO-4450U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-05-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Geekbench Single-Core Score":1204,"Geekbench Multi-Core Score":3618,"Core Count":4,"Thread Count":8,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","TDP":"15 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","GPU Model":"RX Vega 5","Max Displays":4,"Shader Processor Count":320,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1400 MHz","FP32 Compute":"0.896 TFLOPS","FP64 Compute":"56 GFLOPS"},"humanName":"Ryzen 3 PRO 4450U","isPart":true,"type":"APU"},"Xeon-W-3275M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1203,"Geekbench Multi-Core Score":11736},"isPart":true,"type":"CPU","humanName":"Xeon W-3275M"},"Core-i5-8257U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-07-09","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1200,"Geekbench Multi-Core Score":3864},"isPart":true,"type":"CPU","humanName":"Core i5-8257U"},"Core-i5-7440HQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1198,"Geekbench Multi-Core Score":3080},"isPart":true,"type":"CPU","humanName":"Core i5-7440HQ"},"Core-i7-4980HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1191,"Geekbench Multi-Core Score":3726},"isPart":true,"type":"CPU","humanName":"Core i7-4980HQ"},"Xeon-W-2123":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-08-29","Socket":"FCLGA2066","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":1188,"Geekbench Multi-Core Score":4265},"isPart":true,"type":"CPU","humanName":"Xeon W-2123"},"Ryzen-3-2300X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"8 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Geekbench Single-Core Score":1187,"Geekbench Multi-Core Score":3321,"Release Date":"2018-09-10","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Ryzen 3 2300X","isPart":true,"type":"CPU"},"Xeon-E3-1280-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":1179,"Geekbench Multi-Core Score":3812},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280 v3"},"Core-i7-6770HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1155,"Geekbench Multi-Core Score":3920},"isPart":true,"type":"CPU","humanName":"Core i7-6770HQ"},"Core-i5-7360U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":2369},"isPart":true,"type":"CPU","humanName":"Core i5-7360U"},"Core-i5-9400T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1145,"Geekbench Multi-Core Score":3953},"isPart":true,"type":"CPU","humanName":"Core i5-9400T"},"Core-i5-4690S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1124,"Geekbench Multi-Core Score":3335},"isPart":true,"type":"CPU","humanName":"Core i5-4690S"},"Core-i5-6500TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1114,"Geekbench Multi-Core Score":3223},"isPart":true,"type":"CPU","humanName":"Core i5-6500TE"},"Core-i5-6402P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1101,"Geekbench Multi-Core Score":3004},"isPart":true,"type":"CPU","humanName":"Core i5-6402P"},"Core-i5-5575R":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3","Geekbench Single-Core Score":1095,"Geekbench Multi-Core Score":3333},"isPart":true,"type":"CPU","humanName":"Core i5-5575R"},"Core-i7-4870HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1088,"Geekbench Multi-Core Score":3544},"isPart":true,"type":"CPU","humanName":"Core i7-4870HQ"},"Core-i5-6440HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1078,"Geekbench Multi-Core Score":2861},"isPart":true,"type":"CPU","humanName":"Core i5-6440HQ"},"Core-i7-6660U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-03-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1071,"Geekbench Multi-Core Score":2129},"isPart":true,"type":"CPU","humanName":"Core i7-6660U"},"Core-i5-6500T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1035,"Geekbench Multi-Core Score":2836},"isPart":true,"type":"CPU","humanName":"Core i5-6500T"},"Core-i5-4308U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1021,"Geekbench Multi-Core Score":2043},"isPart":true,"type":"CPU","humanName":"Core i5-4308U"},"Core-i5-6267U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":1018,"Geekbench Multi-Core Score":2143},"isPart":true,"type":"CPU","humanName":"Core i5-6267U"},"Core-i5-4310M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1010,"Geekbench Multi-Core Score":1912},"isPart":true,"type":"CPU","humanName":"Core i5-4310M"},"Core-i5-4670T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":1002,"Geekbench Multi-Core Score":2646},"isPart":true,"type":"CPU","humanName":"Core i5-4670T"},"Xeon-W-3265M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512","Geekbench Single-Core Score":997,"Geekbench Multi-Core Score":7681},"isPart":true,"type":"CPU","humanName":"Xeon W-3265M"},"Core-i4-4690T":{"data":{"Geekbench Single-Core Score":995,"Geekbench Multi-Core Score":2767,"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"},"humanName":"Core i4 4690T","isPart":true,"type":"CPU"},"Core-i3-4170T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":974,"Geekbench Multi-Core Score":1915},"isPart":true,"type":"CPU","humanName":"Core i3-4170T"},"Core-i5-4210H":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":956,"Geekbench Multi-Core Score":1851},"isPart":true,"type":"CPU","humanName":"Core i5-4210H"},"Core-i7-4712MQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":952,"Geekbench Multi-Core Score":2634},"isPart":true,"type":"CPU","humanName":"Core i7-4712MQ"},"Core-i5-4430S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":948,"Geekbench Multi-Core Score":2668},"isPart":true,"type":"CPU","humanName":"Core i5-4430S"},"Core-i5-4340M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":938,"Geekbench Multi-Core Score":1837},"isPart":true,"type":"CPU","humanName":"Core i5-4340M"},"Core-i7-4785T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":937,"Geekbench Multi-Core Score":3054},"isPart":true,"type":"CPU","humanName":"Core i7-4785T"},"Core-i5-6360U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":935,"Geekbench Multi-Core Score":1878},"isPart":true,"type":"CPU","humanName":"Core i5-6360U"},"Core-i3-4160T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":933,"Geekbench Multi-Core Score":1804},"isPart":true,"type":"CPU","humanName":"Core i3-4160T"},"Core-i5-7267U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":926,"Geekbench Multi-Core Score":1879},"isPart":true,"type":"CPU","humanName":"Core i5-7267U"},"Core-i5-4278U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":922,"Geekbench Multi-Core Score":1865},"isPart":true,"type":"CPU","humanName":"Core i5-4278U"},"Core-i7-6560U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":922,"Geekbench Multi-Core Score":1998},"isPart":true,"type":"CPU","humanName":"Core i7-6560U"},"Ryzen-5-PRO-2500U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":920,"Geekbench Multi-Core Score":2605,"Core Count":4,"Thread Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"3.6 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 8","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 5 PRO 2500U","type":"APU"},"Core-i5-6400T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":914,"Geekbench Multi-Core Score":2506},"isPart":true,"type":"CPU","humanName":"Core i5-6400T"},"Core-i7-4765T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":910,"Geekbench Multi-Core Score":2924},"isPart":true,"type":"CPU","humanName":"Core i7-4765T"},"Core-i5-4590T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":894,"Geekbench Multi-Core Score":2501},"isPart":true,"type":"CPU","humanName":"Core i5-4590T"},"Core-i5-5350U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":893,"Geekbench Multi-Core Score":1734},"isPart":true,"type":"CPU","humanName":"Core i5-5350U"},"Core-i5-4288U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":862,"Geekbench Multi-Core Score":1623},"isPart":true,"type":"CPU","humanName":"Core i5-4288U"},"Core-i3-4150T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":845,"Geekbench Multi-Core Score":1725},"isPart":true,"type":"CPU","humanName":"Core i3-4150T"},"Xeon-D-1541":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","Geekbench Single-Core Score":821,"Geekbench Multi-Core Score":4543},"isPart":true,"type":"CPU","humanName":"Xeon D-1541"},"Ryzen-7-PRO-2700U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Geekbench Single-Core Score":800,"Geekbench Multi-Core Score":2318,"Core Count":4,"Thread Count":8,"Base Frequency":"2.2 GHz","Boost Frequency":"3.8 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 10","Shader Processor Count":640,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"1300 MHz"},"isPart":true,"humanName":"Ryzen 7 PRO 2700U","type":"APU"},"Core-i5-4460T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"1.9 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":793,"Geekbench Multi-Core Score":2192},"isPart":true,"type":"CPU","humanName":"Core i5-4460T"},"Core-i7-4578U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":780,"Geekbench Multi-Core Score":1408},"isPart":true,"type":"CPU","humanName":"Core i7-4578U"},"Core-i3-4100M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":776,"Geekbench Multi-Core Score":1555},"isPart":true,"type":"CPU","humanName":"Core i3-4100M"},"Core-i7-7820EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5","Geekbench Single-Core Score":746,"Geekbench Multi-Core Score":1922},"isPart":true,"type":"CPU","humanName":"Core i7-7820EQ"},"Core-i5-4260U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":737,"Geekbench Multi-Core Score":1430},"isPart":true,"type":"CPU","humanName":"Core i5-4260U"},"Core-i3-5020U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L, LPDDR","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":670,"Geekbench Multi-Core Score":1333},"isPart":true,"type":"CPU","humanName":"Core i3-5020U"},"X4-950":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Release Date":"2017-07-27","Core Count":4,"Thread Count":4,"Geekbench Single-Core Score":656,"Geekbench Multi-Core Score":1632,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 950","isPart":true,"type":"CPU"},"Core-i5-3570S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-06-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":636,"Geekbench Multi-Core Score":1769},"isPart":true,"type":"CPU","humanName":"Core i5-3570S"},"Core-i7-3770T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":622,"Geekbench Multi-Core Score":2017},"isPart":true,"type":"CPU","humanName":"Core i7-3770T"},"Xeon-E3-1230V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":619,"Geekbench Multi-Core Score":2167},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V2"},"Xeon-E5-1660":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":618,"Geekbench Multi-Core Score":3025},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660"},"Xeon-E3-1270":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":616,"Geekbench Multi-Core Score":2104},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270"},"Xeon-E5-1650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":602,"Geekbench Multi-Core Score":2962},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650"},"Core-i3-4025U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":601,"Geekbench Multi-Core Score":1170},"isPart":true,"type":"CPU","humanName":"Core i3-4025U"},"Xeon-E5-1620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":599,"Geekbench Multi-Core Score":2239},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620"},"Core-i5-3550S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz","Geekbench Single-Core Score":599,"Geekbench Multi-Core Score":1717},"isPart":true,"type":"CPU","humanName":"Core i5-3550S"},"Xeon-E3-1245":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":598,"Geekbench Multi-Core Score":2059},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245"},"Pentium-G4400T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":598,"Geekbench Multi-Core Score":1064},"isPart":true,"type":"CPU","humanName":"Pentium G4400T"},"Xeon-E3-1230":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":589,"Geekbench Multi-Core Score":1959},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230"},"Xeon-E5-2687W":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":588,"Geekbench Multi-Core Score":3342},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687W"},"Xeon-E5-2643":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":580,"Geekbench Multi-Core Score":2037},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643"},"Core-i5-3340S":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":575,"Geekbench Multi-Core Score":1635},"isPart":true,"type":"CPU","humanName":"Core i5-3340S"},"Xeon-E3-1225":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz","Geekbench Single-Core Score":568,"Geekbench Multi-Core Score":1693},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225"},"Core-i7-990X":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2011-02-13","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":2593},"isPart":true,"type":"CPU","humanName":"Core i7-990X"},"Xeon-E5-2690":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":564,"Geekbench Multi-Core Score":3329},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690"},"Xeon-E3-1220":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":558,"Geekbench Multi-Core Score":1625},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220"},"Xeon-E5-2680":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":557,"Geekbench Multi-Core Score":3261},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680"},"Core-i7-980X":{"data":{"Manufacturer":"Intel","Architecture":"Gulftown","Market":"Desktop","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Die Size":"239 mm","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":542,"Geekbench Multi-Core Score":2579},"isPart":true,"type":"CPU","humanName":"Core i7-980X"},"Xeon-X5680":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":528,"Geekbench Multi-Core Score":2454},"isPart":true,"type":"CPU","humanName":"Xeon X5680"},"Pentium-G3250T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":524,"Geekbench Multi-Core Score":909},"isPart":true,"type":"CPU","humanName":"Pentium G3250T"},"Core-i7-3610QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":522,"Geekbench Multi-Core Score":1829},"isPart":true,"type":"CPU","humanName":"Core i7-3610QE"},"Xeon-W3670":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q3 2010","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":521,"Geekbench Multi-Core Score":2347},"isPart":true,"type":"CPU","humanName":"Xeon W3670"},"Xeon-X5677":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":509,"Geekbench Multi-Core Score":2015},"isPart":true,"type":"CPU","humanName":"Xeon X5677"},"Core-i7-875K":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":509,"Geekbench Multi-Core Score":1761},"isPart":true,"type":"CPU","humanName":"Core i7-875K"},"Xeon-X5675":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":502,"Geekbench Multi-Core Score":2440},"isPart":true,"type":"CPU","humanName":"Xeon X5675"},"FX-6350":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"OR-C0","Geekbench Single-Core Score":486,"Geekbench Multi-Core Score":1574,"Release Date":"2013-04-30","Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","Core Count":6,"Thread Count":6,"L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","TDP":"125 W"},"isPart":true,"humanName":"FX 6350","type":"CPU"},"Pentium-G3220T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":478,"Geekbench Multi-Core Score":835},"isPart":true,"type":"CPU","humanName":"Pentium G3220T"},"Xeon-E5-2665":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":477,"Geekbench Multi-Core Score":2902},"isPart":true,"type":"CPU","humanName":"Xeon E5-2665"},"Xeon-X5670":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":472,"Geekbench Multi-Core Score":2281},"isPart":true,"type":"CPU","humanName":"Xeon X5670"},"Xeon-E3-1260L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz","Geekbench Single-Core Score":472,"Geekbench Multi-Core Score":1564},"isPart":true,"type":"CPU","humanName":"Xeon E3-1260L"},"Core-i3-3240T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":457,"Geekbench Multi-Core Score":1011},"isPart":true,"type":"CPU","humanName":"Core i3-3240T"},"Core-i3-4020Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3","Geekbench Single-Core Score":452,"Geekbench Multi-Core Score":897},"isPart":true,"type":"CPU","humanName":"Core i3-4020Y"},"Core-i7-620M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.333 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":836},"isPart":true,"type":"CPU","humanName":"Core i7-620M"},"Xeon-X5550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":445,"Geekbench Multi-Core Score":1838},"isPart":true,"type":"CPU","humanName":"Xeon X5550"},"Core-i5-580M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":443,"Geekbench Multi-Core Score":783},"isPart":true,"type":"CPU","humanName":"Core i5-580M"},"Xeon-E5-2660":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":441,"Geekbench Multi-Core Score":2564},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660"},"FX-4130":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Geekbench Single-Core Score":427,"Geekbench Multi-Core Score":1118,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","TDP":"125 W","L3 Cache (Total)":"4 MiB","Release Date":"2012-08-27"},"humanName":"FX 4130","isPart":true,"type":"CPU"},"FX-6200":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Geekbench Single-Core Score":427,"Geekbench Multi-Core Score":1344,"Base Frequency":"3.8 GHz","Boost Frequency":"4.1 GHz","TDP":"125 W","Release Date":"2012-02-25"},"humanName":"FX 6200","isPart":true,"type":"CPU"},"Xeon-E5-2630":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":425,"Geekbench Multi-Core Score":2242},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630"},"Xeon-E5-2640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":423,"Geekbench Multi-Core Score":2273},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640"},"Core-i7-640M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":796},"isPart":true,"type":"CPU","humanName":"Core i7-640M"},"Core-i7-920XM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":417,"Geekbench Multi-Core Score":1118},"isPart":true,"type":"CPU","humanName":"Core i7-920XM"},"Xeon-E5-2430":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":415,"Geekbench Multi-Core Score":1865},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430"},"Pentium-G2020T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz","Geekbench Single-Core Score":410,"Geekbench Multi-Core Score":689},"isPart":true,"type":"CPU","humanName":"Pentium G2020T"},"Core-i5-560M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":406,"Geekbench Multi-Core Score":764},"isPart":true,"type":"CPU","humanName":"Core i5-560M"},"Xeon-E5-2620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":394,"Geekbench Multi-Core Score":1941},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620"},"Core-i7-840QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":391,"Geekbench Multi-Core Score":901},"isPart":true,"type":"CPU","humanName":"Core i7-840QM"},"Xeon-E5-2650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":378,"Geekbench Multi-Core Score":2320},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650"},"Core-i7-640LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz","Geekbench Single-Core Score":373,"Geekbench Multi-Core Score":673},"isPart":true,"type":"CPU","humanName":"Core i7-640LM"},"Xeon-E5-2420":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":1802},"isPart":true,"type":"CPU","humanName":"Xeon E5-2420"},"Core-i7-820QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":371,"Geekbench Multi-Core Score":993},"isPart":true,"type":"CPU","humanName":"Core i7-820QM"},"Core-i5-540M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.066 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":367,"Geekbench Multi-Core Score":716},"isPart":true,"type":"CPU","humanName":"Core i5-540M"},"Core-i5-520M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288, PGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":365,"Geekbench Multi-Core Score":724},"isPart":true,"type":"CPU","humanName":"Core i5-520M"},"Core-i5-480M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":363,"Geekbench Multi-Core Score":690},"isPart":true,"type":"CPU","humanName":"Core i5-480M"},"Core-i5-460M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":359,"Geekbench Multi-Core Score":700},"isPart":true,"type":"CPU","humanName":"Core i5-460M"},"Core-i7-740QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"6 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":357,"Geekbench Multi-Core Score":990},"isPart":true,"type":"CPU","humanName":"Core i7-740QM"},"Core-i5-450M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":341,"Geekbench Multi-Core Score":676},"isPart":true,"type":"CPU","humanName":"Core i5-450M"},"Core-i7-720QM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"296 mm","Release Date":"2009-09-23","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","Geekbench Single-Core Score":337,"Geekbench Multi-Core Score":903},"isPart":true,"type":"CPU","humanName":"Core i7-720QM"},"Core-i3-380M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":325,"Geekbench Multi-Core Score":610},"isPart":true,"type":"CPU","humanName":"Core i3-380M"},"Core-i3-370M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":320,"Geekbench Multi-Core Score":643},"isPart":true,"type":"CPU","humanName":"Core i3-370M"},"Pentium-3556U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":318,"Geekbench Multi-Core Score":520},"isPart":true,"type":"CPU","humanName":"Pentium 3556U"},"Core-i5-430M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz","Geekbench Single-Core Score":314,"Geekbench Multi-Core Score":642},"isPart":true,"type":"CPU","humanName":"Core i5-430M"},"FX-7500":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Geekbench Single-Core Score":314,"Geekbench Multi-Core Score":698,"Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","TDP":"20 W","GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"498 MHz","GPU Boost Frequency":"553 MHz"},"isPart":true,"humanName":"FX-7500","type":"APU"},"Pentium-4415Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-29","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4","Geekbench Single-Core Score":306,"Geekbench Multi-Core Score":661},"isPart":true,"type":"CPU","humanName":"Pentium 4415Y"},"Core-i3-350M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":287,"Geekbench Multi-Core Score":590},"isPart":true,"type":"CPU","humanName":"Core i3-350M"},"Pentium-3825U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12","Geekbench Single-Core Score":285,"Geekbench Multi-Core Score":572},"isPart":true,"type":"CPU","humanName":"Pentium 3825U"},"Core-i3-330M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz","Geekbench Single-Core Score":273,"Geekbench Multi-Core Score":584},"isPart":true,"type":"CPU","humanName":"Core i3-330M"},"Core-i3-2377M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","Geekbench Single-Core Score":247,"Geekbench Multi-Core Score":494},"isPart":true,"type":"CPU","humanName":"Core i3-2377M"},"Pentium-J3710":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-11","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes","Geekbench Single-Core Score":200,"Geekbench Multi-Core Score":579},"isPart":true,"type":"CPU","humanName":"Pentium J3710"},"Pentium-E2140":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q2 2007","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"Geekbench Single-Core Score":167,"Geekbench Multi-Core Score":276},"isPart":true,"type":"CPU","humanName":"Pentium E2140"},"APUs-CUSTOM":{"humanName":"CUSTOM APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"CUSTOM APUS","members":["Liverpool (PS4)","Durango (XB1)","Neo (PS4PRO)","Scorpio (XB1X)"]}]},"A10-9700":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"729 MHz","GPU Boost Frequency":"1029 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A10-9700","type":"APU"},"A10-9700E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","GPU Boost Frequency":"847 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A10-9700E","type":"APU"},"A12-9800":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","GPU Boost Frequency":"1108 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A12-9800","type":"APU"},"A12-9800E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"655 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A12-9800E","type":"APU"},"A6-9500":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","GPU Boost Frequency":"1029 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9500","type":"APU"},"A6-9500E":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.0 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"35 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"576 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9500E","type":"APU"},"A6-9550":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"578 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A6-9550","type":"APU"},"A8-9600":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Release Date":"2016-09-05","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"65 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"655 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4"},"isPart":true,"humanName":"A8-9600","type":"APU"},"Bristol-Ridge-APUs":{"humanName":"Bristol Ridge","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2016-09-05","Sockets":["AM4","FM2+"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["A6-9500","A6-9550","A8-9600","A10-9700","A12-9800"]},{"header":"Low Power SKUs","members":["A6-9500E","A10-9700E","A12-9800E"]}]},"Ryzen-3-5300GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 5300GE","isPart":true,"type":"CPU"},"Ryzen-3-PRO-5350GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-06-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.6 GHz","Boost Frequency":"4.2 GHz","Socket":"AM4","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"FP32 Compute":"1.306 TFLOPS","FP64 Compute":"81.6 GFLOPS"},"humanName":"Ryzen 3 PRO 5350GE","isPart":true,"type":"CPU"},"Ryzen-5-5600GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.4 GHz","Boost Frequency":"4.4 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 5600GE","isPart":true,"type":"CPU"},"Ryzen-7-5700GE":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Compatible Chipsets":["A520","B550","X570","X470","B450"],"Release Date":"2021-04-13","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.2 GHz","Boost Frequency":"4.6 GHz","Socket":"AM4","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"2000 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.048 TFLOPS","FP64 Compute":"128 GFLOPS"},"humanName":"Ryzen 7 5700GE","isPart":true,"type":"CPU"},"Cezanne":{"humanName":"Cezanne","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"7nm","Release Date":"2021-01-12","Sockets":["AM4"]},"sections":[{"header":"Ryzen 7","members":["Ryzen-7-5700G","Ryzen-7-5700GE","Ryzen-7-PRO-5750G","Ryzen-7-PRO-5750GE"]},{"header":"Ryzen 5","members":["Ryzen-5-5600G","Ryzen-5-5600GE","Ryzen-5-PRO-5650G","Ryzen-5-PRO-5650GE"]},{"header":"Ryzen 3","members":["Ryzen-3-5300G","Ryzen-3-5300GE","Ryzen-3-PRO-5350G","Ryzen-3-PRO-5350GE"]}]},"Athlon-5150":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5150","type":"APU"},"Athlon-5350":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"2.05 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5350","type":"APU"},"Athlon-5370":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2016-02","Core Count":4,"Thread Count":4,"Base Frequency":"2.20 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8400","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Athlon 5370","type":"APU"},"Sempron-2650":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":2,"Thread Count":2,"Base Frequency":"1.45 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"64 KiB","TDP":"25 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8240","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Sempron 2650","type":"APU"},"Sempron-3850":{"data":{"Architecture":"Jaguar","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"AM1","Release Date":"2014-04-09","Core Count":4,"Thread Count":4,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"25 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"AVX","BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","MOVBE","XSAVE","CLMUL"],"GPU Model":"HD-8280","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"450 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"Sempron 3850","type":"APU"},"Kabini-APUs":{"humanName":"Kabini","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-04-09","Sockets":["AM1"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["Sempron-2650","Sempron-3850","Athlon-5150","Athlon-5350","Athlon-5370"]}]},"A10-7700K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-14","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7700K","type":"APU"},"A10-7800":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7800","type":"APU"},"A10-7850K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-14","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7850K","type":"APU"},"A10-7860K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-02-02","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"757 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7860K","type":"APU"},"A10-7870K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-05-28","Core Count":4,"Thread Count":4,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"866 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7870K","type":"APU"},"A10-7890K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-03-01","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"866 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-7890K","type":"APU"},"A10-PRO-7800B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-01-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10 PRO 7800B","type":"APU"},"A10-PRO-7850B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10 PRO 7850B","type":"APU"},"A6-7400K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"756 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-7400K","type":"APU"},"A6-7470K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2016-02-02","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-7470K","type":"APU"},"A6-PRO-7350B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":8,"GPU Base Frequency":"514 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6 PRO 7350B","type":"APU"},"A6-PRO-7400B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"756 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6 PRO 7400B","type":"APU"},"A8-7600":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-01-07","Core Count":4,"Thread Count":4,"Base Frequency":"3.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58","A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3","Unlocked":true},"isPart":true,"humanName":"A8-7600","type":"APU"},"A8-7670K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2015-07-20","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"95 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"757 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-7670K","type":"APU"},"A8-PRO-7600B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Release Date":"2014-07-31","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"GPU Model":"Radeon R7 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8 PRO 7600B","type":"APU"},"Kaveri-APUs":{"humanName":"Kaveri","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-01-14","Sockets":["FM2+"],"DirectX Support":"12.0","Vulkan Support":"1.0"},"sections":[{"header":"Standard SKUs","members":["A6-7400K","A6-7470K","A8-7600","A8-7650K","A8-7670K","A10-7700K","A10-7800","A10-7850K","A10-7860K","A10-7870K","A10-7890K"]},{"header":"Business SKUs","members":["A6-PRO-7350B","A6-PRO-7400B","A8-PRO-7600B","A10-PRO-7800B","A10-PRO-7850B"]}]},"A4-3300":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3300","type":"APU"},"A4-3400":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3400","type":"APU"},"A4-3420":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6410D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-3420","type":"APU"},"A6-3500":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":3,"Thread Count":3,"Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"192 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3500","type":"APU"},"A6-3600":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3600","type":"APU"},"A6-3620":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3620","type":"APU"},"A6-3650":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-06-30","Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3650","type":"APU"},"A6-3670K":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6530D","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-3670K","type":"APU"},"A8-3800":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-08-17","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3800","type":"APU"},"A8-3820":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3820","type":"APU"},"A8-3850":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-06-30","Core Count":4,"Thread Count":4,"Base Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3850","type":"APU"},"A8-3870K":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-12-20","Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"256 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6550D","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-3870K","type":"APU"},"E2-3200":{"data":{"Architecture":"K10","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM1","Release Date":"2011-09-07","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"128 KiB","TDP":"100 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"GPU Model":"HD 6370D","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"443 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"E2-3200","type":"APU"},"Llano-APUs":{"humanName":"Llano","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2011-06-30","Sockets":["FM1"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["E2-3200","A4-3300","A4-3400","A4-3420","A6-3500","A6-3600","A6-3620","A6-3650","A6-3670K","A8-3800","A8-3820","A8-3850","A8-3870K"]}]},"Raven-Ridge-APUs":{"humanName":"Raven Ridge","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"14nm","Release Date":"2018-02-12","Sockets":["AM4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["Ryzen-3-2200G","Ryzen-5-2400G"]}]},"Ryzen-3-4300G":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"65 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 4300G","isPart":true,"type":"CPU"},"Ryzen-3-4300GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","Unlocked":true,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 4300GE","isPart":true,"type":"CPU"},"Ryzen-3-PRO-4350GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"4 MiB","TDP":"35 W","Core Count":4,"Thread Count":8,"Base Frequency":"3.5 GHz","Boost Frequency":"4.0 GHz","Unlocked":false,"GPU Model":"RX Vega 6","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1700 MHz","Max Displays":4,"Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8},"humanName":"Ryzen 3 PRO 4350GE","isPart":true,"type":"CPU"},"Ryzen-5-4600GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","Unlocked":true,"GPU Model":"RX Vega 7","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1900 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.702 TFLOPS","FP64 Compute":"106.4 GFLOPS"},"humanName":"Ryzen 5 4600GE","isPart":true,"type":"CPU"},"Ryzen-7-4700GE":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Release Date":"2020-07-21","Socket":"AM4","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"VRAM Type":"DDR4","Crossfire Support":"No","Stepping":"A1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO"],"Compatible Chipsets":["A520","B450","B550","X570","X470","B450"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"4.3 GHz","Unlocked":true,"GPU Model":"RX Vega 8","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"2100 MHz","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"FP32 Compute":"2.15 TFLOPS","FP64 Compute":"134.4 GFLOPS"},"humanName":"Ryzen 7 4700GE","isPart":true,"type":"CPU"},"Renoir":{"humanName":"Renoir","type":"CPU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"7nm","Release Date":"2020-07-21","Sockets":["AM4"],"DirectX Support":"12.1","Vulkan Support":"1.3"},"sections":[{"header":"Ryzen 7","members":["Ryzen-7-4700G","Ryzen-7-4700GE","Ryzen-7-PRO-4750G","Ryzen-7-PRO-4750GE"]},{"header":"Ryzen 5","members":["Ryzen-5-4600G","Ryzen-5-4600GE","Ryzen-5-PRO-4650G","Ryzen-5-PRO-4650GE"]},{"header":"Ryzen 3","members":["Ryzen-3-4300G","Ryzen-3-4300GE","Ryzen-3-PRO-4350G","Ryzen-3-PRO-4350GE"]}]},"A10-6700":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6700","type":"APU"},"A10-6700T":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"45 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8650D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6700T","type":"APU"},"A10-6790B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-10-29","Core Count":4,"Thread Count":4,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6790B","type":"APU"},"A10-6790K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-10-29","Core Count":4,"Thread Count":4,"Base Frequency":"4.0 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6790K","type":"APU"},"A10-6800B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6800B","type":"APU"},"A10-6800K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"4.1 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"2133 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8670D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-6800K","type":"APU"},"A4-4000":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-05","Core Count":2,"Thread Count":2,"Base Frequency":"3.0 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-4000","type":"APU"},"A4-4020":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"720 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-4020","type":"APU"},"A4-6300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6300","type":"APU"},"A4-6300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06","Core Count":2,"Thread Count":2,"Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6300B","type":"APU"},"A4-6320":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-12","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6320","type":"APU"},"A4-6320B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-12","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8370D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-6320B","type":"APU"},"A4-7300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-07","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-7300","type":"APU"},"A4-7300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-07","Core Count":2,"Thread Count":2,"Base Frequency":"3.8 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-7300B","type":"APU"},"A6-6400B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":2,"Thread Count":2,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6400B","type":"APU"},"A6-6400K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":2,"Thread Count":2,"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6400K","type":"APU"},"A6-6420B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6420B","type":"APU"},"A6-6420K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2014-01","Core Count":2,"Thread Count":2,"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8470D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-6420K","type":"APU"},"A8-6500":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500","type":"APU"},"A8-6500B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500B","type":"APU"},"A8-6500T":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-09-18","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"45 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8550D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"744 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6500T","type":"APU"},"A8-6600K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2013-06-04","Core Count":4,"Thread Count":4,"Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Unlocked":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 8570D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"844 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-6600k","type":"APU"},"Richland-APUs":{"humanName":"Richland","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2013-06-04","Sockets":["FM2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-4000","A4-4020","A4-6300","A4-6300B","A4-6320","A4-6320B","A4-7300","A4-7300B","A6-6400B","A6-6400K","A6-6420B","A6-6420K","A8-6500T","A8-6500","A8-6500B","A8-6600K","A10-6700T","A10-6700","A10-6790B","A10-6790K","A10-6800K","A10-6800B"]}]},"A10-5700":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5700","type":"APU"},"A10-5800B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5800B","type":"APU"},"A10-5800K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7660D","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A10-5800K","type":"APU"},"A4-5300":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-5300","type":"APU"},"A4-5300B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7480D","Shader Processor Count":128,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A4-5300B","type":"APU"},"A6-5400B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7540D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-5400B","type":"APU"},"A6-5400K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"64 KiB","L1 Cache (Data)":"32 KiB","TDP":"65 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7540D","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":4,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A6-5400K","type":"APU"},"A8-5500":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5500","type":"APU"},"A8-5500B":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5500B","type":"APU"},"A8-5600K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","Socket":"FM2","Release Date":"2012-10-01","Core Count":4,"Thread Count":4,"Base Frequency":"3.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"100 W","Unlocked":true,"Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"GPU Model":"HD 7560D","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"760 MHz","VRAM Type":"DDR3"},"isPart":true,"humanName":"A8-5600K","type":"APU"},"Trinity-APUs":{"humanName":"Trinity","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2012-10-01","Sockets":["FM2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-5300","A4-5300B","A6-5400K","A6-5400B","A8-5500","A8-5500B","A8-5600K","A10-5700","A10-5800K","A10-5800B"]}]},"APUs-DESKTOP":{"humanName":"Desktop APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN APUs","members":["Cezanne","Renoir","Raven-Ridge-APUs"]},{"header":"A-SERIES APUs","members":["Bristol-Ridge-APUs","Kaveri-APUs","Kabini-APUs","Richland-APUs","Trinity-APUs","Llano-APUs"]}]},"APUs-EMBEDDED":{"humanName":"EMBEDDED APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"G-SERIES APUs","members":["LX-Family","Prairie Falcon","Brown Falcon","Crowned Eagle","Steppe Eagle","Kabini-E","Ontario-E","Zacate-E"]},{"header":"R-SERIES APUs","members":["Trinity-E","Bald Eagle","Merlin Falcon"]}]},"A10-9600P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A10-9600P","type":"APU"},"A10-9620P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A10-9620P","type":"APU"},"A10-9630P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-9630P","type":"APU"},"A10-9700B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A10-9700B","type":"APU"},"A12-9700P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9700P","type":"APU"},"A12-9720P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9720P","type":"APU"},"A12-9730B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9730B","type":"APU"},"A12-9730P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9730P","type":"APU"},"A12-9800B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"A12-9800B","type":"APU"},"A12-9830B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"A12-9830B","type":"APU"},"A6-9500B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-9500B","type":"APU"},"A8-9600B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-10-24","TDP":"12-15 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-9600B","type":"APU"},"A8-9630B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","Release Date":"2016-10-24","TDP":"25-45 W","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":6,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A8-9630B","type":"APU"},"FX-9800P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"1866 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","Release Date":"2016-06","TDP":"12-15 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"758 MHz"},"isPart":true,"humanName":"FX-9800P","type":"APU"},"FX-9830P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"AM4","Unlocked":true,"Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Max Memory Frequency":"2400 MHz","Compatible Chipsets":["X370","B350","A320","X300","A300"],"Core Count":4,"Thread Count":4,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","Release Date":"2016-06","TDP":"25-45 W","GPU Model":"Radeon R7 Bristol Ridge","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"900 MHz"},"isPart":true,"humanName":"FX-9830P","type":"APU"},"Bristol-Ridge-M":{"humanName":"Bristol Ridge Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2016-06","Sockets":["FP4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A10-9600P","A10-9620P","A10-9630P","A12-9700P","A12-9720P","A12-9730P"]},{"header":"FX SKUs","members":["FX-9800P","FX-9830P"]},{"header":"Pro SKUs","members":["A6-9500B","A8-9600B","A8-9630B","A10-9700B","A12-9730B","A12-9800B","A12-9830B"]}]},"Bristol-Ridge":{"humanName":"Bristol Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"28 nm","Sockets":["AM4","FM2+"],"Foundry":"Global Foundries","Release Date":"2016-09-05"},"sections":[{"header":"7th GEN. QUAD CORE","members":["X4-970","X4-950","X4-940"]}]},"A10-8700B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8700B","type":"APU"},"A10-8700P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8700P","type":"APU"},"A10-8730B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A10-8730B","type":"APU"},"A10-8780P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-12","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.3 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A10-8780P","type":"APU"},"A12-8800B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A12-8800B","type":"APU"},"A12-8830B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A12-8830B","type":"APU"},"A6-8500B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8500B","type":"APU"},"A6-8500P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1600 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8500P","type":"APU"},"A6-8530B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"64 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":2,"Thread Count":2,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R5 Bristol Ridge","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"A6-8530B","type":"APU"},"A8-8600B":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2016-Q3","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"1866 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-8600B","type":"APU"},"A8-8600P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","Boost Frequency":"3.0 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R6 Carrizo","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"720 MHz"},"isPart":true,"humanName":"A8-8600P","type":"APU"},"FX-8800P":{"data":{"Architecture":"Excavator","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":true,"Release Date":"2015-06","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"192 KiB","L1 Cache (Data)":"128 KiB","TDP":"12-35 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"3.4 GHz","Max Memory Frequency":"2133 MHz","GPU Model":"Radeon R8 Carrizo","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz"},"isPart":true,"humanName":"FX-8800P","type":"APU"},"Carrizo-M":{"humanName":"Carrizo Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2015-06","Sockets":["FP4"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A6-8500P","A8-8600P","A10-8700P","A10-8780P"]},{"header":"FX SKUs","members":["FX-8800P"]},{"header":"Pro SKUs","members":["A6-8500B","A6-8530B","A8-8600B","A10-8700B","A10-8730B","A12-8800B","A12-8830B"]}]},"Carrizo":{"humanName":"Carrizo","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"28 nm","Sockets":["FM2+"],"Foundry":"Global Foundries","Release Date":"2016-02"},"sections":[{"header":"NSTS QUAD CORE","members":["X4-845","X4-835"]}]},"Ryzen-5-5600HS":{"data":{"Architecture":"Zen 3","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Memory Type":"DDR4 or LPDDR4","Max Memory Frequency":"DDR4-3200 or LPDDR4-4266 MHz","VRAM Type":"DDR4 or LPDDR4","Crossfire Support":"No","Socket":"FP6","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","SSE4A","POPCNT","PCLMUL","FSGSBASE","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","UMIP","CLZERO","VAES","VPCLMUL"],"Release Date":"2021-01-12","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"16 MiB","TDP":"35 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.0 GHz","Boost Frequency":"4.2 GHz","GPU Model":"RX Vega 7","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1800 MHz","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"FP32 Compute":"1.613 TFLOPS","FP64 Compute":"100.8 GFLOPS"},"humanName":"Ryzen 5 5600HS","isPart":true,"type":"CPU"},"Cezanne-M":{"humanName":"Cezanne Mobile","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"7nm","Release Date":"2021-01-12","Sockets":["FP6"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-5900HS","Ryzen-9-5900HX","Ryzen-9-5980HS","Ryzen-9-5980HX"]},{"header":"Ryzen 7","members":["Ryzen-7-5800H","Ryzen-7-5800HS","Ryzen-7-5800U","Ryzen-7-PRO-5850U"]},{"header":"Ryzen 5","members":["Ryzen-5-5600H","Ryzen-5-5600HS","Ryzen-5-5600U","Ryzen-5-PRO-5650U"]},{"header":"Ryzen 3","members":["Ryzen-3-5300G","Ryzen-3-5300GE","Ryzen-3-5400U","Ryzen-3-PRO-5450U"]}]},"A10-7300":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","TDP":"20 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"464 MHz","GPU Boost Frequency":"533 MHz"},"isPart":true,"humanName":"A10-7300","type":"APU"},"A10-7350B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","TDP":"20 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"553 MHz"},"isPart":true,"humanName":"A10-7350B","type":"APU"},"A10-7400P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","TDP":"35 W","GPU Model":"Radeon R6 Kaveri","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"576 MHz","GPU Boost Frequency":"654 MHz"},"isPart":true,"humanName":"A10-7400P","type":"APU"},"A6-7000":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Max Memory Frequency":"1333 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","TDP":"17 W","GPU Model":"Radeon R4 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":3,"GPU Base Frequency":"494 MHz","GPU Boost Frequency":"533 MHz"},"isPart":true,"humanName":"A6-7000","type":"APU"},"A6-7050B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Instruction)":"96 KiB","L1 Cache (Data)":"32 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":2,"Thread Count":2,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","TDP":"17 W","GPU Model":"Radeon R4 Kaveri","Shader Processor Count":192,"Texture Mapping Unit Count":12,"Render Output Unit Count":3,"GPU Base Frequency":"533 MHz"},"isPart":true,"humanName":"A6-7050B","type":"APU"},"A8-7100":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.8 GHz","Boost Frequency":"3.0 GHz","TDP":"20 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"450 MHz","GPU Boost Frequency":"514 MHz"},"isPart":true,"humanName":"A8-7100","type":"APU"},"A8-7150B":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1600 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"1.8 GHz","Boost Frequency":"3.0 GHz","TDP":"20 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"553 MHz"},"isPart":true,"humanName":"A8-7150B","type":"APU"},"A8-7200P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","TDP":"35 W","GPU Model":"Radeon R5 Kaveri","Shader Processor Count":256,"Texture Mapping Unit Count":16,"Render Output Unit Count":4,"GPU Base Frequency":"553 MHz","GPU Boost Frequency":"626 MHz"},"isPart":true,"humanName":"A8-7200P","type":"APU"},"FX-7600P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Socket":"FM2+","Unlocked":false,"Release Date":"2014-06","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Core Count":4,"Thread Count":4,"Max Memory Frequency":"2133 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","TDP":"35 W","GPU Model":"Radeon R7 Kaveri","Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","GPU Boost Frequency":"686 MHz"},"isPart":true,"humanName":"FX-7600P","type":"APU"},"Kaveri-M":{"humanName":"Kaveri Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"28nm","Release Date":"2014-06","Sockets":["FP3"],"DirectX Support":"12.0","Vulkan Support":"1.1"},"sections":[{"header":"Standard SKUs","members":["A6-7000","A8-7100","A8-7200P","A10-7300","A10-7400P"]},{"header":"FX SKUs","members":["FX-7500","FX-7600P"]},{"header":"Pro SKUs","members":["A6-7050B","A8-7150B","A10-7350B"]}]},"Kaveri":{"humanName":"Kaveri","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2016-03-01","Lithography":"28 nm","Sockets":["FM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":["840R","860K","870K","880K","450s"]}]},"Ryzen-3-7440U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","TDP":"15-30 W","Core Count":4,"Thread Count":8,"Base Frequency":"3 GHz","Boost Frequency":"4.7 GHz","GPU Model":"Radeon 740M","GPU Base Frequency":"2500 MHz"},"humanName":"Ryzen 3 7440U","isPart":true,"type":"CPU"},"Ryzen-5-7540U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.2 GHz","Boost Frequency":"4.9 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2500 MHz"},"humanName":"Ryzen 7 7540U","isPart":true,"type":"CPU"},"Ryzen-5-7640H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":6,"Thread Count":12,"Base Frequency":"4.3 GHz","Boost Frequency":"5 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz","FreeSync Support":false},"humanName":"Ryzen 7 7640H","isPart":true,"type":"CPU"},"Ryzen-5-7640U":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"16 MiB","TDP":"15-30 W","Core Count":6,"Thread Count":12,"Base Frequency":"3.5 GHz","Boost Frequency":"4.9 GHz","GPU Model":"Radeon 760M","GPU Base Frequency":"2600 MHz"},"humanName":"Ryzen 7 7640U","isPart":true,"type":"CPU"},"Ryzen-7-7840H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"3.8 GHz","Boost Frequency":"5.1 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2700 MHz","FreeSync Support":false},"humanName":"Ryzen 7 7840H","isPart":true,"type":"CPU"},"Ryzen-9-7940H":{"data":{"Release Date":"2023-05","Lithography":"4 nm","Architecture":"Zen 4","Memory Type":"DDR5 or LPDDR5X","Max Memory Frequency":"DDR5-5600 or LPDDR5X-7500 MHz","VRAM Type":"DDR5 or LPDDR5X","Crossfire Support":"No","PCIe 4.0 Lanes":20,"cTDP Support":true,"FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"16 MiB","TDP":"35-54 W","Core Count":8,"Thread Count":16,"Base Frequency":"4 GHz","Boost Frequency":"5.2 GHz","GPU Model":"Radeon 780M","GPU Base Frequency":"2800 MHz","FreeSync Support":false},"humanName":"Ryzen 9 7940H","isPart":true,"type":"CPU"},"Phoenix":{"humanName":"Phoenix","type":"APU Architecture","topHeader":"SELECT CPU:","data":{"Lithography":"4nm","Release Date":"2023-05","Sockets":["FP7","FP7r2","FP8"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-7940HS","Ryzen-9-7940H"]},{"header":"Ryzen 7","members":["Ryzen-7-7840HS","Ryzen-7-7840H","Ryzen-7-7840U"]},{"header":"Ryzen 5","members":["Ryzen-5-7640HS","Ryzen-5-7640H","Ryzen-5-7640U","Ryzen-5-7540U"]},{"header":"Ryzen 3","members":["Ryzen-3-7440U"]}]},"Ryzen-3-PRO-2300U":{"data":{"Architecture":"Zen","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","HLSL Shader Model":"6.0","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"No","Release Date":"2018-02-12","Socket":"FP5","Unlocked":false,"TDP":"12W - 25 W","Max Memory Frequency":"2400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X370","B350","A320","X300","A300"],"Steppings":"B1","VRAM Type":"DDR4","Core Count":4,"Thread Count":4,"Base Frequency":"2.0 GHz","Boost Frequency":"3.4 GHz","L3 Cache (Total)":"4 MiB","L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"256 KiB","L1 Cache (Data)":"128 KiB","GPU Model":"RX Vega 6","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1100 MHz"},"isPart":true,"humanName":"Ryzen 3 PRO 2300U","type":"APU"},"Raven-Ridge-M":{"humanName":"Raven Ridge Mobile","type":"APU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-02-12","Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Sockets":["FP5"]},"sections":[{"header":"Standard SKUs","members":["Ryzen-3-2200U","Ryzen-3-2300U","Ryzen-5-2500U","Ryzen-7-2700U"]},{"header":"Pro SKUs","members":["Ryzen-3-PRO-2300U","Ryzen-5-PRO-2500U","Ryzen-7-PRO-2700U"]}]},"Ryzen-7-4680U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-04-13","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"4 GHz","TDP":"15 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","GPU Model":"RX Vega 7","Max Displays":4,"Shader Processor Count":448,"Texture Mapping Unit Count":28,"Render Output Unit Count":8,"GPU Boost Frequency":"1500 MHz","GPU Base Frequency":"400 MHz"},"humanName":"Ryzen 7 4680U","isPart":true,"type":"APU"},"Ryzen-7-4980U":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.3","HLSL Shader Model":"6.7","OpenGL Support":"4.6","OpenCL Support":"2.1","FreeSync Support":true,"Socket":"FP6","Release Date":"2020-04-13","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":4,"XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Steppings":"A1","VRAM Type":"DDR4","Crossfire Support":"No","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"8 MiB","Base Frequency":"2 GHz","Boost Frequency":"4.4 GHz","TDP":"15 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","GPU Model":"RX Vega 8","Max Displays":4,"Shader Processor Count":512,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Boost Frequency":"1950 MHz","GPU Base Frequency":"400 MHz"},"humanName":"Ryzen 7 4980U","isPart":true,"type":"APU"},"Renoir-M":{"humanName":"Renoir Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"7nm","Release Date":"2020-01-06","Sockets":["FP6"],"DirectX Support":"12.1","Vulkan Support":"1.3"},"sections":[{"header":"RYZEN 9","members":["Ryzen-9-4900H","Ryzen-9-4900HS"]},{"header":"RYZEN 7","members":["Ryzen-7-4700U","Ryzen-7-4800H","Ryzen-7-4800HS","Ryzen-7-4800U","Ryzen-7-PRO-4750U"]},{"header":"RYZEN 5","members":["Ryzen-5-4500U","Ryzen-5-4600H","Ryzen-5-4600HS","Ryzen-5-4600U","Ryzen-5-PRO-4650U"]},{"header":"RYZEN 3","members":["Ryzen-3-4300U","Ryzen-3-PRO-4450U"]}]},"Richland-M":{"humanName":"Richland Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2013-05","Sockets":["FP2","FS1r2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-5150M","A6-5350M","A6-5357M","A8-5550M","A8-5557M","A10-5750M","A10-5757M"]},{"header":"Low Power SKUs","members":["A4-5145M","A6-5345M","A8-5545M","A10-5745M"]}]},"Trinity-M":{"humanName":"Trinity Mobile","type":"APU Architecture","isPart":false,"topHeader":"SELECT APU:","data":{"Lithography":"32nm","Release Date":"2012-05-12","Sockets":["FP2","FS1r2"],"DirectX Support":"11.0"},"sections":[{"header":"Standard SKUs","members":["A4-4300M","A6-4400M","A8-4500M","A10-4600M"]},{"header":"Low Power SKUs","members":["A4-4355M","A6-4455M","A8-4555M","A10-4655M"]}]},"APUs-MOBILE":{"humanName":"Mobile APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN APUs","members":["Phoenix","Cezanne-M","Renoir-M","Raven-Ridge-M"]},{"header":"A-SERIES APUs","members":["Bristol-Ridge-M","Carrizo-M","Kaveri-M"]}]},"APUs-SERVER":{"humanName":"SERVER APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"OPTERON FAMILIES","members":["Kyoto","X3000 Series"]}]},"APUs-UlTRA-MOBILE":{"humanName":"UlTRA MOBILE APUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"ULTRA MOBILE PLATFORMS","members":["Desna","Ontario","Zacate","Hondo","Kabini","Temash","Beema","Mullins","Carrizo-L","Stoney Ridge"]}]},"K5-PR120":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.090 GHz","TDP":"12.36W","Release Date":"1996-10-07"},"humanName":"K5 PR 120","isPart":true,"type":"CPU"},"K5-PR133":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.100 GHz","TDP":"13.73W","Release Date":"1996-10-07"},"humanName":"K5 PR 133","isPart":true,"type":"CPU"},"K5-PR166":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.116 GHz","TDP":"16.02W","Release Date":"1997-01-06"},"humanName":"K5 PR 166","isPart":true,"type":"CPU"},"5K86":{"humanName":"5K86","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1996-10-07","Lithography":"350 nm","Sockets":[5,7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K5-PR120","K5-PR133","K5-PR150","K5-PR166","K5-PR200"]}]},"9100e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"65 W","Release Date":"2008-03-27"},"humanName":"X4 9100e","isPart":true,"type":"CPU"},"9150e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"65 W","Release Date":"2008-06-01"},"humanName":"X4 9150e","isPart":true,"type":"CPU"},"9350e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","TDP":"65 W","Release Date":"2008-06-01"},"humanName":"X4 9350e","isPart":true,"type":"CPU"},"9450e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"65 W","Release Date":"2008-10"},"humanName":"X4 9450e","isPart":true,"type":"CPU"},"9600B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-28"},"humanName":"X4 9600B","isPart":true,"type":"CPU"},"9600BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2007-11-19","Unlocked":true},"humanName":"X4 9600 Black Edition","isPart":true,"type":"CPU"},"9750B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-08-15"},"humanName":"X4 9750B","isPart":true,"type":"CPU"},"9850B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"95 W","Release Date":"2008-08-15"},"humanName":"X4 9850B","isPart":true,"type":"CPU"},"9850BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"125 W","Release Date":"2008-03-27","Unlocked":true},"humanName":"X4 9850 Black Edition","isPart":true,"type":"CPU"},"9950BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X","790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"125 W","Release Date":"2008-06-01","Unlocked":true},"humanName":"X4 9950 Black Edition","isPart":true,"type":"CPU"},"Agena":{"humanName":"Agena","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-11-19","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["9600BE","9850BE","9950BE"]},{"header":"Standard SKUs","members":[9500,9550,9600,9650,9750,9850]},{"header":"Low Power SKUs","members":["9100e","9150e","9350e","9450e"]},{"header":"Buisness Class SKUs","members":["9600B","9750B","9850B"]}]},"500(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.5 GHz","TDP":"42W","Release Date":"1999-06-23"},"humanName":"Athlon 500 Argon","isPart":true,"type":"CPU"},"550(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.55 GHz","TDP":"46W","Release Date":"1999-06-23"},"humanName":"Athlon 550 Argon","isPart":true,"type":"CPU"},"600(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.6 GHz","TDP":"50W","Release Date":"1999-06-23"},"humanName":"Athlon 600 Argon","isPart":true,"type":"CPU"},"650(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.65 GHz","TDP":"54W","Release Date":"1999-08-09"},"humanName":"Athlon 650 Argon","isPart":true,"type":"CPU"},"700(A)":{"data":{"Architecture":"K7","Lithography":"250 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Base Frequency":"0.70 GHz","TDP":"50W","Release Date":"1999-10-04"},"humanName":"Athlon 700 Argon","isPart":true,"type":"CPU"},"Argon":{"humanName":"Argon","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1999-06-23","Lithography":"250 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["500(A)","550(A)","600(A)","650(A)","700(A)"]}]},"XP-2500-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.833 GHz","TDP":"68.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 2500+ (Barton)","isPart":true,"type":"CPU"},"XP-2600-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.917 GHz","TDP":"68.3 W","Release Date":"2003-09-21"},"humanName":"Athlon XP 2600+ (Barton)","isPart":true,"type":"CPU"},"XP-2800-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.083 GHz","TDP":"68.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 2800+ (Barton)","isPart":true,"type":"CPU"},"XP-3000-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.167 GHz","TDP":"74.3 W","Release Date":"2003-02-10"},"humanName":"Athlon XP 3000+ (Barton)","isPart":true,"type":"CPU"},"XP-3200-BAR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"200 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.200 GHz","TDP":"76.8 W","Release Date":"2003-05-13"},"humanName":"Athlon XP 3200+ (Barton)","isPart":true,"type":"CPU"},"Barton":{"humanName":"Barton","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-02-10","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-2500-BAR","XP-2600-BAR","XP-2800-BAR","XP-3000-BAR","XP-3200-BAR"]}]},"X2-3250E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"22 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-Q4"},"humanName":"X2 3250E Brisbane","isPart":true,"type":"CPU"},"X2-3600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","Release Date":"2007-01"},"humanName":"X2 3600+ Brisbane","isPart":true,"type":"CPU"},"X2-4000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2006-12-5"},"humanName":"X2 4000+ Brisbane","isPart":true,"type":"CPU"},"X2-4200+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2007"},"humanName":"X2 4200+ Brisbane","isPart":true,"type":"CPU"},"X2-4400+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2006-12-05"},"humanName":"X2 4400+ Brisbane","isPart":true,"type":"CPU"},"X2-4450B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-04-28"},"humanName":"X2 4450B Brisbane","isPart":true,"type":"CPU"},"X2-4450E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-04-21"},"humanName":"X2 4450E Brisbane","isPart":true,"type":"CPU"},"X2-4600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz"},"humanName":"X2 4600+ Brisbane","isPart":true,"type":"CPU"},"X2-4800+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2006-12-05"},"humanName":"X2 4800+ Brisbane","isPart":true,"type":"CPU"},"X2-4850B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-08-18"},"humanName":"X2 4850B Brisbane","isPart":true,"type":"CPU"},"X2-4850E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-03-05"},"humanName":"X2 4850E Brisbane","isPart":true,"type":"CPU"},"X2-5000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-12-05"},"humanName":"X2 5000+ Brisbane","isPart":true,"type":"CPU"},"X2-5000+BE-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2007-09-05","Unlocked":true},"humanName":"X2 5000+ Black Edition Brisbane","isPart":true,"type":"CPU"},"X2-5000B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2008-04-28"},"humanName":"X2 5000B Brisbane","isPart":true,"type":"CPU"},"X2-5050E-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2008-10-21"},"humanName":"X2 5050E Brisbane","isPart":true,"type":"CPU"},"X2-5200+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2007-10-08"},"humanName":"X2 5200+ Brisbane","isPart":true,"type":"CPU"},"X2-5200B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"X2 5200B Brisbane","isPart":true,"type":"CPU"},"X2-5400+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-01"},"humanName":"X2 5400+ Brisbane","isPart":true,"type":"CPU"},"X2-5400+BE-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-06","Unlocked":true},"humanName":"X2 5400+ Black Edition Brisbane","isPart":true,"type":"CPU"},"X2-5400B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008-04-28"},"humanName":"X2 5400B Brisbane","isPart":true,"type":"CPU"},"X2-5600+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2008-02"},"humanName":"X2 5600+ Brisbane","isPart":true,"type":"CPU"},"X2-5600B-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Release Date":"2008-08-18"},"humanName":"X2 5600B Brisbane","isPart":true,"type":"CPU"},"X2-5800+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2008-04"},"humanName":"X2 5800+ Brisbane","isPart":true,"type":"CPU"},"X2-6000+-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Release Date":"2008-06"},"humanName":"X2 6000+ Brisbane","isPart":true,"type":"CPU"},"X2-BE-2300-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","Release Date":"2007-06-05"},"humanName":"X2 BE 2300 Brisbane","isPart":true,"type":"CPU"},"X2-BE-2350-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2007-06-05"},"humanName":"X2 BE 2350 Brisbane","isPart":true,"type":"CPU"},"X2-BE-2400-Brisbane":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2008-10-08"},"humanName":"X2 BE 2400 Brisbane","isPart":true,"type":"CPU"},"Brisbane":{"humanName":"Brisbane","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2006-12-05","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Black Edition SKUs","members":["X2-5000+BE(B)","X2-5400+BE(B)"]},{"header":"Standard SKUs","members":["X2-3600+(B)","X2-4000+(B)","X2-4200+(B)","X2-4400+(B)","X2-4600+(B)","X2-4800+(B)","X2-5000+(B)","X2-5200+(B)","X2-5400+(B)","X2-5600+(B)","X2-5800+(B)","X2-6000+(B)"]},{"header":"Low Power SKUs","members":["X2-BE-2300(B)","X2-BE-2350(B)","X2-BE-2400(B)","X2-3250E(B)","X2-4050E(B)","X2-4450E(B)","X2-4850E(B)","X2-5050E(B)"]},{"header":"Businesss Class SKUs","members":["X2-4450B(B)","X2-4850B(B)","X2-5000B(B)","X2-5200B(B)","X2-5400B(B)","X2-5600B(B)"]}]},"FX-4170":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Base Frequency":"4.2 GHz","Boost Frequency":"4.3 GHz","TDP":"125 W","L3 Cache (Total)":"8 MiB","Release Date":"2012-02-25"},"humanName":"FX 4170","isPart":true,"type":"CPU"},"FX-6120":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB","Base Frequency":"3.5 GHz","Boost Frequency":"4.1 GHz","TDP":"95 W","Release Date":"2012"},"humanName":"FX 6120","isPart":true,"type":"CPU"},"FX-8100":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Core Count":8,"Thread Count":8,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"95 W","Release Date":"2011-10-30"},"humanName":"FX 8100","isPart":true,"type":"CPU"},"Bulldozer":{"humanName":"Bulldozer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-10-12","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"OCTACORE","members":["FX-8150","FX-8120","FX-8100"]},{"header":"HEXACORE","members":["FX-6200","FX-6120","FX-6100"]},{"header":"QUAD CORE","members":["FX-4170","FX-4130","FX-4100"]}]},"550BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.1 GHz","Unlocked":true,"Release Date":"2009-06-01"},"humanName":"X2 550 Black Edition","isPart":true,"type":"CPU"},"555BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Unlocked":true,"Release Date":"2010-01-25"},"humanName":"X2 555 Black Edition","isPart":true,"type":"CPU"},"560BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","Unlocked":true,"Release Date":"2010-09-21"},"humanName":"X2 560 Black Edition","isPart":true,"type":"CPU"},"565BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Unlocked":true,"Release Date":"2010-12-07"},"humanName":"X2 565 Black Edition","isPart":true,"type":"CPU"},"570BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Unlocked":true,"Release Date":"2011-05-03"},"humanName":"X2 570 Black Edition","isPart":true,"type":"CPU"},"B53":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2009-10"},"humanName":"X2 B53","isPart":true,"type":"CPU"},"B55":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2009-10"},"humanName":"X2 B55","isPart":true,"type":"CPU"},"B57":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2010-05-11"},"humanName":"X2 B57","isPart":true,"type":"CPU"},"B59":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Release Date":"2011"},"humanName":"X2 B59","isPart":true,"type":"CPU"},"B60":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"6 MiB","TDP":"80 W","Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Release Date":"2011"},"humanName":"X2 B60","isPart":true,"type":"CPU"},"Callisto":{"humanName":"Callisto","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["550BE","555BE","560BE","565BE","570BE"]},{"header":"Standard SKUs","members":[545,550]},{"header":"Business Class SKUs","members":["B53","B55","B57","B59","B60"]}]},"X4-835":{"data":{"Architecture":"Excavator","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-02-02","Max Memory Channels":2,"L2 Cache (Total)":"2 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","TDP":"65 W","AVX/SSE/MMX":"AVX2","FMA4":true,"FMA3":true,"BMI":"BMI2","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","RDRAND"],"VRAM Type":"DDR4","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz"},"humanName":"X4 835","isPart":true,"type":"CPU"},"Castle-Peak":{"humanName":"Castle Peak","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-11-25","Lithography":"7 nm","Sockets":["sTRX4"]},"sections":[{"header":"THREADRIPPER","members":["3960X","3970X","3990X"]}]},"K6-2-266(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.266 GHz","TDP":"14.70W","Release Date":"1998-06-04"},"humanName":"K6-2 266 Chomper","isPart":true,"type":"CPU"},"K6-2-300(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.300 GHz","TDP":"17.20W","Release Date":"1998-06-04"},"humanName":"K6-2 300 Chomper","isPart":true,"type":"CPU"},"K6-2-333(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.333 GHz","TDP":"19W","Release Date":"1998-06-04"},"humanName":"K6-2 333 Chomper","isPart":true,"type":"CPU"},"K6-2-350(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.350 GHz","TDP":"19.95W","Release Date":"1998-10-15"},"humanName":"K6-2 350 Chomper","isPart":true,"type":"CPU"},"K6-2-366(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.366 GHz","TDP":"20.80W","Release Date":"1998-10-15"},"humanName":"K6-2 366 Chomper","isPart":true,"type":"CPU"},"K6-2-380(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.380 GHz","TDP":"20.80W","Release Date":"1998-10-15"},"humanName":"K6-2 380 Chomper","isPart":true,"type":"CPU"},"K6-2-400(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.400 GHz","TDP":"22.70W","Release Date":"1998-10-15"},"humanName":"K6-2 400 Chomper","isPart":true,"type":"CPU"},"K6-2-450(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.450 GHz","TDP":"28.40W","Release Date":"1999-03-11"},"humanName":"K6-2 450 Chomper","isPart":true,"type":"CPU"},"K6-2-475(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.475 GHz","TDP":"29.60W","Release Date":"1999-04-15"},"humanName":"K6-2 475 Chomper","isPart":true,"type":"CPU"},"K6-2-500(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.500 GHz","TDP":"20.7W","Release Date":"1999-03-11"},"humanName":"K6-2 500 Chomper","isPart":true,"type":"CPU"},"K6-2-533(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.533 GHz","TDP":"20.7W","Release Date":"1999-03-11"},"humanName":"K6-2 533 Chomper","isPart":true,"type":"CPU"},"K6-2-550(C)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.550 GHz","TDP":"25.0W","Release Date":"2000-02-22"},"humanName":"K6-2 550 Chomper","isPart":true,"type":"CPU"},"Chomper":{"humanName":"Chomper","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1998-06-04","Lithography":"250 nm","Sockets":["Super 7"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-2-200(C)","K6-2-233(C)","K6-2-266(C)","K6-2-300(C)","K6-2-333(C)","K6-2-350(C)","K6-2-366(C)","K6-2-380(C)","K6-2-400(C)","K6-2-427(C)","K6-2-450(C)","K6-2-475(C)","K6-2-500(C)","K6-2-533(C)","K6-2-550(C)"]}]},"2800+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"2800+ ClawHammer","isPart":true,"type":"CPU"},"3000+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3000+ ClawHammer","isPart":true,"type":"CPU"},"3200+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3200+ ClawHammer","isPart":true,"type":"CPU"},"3200+(C-1Mib)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ ClawHammer 1Mib L2","isPart":true,"type":"CPU"},"3400+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ ClawHammer","isPart":true,"type":"CPU"},"3400+(C-1Mib)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ ClawHammer 1Mib L2","isPart":true,"type":"CPU"},"3500+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ ClawHammer","isPart":true,"type":"CPU"},"3600+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3600+ ClawHammer","isPart":true,"type":"CPU"},"3700+(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3700+ ClawHammer","isPart":true,"type":"CPU"},"3800+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ ClawHammer","isPart":true,"type":"CPU"},"4000+(C-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"4000+ ClawHammer","isPart":true,"type":"CPU"},"FX-53(C)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!","X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz"},"humanName":"FX-53 ClawHammer","isPart":true,"type":"CPU"},"ClawHammer":{"humanName":"ClawHammer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-23","Lithography":"130 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["2800+(C)","3000+(C)","3200+(C)","3200+(C-1MiB)","3400+(C)","3400+(C-1MiB)","3600+(C)","3700+(C)"]},{"header":"Socket 939 SKUs","members":["3500+(C-939)","3800+(C-939)","4000+(C-939)"]},{"header":"FX SKUs","members":["FX-53(C)","FX-55(C)"]}]},"Colfax":{"humanName":"Colfax","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-08-13","Lithography":"12 nm","Sockets":["TR4"]},"sections":[{"header":"THREADRIPPER","members":["2990WX","2970WX","2950X","2920X"]}]},"900e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X2 900e","isPart":true,"type":"CPU"},"905e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X4 905e","isPart":true,"type":"CPU"},"910e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2010-01-25"},"humanName":"X4 910e","isPart":true,"type":"CPU"},"940BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-01-08"},"humanName":"X4 940 Black Edition","isPart":true,"type":"CPU"},"955BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-04-23"},"humanName":"X4 955 Black Edition","isPart":true,"type":"CPU"},"965BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2009-08-13"},"humanName":"X4 965 Black Edition","isPart":true,"type":"CPU"},"970BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.5 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2010-09-21"},"humanName":"X4 970 Black Edition","isPart":true,"type":"CPU"},"975BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2011-01-04"},"humanName":"X4 975 Black Edition","isPart":true,"type":"CPU"},"980BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.7 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"125 W","Unlocked":true,"Release Date":"2011-05-03"},"humanName":"X4 980 Black Edition","isPart":true,"type":"CPU"},"B93":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-10"},"humanName":"X4 B93","isPart":true,"type":"CPU"},"B95":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2009-10"},"humanName":"X4 B95","isPart":true,"type":"CPU"},"B97":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X4 B97","isPart":true,"type":"CPU"},"B99":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.3 GHz","Socket":"AM3,AM2+","L3 Cache (Total)":"6 MiB","TDP":"95 W","Release Date":"2011 "},"humanName":"X4 B99","isPart":true,"type":"CPU"},"Deneb":{"humanName":"Deneb","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-01-08","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["940BE","955BE","965BE","970BE","975BE","980BE"]},{"header":"Standard SKUs","members":[805,810,820,830,910,920,925,945,955]},{"header":"Low Power SKUs","members":["900e","905e","910e"]},{"header":"Business Class SKUs","members":["B93","B95","B97","B99"]}]},"700e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Socket":"AM3,AM2+","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X3 700e","isPart":true,"type":"CPU"},"705e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Socket":"AM3,AM2+","TDP":"65 W","Release Date":"2009-06-02"},"humanName":"X3 705e","isPart":true,"type":"CPU"},"715BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM2+","TDP":"95 W","Unlocked":true},"humanName":"X3 715 Black Edition","isPart":true,"type":"CPU"},"720BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W","Unlocked":true},"humanName":"X3 720 Black Edition","isPart":true,"type":"CPU"},"740BE":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","TDP":"95 W","Unlocked":true,"Release Date":"2009-09"},"humanName":"X3 740 Black Edition","isPart":true,"type":"CPU"},"B73":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-10"},"humanName":"X3 B73","isPart":true,"type":"CPU"},"B75":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2009-10"},"humanName":"X3 B75","isPart":true,"type":"CPU"},"B77":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"6 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Socket":"AM3,AM2+","TDP":"95 W","Release Date":"2010-05-11"},"humanName":"X3 B77","isPart":true,"type":"CPU"},"Heka":{"humanName":"Heka","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-02-09","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["715BE","720BE","740BE"]},{"header":"Standard SKUs","members":[710,720]},{"header":"Low Power SKUs","members":["700e","705e"]},{"header":"Business Class SKUs","members":["B73","B75","B77"]}]},"450s":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Core Count":2,"Thread Count":2,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"1 MiB","Release Date":"2016-03-01","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W"},"humanName":"X2 450","isPart":true,"type":"CPU"},"840P":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":false,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 840 (2016)","isPart":true,"type":"CPU"},"840R":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":false,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","TDP":"65 W"},"humanName":"X4 840 (Piledriver)","isPart":true,"type":"CPU"},"860K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.7 GHz","Boost Frequency":"4.0 GHz","TDP":"95 W"},"humanName":"X4 860K","isPart":true,"type":"CPU"},"870K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"1866 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"3.9 GHz","Boost Frequency":"4.1 GHz","TDP":"95 W"},"humanName":"X4 870K","isPart":true,"type":"CPU"},"880K":{"data":{"Architecture":"Steamroller","Lithography":"28 nm","Socket":"FM2+","Unlocked":true,"Release Date":"2016-03-01","Max Memory Channels":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Instruction)":"128 KiB","L1 Cache (Data)":"64 KiB","AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL","X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"VRAM Type":"DDR3","Crossfire Support":"No","Core Count":4,"Thread Count":4,"Max Memory Frequency":"2133 MHz","Compatible Chipsets":["A88X","A78","A68H","A58"],"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","TDP":"95 W"},"humanName":"X4 880K","isPart":true,"type":"CPU"},"6500BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","Release Date":"2009-09-08","Unlocked":true},"humanName":"X2 6500 Black Edition","isPart":true,"type":"CPU"},"7750BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","Release Date":"2008-12-15","Unlocked":true},"humanName":"X2 7750 Black Edition","isPart":true,"type":"CPU"},"7850BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","TDP":"95 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2009-04-28","Unlocked":true},"humanName":"X2 7850 Black Edition","isPart":true,"type":"CPU"},"Kuma":{"humanName":"Kuma","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-09-08","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["6500BE","7750BE","7850BE"]},{"header":"Standard SKUs","members":[7450,7550]}]},"2650E":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"15 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.6 GHz","Release Date":"2008-Q4"},"humanName":"2650E","isPart":true,"type":"CPU"},"2850E":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"22 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2008-Q4"},"humanName":"2850E","isPart":true,"type":"CPU"},"3500+-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2007-02-20"},"humanName":"3500+ Lima","isPart":true,"type":"CPU"},"3800+-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2007-02-20"},"humanName":"3800+ Lima","isPart":true,"type":"CPU"},"LE-1640-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"LE-1640 Lima","isPart":true,"type":"CPU"},"LE-1640B-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Release Date":"2008-04-28"},"humanName":"LE-1640B Lima","isPart":true,"type":"CPU"},"LE-1660-Lima":{"data":{"Architecture":"K8","Lithography":"65 nm","Stepping":"G2","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2008"},"humanName":"LE-1660 Lima","isPart":true,"type":"CPU"},"Lima":{"humanName":"Lima","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-02-20","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["2650E","2850E","3500+(L)","3800+(L)","LE-1640(L)","LE-1640B(L)","LE-1660(L)"]}]},"K6-266(L)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1998-03-05","Base Frequency":"0.266 GHz","TDP":"14.55W"},"humanName":"K6 266 Little Foot","isPart":true,"type":"CPU"},"K6-300(L)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1998-03-05","Base Frequency":"0.300 GHz","TDP":"15.4W"},"humanName":"K6 300 Little Foot","isPart":true,"type":"CPU"},"Little-Foot":{"humanName":"Little Foot","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1998-03-05","Lithography":"250 nm","Sockets":[7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-266(L)","K6-300(L)"]}]},"X2-221":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"2.8 GHz","TDP":"65 W","Release Date":"2012-Q1"},"isPart":true,"type":"CPU","humanName":"X2 221"},"X4-638":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"2.7 GHz","TDP":"65 W","Release Date":"2012-02-08"},"isPart":true,"type":"CPU","humanName":"X4 638"},"X4-651K":{"data":{"Architecture":"K10","Lithography":"32 nm","Socket":"FM1","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"4 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["A75","A55"],"Base Frequency":"3.0 GHz","TDP":"100 W","Release Date":"2012-Q1","Unlocked":true},"isPart":true,"type":"CPU","humanName":"X4 651K"},"Llano":{"humanName":"Llano","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-Q2 | 2012-Q1","Lithography":"32 nm","Sockets":["FM1"],"Foundry":"Global Foundries"},"sections":[{"header":"3rd GEN. QUAD CORE","members":["X4-651K","X4-651","X4-641","X4-638","X4-631","X2-221"]}]},"3200+(M)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"3200+ Manchester","isPart":true,"type":"CPU"},"3500+(M)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-08-01"},"humanName":"3500+ Manchester","isPart":true,"type":"CPU"},"X2-3800+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!","X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"X2 3800+ Manchester","isPart":true,"type":"CPU"},"X2-4200+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4200+ Manchester","isPart":true,"type":"CPU"},"X2-4600+-Manchester":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"110 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4600+ Manchester","isPart":true,"type":"CPU"},"Manchester":{"humanName":"Manchester","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-05-31","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3600+(M)","X2-3800+(M)","X2-4200+(M)","X2-4600+(M)"]}]},"Ryzen-5-3500x":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"AM4","Release Date":"2019-07-07","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":2,"L3 Cache (Total)":"32 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X570","B550","A520","X470","B450"],"Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB"},"humanName":"Ryzen 5 3500x","isPart":true,"type":"CPU"},"Matisse":{"humanName":"Matisse","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-07-07","Lithography":"7 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 9","members":["Ryzen-9-3950X","Ryzen-9-3900X","Ryzen-9-PRO-3900","Ryzen-9-3900XT","Ryzen-9-3900"]},{"header":"RYZEN 7","members":["Ryzen-7-3800X","Ryzen-7-3700X","Ryzen-7-3800XT","Ryzen-7-PRO-3700"]},{"header":"RYZEN 5","members":["Ryzen-5-3600X","Ryzen-5-3600","Ryzen-5-3500","Ryzen-5-3500x","Ryzen-5-PRO-3600"]}]},"K6-166(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.166 GHz","TDP":"17.2W"},"humanName":"K6 166 Model-6","isPart":true,"type":"CPU"},"K6-200(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.200 GHz","TDP":"20.0W"},"humanName":"K6 200 Model-6","isPart":true,"type":"CPU"},"K6-233(M6)":{"data":{"Architecture":"K6","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Release Date":"1997-04-02","Base Frequency":"0.233 GHz","TDP":"28.3W"},"humanName":"K6 233 Model-6","isPart":true,"type":"CPU"},"Model-6":{"humanName":"Model 6","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1997-04-02","Lithography":"350 nm","Sockets":[7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-166(M6)","K6-200(M6)","K6-233(M6)"]}]},"2800+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"2800+ Newcastle","isPart":true,"type":"CPU"},"3000+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Newcastle","isPart":true,"type":"CPU"},"3000+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3000+ Newcastle","isPart":true,"type":"CPU"},"3200+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Newcastle","isPart":true,"type":"CPU"},"3200+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3200+ Newcastle","isPart":true,"type":"CPU"},"3300+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"256 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3300+ Newcastle","isPart":true,"type":"CPU"},"3400+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ Newcastle","isPart":true,"type":"CPU"},"3400+(N)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ Newcastle","isPart":true,"type":"CPU"},"3500+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Newcastle","isPart":true,"type":"CPU"},"3800+(N-939)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"CG","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ Newcastle","isPart":true,"type":"CPU"},"Newcastle":{"humanName":"Newcastle","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-12-15","Lithography":"130 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["2800+(N)","3000+(N)","3200+(N)","3300+(N)","3400+(N)"]},{"header":"Socket 939 SKUs","members":["3000+(N-939)","3200+(N-939)","3400+(N-939)","3500+(N-939)","3800+(N-939)"]}]},"1000(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"1.0 GHz","TDP":"65W","Release Date":"2000-03-06"},"humanName":"Athlon 1000 Orion","isPart":true,"type":"CPU"},"900(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.9 GHz","TDP":"60W","Release Date":"2000-03-06"},"humanName":"Athlon 900 Orion","isPart":true,"type":"CPU"},"950(O)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.95 GHz","TDP":"62W","Release Date":"2000-03-06"},"humanName":"Athlon 950 Orion","isPart":true,"type":"CPU"},"Orion":{"humanName":"Orion","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-03-06","Lithography":"180 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["900(O)","950(O)","1000(O)"]}]},"3000+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","Release Date":"2006-05-23"},"humanName":"3000+ Orleans","isPart":true,"type":"CPU"},"3200+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"3200+ Orleans","isPart":true,"type":"CPU"},"3500+(OUL)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"35W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"3500+ Orleans Ultra Low Power","isPart":true,"type":"CPU"},"3500+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"3500+ Orleans","isPart":true,"type":"CPU"},"3800+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"3800+ Orleans","isPart":true,"type":"CPU"},"4000+(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 KiB","Socket":"AM2","TDP":"62W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2007-02-20"},"humanName":"4000+ Orleans","isPart":true,"type":"CPU"},"LE-1600(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2007-10-08"},"humanName":"LE-1600 Orleans","isPart":true,"type":"CPU"},"LE-1620(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2007-10-08"},"humanName":"LE-1620 Orleans","isPart":true,"type":"CPU"},"LE-1640(O)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"45W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","Release Date":"2008-01-07"},"humanName":"LE-1640 Orleans","isPart":true,"type":"CPU"},"Orleans":{"humanName":"Orleans","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-02-20","Lithography":"65 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3000+(O)","3200+(O)","3500+(O)","3800+(O)","4000+(O)"]},{"header":"Low Power SKUs","members":["LE-1600(O)","LE-1620(O)","LE-1640(O)","3500+(OUL)"]}]},"XP-1500-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.333 GHz","TDP":"60 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1500+ (Palomino)","isPart":true,"type":"CPU"},"XP-1600-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.4 GHz","TDP":"62.8 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1600+ (Palomino)","isPart":true,"type":"CPU"},"XP-1700-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.467 GHz","TDP":"64 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1700+ (Palomino)","isPart":true,"type":"CPU"},"XP-1800-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.533 GHz","TDP":"66 W","Release Date":"2001-10-09"},"humanName":"Athlon XP 1800+ (Palomino)","isPart":true,"type":"CPU"},"XP-1900-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.6 GHz","TDP":"68 W","Release Date":"2001-11-05"},"humanName":"Athlon XP 1900+ (Palomino)","isPart":true,"type":"CPU"},"XP-2000-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.667 GHz","TDP":"70 W","Release Date":"2002-01-07"},"humanName":"Athlon XP 2000+ (Palomino)","isPart":true,"type":"CPU"},"XP-2100-PAL":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A5","Base Frequency":"1.733 GHz","TDP":"72 W","Release Date":"2002-03-13"},"humanName":"Athlon XP 2100+ (Palomino)","isPart":true,"type":"CPU"},"Palomino":{"humanName":"Palomino","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2001-10-09","Lithography":"180 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-1500-PAL","XP-1600-PAL","XP-1700-PAL","XP-1800-PAL","XP-1900-PAL","XP-2000-PAL","XP-2100-PAL"]}]},"FX-8320E":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.2 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8320E"},"FX-8370E":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","Unlocked":true,"Memory Type":"DDR3","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["970","980G","990X","990FX"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"8 MiB","TDP":"95 W","Release Date":"2014-09-02","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"FX 8370E"},"Piledriver":{"humanName":"Piledriver","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-08-12","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"HIGH TDP OCTACORE","members":["FX-9590","FX-9370"]},{"header":"OCTACORE","members":["FX-8370","FX-8350","FX-8320","FX-8310","FX-8300"]},{"header":"LOW TDP OCTACORE","members":["FX-8370E","FX-8320E"]},{"header":"HEXACORE","members":["FX-6350","FX-6300"]},{"header":"QUAD CORE","members":["FX-4350","FX-4300"]}]},"Ryzen-5-2600E":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-10","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"4.0 GHz","TDP":"45 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 2600E","isPart":true,"type":"CPU"},"Ryzen-5-PRO-2600":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":6,"Thread Count":12,"L2 Cache (Total)":"3 MiB","Base Frequency":"3.4 GHz","Boost Frequency":"3.9 GHz","TDP":"65 W","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Ryzen 5 PRO 2600","isPart":true,"type":"CPU"},"Ryzen-7-2700E":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-10","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"4.0 GHz","TDP":"45 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 2700E","isPart":true,"type":"CPU"},"Ryzen-7-PRO-2700":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"4.1 GHz","TDP":"65 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 PRO 2700","isPart":true,"type":"CPU"},"Ryzen-7-PRO-2700X":{"data":{"Architecture":"Zen+","Lithography":"12 nm","Socket":"AM4","Unlocked":true,"Memory Type":"DDR4","Max Memory Frequency":"2933 MHz","Max Memory Channels":2,"L3 Cache (Total)":"16 MiB","XFR Support":true,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["X470","B470","A420","X370","B350","A320","X300","A300"],"Steppings":"B1","Release Date":"2018-09-06","Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","Base Frequency":"3.6 GHz","Boost Frequency":"4.1 GHz","TDP":"105 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Ryzen 7 PRO 2700X","isPart":true,"type":"CPU"},"Pinnacle-Ridge":{"humanName":"Pinnacle Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-04-19","Lithography":"12 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 7","members":["Ryzen-7-PRO-2700X","Ryzen-7-2700X","Ryzen-7-PRO-2700","Ryzen-7-2700","Ryzen-7-2700E"]},{"header":"RYZEN 5","members":["Ryzen-5-2600X","Ryzen-5-PRO-2600","Ryzen-5-2600","Ryzen-5-2600E","Ryzen-5-2500X"]},{"header":"RYZEN 3","members":["Ryzen-3-2300X"]}]},"550(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.55 GHz","TDP":"31W","Release Date":"1999-11-29"},"humanName":"Athlon 550 Pluto","isPart":true,"type":"CPU"},"600(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.6 GHz","TDP":"34W","Release Date":"1999-11-29"},"humanName":"Athlon 600 Pluto","isPart":true,"type":"CPU"},"650(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.65 GHz","TDP":"36W","Release Date":"1999-11-29"},"humanName":"Athlon 650 Pluto","isPart":true,"type":"CPU"},"700(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.7 GHz","TDP":"39W","Release Date":"1999-11-29"},"humanName":"Athlon 700 Pluto","isPart":true,"type":"CPU"},"750(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.75 GHz","TDP":"40W","Release Date":"1999-11-29"},"humanName":"Athlon 750 Pluto","isPart":true,"type":"CPU"},"800(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.8 GHz","TDP":"48W","Release Date":"2000-01-06"},"humanName":"Athlon 800 Pluto","isPart":true,"type":"CPU"},"850(P)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"512 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Base Frequency":"0.85 GHz","TDP":"50W","Release Date":"2000-02-11"},"humanName":"Athlon 850 Pluto","isPart":true,"type":"CPU"},"Pluto":{"humanName":"Pluto","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-03-06","Lithography":"180 nm","Sockets":["Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["550(P)","600(P)","650(P)","700(P)","750(P)","800(P)","850(P)"]}]},"600e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X4 600e","isPart":true,"type":"CPU"},"605e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X4 605e","isPart":true,"type":"CPU"},"610e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"45 W","Release Date":"2010-05-11"},"humanName":"X4 610e","isPart":true,"type":"CPU"},"615e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"45 W","Release Date":"2010-09-21"},"humanName":"X4 615e","isPart":true,"type":"CPU"},"620e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","Release Date":"2011-05-03"},"humanName":"X4 620e","isPart":true,"type":"CPU"},"Propus-Athlon":{"humanName":"Propus","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[620,630,635,640,645,650]},{"header":"Low Power SKUs","members":["600e","605e","610e","615e","620e"]}]},"Propus":{"humanName":"Propus","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-01-04","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[840,850]}]},"400e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X3 400e","isPart":true,"type":"CPU"},"405e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"45 W","Release Date":"2009-10-20"},"humanName":"X3 405e","isPart":true,"type":"CPU"},"415e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.5 GHz","TDP":"45 W","Release Date":"2010-05-11"},"humanName":"X3 415e","isPart":true,"type":"CPU"},"420e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","Release Date":"2009-09-21"},"humanName":"X3 420e","isPart":true,"type":"CPU"},"425e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"45 W","Release Date":"2011-05-03"},"humanName":"X3 425e","isPart":true,"type":"CPU"},"Rana":{"humanName":"Rana","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[425,435,440,445,450,455,460]},{"header":"Low Power SKUs","members":["400e","405e","415e","420e","425e"]}]},"Raphael":{"humanName":"Raphael","type":"CPU Architecture","isPart":false,"topHeader":"SELECT CPU:","data":{"Release Date":"2022-09-27","Lithography":"5 nm","Sockets":["AM5"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-7950X3D","Ryzen-9-7950X","Ryzen-9-7900X3D","Ryzen-9-7900X","Ryzen-9-7900"]},{"header":"Ryzen 7","members":["Ryzen-7-7800X3D","Ryzen-7-7700X","Ryzen-7-7700"]},{"header":"Ryzen 5","members":["Ryzen-5-7600X","Ryzen-5-7600"]}]},"210e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","TDP":"45 W","L2 Cache (Total)":"1 MiB","Release Date":"2010-09-21"},"humanName":"X2 210e","isPart":true,"type":"CPU"},"235e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 235e","isPart":true,"type":"CPU"},"240e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 240e","isPart":true,"type":"CPU"},"245e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 245e","isPart":true,"type":"CPU"},"250e":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"45 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 250e","isPart":true,"type":"CPU"},"250u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.6 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 250u","isPart":true,"type":"CPU"},"260u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 260u","isPart":true,"type":"CPU"},"270u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","TDP":"25 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-09-21"},"humanName":"X2 270u","isPart":true,"type":"CPU"},"B22":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 B22","isPart":true,"type":"CPU"},"B24":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2009-10-20"},"humanName":"X2 B24","isPart":true,"type":"CPU"},"B26":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-05-11"},"humanName":"X2 B26","isPart":true,"type":"CPU"},"B28":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.4 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2010-12-07"},"humanName":"X2 B28","isPart":true,"type":"CPU"},"B30":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":2,"Thread Count":2,"Socket":"AM3,AM2+","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.6 GHz","TDP":"65 W","L2 Cache (Total)":"2 MiB","Release Date":"2011"},"humanName":"X2 B30","isPart":true,"type":"CPU"},"Regor-Athlon":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-02","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[215,220,240,245,250,255,260,265,270,280]},{"header":"Low Power SKUs","members":["210e","235e","240e","245e","250e"]},{"header":"Ultra Low Power SKUs","members":["250u","260u","270u"]},{"header":"Business Class SKUs","members":["B22","B24","B26","B28","B30"]}]},"Regor-Sempron":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"Q3 2010","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[180,190]}]},"Regor":{"humanName":"Regor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[511,521]}]},"370K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","TDP":"65 W","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"4.0 GHz","Boost Frequency":"4.2 GHz","Unlocked":true},"humanName":"X2 370K","isPart":true,"type":"CPU"},"760K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","Core Count":4,"Thread Count":4,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","L2 Cache (Total)":"4 MiB","Release Date":"2013-06","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Base Frequency":"3.8 GHz","Boost Frequency":"4.1 GHz","TDP":"100 W","Unlocked":true},"humanName":"X4 760K","isPart":true,"type":"CPU"},"Richland-Sempron":{"humanName":"Richland","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2013-06","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[240]}]},"Richland":{"humanName":"Richland","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2013-06","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[750,"760K",350,"370K"]}]},"K5-PR100":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.100 GHz","TDP":"15.49W","Release Date":"1996-06-17"},"humanName":"K5 PR 100","isPart":true,"type":"CPU"},"K5-PR75":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.075 GHz","TDP":"11.16W","Release Date":"1996-03-27"},"humanName":"K5 PR 75","isPart":true,"type":"CPU"},"K5-PR90":{"data":{"Architecture":"K5","Lithography":"350 nm","Socket":"7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"8 KiB","L1 Cache (Instruction)":"16 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"Base Frequency":"0.090 GHz","TDP":"13.93W","Release Date":"1996-03-27"},"humanName":"K5 PR 90","isPart":true,"type":"CPU"},"SSA5":{"humanName":"SSA5","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1996-03-27","Lithography":"350 nm","Sockets":[5,7],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K5-PR75","K5-PR90","K5-PR100"]}]},"3500+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ San Diego","isPart":true,"type":"CPU"},"3700+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3700+ San Diego","isPart":true,"type":"CPU"},"4000+(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"4000+ San Diego","isPart":true,"type":"CPU"},"FX-55(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"104W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz"},"humanName":"FX-55 San-Diego","isPart":true,"type":"CPU"},"FX-57(S)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E4","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"104W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz"},"humanName":"FX-57 San-Diego","isPart":true,"type":"CPU"},"San-Diego":{"humanName":"San Diego","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2004-05-04","Lithography":"90 nm","Sockets":["939"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3500+(S)","3700+(S)","4000+(S)","FX-55(S)","FX-57(S)"]}]},"160u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","TDP":"20 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.8 GHz","Release Date":"2009-10-20"},"humanName":"160u","isPart":true,"type":"CPU"},"170u":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","TDP":"20 W","Socket":"AM3,AM2+","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2010-05-11"},"humanName":"170u","isPart":true,"type":"CPU"},"Sargas-Sempron":{"humanName":"Sargas","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-07","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Standard SKUs","members":[130,140,145,150]}]},"Sargas":{"humanName":"Sargas","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-10-20","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Ultra Low Power SKUs","members":["160u","170u"]}]},"K6-III-400(S)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.400 GHz","TDP":"18.1W","Release Date":"1999-02-26"},"humanName":"K6-III 400 Sharptooth","isPart":true,"type":"CPU"},"K6-III-450(S)":{"data":{"Architecture":"K6","Lithography":"250 nm","Socket":"Super 7","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"32 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"MMX","Other Extensions":["3DNow!"],"Base Frequency":"0.450 GHz","TDP":"20.2W","Release Date":"1999-05-13"},"humanName":"K6-III 450 Sharptooth","isPart":true,"type":"CPU"},"Sharptooth":{"humanName":"Sharptooth","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"1999-02-22","Lithography":"250 nm","Sockets":["Super 7"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["K6-III-333(S)","K6-III-400(S)","K6-III-450(S)"]}]},"FX-51(S)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"940'","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"FX-51 SlegeHammer","isPart":true,"type":"CPU"},"FX-53(S)":{"data":{"Architecture":"K8","Lithography":"130 nm","Stepping":"C0","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1024 KiB","Socket":"940'","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE2","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"FX-53 SlegeHammer","isPart":true,"type":"CPU"},"SledgeHammer":{"humanName":"SledgeHammer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-23","Lithography":"130 nm","Sockets":[940],"Foundry":"AMD Foundries"},"sections":[{"header":"FX SKUs","members":["FX-51(S)","FX-53(S)"]}]},"Summit-Ridge":{"humanName":"Summit Ridge","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-03-02","Lithography":"14 nm","Sockets":["AM4"]},"sections":[{"header":"RYZEN 7","members":["Ryzen-7-1800X","Ryzen-7-1700X","Ryzen-7-1700"]},{"header":"RYZEN 5","members":["Ryzen-5-1600X","Ryzen-5-1600","Ryzen-5-1500X","Ryzen-5-1400"]},{"header":"RYZEN 3","members":["Ryzen-3-1300X","Ryzen-3-1200"]}]},"XP-1600-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"1.4 GHz","TDP":"48.5 W","Release Date":"2002-Q4"},"humanName":"Athlon XP 1600+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1700-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.467 GHz","TDP":"49.5 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1700+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1800-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.533 GHz","TDP":"51 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1800+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-1900-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.6 GHz","TDP":"52.5 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 1900+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2000-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.667 GHz","TDP":"60.3 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2000+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2100-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.733 GHz","TDP":"62.1 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2100+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2200-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.8 GHz","TDP":"67.9 W","Release Date":"2002-06-10"},"humanName":"Athlon XP 2200+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2400-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.0 GHz","TDP":"65.3 W","Release Date":"2002-08-21"},"humanName":"Athlon XP 2400+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2600-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.133 GHz","TDP":"68.3 W","Release Date":"2002-08-21"},"humanName":"Athlon XP 2600+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2700-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.167 GHz","TDP":"68.3 W","Release Date":"2002-10-01"},"humanName":"Athlon XP 2700+ (Thoroughbred)","isPart":true,"type":"CPU"},"XP-2800-TBR":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"166 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"B","Base Frequency":"2.250 GHz","TDP":"74.3 W","Release Date":"2002-10-01"},"humanName":"Athlon XP 2800+ (Thoroughbred)","isPart":true,"type":"CPU"},"Thoroughbred":{"humanName":"Thoroughbred","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2002-06-10","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-1600-TBR","XP-1700-TBR","XP-1800-TBR","XP-1900-TBR","XP-2000-TBR","XP-2100-TBR","XP-2200-TBR","XP-2400-TBR","XP-2600-TBR","XP-2700-TBR","XP-2800-TBR"]}]},"XP-2000-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.667 GHz","TDP":"60.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2000+ (Thorton)","isPart":true,"type":"CPU"},"XP-2200-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"1.8 GHz","TDP":"62.8 W","Release Date":"2003-09"},"humanName":"Athlon XP 2200+ (Thorton)","isPart":true,"type":"CPU"},"XP-2400-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.0 GHz","TDP":"68.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2400+ (Thorton)","isPart":true,"type":"CPU"},"XP-2600-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.133 GHz","TDP":"68.3 W","Release Date":"2003-09"},"humanName":"Athlon XP 2600+ (Thorton)","isPart":true,"type":"CPU"},"XP-3100-THT":{"data":{"Architecture":"K7","Lithography":"130 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"200 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE","Other Extensions":["3DNow!","MMX"],"Compatible Chipsets":["AMD-760"],"Steppings":"A","Base Frequency":"2.2 GHz","TDP":"68.3 W","Release Date":"2003-12"},"humanName":"Athlon XP 3100+ (Thorton)","isPart":true,"type":"CPU"},"Thorton":{"humanName":"Thorton","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2003-09-01","Lithography":"130 nm","Sockets":["A"]},"sections":[{"header":"Standard SKUs","members":["XP-2000-THT","XP-2200-THT","XP-2400-THT","XP-2600-THT","XP-3100-THT"]}]},"1065T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":6,"Thread Count":6,"L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","TDP":"95 W","Release Date":"2010-11-07"},"humanName":"X6 1065T","isPart":true,"type":"CPU"},"Thuban":{"humanName":"Thuban","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-04-27","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["1075TBE","1090TBE","1100TBE"]},{"header":"Standard SKUs","members":["1035T","1045T","1055T","1065T","1075T"]}]},"1000B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!","E3DNow!"],"Compatible Chipsets":["AMD-760","AMD-760"],"Steppings":"A B","Base Frequency":"1.1 GHz","TDP":"63W","Release Date":"2000-08-14"},"humanName":"Athlon 1000B Thunderbird","isPart":true,"type":"CPU"},"1000C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.0 GHz","TDP":"54W","Release Date":"2000-10-31"},"humanName":"Athlon 1000C Thunderbird","isPart":true,"type":"CPU"},"1133(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.133 GHz","TDP":"66W","Release Date":"2000-08-31"},"humanName":"Athlon 1133 Thunderbird","isPart":true,"type":"CPU"},"1200B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.2 GHz","TDP":"66W","Release Date":"2000-10-17"},"humanName":"Athlon 1000B Thunderbird","isPart":true,"type":"CPU"},"1200C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.2 GHz","TDP":"54W","Release Date":"2000-10-31"},"humanName":"Athlon 1200C Thunderbird","isPart":true,"type":"CPU"},"1266(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.266 GHz","TDP":"66W"},"humanName":"Athlon 1266 Thunderbird","isPart":true,"type":"CPU"},"1300(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.3 GHz","TDP":"68W","Release Date":"2001-03-21"},"humanName":"Athlon 1300 Thunderbird","isPart":true,"type":"CPU"},"1333(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.333 GHz","TDP":"70W","Release Date":"2001-03-21"},"humanName":"Athlon 1333 Thunderbird","isPart":true,"type":"CPU"},"1400B(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.4 GHz","TDP":"72W","Release Date":"2001-06-06"},"humanName":"Athlon 1400B Thunderbird","isPart":true,"type":"CPU"},"1400C(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"1.4 GHz","TDP":"72W","Release Date":"2001-06-06"},"humanName":"Athlon 1400C Thunderbird","isPart":true,"type":"CPU"},"600(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.6 GHz","TDP":"38W","Release Date":"2000-06-05"},"humanName":"Athlon 600 Thunderbird","isPart":true,"type":"CPU"},"650(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.65 GHz","TDP":"38W","Release Date":"2000-06-05"},"humanName":"Athlon 650 Thunderbird","isPart":true,"type":"CPU"},"700(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.7 GHz","TDP":"40W","Release Date":"2000-06-05"},"humanName":"Athlon 700 Thunderbird","isPart":true,"type":"CPU"},"750(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.75 GHz","TDP":"43W","Release Date":"2000-06-05"},"humanName":"Athlon 750 Thunderbird","isPart":true,"type":"CPU"},"800(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.8 GHz","TDP":"45W","Release Date":"2000-06-05"},"humanName":"Athlon 800 Thunderbird","isPart":true,"type":"CPU"},"850(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.85 GHz","TDP":"47W","Release Date":"2000-06-05"},"humanName":"Athlon 850 Thunderbird","isPart":true,"type":"CPU"},"900(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.9 GHz","TDP":"50W","Release Date":"2000-06-05"},"humanName":"Athlon 900 Thunderbird","isPart":true,"type":"CPU"},"950(T)":{"data":{"Architecture":"K7","Lithography":"180 nm","Socket":"A, Slot A","Unlocked":false,"Core Count":1,"Thread Count":1,"L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","L2 Cache (Total)":"256 KiB","Max Memory Frequency":"133 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"MMX","Other Extensions":["E3DNow!"],"Compatible Chipsets":["AMD-760"],"Steppings":"A B","Base Frequency":"0.95 GHz","TDP":"52W","Release Date":"2000-06-05"},"humanName":"Athlon 950 Thunderbird","isPart":true,"type":"CPU"},"Thunderbird":{"humanName":"Thunderbird","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2000-06-05","Lithography":"180 nm","Sockets":["A","Slot A"],"Foundry":"AMD Foundries"},"sections":[{"header":"200MHZ FSB SKUs","members":["600(T)","650(T)","700(T)","750(T)","800(T)","850(T)","900(T)","950(T)","1000B(T)","1100(T)","1200B(T)","1300(T)","1400B(T)"]},{"header":"266MHZ FSB SKUs","members":["1000C(T)","1133(T)","1200C(T)","1266(T)","1333(T)","1400C(T)"]}]},"3700+(T)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"3700+ Toledo","isPart":true,"type":"CPU"},"4000+(T)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"4000+ Toledo","isPart":true,"type":"CPU"},"FX-60":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.6 GHz","Release Date":"2005-05-31"},"humanName":"FX-60","isPart":true,"type":"CPU"},"X2-3800+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","Release Date":"2005-08-01"},"humanName":"X2 3800+ Toledo","isPart":true,"type":"CPU"},"X2-4200+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4200+ Toledo","isPart":true,"type":"CPU"},"X2-4400+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","Release Date":"2005-05-31"},"humanName":"X2 4400+ Toledo","isPart":true,"type":"CPU"},"X2-4600+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4600+ Toledo","isPart":true,"type":"CPU"},"X2-4800+-Toledo":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E6","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","Release Date":"2005-05-31"},"humanName":"X2 4800+ Toledo","isPart":true,"type":"CPU"},"Toledo":{"humanName":"Toledo","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-05-31","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3800+(T)","X2-4200+(T)","X2-4400+(T)","X2-4600+(T)","X2-4800+(T)","FX-60"]}]},"8250e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"1.9 GHz","TDP":"65 W","Release Date":"2008-09-08"},"humanName":"X3 8250e","isPart":true,"type":"CPU"},"8450e":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","TDP":"65 W","Release Date":"2008-09-08"},"humanName":"X3 8450e","isPart":true,"type":"CPU"},"8600B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.3 GHz","TDP":"95 W","Release Date":"2008-04-28"},"humanName":"X3 8600B","isPart":true,"type":"CPU"},"8750B":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-09-15"},"humanName":"X3 8750B","isPart":true,"type":"CPU"},"8750BE":{"data":{"Architecture":"K10","Lithography":"65 nm","Core Count":3,"Thread Count":3,"L2 Cache (Total)":"1.5 MiB","L3 Cache (Total)":"2 MiB","Socket":"AM2+","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"192 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","TDP":"95 W","Release Date":"2008-09-08","Unlocked":true},"humanName":"X3 8750 Black Edition","isPart":true,"type":"CPU"},"Toliman":{"humanName":"Toliman","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-03-27","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["8750BE"]},{"header":"Standard SKUs","members":[8400,8450,8500,8550,8600,8650,8750,8850]},{"header":"Low Power SKUs","members":["8250e","8450e"]},{"header":"Buisness Class SKUs","members":["8600B","8750B"]}]},"X2-340":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"32 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":2,"Core Count":2,"Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"1 MiB","TDP":"100 W","Release Date":"2012-10-01"},"isPart":true,"type":"CPU","humanName":"X2 340"},"X4-740":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":4,"Core Count":4,"Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","TDP":"65 W","Release Date":"2012-10-01"},"isPart":true,"type":"CPU","humanName":"X4 740"},"X4-750K":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"FM2","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["A85X","A75","A55"],"Thread Count":4,"Core Count":4,"Base Frequency":"3.4 GHz","Boost Frequency":"4.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"100 W","Release Date":"2012-10-01","Unlocked":true},"isPart":true,"type":"CPU","humanName":"X4 750K"},"Trinity-Sempron":{"humanName":"Trinity","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-10-01","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"4th GEN. DUAL CORE","members":[240]}]},"Trinity":{"humanName":"Trinity","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-10-01","Lithography":"32 nm","Sockets":["FM2"],"Foundry":"Global Foundries"},"sections":[{"header":"4th GEN. QUAD CORE","members":["X4-750K","X4-740","X2-340"]}]},"4228HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2011-11-14","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4228HE"},"4230HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":6,"Core Count":6,"Base Frequency":"2.9 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","Release Date":"2012-05-01","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4230HE"},"4256EE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"1.6 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"35 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4256EE"},"4274HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2011-11-14","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4274HE"},"4276HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","Release Date":"2012-05-01","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4276HE"},"1500+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"9W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.0 GHz"},"humanName":"1500+ Venice","isPart":true,"type":"CPU"},"3000+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Venice","isPart":true,"type":"CPU"},"3000+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"51W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3000+ Venice","isPart":true,"type":"CPU"},"3200+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Venice","isPart":true,"type":"CPU"},"3200+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"59W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3200+ Venice","isPart":true,"type":"CPU"},"3400+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3400+ Venice","isPart":true,"type":"CPU"},"3400+(V)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"754","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":1,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3400+ Venice","isPart":true,"type":"CPU"},"3500+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Venice","isPart":true,"type":"CPU"},"3800+(V-939)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"89W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz"},"humanName":"3800+ Venice","isPart":true,"type":"CPU"},"Venice":{"humanName":"Venice","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2005-04-04","Lithography":"90 nm","Sockets":[754,939],"Foundry":"AMD Foundries"},"sections":[{"header":"Socket 754 SKUs","members":["1500+(V)","3000+(V)","3200+(V)","3400+(V)"]},{"header":"Socket 939 SKUs","members":["3000+(V-939)","3200+(V-939)","3400+(V-939)","3500+(V-939)","3800+(V-939)"]}]},"Vermeer":{"humanName":"Vermeer","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2020-11-05","Lithography":"7 nm","Sockets":["AM4"]},"sections":[{"header":"Ryzen 9","members":["Ryzen-9-5900","Ryzen-9-5900X","Ryzen-9-5950X"]},{"header":"Ryzen 7","members":["Ryzen-7-5800","Ryzen-7-5800X","Ryzen-7-5800X3D"]},{"header":"Ryzen 5","members":["Ryzen-5-5600X","Ryzen-5-5600X3D"]}]},"Whitehaven":{"humanName":"Whitehaven","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-08-10","Lithography":"14 nm","Sockets":["TR4"]},"sections":[{"header":"THREADRIPPER","members":["1950X","1920X","1900X"]}]},"3000+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz"},"humanName":"3000+ Winchester","isPart":true,"type":"CPU"},"3200+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz"},"humanName":"3200+ Winchester","isPart":true,"type":"CPU"},"3500+(W)":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"E3","Core Count":1,"Thread Count":1,"L2 Cache (Total)":"512 KiB","Socket":"939","TDP":"67W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"64 KiB","Max Memory Frequency":"400 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE3","Unlocked":true,"FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz"},"humanName":"3500+ Winchester","isPart":true,"type":"CPU"},"Winchester":{"humanName":"Winchester","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2004-10-14","Lithography":"90 nm","Sockets":[939],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["3000+(W)","3200+(W)","3500+(W)"]}]},"FX-62":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-11-30"},"humanName":"FX-62","isPart":true,"type":"CPU"},"FX-70":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-11-30"},"humanName":"FX-70","isPart":true,"type":"CPU"},"FX-72":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-11-30"},"humanName":"FX-72","isPart":true,"type":"CPU"},"FX-74":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"1207 FX","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2006-11-30"},"humanName":"FX-74","isPart":true,"type":"CPU"},"X2-3600+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"512 Kib","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-08"},"humanName":"X2 3600+ Windsor EF","isPart":true,"type":"CPU"},"X2-3800+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor","isPart":true,"type":"CPU"},"X2-3800+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor EF","isPart":true,"type":"CPU"},"X2-3800+-Windsor-UP":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"35 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2006-05-23"},"humanName":"X2 3800+ Windsor UP","isPart":true,"type":"CPU"},"X2-4000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.1 GHz","Release Date":"2006-05-23"},"humanName":"X2 4000+ Windsor","isPart":true,"type":"CPU"},"X2-4000+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.0 GHz","Release Date":"2007-02-20"},"humanName":"X2 4000+ Windsor EF","isPart":true,"type":"CPU"},"X2-4200+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4200+ Windsor","isPart":true,"type":"CPU"},"X2-4200+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4200+ Windsor EF","isPart":true,"type":"CPU"},"X2-4400+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4400+ Windsor","isPart":true,"type":"CPU"},"X2-4400+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.2 GHz","Release Date":"2006-05-23"},"humanName":"X2 4400+ Windsor EF","isPart":true,"type":"CPU"},"X2-4600+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4600+ Windsor","isPart":true,"type":"CPU"},"X2-4600+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4600+ Windsor EF","isPart":true,"type":"CPU"},"X2-4800+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4800+ Windsor","isPart":true,"type":"CPU"},"X2-4800+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.4 GHz","Release Date":"2006-05-23"},"humanName":"X2 4800+ Windsor","isPart":true,"type":"CPU"},"X2-5000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-05-23"},"humanName":"X2 5000+ Windsor","isPart":true,"type":"CPU"},"X2-5000+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-05-23"},"humanName":"X2 5000+ Windsor","isPart":true,"type":"CPU"},"X2-5200+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2006-09-06"},"humanName":"X2 5200+ Windsor","isPart":true,"type":"CPU"},"X2-5200+-Windsor-EF":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.6 GHz","Release Date":"2007-02-20"},"humanName":"X2 5200+ Windsor EF","isPart":true,"type":"CPU"},"X2-5400+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"1 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-12-12"},"humanName":"X2 5400+ Windsor","isPart":true,"type":"CPU"},"X2-5600+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"89W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.8 GHz","Release Date":"2006-12-12"},"humanName":"X2 5600+ Windsor","isPart":true,"type":"CPU"},"X2-6000+-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.0 GHz","Release Date":"2007-02-20"},"humanName":"X2 6000+ Windsor","isPart":true,"type":"CPU"},"X2-6400+BE-Windsor":{"data":{"Architecture":"K8","Lithography":"90 nm","Stepping":"F3","Core Count":2,"Thread Count":2,"L2 Cache (Total)":"2 MiB","Socket":"AM2","TDP":"125 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"128 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"Unlocked":true,"AVX/SSE/MMX":"SSE3","FMA4":false,"FMA3":false,"BMI":"No","AES":false,"Other Extensions":["X86-64","AMD-V","E3D-Now!"],"Compatible Chipsets":[870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"3.2 GHz","Release Date":"2007-08-20"},"humanName":"X2 6400+ Black Edition Windsor","isPart":true,"type":"CPU"},"Windsor":{"humanName":"Windsor","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2006-05-23","Lithography":"90 nm","Sockets":["AM2"],"Foundry":"AMD Foundries"},"sections":[{"header":"Standard SKUs","members":["X2-3800+(W)","X2-4000+(W)","X2-4200+(W)","X2-4400+(W)","X2-4600+(W)","X2-4800+(W)","X2-5000+(W)","X2-5200+(W)","X2-5400+(W)","X2-5600+(W)","X2-6000+(W)"]},{"header":"Energy-Efficient SKUs","members":["X2-3600+(WEF)","X2-3800+(WEF)","X2-4000+(WEF)","X2-4200+(WEF)","X2-4400+(WEF)","X2-4600+(WEF)","X2-4800+(WEF)","X2-5000+(WEF)","X2-5200+(WEF)"]},{"header":"Low Power SKUs","members":["X2-3800+(WUP)"]},{"header":"Unlocked SKUs","members":["X2-6400+BE(W)","FX-62","FX-70","FX-72","FX-74"]}]},"650T":{"data":{"Architecture":"K10","Lithography":"45 nm","Core Count":4,"Thread Count":4,"L2 Cache (Total)":"2 MiB","Socket":"AM3,AM2+","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":["990FX","990x",970,"890FX","890GX","880G",870,"790FX","790X","790GX","785G","785E","780G","780V","780E",770,"760G","740G",740,"690V","690G","580X","570X","550X"],"Base Frequency":"2.7 GHz","Boost Frequency":"3.2 GHz","L3 Cache (Total)":"4 MiB","TDP":"95 W","Release Date":"2011"},"humanName":"X4 650T","isPart":true,"type":"CPU"},"Zosma":{"humanName":"Zosma","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-09-01","Lithography":"45 nm","Sockets":["AM2+","AM3"],"Foundry":"Global Foundries"},"sections":[{"header":"Black Edition SKUs","members":["960TBE"]},{"header":"Standard SKUs","members":["960T","840T","650T"]}]},"CPUs-DESKTOP":{"humanName":"Desktop CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"RYZEN FAMILIES","members":["Raphael","Vermeer","Castle-Peak","Matisse","Colfax","Pinnacle-Ridge","Whitehaven","Summit-Ridge"]},{"header":"AMD FX FAMILIES","members":["Piledriver","Bulldozer"]},{"header":"PHENOM FAMILIES","members":["Thuban","Zosma","Deneb","Propus","Heka","Callisto","Regor","Agena","Toliman"]},{"header":"ATHLON FAMILIES (15H)","members":["Bristol-Ridge","Carrizo","Kaveri","Richland","Trinity"]},{"header":"ATHLON FAMILIES (K10)","members":["Propus-Athlon","Rana","Regor-Athlon","Sargas","Kuma"]},{"header":"ATHLON 64 FAMILIES","members":["Brisbane","Windsor","Toledo","Manchester","Lima","Orleans","San-Diego","Venice","Winchester","Newcastle","ClawHammer","SledgeHammer"]},{"header":"ATHLON XP FAMILIES","members":["Palomino","Thoroughbred","Barton","Thorton"]},{"header":"ATHLON FAMILIES","members":["Thunderbird","Orion","Pluto","Argon"]},{"header":"SEMPRON FAMILIES","members":["Richland-Sempron","Trinity-Sempron","Regor-Sempron","Sargas-Sempron"]},{"header":"K6 FAMILIES","members":["Sharptooth","Chomper","Little-Foot","Model-6"]},{"header":"VINTAGE FAMILIES","members":["5K86","SSA5"]}]},"CPUs-EMBEDDED":{"humanName":"Embedded CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"WAT FAMILIES","members":["Lima"]}]},"CPUs-MOBILE":{"humanName":"Mobile CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"PHENOM FAMILIES","members":["Champlain"]},{"header":"TURION FAMILIES","members":["Champlain","Geneva","Caspian","Conesus","Congo","Lion","Tyler","Trinidad","Taylor","Richmond","Lancaster"]},{"header":"ATHLON FAMILIES","members":["Champlain","Geneva","Caspian","Conesus","Congo","Sherman","Huron","Lion","Newark","Oakville","Odessa","ClawHammer"]},{"header":"V SERIES FAMILIES","members":["Champlain","Geneva"]},{"header":"SEMPRON FAMILIES","members":["Caspian","Huron","Sable","Sherman","Keene","Roma","Albany","Sonora","Georgetown","Dublin"]}]},"6366HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"1.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"16 MiB","TDP":"85 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6366HE"},"6386SE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Release Date":"2012-11-05","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6386SE"},"Abu-Dhabi":{"humanName":"Abu Dhabi","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-11-05","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Sixteen Core","members":["6366HE",6376,6378,6380,"6386SE"]},{"header":"Twelve Core","members":[6344,6348]},{"header":"Eight Core","members":[6320,6328]},{"header":"Quad Core","members":[6308]}]},"2344HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.7 GHz","TDP":"68 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2344HE"},"2346HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!","X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"68 W","Release Date":"2007-09-10"},"isPart":true,"type":"CPU","humanName":"2346HE"},"2347HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"68 W","Release Date":"2007-09-10"},"isPart":true,"type":"CPU","humanName":"2347HE"},"2358SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2358SE"},"2360SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"2360SE"},"8346HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"79 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8346HE"},"8347HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.9 GHz","TDP":"79 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8347HE"},"8350HE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"79 W","Release Date":"2008-10"},"isPart":true,"type":"CPU","humanName":"8350HE"},"8358SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8358SE"},"8360SE":{"data":{"Architecture":"K10","Lithography":"65 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"2 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1066 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"119 W","Release Date":"2007-08"},"isPart":true,"type":"CPU","humanName":"8360SE"},"Barcelona":{"humanName":"Barcelona","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2007-09","Lithography":"65 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8346HE",8347,"8347HE",8350,"8350HE",8352,8354,8356,"8358SE","8360SE"]},{"header":"Dual Socket CPU","members":["2344HE","2346HE",2347,"2347HE",2350,"2350HE",2352,2354,2356,"2358SE","2360SE"]}]},"Budapest":{"humanName":"Budapest","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-04","Lithography":"65 nm","Sockets":["AM2+"],"Foundry":"Global Foundries"},"sections":[{"header":"Quad core CPUs","members":[1352,1354,1356]}]},"3320EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"25 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3320EE"},"3350HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"2.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3350HE"},"Delhi":{"humanName":"Delhi","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-12-04","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core SKUs","members":[3365,3380]},{"header":"Quad Core SKUs","members":["3320EE","3350HE"]}]},"EPYC-9124":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"64 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","TDP":"200 W","Core Count":16,"Thread Count":32,"Base Frequency":"3.0 GHz","Boost Frequency":"3.6 GHz"},"humanName":"EPYC 9124","isPart":true,"type":"CPU"},"EPYC-9174F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"16 MiB","TDP":"320 W","Core Count":16,"Thread Count":32,"Base Frequency":"4.1 GHz","Boost Frequency":"4.15 GHz"},"humanName":"EPYC 9174F","isPart":true,"type":"CPU"},"EPYC-9224":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"64 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"200 W","Core Count":24,"Thread Count":48,"Base Frequency":"2.5 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9224","isPart":true,"type":"CPU"},"EPYC-9254":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"128 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"200 W","Core Count":24,"Thread Count":48,"Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz"},"humanName":"EPYC 9254","isPart":true,"type":"CPU"},"EPYC-9274F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"24 MiB","TDP":"320 W","Core Count":24,"Thread Count":48,"Base Frequency":"4.05 GHz","Boost Frequency":"4.1 GHz"},"humanName":"EPYC 9274F","isPart":true,"type":"CPU"},"EPYC-9334":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"128 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"210 W","Core Count":32,"Thread Count":64,"Base Frequency":"2.7 GHz","Boost Frequency":"3.85 GHz"},"humanName":"EPYC 9334","isPart":true,"type":"CPU"},"EPYC-9354":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"280 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.25 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9354","isPart":true,"type":"CPU"},"EPYC-9354P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"280 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.25 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9354P","isPart":true,"type":"CPU"},"EPYC-9374F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB","L2 Cache (Total)":"32 MiB","TDP":"320 W","Core Count":32,"Thread Count":64,"Base Frequency":"3.85 GHz","Boost Frequency":"4.1 GHz"},"humanName":"EPYC 9374F","isPart":true,"type":"CPU"},"EPYC-9454":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"290 W","Core Count":48,"Thread Count":96,"Base Frequency":"2.75 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9454","isPart":true,"type":"CPU"},"EPYC-9454P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"290 W","Core Count":48,"Thread Count":96,"Base Frequency":"2.75 GHz","Boost Frequency":"3.65 GHz"},"humanName":"EPYC 9454P","isPart":true,"type":"CPU"},"EPYC-9474F":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB","L2 Cache (Total)":"48 MiB","TDP":"360 W","Core Count":48,"Thread Count":96,"Base Frequency":"3.6 GHz","Boost Frequency":"3.95 GHz"},"humanName":"EPYC 9474F","isPart":true,"type":"CPU"},"EPYC-9534":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"280 W","Core Count":64,"Thread Count":128,"Base Frequency":"2.45 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9534","isPart":true,"type":"CPU"},"EPYC-9554":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"360 W","Core Count":64,"Thread Count":128,"Base Frequency":"3.1 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9554","isPart":true,"type":"CPU"},"EPYC-9554P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"256 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB","L2 Cache (Total)":"64 MiB","TDP":"360 W","Core Count":64,"Thread Count":128,"Base Frequency":"3.1 GHz","Boost Frequency":"3.75 GHz"},"humanName":"EPYC 9554P","isPart":true,"type":"CPU"},"EPYC-9634":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"2688 KiB","L1 Cache (Instruction)":"2688 KiB","L2 Cache (Total)":"84 MiB","TDP":"290 W","Core Count":84,"Thread Count":168,"Base Frequency":"2.25 GHz","Boost Frequency":"3.1 GHz"},"humanName":"EPYC 9634","isPart":true,"type":"CPU"},"EPYC-9654":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"3072 KiB","L1 Cache (Instruction)":"3072 KiB","L2 Cache (Total)":"96 MiB","TDP":"360 W","Core Count":96,"Thread Count":192,"Base Frequency":"2.4 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9654","isPart":true,"type":"CPU"},"EPYC-9654P":{"data":{"Release Date":"2022-11-10","L3 Cache (Total)":"384 MiB","Lithography":"5 nm","Socket":"SP5","Unlocked":false,"Architecture":"Zen 4","Memory Type":"DDR5","Max Memory Frequency":"4800 MHz","Max Memory Channels":12,"PCIe 5.0 Lanes":128,"Stepping":"B1","FMA4":false,"FMA3":true,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX-512","Other Extensions":["X86-64","AMD-V","RDAND","F16C","CLMUL","ADX","AMD-Vi","SME","TSME","SEV","SenseMI"],"L1 Cache (Data)":"3072 KiB","L1 Cache (Instruction)":"3072 KiB","L2 Cache (Total)":"96 MiB","TDP":"360 W","Core Count":96,"Thread Count":192,"Base Frequency":"2.4 GHz","Boost Frequency":"3.55 GHz"},"humanName":"EPYC 9654P","isPart":true,"type":"CPU"},"Genoa":{"humanName":"Genoa","type":"CPU Architecture","isPart":false,"topHeader":"SELECT CPU:","data":{"Release Date":"2022-11-10","Lithography":"5 nm","Sockets":["SP5"]},"sections":[{"header":"EPYC","members":["EPYC-9354P","EPYC-9454P","EPYC-9554P","EPYC-9654P","EPYC-9124","EPYC-9224","EPYC-9254","EPYC-9334","EPYC-9354","EPYC-9454","EPYC-9534","EPYC-9554","EPYC-9634","EPYC-9654"]},{"header":"Epyc Frequency Optimised","members":["EPYC-9174F","EPYC-9274F","EPYC-9374F","EPYC-9474F"]}]},"6230HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":12,"Core Count":12,"Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"12 MiB","TDP":"85 W","Release Date":"2012-05-01","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6230HE"},"6262HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"1.6 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"16 MiB","TDP":"85 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6262HE"},"6282SE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","Release Date":"2011-11-14","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6282SE"},"6284SE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"G34","L3 Cache (Total)":"16 MiB","Max Memory Frequency":"1600 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":16,"Core Count":16,"Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","TDP":"140 W","Release Date":"2012-05-01","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6284SE"},"Interlagos":{"humanName":"Interlagos","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-11-14","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Sixteen Core","members":["6262HE",6272,6274,6276,6278,"6282SE","6284SE"]},{"header":"Twelve Core","members":["6230HE",6234,6238]},{"header":"Eight Core","members":[6212,6220]},{"header":"Quad Core","members":[6204]}]},"2419EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"60 W","Release Date":"2009-08-31"},"isPart":true,"type":"CPU","humanName":"2419EE"},"2423HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.0 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2423HE"},"2425HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2425HE"},"2439SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"2439SE"},"8419EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"1.8 GHz","TDP":"60 W","Release Date":"2009-06-02"},"isPart":true,"type":"CPU","humanName":"8419EE"},"8425HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8425HE"},"8439SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"3 MiB","L3 Cache (Total)":"6 MiB","Thread Count":6,"Core Count":6,"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-07-13"},"isPart":true,"type":"CPU","humanName":"8439SE"},"Istanbul":{"humanName":"Istanbull","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06-02","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8419EE",8419,8423,"8425HE",8431,8435,"8439SE"]},{"header":"Dual Socket CPU","members":["2419EE",2419,"2423HE","2425HE",2427,2431,2435,"2439SE"]}]},"4162EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"3 MiB","TDP":"35 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4162EE"},"4164EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","TDP":"35 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4164EE"},"4170HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4170HE"},"4171HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","TDP":"50 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4171HE"},"4174HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4174HE"},"4176HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"C32","L3 Cache (Total)":"6 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":6,"Core Count":6,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","TDP":"65 W","Release Date":"2010-06-23"},"isPart":true,"type":"CPU","humanName":"4176HE"},"Lisbon":{"humanName":"Lisbon","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-06-23","Lithography":"45 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Six Core","members":["4162EE","4164EE","4170HE","4171HE","4174HE","4176HE",4180,4182]},{"header":"Quad Core","members":[4122,4130,4133]}]},"6124HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6124HE"},"6128HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6128HE"},"6132HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":8,"Core Count":8,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","TDP":"85 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6132HE"},"6164HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"85 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6164HE"},"6166HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"6 MiB","TDP":"85 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6166HE"},"6176SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"6 MiB","TDP":"140 W","Release Date":"2010-03-29"},"isPart":true,"type":"CPU","humanName":"6176SE"},"6180SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"G34","L3 Cache (Total)":"12 MiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Thread Count":12,"Core Count":12,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","TDP":"140 W","Release Date":"2011-02-14"},"isPart":true,"type":"CPU","humanName":"6180SE"},"Magny-Cours":{"humanName":"Magny-Cours","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2010-03-29","Lithography":"45 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Twelve Core","members":["6164HE","6166HE",6168,6172,6172,6174,6176,"6176SE","6180SE"]},{"header":"Eight Core","members":["6124HE",6128,"6128HE","6132HE",6134,6136,6140]}]},"Epyc-7251":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2400 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7251","isPart":true,"type":"CPU"},"Epyc-7261":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2018","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX","X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC","SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"3.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"200 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7261","isPart":true,"type":"CPU"},"Epyc-7281":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7281","isPart":true,"type":"CPU"},"Epyc-7301":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7301","isPart":true,"type":"CPU"},"Epyc-7351":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7351","isPart":true,"type":"CPU"},"Epyc-7351P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":32,"Core Count":16,"Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7351P","isPart":true,"type":"CPU"},"Epyc-7401":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7401","isPart":true,"type":"CPU"},"Epyc-7401P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7401P","isPart":true,"type":"CPU"},"Epyc-7451":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":48,"Core Count":24,"Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7451","isPart":true,"type":"CPU"},"Epyc-7501":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"155 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7501","isPart":true,"type":"CPU"},"Epyc-7551":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7551","isPart":true,"type":"CPU"},"Epyc-7551P":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.0 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7551P","isPart":true,"type":"CPU"},"Epyc-7601":{"data":{"Architecture":"Zen","Lithography":"14 nm","Socket":"SP3","Release Date":"2017-07-20","Max Memory Frequency":"2666 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","XOP","CLMUL","RDRAND","ADX"],"Compatible Chipsets":["SOC"],"Thread Count":64,"Core Count":32,"Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"64 MiB","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7601","isPart":true,"type":"CPU"},"Naples":{"humanName":"Naples","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2017-07-20","Lithography":"14 nm","Sockets":["SP3"],"Foundry":"Global Foundries"},"sections":[{"header":"Epyc 2P","members":["Epyc-7601","Epyc-7551","Epyc-7501","Epyc-7451","Epyc-7401","Epyc-7351","Epyc-7301","Epyc-7281","Epyc-7251","Epyc-7261","Epyc-7371"]},{"header":"Epyc 1P","members":["Epyc-7551P","Epyc-7401P","Epyc-7351P"]}]},"Epyc-7232P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"32 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7232P","isPart":true,"type":"CPU"},"Epyc-7252":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"3.1 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7252","isPart":true,"type":"CPU"},"Epyc-7262":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.4 GHz","TDP":"155 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7262","isPart":true,"type":"CPU"},"Epyc-7272":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":12,"Thread Count":24,"L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"384 KiB"},"humanName":"Epyc 7272","isPart":true,"type":"CPU"},"Epyc-7282":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"64 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","TDP":"120 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7282","isPart":true,"type":"CPU"},"Epyc-7302":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7302","isPart":true,"type":"CPU"},"Epyc-7302P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3 GHz","Boost Frequency":"3.3 GHz","TDP":"155 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7302P","isPart":true,"type":"CPU"},"Epyc-7352":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","TDP":"155 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7352","isPart":true,"type":"CPU"},"Epyc-7402":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7402","isPart":true,"type":"CPU"},"Epyc-7402P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.8 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7402P","isPart":true,"type":"CPU"},"Epyc-7452":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.35 GHz","Boost Frequency":"3.35 GHz","TDP":"155 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7452","isPart":true,"type":"CPU"},"Epyc-7502":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7502","isPart":true,"type":"CPU"},"Epyc-7502P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.5 GHz","Boost Frequency":"3.35 GHz","TDP":"180 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7502P","isPart":true,"type":"CPU"},"Epyc-7532":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-02-19","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","TDP":"200 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7532","isPart":true,"type":"CPU"},"Epyc-7542":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":32,"Thread Count":64,"L2 Cache (Total)":"16 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","TDP":"225 W","L1 Cache (Data)":"1024 KiB","L1 Cache (Instruction)":"1024 KiB"},"humanName":"Epyc 7542","isPart":true,"type":"CPU"},"Epyc-7552":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":48,"Thread Count":96,"L2 Cache (Total)":"24 MiB","L3 Cache (Total)":"192 MiB","Base Frequency":"2.2 GHz","Boost Frequency":"3.35 GHz","TDP":"200 W","L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7552","isPart":true,"type":"CPU"},"Epyc-7642":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":48,"Thread Count":96,"L2 Cache (Total)":"24 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","TDP":"225 W","L1 Cache (Data)":"1536 KiB","L1 Cache (Instruction)":"1536 KiB"},"humanName":"Epyc 7642","isPart":true,"type":"CPU"},"Epyc-7662":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-02-19","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2 GHz","Boost Frequency":"3.3 GHz","TDP":"225 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7662","isPart":true,"type":"CPU"},"Epyc-7702":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64","X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.25 GHz","Boost Frequency":"3.4 GHz","TDP":"225 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7702","isPart":true,"type":"CPU"},"Epyc-7702P":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-08-07","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2 GHz","Boost Frequency":"3.35 GHz","TDP":"200 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7702P","isPart":true,"type":"CPU"},"Epyc-7F32":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":8,"Thread Count":16,"L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"128 MiB","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","TDP":"180 W","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB"},"humanName":"Epyc 7F32","isPart":true,"type":"CPU"},"Epyc-7F52":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":16,"Thread Count":32,"L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","TDP":"240 W","L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"512 KiB"},"humanName":"Epyc 7F52","isPart":true,"type":"CPU"},"Epyc-7F72":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2020-04-14","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":24,"Thread Count":48,"L2 Cache (Total)":"12 MiB","L3 Cache (Total)":"192 MiB","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","TDP":"240 W","L1 Cache (Data)":"768 KiB","L1 Cache (Instruction)":"768 KiB"},"humanName":"Epyc 7F72","isPart":true,"type":"CPU"},"Epyc-7H12":{"data":{"Architecture":"Zen 2","Lithography":"7 nm","Socket":"SP3","Release Date":"2019-09-18","Memory Type":"DDR4","Max Memory Frequency":"3200 MHz","Max Memory Channels":8,"AVX/SSE/MMX":"AVX2","FMA4":false,"FMA3":true,"BMI":"BMI2","AES":true,"SHA":true,"Other Extensions":["X86-64"],"Core Count":64,"Thread Count":128,"L2 Cache (Total)":"32 MiB","L3 Cache (Total)":"256 MiB","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","TDP":"280 W","L1 Cache (Data)":"2048 KiB","L1 Cache (Instruction)":"2048 KiB"},"humanName":"Epyc 7H12","isPart":true,"type":"CPU"},"Rome":{"humanName":"Rome","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2019-08-07","Lithography":"7 nm","Sockets":["SP3"],"Foundry":"Global Foundries"},"sections":[{"header":"Epyc 2P","members":["Epyc-7252","Epyc-7262","Epyc-7272","Epyc-7282","Epyc-7302","Epyc-7352","Epyc-7402","Epyc-7452","Epyc-7502","Epyc-7532","Epyc-7542","Epyc-7552","Epyc-7642","Epyc-7662","Epyc-7702","Epyc-7742"]},{"header":"Epyc 1P","members":["Epyc-7232P","Epyc-7302P","Epyc-7402P","Epyc-7502P","Epyc-7702P"]},{"header":"Epyc HPC-Optimized","members":["Epyc-7H12"]},{"header":"Epyc Frequency-Optimized","members":["Epyc-7F32","Epyc-7F52","Epyc-7F72"]}]},"4310EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":4,"Core Count":4,"Base Frequency":"2.2 GHz","Boost Frequency":"3.0 GHz","L2 Cache (Total)":"4 MiB","TDP":"35 W","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"4310EE"},"4332HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":6,"Core Count":6,"Base Frequency":"3.0 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","TDP":"65 W","L1 Cache (Data)":"96 KiB","L1 Cache (Instruction)":"192 KiB"},"isPart":true,"type":"CPU","humanName":"4332HE"},"4365EE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.0 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","TDP":"40 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4365EE"},"4376HE":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"C32","L3 Cache (Total)":"8 MiB","Release Date":"2012-12-04","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":8,"Core Count":8,"Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","TDP":"65 W","L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB"},"isPart":true,"type":"CPU","humanName":"4376HE"},"Seoul":{"humanName":"Seoul","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-12-04","Lithography":"32 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core SKUs","members":["4365EE","4376HE",4386]},{"header":"Six Core SKUs","members":["4332HE",4334,4340]},{"header":"Quad Core SKUs","members":["4310EE"]}]},"2372HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2372HE"},"2373EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.1 GHz","TDP":"60 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2373EE"},"2374HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2374HE"},"2376HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2376HE"},"2377EE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.3 GHz","TDP":"60 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2377EE"},"2379HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2379HE"},"2381HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2381HE"},"2386SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"2386SE"},"2393SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"3.1 GHz","TDP":"137 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"2393SE"},"8374HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"8374HE"},"8376HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.2 GHz","TDP":"79 W","Release Date":"2009-01-26"},"isPart":true,"type":"CPU","humanName":"8376HE"},"8379HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.4 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8379HE"},"8381HE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.5 GHz","TDP":"79 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8381HE"},"8386SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"2.8 GHz","TDP":"137 W","Release Date":"2008-11-13"},"isPart":true,"type":"CPU","humanName":"8386SE"},"8393SE":{"data":{"Architecture":"K10","Lithography":"45 nm","Socket":"F","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"6 MiB","Thread Count":4,"Core Count":4,"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"256 KiB","Max Memory Frequency":"1333 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"SSE4a","FMA4":false,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","E3D-Now!"],"Compatible Chipsets":null,"Base Frequency":"3.1 GHz","TDP":"137 W","Release Date":"2009-04-22"},"isPart":true,"type":"CPU","humanName":"8393SE"},"Shanghai":{"humanName":"Shanghai","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2008-11-13","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Socket CPU","members":["8374HE","8376HE",8378,"8379HE",8380,"8381HE",8382,8384,"8386SE",8387,8389,"8393SE"]},{"header":"Dual Socket CPU","members":["2372HE","2373EE","2374HE",2376,"2376HE","2377EE",2378,"2379HE",2380,"2381HE",2382,2384,"2386SE",2387,2389,"2393SE"]}]},"EPYC-Embedded-3101":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"35 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3101","isPart":true,"type":"CPU"},"EPYC-Embedded-3151":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"128 KiB","L1 Cache (Instruction)":"256 KiB","L2 Cache (Total)":"2 MiB","L3 Cache (Total)":"8 MiB","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"2.9 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3151","isPart":true,"type":"CPU"},"EPYC-Embedded-3201":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"30 W","Core Count":8,"Thread Count":8,"Base Frequency":"1.5 GHz","Boost Frequency":"3.1 GHz","Max Memory Frequency":"2133 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3201","isPart":true,"type":"CPU"},"EPYC-Embedded-3251":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB","L2 Cache (Total)":"4 MiB","L3 Cache (Total)":"16 MiB","TDP":"30 W","Core Count":8,"Thread Count":8,"Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","Max Memory Frequency":"2133 MHz","Max Memory Channels":2},"humanName":"EPYC Embedded 3251","isPart":true,"type":"CPU"},"EPYC-Embedded-3301":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"65 W","Core Count":12,"Thread Count":12,"Base Frequency":"2.0 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3301","isPart":true,"type":"CPU"},"EPYC-Embedded-3351":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"384 KiB","L1 Cache (Instruction)":"768 KiB","L2 Cache (Total)":"6 MiB","L3 Cache (Total)":"32 MiB","TDP":"80 W","Core Count":12,"Thread Count":24,"Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3351","isPart":true,"type":"CPU"},"EPYC-Embedded-3401":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1,024 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"85 W","Core Count":16,"Thread Count":16,"Base Frequency":"1.85 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3401","isPart":true,"type":"CPU"},"EPYC-Embedded-3451":{"data":{"Release Date":"2018-02-21","Lithography":"14 nm","Unlocked":false,"Architecture":"Zen","Memory Type":"DDR4","Stepping":"B2","FMA4":false,"FMA3":false,"AES":true,"SHA":true,"BMI":"BMI2","AVX/SSE/MMX":"AVX2","Other Extensions":["MOVBE","POPCNT","PCLMUL","RDRND","F16C","RDSEED","ADCX","PREFETCHW","CLFLUSHOPT","XSAVE","CLZERO"],"L1 Cache (Data)":"512 KiB","L1 Cache (Instruction)":"1,024 KiB","L2 Cache (Total)":"8 MiB","L3 Cache (Total)":"32 MiB","TDP":"100 W","Core Count":16,"Thread Count":32,"Base Frequency":"2.15 GHz","Boost Frequency":"3 GHz","Max Memory Frequency":"2666 MHz","Max Memory Channels":4},"humanName":"EPYC Embedded 3451","isPart":true,"type":"CPU"},"Snowy-Owl":{"humanName":"Snowy Owl","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2018-02-21","Lithography":"14nm","Sockets":["SP4","SP4r2"],"Foundry":"Global Foundries"},"sections":[{"header":"EPYC Embedded","members":["EPYC-Embedded-3101","EPYC-Embedded-3151","EPYC-Embedded-3201","EPYC-Embedded-3251","EPYC-Embedded-3301","EPYC-Embedded-3351","EPYC-Embedded-3401","EPYC-Embedded-3451"]}]},"Suzuka":{"humanName":"Suzuka","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2009-06","Lithography":"45 nm","Sockets":["F"],"Foundry":"Global Foundries"},"sections":[{"header":"Quad core CPUs","members":[1381,1385,1389]}]},"Valencia":{"humanName":"Valencia","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2011-11-14","Lithography":"32 nm","Sockets":["C32"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core","members":["4256EE","4274HE","4276HE",4280,4284]},{"header":"Six Core","members":[4226,"4228HE","4230HE",4234,4238,4240]}]},"6338P":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","TDP":"99 W","L3 Cache (Total)":"16 MiB","Release Date":"2014-01-22","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":12,"Core Count":12,"Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","L1 Cache (Data)":"192 KiB","L1 Cache (Instruction)":"384 KiB"},"isPart":true,"type":"CPU","humanName":"6338P"},"6370P":{"data":{"Architecture":"Piledriver","Lithography":"32 nm","Socket":"G34","TDP":"99 W","L3 Cache (Total)":"16 MiB","Release Date":"2014-01-22","Max Memory Frequency":"1866 MHz","Max Memory Channels":4,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":true,"BMI":"BMI","AES":true,"Other Extensions":["X86-64","AMD-V","F16C","ABM","TBM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"C0","Thread Count":16,"Core Count":16,"Base Frequency":"2.0 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"16 MiB","L1 Cache (Data)":"256 KiB","L1 Cache (Instruction)":"512 KiB"},"isPart":true,"type":"CPU","humanName":"6370P"},"Warsaw":{"humanName":"Warsaw","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2014-01-22","Lithography":"32 nm","Sockets":["G34"],"Foundry":"Global Foundries"},"sections":[{"header":"Low Power","members":["6338P","6370P"]}]},"3250HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","Release Date":"2012-03-20","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3250HE"},"3260HE":{"data":{"Architecture":"Bulldozer","Lithography":"32 nm","Socket":"AM3+","L3 Cache (Total)":"8 MiB","Max Memory Frequency":"1866 MHz","Max Memory Channels":2,"AVX/SSE/MMX":"AVX","FMA4":true,"FMA3":false,"BMI":"No","AES":true,"Other Extensions":["X86-64","AMD-V","ABM","XOP","CLMUL"],"Compatible Chipsets":["SP5690","SP5670","SP5650","SP5580","SP5100"],"Steppings":"B2","Thread Count":4,"Core Count":4,"Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","TDP":"45 W","Release Date":"2012-03-20","L1 Cache (Data)":"64 KiB","L1 Cache (Instruction)":"128 KiB"},"isPart":true,"type":"CPU","humanName":"3260HE"},"Zurich":{"humanName":"Zurich","type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Release Date":"2012-03-20","Lithography":"32 nm","Sockets":["AM3+"],"Foundry":"Global Foundries"},"sections":[{"header":"Eight Core","members":[3280]},{"header":"Four Core","members":["3250HE","3260HE"]}]},"CPUs-SERVER":{"humanName":"Server CPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT ARCHITECTURE:","sections":[{"header":"ZEN EPYC FAMILIES","members":["Genoa","Rome","Naples"]},{"header":"ZEN EPYC EMBEDDED FAMILIES","members":["Snowy-Owl"]},{"header":"PILEDRIVER OPTERON FAMILIES","members":["Warsaw","Abu-Dhabi","Seoul","Delhi"]},{"header":"BULLDOZER OPTERON FAMILIES","members":["Interlagos","Valencia","Zurich"]},{"header":"K10 OPTERON FAMILIES","members":["Magny-Cours","Lisbon","Istanbul","Shanghai","Suzuka","Barcelona","Budapest"]}]},"HD-4250":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV620","Codename":"RV620 LE","Release Date":"2009-02-25","Die Size":"67 mm","Shader Processor Count":40,"Texture Mapping Unit Count":4,"Render Output Unit Count":4,"GPU Base Frequency":"594 MHz","VRAM Frequency":"792 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"25 W","FP32 Compute":"47.52 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4250"},"HD-4350-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"No","GPU":"RV710","Codename":"RV710","Release Date":"2008-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1300 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"10.40 GB/s","TDP":"20 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4350 AGP"},"HD-4350":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2008-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"20 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4350"},"HD-4520":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-12-02","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4520"},"HD-4550":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1310 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"10.48 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4550"},"HD-4570-Rebrand":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV635","Codename":"RV635 PRO","Release Date":"2009-11-22","Die Size":"135 mm","Shader Processor Count":120,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"796 MHz","VRAM Frequency":"792 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.67 GB/s","TDP":"65 W"},"isPart":true,"type":"Graphics Card","humanName":"HD 4570 Rebrand"},"HD-4570":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV710","Codename":"RV710","Release Date":"2009-09-30","Die Size":"73 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"8 GB/s","TDP":"25 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4570"},"HD-4650-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 PRO","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.80 GB/s","TDP":"48 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4650 AGP"},"HD-4650":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 PRO","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"1400 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"22.40 GB/s","TDP":"48 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4650"},"HD-4670-AGP":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2007-07-17","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670 AGP"},"HD-4670-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":640,"Texture Mapping Unit Count":64,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1400 MT/s","VRAM Capacity":"512 MiB (per GPU)","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"22.40 GB/s","TDP":"118 W","FP32 Compute":"960 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670 X2"},"HD-4670":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-11-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4670"},"HD-4700":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2010-02-11","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"600 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"12.80 GB/s","TDP":"50 W","FP32 Compute":"384 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4700"},"HD-4710":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV730","Codename":"RV730 XT","Release Date":"2008-09-10","Die Size":"146 mm","Shader Processor Count":320,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.60 GB/s","TDP":"59 W","FP32 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4710"},"HD-4730":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 CE","Release Date":"2008-06-08","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"110 W","FP32 Compute":"960 GFLOPS","FP64 Compute":"192 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4730"},"HD-4780":{"data":{"Architecture":"TeraScale 1","Lithography":"40 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV740","Codename":"RV740","Release Date":"2009-04-28","Die Size":"137 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"730 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"51.20 GB/s","TDP":"80 W","FP32 Compute":"960 GFLOPS","FP64 Compute":"192 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4780"},"HD-4810":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 CE","Release Date":"2009-05-28","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":8,"GPU Base Frequency":"625 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"95 W","FP32 Compute":"800 GFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4810"},"HD-4830":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 LE","Release Date":"2008-10-21","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"575 MHz","VRAM Frequency":"1800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"57.60 GB/s","TDP":"95 W","FP32 Compute":"736 GFLOPS","FP64 Compute":"147.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4830"},"HD-4850-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"R700","Codename":"R700 PRO","Release Date":"2008-11-07","Die Size":"256 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1990 MT/s","VRAM Capacity":"512 MiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"63.38 GB/s","TDP":"250 W","FP32 Compute":"2000 GFLOPS","FP64 Compute":"400 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4850 X2"},"HD-4850":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2008-06-25","Die Size":"256 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1986 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"63.55 GB/s","TDP":"110 W","FP32 Compute":"1000 GFLOPS","FP64 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4850"},"HD-4855":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2010-01-03","Die Size":"256 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"575 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"110 W","FP32 Compute":"736 GFLOPS","FP64 Compute":"147.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4855"},"HD-4860":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV790","Codename":"RV790 GT","Release Date":"2009-09-09","Die Size":"282 mm","Shader Processor Count":640,"Texture Mapping Unit Count":32,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3000 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"130 W","FP32 Compute":"896 GFLOPS","FP64 Compute":"179.2 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4860"},"HD-4870-X2":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"R700","Codename":"R700 XT","Release Date":"2008-08-12","Die Size":"256 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"700 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"286 W","FP32 Compute":"2.400 TFLOPS","FP64 Compute":"400 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4870 X2"},"HD-4870":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV770","Codename":"RV770 PRO","Release Date":"2008-06-25","Die Size":"256 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"115.2 GB/s","TDP":"150 W","FP32 Compute":"1.200 TFLOPS","FP64 Compute":"240 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4870"},"HD-4890":{"data":{"Architecture":"TeraScale 1","Lithography":"55 nm","DirectX Support":"10.1","HLSL Shader Model":"4.1","OpenGL Support":"3.3","OpenCL Support":"1.1","Crossfire Support":"CrossfireX","GPU":"RV790","Codename":"RV790 XT","Release Date":"2009-04-02","Die Size":"282 mm","Shader Processor Count":800,"Texture Mapping Unit Count":40,"Render Output Unit Count":16,"GPU Base Frequency":"850 MHz","VRAM Frequency":"3900 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"124.8 GB/s","TDP":"190 W","FP32 Compute":"1.360 TFLOPS","FP64 Compute":"272 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 4890"},"HD4000":{"humanName":"HD 4000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"55 nm","DirectX Support":"10.1","Release Date":"2008-06-16"},"sections":[{"header":"ENTHUSIAST","members":["HD-4890","HD-4870-X2","HD-4850-X2"]},{"header":"HIGH END","members":["HD-4870","HD-4860","HD-4855","HD-4850","HD-4830","HD-4670-X2"]},{"header":"MID RANGE","members":["HD-4810","HD-4770","HD-4750","HD-4730","HD-4710","HD-4700","HD-4670-AGP","HD-4670","HD-4650-AGP","HD-4650"]},{"header":"ENTRY LEVEL","members":["HD-4570-Rebrand","HD-4570","HD-4550","HD-4520","HD-4350-AGP","HD-4350","HD-4250"]}]},"HD-5470":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2012-02","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"6.4 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5470"},"HD-5490":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2012-10","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"8 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5490"},"HD-5530":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Cedar","Codename":"Cedar PRO","Release Date":"2011-04","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"9.6 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5530"},"HD-5550":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood PRO2","Release Date":"2010-02-09","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"550 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"51.2 GB/s","TDP":"39 W","FP32 Compute":"352 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5550"},"HD-5610":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood PRO","Release Date":"2011-05-14","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"16 GB/s","TDP":"39 W","FP32 Compute":"520 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5610"},"HD-5630":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood LE","Release Date":"2010-01-14","Die Size":"104 mm","Shader Processor Count":320,"Texture Mapping Unit Count":16,"Render Output Unit Count":8,"GPU Base Frequency":"650 MHz","VRAM Frequency":"780 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"12.48 GB/s","TDP":"64 W","FP32 Compute":"416 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5630"},"HD-5690":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"No","GPU":"Redwood","Codename":"Redwood XT","Release Date":"2010-02","Die Size":"104 mm","Shader Processor Count":400,"Texture Mapping Unit Count":20,"Render Output Unit Count":8,"GPU Base Frequency":"775 MHz","VRAM Frequency":"2000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR3","VRAM Bandwidth":"25.6 GB/s","TDP":"64 W","FP32 Compute":"620 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5690"},"HD-5770-X2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Juniper","Codename":"Juniper XT","Release Date":"2010-10-13","Die Size":"166 mm","Shader Processor Count":1600,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB (per GPU)","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"76.8 GB/s","TDP":"180 W","FP32 Compute":"2.720 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 5770 X2"},"HD5000":{"humanName":"HD 5000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"40 nm","DirectX Support":"11.0","Release Date":"2009-09-10"},"sections":[{"header":"ENTHUSIAST","members":["HD-5970-2GiB","HD-5970-1GiB"]},{"header":"HIGH END","members":["HD-5870-Eyefinity-6","HD-5870-2GiB","HD-5870-1GiB","HD-5850-2GiB","HD-5850-1GiB","HD-5830"]},{"header":"MID RANGE","members":["HD-5770-X2","HD-5770-1GiB","HD-5770-512MiB","HD-5750-1GiB","HD-5750-512MiB","HD-5730","HD-5690","HD-5670-2GiB","HD-5670-1GiB","HD-5670-512MiB"]},{"header":"ENTRY LEVEL","members":["HD-5630","HD-5610","HD-5570-2GiB-DDR3","HD-5570","HD-5570-512","HD-5570-GDDR3","HD-5570-Turks","HD-5550","HD-5530","HD-5490","HD-5470","HD-5450-2GiB-DDR3","HD-5450-1GiB-DDR3","HD-5450-1GiB-DDR2","HD-5450-512MiB-DDR3","HD-5450-512MiB-DDR2"]}]},"HD-6930-1GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cayman","Codename":"Cayman CE","Release Date":"2011-12","Die Size":"389 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"750 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"186 W","FP32 Compute":"1.920 TFLOPS","FP64 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6930 1GiB"},"HD-6930-2GiB":{"data":{"Architecture":"TeraScale 3","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cayman","Codename":"Cayman CE","Release Date":"2011-12","Die Size":"389 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"750 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"186 W","FP32 Compute":"1.920 TFLOPS","FP64 Compute":"480 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 6930 2GiB"},"HD6000":{"humanName":"HD 6000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"40 nm","DirectX Support":"11.0","Release Date":"2010-10"},"sections":[{"header":"ENTHUSIAST","members":["HD-6990"]},{"header":"HIGH END","members":["HD-6970","HD-6950-2GiB","HD-6950-1GiB","HD-6930-2GiB","HD-6930-1GiB","HD-6870-2GiB","HD-6870-1GiB","HD-6850"]},{"header":"MID RANGE","members":["HD-6790","HD-6770-512MiB"]},{"header":"ENTRY LEVEL","members":["HD-6670-2GiB","HD-6670-1GiB","HD-6670-512MiB-DDR3","HD-6570","HD-6570-DDR3","HD-6450-2GiB","HD-6450-1GiB","HD-6450-512MiB-DDR3","HD-6350"]}]},"HD-7870XT":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti LE","Release Date":"2011-11-19","Die Size":"352 mm","Shader Processor Count":1536,"Texture Mapping Unit Count":96,"Render Output Unit Count":32,"GPU Base Frequency":"925 MHz","GPU Boost Frequency":"975 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"192 GB/s","TDP":"185 W","FP32 Compute":"2.842 TFLOPS","FP64 Compute":"710 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7870XT"},"HD-7950Boost":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti Pro2","Release Date":"2012-08-14","Die Size":"352 mm","Shader Processor Count":1792,"Texture Mapping Unit Count":112,"Render Output Unit Count":32,"GPU Base Frequency":"850 MHz","GPU Boost Frequency":"925 MHz","VRAM Frequency":"5000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"240 GB/s","TDP":"225 W","FP32 Compute":"3.046 TFLOPS","FP64 Compute":"762 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7950 Boost Edition"},"HD-7970GHz-3GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2012-06-22","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 GHz Edition (3GiB)"},"HD-7970GHz-6GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2012-06-22","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"6 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"250 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 7970 GHz Edition (6GiB)"},"HD7000":{"humanName":"HD 7000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2012-01-09"},"sections":[{"header":"ENTHUSIAST","members":["HD-7990"]},{"header":"HIGH END","members":["HD-7970GHz-6GiB","HD-7970GHz-3GiB","HD-7970-6GiB","HD-7970-3GiB","HD-7950Boost","HD-7950"]},{"header":"MID RANGE","members":["HD-7870XT","HD-7870","HD-7850-2GiB","HD-7850-1GiB"]},{"header":"ENTRY LEVEL","members":["HD-7790-2GiB","HD-7790-1GiB","HD-7770-2GiB","HD-7770-1GiB","HD-7750-4GiB-DDR3","HD-7750-2GiB-DDR3","HD-7750-2GiB","HD-7750-1GiB-DDR3","HD-7750-1GiB","HD-7730-2GiB","HD-7730","HD-7730-DDR3"]}]},"HD-8350-DDR2":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cedar","Codename":"Cedar","Release Date":"2013","Die Size":"59 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"500 MHz","VRAM Frequency":"800 MT/s","VRAM Capacity":"256 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR2","VRAM Bandwidth":"6.4 GB/s","TDP":"19.1 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8350 (DDR2)"},"HD-8350-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cedar","Codename":"Cedar","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":80,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"500 MHz","VRAM Frequency":"1600 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"12.8 GB/s","TDP":"19 W","FP32 Compute":"104 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8350 (DDR3)"},"HD-8450-DDR3":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"625 MHz","VRAM Frequency":"1066 MT/s","VRAM Capacity":"512 MiB","VRAM Bus Width":"64 Bits","VRAM Type":"DDR3","VRAM Bandwidth":"8.53 GB/s","TDP":"18 W","FP32 Compute":"200 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8450 (DDR3)"},"HD-8470":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"750 MHz","VRAM Frequency":"3200 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"25.6 GB/s","TDP":"35 W","FP32 Compute":"240 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8470"},"HD-8490":{"data":{"Architecture":"TeraScale 2","Lithography":"40 nm","DirectX Support":"11.0","HLSL Shader Model":"5.0","OpenGL Support":"4.4","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Caicos","Codename":"Caicos","Release Date":"2013","Die Size":"67 mm","Shader Processor Count":160,"Texture Mapping Unit Count":8,"Render Output Unit Count":4,"GPU Base Frequency":"875 MHz","VRAM Frequency":"3600 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"64 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"28.8 GB/s","TDP":"35 W","FP32 Compute":"280 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8490"},"HD-8670":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Oland","Codename":"Oland","Release Date":"2013","Die Size":"90 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4600 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"86 W","FP32 Compute":"768 GFLOPS","FP64 Compute":"48 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8670"},"HD-8730":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Cape Verde","Codename":"Cape Verde LE","Release Date":"2013-11-05","Die Size":"123 mm","Shader Processor Count":384,"Texture Mapping Unit Count":24,"Render Output Unit Count":8,"GPU Base Frequency":"800 MHz","VRAM Frequency":"4500 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"72 GB/s","TDP":"47 W","FP32 Compute":"614 GFLOPS","FP64 Compute":"44.8 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8730"},"HD-8770":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Bonaire","Codename":"Bonaire XT","Release Date":"2013","Die Size":"160 mm","Shader Processor Count":896,"Texture Mapping Unit Count":56,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"96 GB/s","TDP":"85 W","FP32 Compute":"1.792 TFLOPS","FP64 Compute":"128 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8770"},"HD-8870":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2013","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"4800 MT/s","VRAM Capacity":"2 GiB","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"153.6 GB/s","TDP":"150 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8870"},"HD-8970":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Tahiti XT2","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":2048,"Texture Mapping Unit Count":128,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","GPU Boost Frequency":"1050 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"225 W","FP32 Compute":"4.096 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8970"},"HD-8990":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Tahiti","Codename":"Malta","Release Date":"2013","Die Size":"352 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"950 MHz","GPU Boost Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"3 GiB (per GPU)","VRAM Bus Width":"384 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"288 GB/s","TDP":"375 W","FP32 Compute":"7.782 TFLOPS","FP64 Compute":"1.946 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"HD 8990"},"HD8000":{"humanName":"HD 8000 Series","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2013"},"sections":[{"header":"ENTHUSIAST","members":["HD-8990"]},{"header":"HIGH END","members":["HD-8970","HD-8950","HD-8870-GCN1"]},{"header":"MID RANGE","members":["HD-8770-GCN2","HD-8760"]},{"header":"ENTRY LEVEL","members":["HD-8730","HD-8670","HD-8570","HD-8570-DDR3","HD-8490","HD-8470","HD-8450-DDR3","HD-8350-DDR3","HD-8350-DDR2"]}]},"R7-260":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Bonaire","Release Date":"2013-12-17","Die Size":"160 mm","Shader Processor Count":768,"Texture Mapping Unit Count":48,"Render Output Unit Count":16,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"6000 MT/s","VRAM Capacity":"1 GiB","VRAM Bus Width":"128 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"95.5 GB/s","TDP":"95 W","FP32 Compute":"1.536 TFLOPS","FP64 Compute":"96 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R7 260"},"R9-295X2":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Die Size":"428 mm","VRAM Frequency":"5000 MT/s","VRAM Bus Width":"512 Bits","VRAM Bandwidth":"320 GB/s","VRAM Type":"GDDR5","Release Date":"2014-04-08","Shader Processor Count":5632,"Texture Mapping Unit Count":352,"Render Output Unit Count":128,"GPU Base Frequency":"1018 MHz","GPU":"Hawaii","Codename":"Vesuvius","VRAM Capacity":"4 GiB (per GPU)","TDP":"500 W","FP32 Compute":"11.467 TFLOPS","FP64 Compute":"1.433 TFLOPS"},"humanName":"R9 295X2","isPart":true,"type":"Graphics Card"},"R-200":{"humanName":"R* 200","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2013-10-08"},"sections":[{"header":"ENTHUSIAST","members":["R9-295X2"]},{"header":"HIGH END","members":["R9-290X-8GiB","R9-290X-4GiB","R9-290"]},{"header":"MID RANGE","members":["R9-285","R9-280X","R9-280","R9-270X-4GiB","R9-270X-2GiB","R9-270"]},{"header":"ENTRY LEVEL","members":["R7-260X-2GiB","R7-260X-1GiB","R7-260"]}]},"R9-370X-2GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2015-08-27","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"185 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS","VRAM Capacity":"2 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R9 370X (2GiB)"},"R9-370X-4GiB":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","GPU":"Pitcairn","Codename":"Pitcairn XT","Release Date":"2015-08-27","Die Size":"212 mm","Shader Processor Count":1280,"Texture Mapping Unit Count":80,"Render Output Unit Count":32,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"5600 MT/s","VRAM Bus Width":"256 Bits","VRAM Type":"GDDR5","VRAM Bandwidth":"179.2 GB/s","TDP":"185 W","FP32 Compute":"2.560 TFLOPS","FP64 Compute":"160 GFLOPS","VRAM Capacity":"4 GiB"},"isPart":true,"type":"Graphics Card","humanName":"R9 370X (4GiB)"},"R9-Fury-X":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2015-06-24","Die Size":"596 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1050 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"275 W","FP32 Compute":"8.602 TFLOPS","FP64 Compute":"538 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Fury X"},"R9-Fury":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji Pro","Release Date":"2015-07-14","Die Size":"596 mm","Shader Processor Count":3584,"Texture Mapping Unit Count":224,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"275 W","FP32 Compute":"7.168 TFLOPS","FP64 Compute":"448 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Fury"},"R9-Nano":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2015-08-27","Die Size":"596 mm","Shader Processor Count":4096,"Texture Mapping Unit Count":256,"Render Output Unit Count":64,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"175 W","FP32 Compute":"8.192 TFLOPS","FP64 Compute":"512 GFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"R9 Nano"},"Radeon-Pro-Duo":{"data":{"Architecture":"3rd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","GPU":"Fiji","Codename":"Fiji XT","Release Date":"2016-04-26","Die Size":"596 mm","Shader Processor Count":8192,"Texture Mapping Unit Count":512,"Render Output Unit Count":128,"GPU Base Frequency":"1000 MHz","VRAM Frequency":"1000 MT/s","VRAM Capacity":"4 GiB (per GPU)","VRAM Bus Width":"4096 Bits","VRAM Type":"HBM","VRAM Bandwidth":"512 GB/s","TDP":"350 W","FP32 Compute":"16.384 TFLOPS","FP64 Compute":"1.024 TFLOPS"},"isPart":true,"type":"Graphics Card","humanName":"Radeon Pro Duo"},"R-300":{"humanName":"R* 300","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"28 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2015-06-16"},"sections":[{"header":"ENTHUSIAST","members":["Radeon-Pro-Duo","R9-Fury-X","R9-Nano","R9-Fury"]},{"header":"HIGH END","members":["R9-390X","R9-390"]},{"header":"MID RANGE","members":["R9-380X","R9-380-4GiB","R9-380-2GiB","R9-370X-4GiB","R9-370X-2GiB","R7-370-4GiB","R7-370-2GiB"]},{"header":"ENTRY LEVEL","members":["R7-360"]}]},"RX-450":{"data":{"Architecture":"1st Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"1.2","Crossfire Support":"CrossfireX","Release Date":"2016-06-30","GPU Base Frequency":"1050 MHz","VRAM Frequency":"4500 MT/s","VRAM Bandwidth":"72 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":32,"Shader Processor Count":512,"Die Size":"123 mm","GPU":"Cape Verde","Codename":"Cape Verde Pro","TDP":"65 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.075 TFLOPS","FP64 Compute":"67 GFLOPS"},"humanName":"RX 450","isPart":true,"type":"Graphics Card"},"RX-455":{"data":{"Architecture":"2nd Gen GCN","Lithography":"28 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","Release Date":"2016-06-30","GPU Base Frequency":"1050 MHz","VRAM Frequency":"6500 MT/s","VRAM Bandwidth":"104 GB/s","VRAM Capacity":"2 GiB","Render Output Unit Count":16,"Texture Mapping Unit Count":48,"Shader Processor Count":768,"Die Size":"160 mm","GPU":"Bonaire","Codename":"Bonaire Pro","TDP":"100 W","VRAM Type":"GDDR5","VRAM Bus Width":"128 Bits","FP32 Compute":"1.613 TFLOPS","FP64 Compute":"101 GFLOPS"},"humanName":"RX 455","isPart":true,"type":"Graphics Card"},"RX-470D":{"data":{"Architecture":"4th Gen GCN","Lithography":"14 nm","DirectX Support":"12.0","HLSL Shader Model":"6.0","Vulkan Support":"1.1","OpenGL Support":"4.5","OpenCL Support":"2.0","FreeSync Support":true,"Crossfire Support":"XDMA","VRAM Capacity":"8 GB","Release Date":"2016-10-21","GPU Base Frequency":"926 MHz","GPU Boost Frequency":"1206 MHz","VRAM Frequency":"7000 MT/s","VRAM Bandwidth":"224 GB/s","Render Output Unit Count":32,"Texture Mapping Unit Count":112,"Shader Processor Count":1792,"Die Size":"232 mm","GPU":"Polaris 10","Codename":"Ellesmere LE","TDP":"120 W","VRAM Type":"GDDR5","VRAM Bus Width":"256 Bits","FP32 Compute":"3.319 TFLOPS","FP64 Compute":"207 GFLOPS"},"humanName":"RX 470D","isPart":true,"type":"Graphics Card"},"RX-400":{"humanName":"RX 400","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2016-06-29"},"sections":[{"header":"MID RANGE","members":["RX-480-8GiB","RX-480-4GiB","RX-470-8GiB","RX-470-4GiB","RX-470D"]},{"header":"ENTRY LEVEL","members":["RX-460-4GiB","RX-460-2GiB","RX-455","RX-450"]}]},"RX-500":{"humanName":"RX 500","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.0","Vulkan Support":"1.1","Release Date":"2017-04-18"},"sections":[{"header":"MID RANGE","members":["RX-580-8GiB","RX-580-4GiB","RX-570-8GiB","RX-570-4GiB"]},{"header":"ENTRY LEVEL","members":["RX-560-4GiB","RX-560-2GiB","RX-550-4GiB","RX-550-2GiB"]}]},"RX-Vega":{"humanName":"RX Vega","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"14 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Release Date":"2017-08-14"},"sections":[{"header":"ENTHUSIAST","members":["RX-Vega-64-Liquid","RX-Vega-64"]},{"header":"HIGH END","members":["RX-Vega-56"]}]},"Radeon-VII-Architecture":{"humanName":"Radeon VII","type":"Graphics Architecture","isPart":false,"topHeader":"SELECT CARD:","data":{"Lithography":"7 nm","DirectX Support":"12.1","Vulkan Support":"1.1","Release Date":"2019-02-07"},"sections":[{"header":"ENTHUSIAST","members":["Radeon-VII"]}]},"GPUs-CONSUMER":{"humanName":"Consumer GPUs","type":"Generic Container","isPart":false,"topHeader":"SELECT SERIES:","sections":[{"header":"RX Series","members":["Radeon-VII-Architecture","RX-Vega","RX-500","RX-400"]},{"header":"R Series","members":["R-300","R-200"]},{"header":"HD Series","members":["HD8000","HD7000","HD6000","HD5000","HD4000"]}]},"Core-i7-8709G":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake G","Market":"Mobile","Lithography":"14 nm","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-01-07","Socket":"BGA2270","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4","TDP":"100 W"},"isPart":true,"type":"CPU","humanName":"Core i7-8709G"},"3020e":{"humanName":"3020e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6300":{"humanName":"Core 2 duo e6300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6550":{"humanName":"Core 2 duo e6550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6750":{"humanName":"Core 2 duo e6750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e6850":{"humanName":"Core 2 duo e6850","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7200":{"humanName":"Core 2 duo e7200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7300":{"humanName":"Core 2 duo e7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7400":{"humanName":"Core 2 duo e7400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7500":{"humanName":"Core 2 duo e7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e7600":{"humanName":"Core 2 duo e7600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8300":{"humanName":"Core 2 duo e8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8400":{"humanName":"Core 2 duo e8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8500":{"humanName":"Core 2 duo e8500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-e8600":{"humanName":"Core 2 duo e8600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p7350":{"humanName":"Core 2 duo p7350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p7450":{"humanName":"Core 2 duo p7450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8400":{"humanName":"Core 2 duo p8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8600":{"humanName":"Core 2 duo p8600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8700":{"humanName":"Core 2 duo p8700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-p8800":{"humanName":"Core 2 duo p8800","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5500":{"humanName":"Core 2 duo t5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5750":{"humanName":"Core 2 duo t5750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t5870":{"humanName":"Core 2 duo t5870","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6400":{"humanName":"Core 2 duo t6400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6500":{"humanName":"Core 2 duo t6500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6570":{"humanName":"Core 2 duo t6570","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6600":{"humanName":"Core 2 duo t6600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t6670":{"humanName":"Core 2 duo t6670","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7200":{"humanName":"Core 2 duo t7200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7250":{"humanName":"Core 2 duo t7250","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7300":{"humanName":"Core 2 duo t7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7500":{"humanName":"Core 2 duo t7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t7700":{"humanName":"Core 2 duo t7700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t8100":{"humanName":"Core 2 duo t8100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t8300":{"humanName":"Core 2 duo t8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9300":{"humanName":"Core 2 duo t9300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9400":{"humanName":"Core 2 duo t9400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9500":{"humanName":"Core 2 duo t9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9550":{"humanName":"Core 2 duo t9550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9600":{"humanName":"Core 2 duo t9600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-duo-t9900":{"humanName":"Core 2 duo t9900","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-extreme-x9650":{"humanName":"Core 2 extreme x9650","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q6600":{"humanName":"Core 2 quad q6600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q6700":{"humanName":"Core 2 quad q6700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8200":{"humanName":"Core 2 quad q8200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8300":{"humanName":"Core 2 quad q8300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q8400":{"humanName":"Core 2 quad q8400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9000":{"humanName":"Core 2 quad q9000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9300":{"humanName":"Core 2 quad q9300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9400":{"humanName":"Core 2 quad q9400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9450":{"humanName":"Core 2 quad q9450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9500":{"humanName":"Core 2 quad q9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9505":{"humanName":"Core 2 quad q9505","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9550":{"humanName":"Core 2 quad q9550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-2-quad-q9650":{"humanName":"Core 2 quad q9650","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1000ng4":{"humanName":"Core i3 1000ng4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-10105f":{"humanName":"Core i3 10105f","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1115g4":{"humanName":"Core i3 1115g4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1115g4e":{"humanName":"Core i3 1115g4e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1125g4":{"humanName":"Core i3 1125g4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-1215u":{"humanName":"Core i3 1215u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i3-8121u":{"humanName":"Core i3 8121u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1030ng7":{"humanName":"Core i5 1030ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1038ng7":{"humanName":"Core i5 1038ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1135g7":{"humanName":"Core i5 1135g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1145g7":{"humanName":"Core i5 1145g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1155g7":{"humanName":"Core i5 1155g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1230u":{"humanName":"Core i5 1230u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-1235u":{"humanName":"Core i5 1235u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-12500Te":{"humanName":"Core i5 12500Te","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-2415m":{"humanName":"Core i5 2415m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i5-l16g7":{"humanName":"Core i5 l16g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1060ng7":{"humanName":"Core i7 1060ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1068ng7":{"humanName":"Core i7 1068ng7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-10875h":{"humanName":"Core i7 10875h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-11375h":{"humanName":"Core i7 11375h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1165g7":{"humanName":"Core i7 1165g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1185g7":{"humanName":"Core i7 1185g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1195g7":{"humanName":"Core i7 1195g7","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1250u":{"humanName":"Core i7 1250u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1260u":{"humanName":"Core i7 1260u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-1265u":{"humanName":"Core i7 1265u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i7-12700e":{"humanName":"Core i7 12700e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-10885h":{"humanName":"Core i9 10885h","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-12900Te":{"humanName":"Core i9 12900Te","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-i9-13900e":{"humanName":"Core i9 13900e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-m-5y10c":{"humanName":"Core m 5y10c","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"Core-m-5y51":{"humanName":"Core m 5y51","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"MISSINGCPUSAGAIN":{"humanName":"MISSINGCPUSAGAIN","type":"CPU Architecture","topHeader":"","data":{"Lithography":"30nm","Sockets":["idk lol"],"Release Date":"0000-00-00"},"sections":[{"header":"MISSINGCPUS","members":["Core-i9-13900KS","Core-i9-13900KF","Core-i9-13900K","Core-i7-13700KF","Core-i7-13700K","Core-i9-13900","Core-i5-13600KF","Core-i9-12900KS","Core-i9-13900F","ryzen-7-7745hx","Core-i5-13600K","Core-i7-13700F","Core-i7-13700","Core-i9-12900K","Core-i9-12900F","Core-i9-12900KF","Core-i7-12700K","Core-i7-12700KF","Core-i9-12900","Core-i5-12600KF","Core-i5-12600K","Core-i7-13700T","Core-i5-13600","Core-i5-13500","Core-i5-13600T","Core-i9-11900K","Core-i5-12600","Core-i7-12700F","Core-i9-12900T","Core-i9-11900KF","Core-i5-12500","Core-i5-13400F","Core-i5-13400","Core-i3-13100F","Core-i3-12300","Core-i7-12700T","Core-i7-12700e","Core-i7-11700KF","Core-i3-13100","Core-i5-13500T","Core-i7-12700","Core-i3-12100F","Core-i7-11700K","Core-i5-13400T","Core-i5-12600T","Core-i5-12400F","Core-i9-11900F","Core-i5-11600KF","Core-i5-12500T","xeon-w-1350","Core-i5-11600K","Core-i5-12400","Core-i3-12100","Core-i5-11600","Core-i9-11900","ryzen-7-5700x","Core-i7-11700F","Core-i7-11700","Core-i5-12400T","Core-i9-11900T","Core-i3-13100T","Core-i7-11390H","Core-i5-11500","Core-i7-11850H","Core-i5-11400F","Core-i3-12100T","Core-i5-11400","Core-i9-12900Te","Core-i7-1265u","Core-i5-11500H","Core-i7-11800H","Core-i5-1235u","Core-i7-1195g7","Core-i7-11375h","Core-i7-11600H","Core-i5-11320H","Core-i3-1215u","Core-i5-11400H","Core-i9-13900e","ryzen-9-pro-6950H","Core-i9-10900KF","ryzen-7-7736u","Core-i9-10900K","Core-i5-1155g7","Core-i7-1165g7","xeon-w-1290","Core-i5-11260H","Core-i9-10850K","Core-i7-11370H","Core-i7-1185g7","Core-i5-1145g7","Core-i7-11700T","Core-i7-10700K","Core-i7-10700KF","xeon-w-1270","Core-i5-11500T","Core-i5-11300H","Core-i9-10900","Core-i5-10600KF","Core-i9-10900F","ryzen-threadripper-3960x","Core-i3-1115g4e","ryzen-7-5825u","Core-i5-10600K","Core-i7-1250u","Core-i5-1230u","Core-i9-10910","Core-i7-10700F","Core-i5-1135g7","Core-i5-11400T","Core-i5-10600","Core-i7-1068ng7","Core-i7-10700","Core-i3-1115g4","ryzen-5-4500","Core-i9-10885h","Core-i5-10505","Core-i5-10500","Core-i5-12500Te","Core-i7-10875h","Core-i7-1260u","Core-i3-10105","ryzen-3-4100","ryzen-3-3100","Core-i7-10850H","Core-i3-10105f","xeon-e3-1270-v6","Core-i7-10870H","Core-i7-10750H","Core-i5-1038ng7","Core-i5-10500H","Core-i3-1125g4","Core-i5-10400F","Core-i3-10100F","Core-i3-10100","Core-i5-10400","Core-i9-10900T","Core-i7-10700T","Core-i5-10300H","Core-i5-10400H","Core-i5-10600T","Core-i5-10200H","xeon-w-2140b","ryzen-5-4600Hs","xeon-gold-6136","Core-i7-1060ng7","Core-i3-10100T","Core-i5-10500T","Core-i3-1000ng4","epyc-7742","xeon-e3-1271-v3","xeon-gold-6150","xeon-e5-1650-v4","xeon-e3-1535m-v5","Core-i5-1030ng7","ryzen-threadripper-1900x","Core-i5-10400T","Core-i3-8121u","xeon-silver-4210r","ryzen-7-pro-1700x","xeon-e5-1620-v4","epyc-7313","xeon-e3-1268l-v3","Core-i4-4690T","xeon-silver-4210","athlon-3000g","ryzen-5-pro-2500u","ryzen-5-3500u","pentium-gold-g5400","Core-m-5y51","xeon-e5-1660-v2","Core-i5-l16g7","xeon-e3-1225-v2","Core-m-5y10c","xeon-e5-2680-v2","pentium-silver-n6000","xeon-e5-1603","xeon-e3-1220l-v2","xeon-e5-2470-v2","athlon-x4-840","a10-7850K","a8-6600K","a10-9600p","a8-7600","a8-6500","Core-i5-2415m","xeon-e5-2660-v2","xeon-e5-2630l-v2","pro-a8-8650b","celeron-g1620","Core-2-duo-e8600","Core-2-duo-e8500","Core-2-quad-q9650","Core-2-extreme-x9650","Core-2-duo-t9900","Core-2-duo-e7600","Core-2-quad-q9550","Core-2-duo-e8300","Core-2-duo-e8400","Core-2-quad-q9505","Core-2-quad-q9500","Core-2-duo-e7500","celeron-j4005","a8-3870","Core-2-duo-t9550","Core-2-duo-t9500","Core-2-quad-q9400","Core-2-quad-q8400","Core-2-quad-q9450","Core-2-duo-t9600","Core-2-duo-e6850","Core-2-duo-t9300","Core-2-duo-p8800","athlon-ii-x4-645","Core-2-duo-e7300","phenom-ii-x4-925","Core-2-duo-t9400","Core-2-quad-q8300","Core-2-duo-p8700","Core-2-duo-e7200","Core-2-duo-e7400","Core-2-quad-q9300","Core-2-quad-q8200","a8-3820","Core-2-duo-t8300","Core-2-duo-e6750","Core-2-quad-q6700","athlon-ii-x4-635","athlon-ii-x2-215","Core-2-duo-t8100","Core-2-duo-p8600","Core-2-quad-q9000","a10-5745m","Core-2-duo-p8400","Core-2-quad-q6600","athlon-ii-x2-220","Core-2-duo-p7450","Core-2-duo-e6550","Core-2-duo-t6570","Core-2-duo-t6600","Core-2-duo-t7700","Core-2-duo-t7500","Core-2-duo-t6500","Core-2-duo-t6670","Core-2-duo-t5870","Core-2-duo-t6400","atom-x7-e3950","Core-2-duo-p7350","Core-2-duo-t7300","Core-2-duo-t7200","Core-2-duo-t5750","a4-7210","Core-2-duo-e6300","Core-2-duo-t7250","a4-6210","atom-x5-z8550","celeron-n2840","Core-2-duo-t5500","e1-2500","e1-6015","e2-1800","e-350","e1-2100","c-60","Core-i9-13900KS","Core-i9-13900KF","Core-i9-13900K","xeon-w7-2495x","xeon-w9-3475x","ryzen-threadripper-pro-5995wx","Core-i7-13700KF","Core-i7-13700K","xeon-w-3375","Core-i9-13900F","Core-i9-12900KS","ryzen-threadripper-pro-5975wx","Core-i9-13900","ryzen-threadripper-pro-5955wx","Core-i9-12900K","Core-i7-13700F","Core-i5-13600KF","ryzen-threadripper-pro-3995wx","epyc-7713","Core-i9-12900KF","Core-i5-13600K","Core-i7-13700","ryzen-threadripper-3970x","Core-i9-12900F","ryzen-9-7845hx","Core-i7-12700K","ryzen-threadripper-3960x","Core-i7-12700KF","ryzen-7-7745hx","Core-i9-12900","Core-i9-13900e","epyc-7413","Core-i5-13600T","Core-i5-13600","Core-i5-13500","Core-i7-12700e","Core-i5-12600KF","Core-i9-12900T","epyc-7742","Core-i5-12600K","Core-i9-12900Te","Core-i7-13700T","Core-i7-12700F","Core-i9-11900K","Core-i5-13400F","xeon-w5-2445","Core-i5-13400","Core-i7-12700","Core-i7-11700KF","Core-i9-11900KF","xeon-gold-6150","xeon-e-2388g","Core-i7-12700T","Core-i5-13500T","xeon-gold-5317","Core-i5-12600","Core-i7-11700K","ryzen-7-5700x","Core-i5-13400T","ryzen-9-6900Hx","xeon-gold-6154","xeon-gold-6132","Core-i9-10900K","Core-i9-11900F","Core-i9-10900KF","xeon-gold-6148","Core-i5-12500","Core-i9-10850K","ryzen-7-6800H","xeon-gold-6136","Core-i5-12400F","xeon-w-1290","Core-i5-12400","Core-i7-11700F","Core-i9-11900","ryzen-9-6900Hs","Core-i5-11600KF","Core-i9-11900T","Core-i5-11600K","Core-i7-11700","ryzen-7-6800Hs","ryzen-5-5600","xeon-e5-2697a-v4","xeon-gold-6140","xeon-e5-2698-v4","xeon-w-1270p","Core-i9-10900F","Core-i9-10900","ryzen-9-pro-6950H","xeon-e5-2696-v3","xeon-gold-6138","Core-i5-11600","Core-i9-10910","xeon-w-1350","Core-i7-10700K","Core-i7-10700KF","Core-i7-11850H","xeon-e5-2699-v4","xeon-w-1270","xeon-silver-4214r","Core-i3-12300","Core-i7-11800H","ryzen-7-7735u","Core-i3-13100F","Core-i5-12600T","ryzen-5-5500","xeon-silver-4216","Core-i5-11400F","xeon-w-2140b","xeon-e5-2690-v4","xeon-e5-2687w-v4","ryzen-threadripper-1950x","ryzen-threadripper-2970wx","Core-i5-12500T","ryzen-7-pro-6850H","Core-i5-12400T","Core-i3-12100F","xeon-e5-1660-v3","Core-i5-11500","ryzen-5-pro-6650H","ryzen-7-7736u","Core-i3-13100","Core-i5-11400","xeon-gold-6134","xeon-silver-4310","xeon-e5-2673-v4","Core-i7-10700F","xeon-e5-2695-v4","ryzen-5-6600H","xeon-e-2378","xeon-e5-2680-v4","xeon-e5-2690-v3","xeon-processor-e5-1680-v3","xeon-w-11855m","ryzen-threadripper-1920x","Core-i7-10700","Core-i3-12100","xeon-w-10885m","Core-i5-10600KF","epyc-7313","Core-i5-10600K","xeon-e5-1680-v4","Core-i7-11600H","xeon-e5-2683-v4","xeon-silver-4214","xeon-e5-2667-v4","ryzen-5-7535hs","ryzen-5-6600u","xeon-e5-2678-v3","Core-i9-10885h","Core-i9-10900T","Core-i7-11700T","ryzen-9-4900Hs","ryzen-5-pro-6650u","Core-i7-10875h","Core-i5-12500Te","Core-i5-11500H","Core-i3-13100T","Core-i5-11400H","xeon-silver-4210r","ryzen-5-4500","Core-i5-11260H","Core-i7-1265u","ryzen-7-5825u","Core-i5-10600","Core-i7-10870H","xeon-e5-2660-v4","ryzen-7-4800Hs","xeon-gold-6128","xeon-e5-2670-v3","Core-i3-12100T","ryzen-threadripper-1900x","Core-i5-10400F","Core-i5-1235u","ryzen-5-7530u","xeon-w-10855m","Core-i5-11500T","xeon-silver-4210","ryzen-7-pro-1700x","xeon-e5-1650-v4","Core-i7-11375h","Core-i7-11390H","Core-i5-11400T","Core-i7-11370H","Core-i5-10400","ryzen-7-pro-5875u","Core-i5-10500","xeon-e5-2640-v3","ryzen-5-pro-7530u","Core-i5-1230u","Core-i5-11320H","Core-i7-10750H","Core-i7-10850H","Core-i7-1250u","xeon-silver-4114","xeon-e5-2650l-v4","ryzen-7-5700u","Core-i7-10700T","Core-i7-1195g7","Core-i7-1185g7","ryzen-5-4600Hs","Core-i5-10505","Core-i7-1068ng7","ryzen-3-3100","ryzen-5-4600H","Core-i5-1145g7","ryzen-7-pro-1700","Core-i5-10500H","Core-i7-1165g7","Core-i5-11300H","Core-i7-1260u","Core-i5-1155g7","Core-i3-1215u","Core-i5-1038ng7","Core-i3-10105","ryzen-3-4100","ryzen-5-4600u","ryzen-5-5500u","epyc-7313p","Core-i5-1135g7","Core-i5-10600T","xeon-e3-1270-v6","Core-i5-10500T","Core-i3-10105f","xeon-e3-1230-v6","pentium-gold-g7400","Core-i3-10100F","xeon-e5-2630l-v3","ryzen-3-5425u","xeon-silver-4108","Core-i3-10100","xeon-e5-1630-v4","Core-i5-10400T","xeon-e3-1240-v5","xeon-e5-2690-v2","xeon-e5-1630-v3","Core-i3-1125g4","xeon-e3-1276-v3","Core-i5-10400H","Core-i5-10300H","xeon-e3-1545m-v5","xeon-e3-1271-v3","xeon-e3-1535m-v6","Core-i5-10200H","xeon-e5-1620-v4","Core-i3-10100T","xeon-e3-1505m-v6","xeon-e5-2680-v2","xeon-e3-1241-v3","xeon-e3-1246-v3","xeon-e3-1231-v3","ryzen-5-7520u","ryzen-3-7320u","xeon-e3-1535m-v5","ryzen-5-3400g","ryzen-3-5300u","xeon-e5-2667-v3","xeon-e5-2623-v4","xeon-e5-2643-v2","xeon-e5-2670-v2","xeon-e3-1275l-v3","xeon-e3-1265l-v3","xeon-e3-1225-v5","ryzen-5-pro-3400ge","xeon","ryzen-5-2400g","xeon-e5-1660-v2","Core-i7-1060ng7","xeon-e5-2660-v2","xeon-e3-1268l-v3","Core-i3-1115g4","xeon-e5-2470-v2","Core-i5-1030ng7","ryzen-3-2200g","celeron-g6900e","Core-i4-4690T","Core-i3-1115g4e","ryzen-5-pro-2500u","pentium-gold-7505","ryzen-5-3500u","xeon-e5-2640-v2","xeon-e3-1270-v2","xeon-e5-1620-v2","Core-i3-8121u","ryzen-5-2500u","xeon-e3-1245-v2","Core-i3-1000ng4","xeon-e5-2630l-v2","xeon-e5-2420-v2","xeon-e5-2620-v2","athlon-3000g","xeon-e3-1225-v2","phenom-ii-x6-1100T-black-edition","xeon-e3-1265l-v2","xeon-e3-1220-v2","pentium-gold-g6400","xeon-e5-1607","athlon-gold-3150u","a10-9700","xeon-e5-1607-v2","fx-9830p","xeon-e5-2673-v3","ryzen-3-2200u","pentium-gold-g5400","xeon-e5-1603","a8-9600","phenom-ii-x6-1090T-black-edition","celeron-j6413","athlon-silver-3050u","celeron-n5105","celeron-g5905","a10-7870K","fx-8800p","a10-7860K","Core-i5-l16g7","Core-m-5y10c","athlon-x4-840","a10-7850K","Core-2-extreme-x9650","pentium-silver-n6000","athlon-ii-x4-651","Core-2-quad-q9650","Core-m-5y51","3020e","a10-6700","a10-9620p","a8-3870","a8-5600K","a8-6600K","a10-5800K","a10-5800b","a8-7600","a8-6500","pro-a8-8600b","Core-2-quad-q9500","Core-2-quad-q9550","a10-8750","Core-2-quad-q9505","athlon-x4-760K","phenom-ii-x4-945","athlon-x4-750K","athlon-ii-x4-645","a8-6500b","pro-a8-8650b","a10-9600p","pro-a10-8700b","pro-a10-8730b","a6-9500","xeon-e3-1220l-v2","Core-2-quad-q8400","Core-2-quad-q9400","phenom-ii-x4-925","a8-5500b","celeron-g3900T","Core-2-quad-q9450","celeron-j4105","a8-3820","athlon-ii-x4-630","Core-i5-2415m","Core-2-quad-q8300","pentium-silver-n5000","a8-5500","Core-2-quad-q8200","phenom-ii-x4-810","athlon-ii-x4-635","celeron-g1820","a6-3600","pentium-silver-n5030","athlon-ii-x4-620","celeron-n4120","Core-2-quad-q6700","Core-2-quad-q9300","atom-x6211e","athlon-ii-x3-450","Core-2-quad-q6600","celeron-g1620","celeron-j3455","celeron-g1610","Core-2-quad-q9000","atom-x7-e3950","a10-4600m","a10-5750m","fx-7500","a8-5550m","celeron-g540","Core-2-duo-e8600","Core-2-duo-e8500","Core-2-duo-e8300","a10-7300","celeron-5205u","Core-2-duo-t9900","phenom-ii-x2-555-black-edition","a8-4500m","Core-2-duo-e8400","Core-2-duo-e7600","a6-7310","a6-5200","a10-5745m","celeron-j4005","a6-7400K","a6-6310","a6-6400K","Core-2-duo-e7500","celeron-1037u","a4-7210","Core-2-duo-t9500","celeron-1005m","Core-2-duo-t9600","Core-2-duo-t9550","a8-5545m","celeron-j4025","Core-2-duo-e6850","atom-x7-z8750","Core-2-duo-p8800","e2-7110","Core-2-duo-t9300","celeron-1000m","atom-x5-z8550","athlon-ii-x2-250","a6-5400K","a4-3400","celeron-j1900","Core-2-duo-e7200","a4-6210","Core-2-duo-e7300","athlon-ii-x2-240","a4-5300","atom-x7-z8700","Core-2-duo-p8700","Core-2-duo-e6750","athlon-ii-x2-215","celeron-n3150","celeron-n2940","celeron-j3160","atom-x5-z8500","celeron-3205u","Core-2-duo-t9400","Core-2-duo-e7400","a4-5000","atom-z3795","Core-2-duo-t8300","Core-2-duo-p8600","athlon-ii-x2-220","Core-2-duo-p7450","Core-2-duo-p8400","celeron-1017u","Core-2-duo-t8100","Core-2-duo-e6550","Core-2-duo-t6570","celeron-j3355","celeron-n3350","Core-2-duo-t6400","a4-3300m","Core-2-duo-p7350","Core-2-duo-t6600","a6-4400m","Core-2-duo-t5870","Core-2-duo-t6500","Core-2-duo-t7700","Core-2-duo-t7500","atom-x5-z8350","a4-3330mx","Core-2-duo-t6670","celeron-t3100","Core-2-duo-t7300","Core-2-duo-t5750","Core-2-duo-t7200","Core-2-duo-e6300","Core-2-duo-t7250","celeron-n2840","celeron-n2830","pentium-d-945/950","Core-2-duo-t5500","celeron-847","celeron-n3050","celeron-n2815","e1-2500","e1-6015","e1-6010","e2-1800","e-350","e1-2100","c-60"]}]},"a10-4600m":{"humanName":"a10 4600m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5745m":{"humanName":"a10 5745m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5750m":{"humanName":"a10 5750m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5800K":{"humanName":"a10 5800K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-5800b":{"humanName":"a10 5800b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-6700":{"humanName":"a10 6700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7300":{"humanName":"a10 7300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7850K":{"humanName":"a10 7850K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7860K":{"humanName":"a10 7860K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-7870K":{"humanName":"a10 7870K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-8750":{"humanName":"a10 8750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9600p":{"humanName":"a10 9600p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9620p":{"humanName":"a10 9620p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a10-9700":{"humanName":"a10 9700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3300m":{"humanName":"a4 3300m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3330mx":{"humanName":"a4 3330mx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-3400":{"humanName":"a4 3400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-5000":{"humanName":"a4 5000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-5300":{"humanName":"a4 5300","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-6210":{"humanName":"a4 6210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a4-7210":{"humanName":"a4 7210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-3600":{"humanName":"a6 3600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-4400m":{"humanName":"a6 4400m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-5200":{"humanName":"a6 5200","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-5400K":{"humanName":"a6 5400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-6310":{"humanName":"a6 6310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-6400K":{"humanName":"a6 6400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-7310":{"humanName":"a6 7310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-7400K":{"humanName":"a6 7400K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a6-9500":{"humanName":"a6 9500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-3820":{"humanName":"a8 3820","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-3870":{"humanName":"a8 3870","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-4500m":{"humanName":"a8 4500m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5500":{"humanName":"a8 5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5500b":{"humanName":"a8 5500b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5545m":{"humanName":"a8 5545m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5550m":{"humanName":"a8 5550m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-5600K":{"humanName":"a8 5600K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6500":{"humanName":"a8 6500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6500b":{"humanName":"a8 6500b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-6600K":{"humanName":"a8 6600K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-7600":{"humanName":"a8 7600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"a8-9600":{"humanName":"a8 9600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-3000g":{"humanName":"athlon 3000g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-gold-3150u":{"humanName":"athlon gold 3150u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-215":{"humanName":"athlon ii x2 215","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-220":{"humanName":"athlon ii x2 220","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-240":{"humanName":"athlon ii x2 240","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x2-250":{"humanName":"athlon ii x2 250","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x3-450":{"humanName":"athlon ii x3 450","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-620":{"humanName":"athlon ii x4 620","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-630":{"humanName":"athlon ii x4 630","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-635":{"humanName":"athlon ii x4 635","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-645":{"humanName":"athlon ii x4 645","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-ii-x4-651":{"humanName":"athlon ii x4 651","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-silver-3050u":{"humanName":"athlon silver 3050u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-750K":{"humanName":"athlon x4 750K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-760K":{"humanName":"athlon x4 760K","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"athlon-x4-840":{"humanName":"athlon x4 840","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8350":{"humanName":"atom x5 z8350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8500":{"humanName":"atom x5 z8500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x5-z8550":{"humanName":"atom x5 z8550","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x6211e":{"humanName":"atom x6211e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-e3950":{"humanName":"atom x7 e3950","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-z8700":{"humanName":"atom x7 z8700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-x7-z8750":{"humanName":"atom x7 z8750","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"atom-z3795":{"humanName":"atom z3795","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"c-60":{"humanName":"c 60","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1000m":{"humanName":"celeron 1000m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1005m":{"humanName":"celeron 1005m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1017u":{"humanName":"celeron 1017u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-1037u":{"humanName":"celeron 1037u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-3205u":{"humanName":"celeron 3205u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-5205u":{"humanName":"celeron 5205u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1610":{"humanName":"celeron g1610","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1620":{"humanName":"celeron g1620","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g1820":{"humanName":"celeron g1820","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g3900T":{"humanName":"celeron g3900T","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g540":{"humanName":"celeron g540","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g5905":{"humanName":"celeron g5905","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-g6900e":{"humanName":"celeron g6900e","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j1900":{"humanName":"celeron j1900","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3160":{"humanName":"celeron j3160","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3355":{"humanName":"celeron j3355","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j3455":{"humanName":"celeron j3455","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4005":{"humanName":"celeron j4005","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4025":{"humanName":"celeron j4025","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j4105":{"humanName":"celeron j4105","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-j6413":{"humanName":"celeron j6413","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2830":{"humanName":"celeron n2830","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2840":{"humanName":"celeron n2840","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n2940":{"humanName":"celeron n2940","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n3150":{"humanName":"celeron n3150","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n3350":{"humanName":"celeron n3350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n4120":{"humanName":"celeron n4120","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-n5105":{"humanName":"celeron n5105","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"celeron-t3100":{"humanName":"celeron t3100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e-350":{"humanName":"e 350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-2100":{"humanName":"e1 2100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-2500":{"humanName":"e1 2500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e1-6015":{"humanName":"e1 6015","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e2-1800":{"humanName":"e2 1800","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"e2-7110":{"humanName":"e2 7110","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7313":{"humanName":"epyc 7313","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7313p":{"humanName":"epyc 7313p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7413":{"humanName":"epyc 7413","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7713":{"humanName":"epyc 7713","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"epyc-7742":{"humanName":"epyc 7742","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-7500":{"humanName":"fx 7500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-8800p":{"humanName":"fx 8800p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"fx-9830p":{"humanName":"fx 9830p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-7505":{"humanName":"pentium gold 7505","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g5400":{"humanName":"pentium gold g5400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g6400":{"humanName":"pentium gold g6400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-gold-g7400":{"humanName":"pentium gold g7400","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n5000":{"humanName":"pentium silver n5000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n5030":{"humanName":"pentium silver n5030","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pentium-silver-n6000":{"humanName":"pentium silver n6000","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x2-555-black-edition":{"humanName":"phenom ii x2 555 black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-810":{"humanName":"phenom ii x4 810","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-925":{"humanName":"phenom ii x4 925","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x4-945":{"humanName":"phenom ii x4 945","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x6-1090T-black-edition":{"humanName":"phenom ii x6 1090T black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"phenom-ii-x6-1100T-black-edition":{"humanName":"phenom ii x6 1100T black edition","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a10-8700b":{"humanName":"pro a10 8700b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a10-8730b":{"humanName":"pro a10 8730b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a8-8600b":{"humanName":"pro a8 8600b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"pro-a8-8650b":{"humanName":"pro a8 8650b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-2200g":{"humanName":"ryzen 3 2200g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-2200u":{"humanName":"ryzen 3 2200u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-3100":{"humanName":"ryzen 3 3100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-4100":{"humanName":"ryzen 3 4100","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-5300u":{"humanName":"ryzen 3 5300u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-5425u":{"humanName":"ryzen 3 5425u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-3-7320u":{"humanName":"ryzen 3 7320u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-2400g":{"humanName":"ryzen 5 2400g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-2500u":{"humanName":"ryzen 5 2500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-3400g":{"humanName":"ryzen 5 3400g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-3500u":{"humanName":"ryzen 5 3500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4500":{"humanName":"ryzen 5 4500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600H":{"humanName":"ryzen 5 4600H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600Hs":{"humanName":"ryzen 5 4600Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-4600u":{"humanName":"ryzen 5 4600u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5500":{"humanName":"ryzen 5 5500","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5500u":{"humanName":"ryzen 5 5500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-5600":{"humanName":"ryzen 5 5600","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-6600H":{"humanName":"ryzen 5 6600H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-6600u":{"humanName":"ryzen 5 6600u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7520u":{"humanName":"ryzen 5 7520u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7530u":{"humanName":"ryzen 5 7530u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-7535hs":{"humanName":"ryzen 5 7535hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-2500u":{"humanName":"ryzen 5 pro 2500u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-3400ge":{"humanName":"ryzen 5 pro 3400ge","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-6650H":{"humanName":"ryzen 5 pro 6650H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-6650u":{"humanName":"ryzen 5 pro 6650u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-5-pro-7530u":{"humanName":"ryzen 5 pro 7530u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-4800Hs":{"humanName":"ryzen 7 4800Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5700u":{"humanName":"ryzen 7 5700u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5700x":{"humanName":"ryzen 7 5700x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-5825u":{"humanName":"ryzen 7 5825u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-6800H":{"humanName":"ryzen 7 6800H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-6800Hs":{"humanName":"ryzen 7 6800Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7735u":{"humanName":"ryzen 7 7735u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7736u":{"humanName":"ryzen 7 7736u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-7745hx":{"humanName":"ryzen 7 7745hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-1700":{"humanName":"ryzen 7 pro 1700","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-1700x":{"humanName":"ryzen 7 pro 1700x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-5875u":{"humanName":"ryzen 7 pro 5875u","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-7-pro-6850H":{"humanName":"ryzen 7 pro 6850H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-4900Hs":{"humanName":"ryzen 9 4900Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-6900Hs":{"humanName":"ryzen 9 6900Hs","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-6900Hx":{"humanName":"ryzen 9 6900Hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-7845hx":{"humanName":"ryzen 9 7845hx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-9-pro-6950H":{"humanName":"ryzen 9 pro 6950H","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1900x":{"humanName":"ryzen threadripper 1900x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1920x":{"humanName":"ryzen threadripper 1920x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-1950x":{"humanName":"ryzen threadripper 1950x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-2970wx":{"humanName":"ryzen threadripper 2970wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-3960x":{"humanName":"ryzen threadripper 3960x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-3970x":{"humanName":"ryzen threadripper 3970x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-3995wx":{"humanName":"ryzen threadripper pro 3995wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5955wx":{"humanName":"ryzen threadripper pro 5955wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5975wx":{"humanName":"ryzen threadripper pro 5975wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"ryzen-threadripper-pro-5995wx":{"humanName":"ryzen threadripper pro 5995wx","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e-2378":{"humanName":"xeon e 2378","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e-2388g":{"humanName":"xeon e 2388g","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1220-v2":{"humanName":"xeon e3 1220 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1220l-v2":{"humanName":"xeon e3 1220l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1225-v2":{"humanName":"xeon e3 1225 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1225-v5":{"humanName":"xeon e3 1225 v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1230-v6":{"humanName":"xeon e3 1230 v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1231-v3":{"humanName":"xeon e3 1231 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1240-v5":{"humanName":"xeon e3 1240 v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1241-v3":{"humanName":"xeon e3 1241 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1245-v2":{"humanName":"xeon e3 1245 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1246-v3":{"humanName":"xeon e3 1246 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1265l-v2":{"humanName":"xeon e3 1265l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1265l-v3":{"humanName":"xeon e3 1265l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1268l-v3":{"humanName":"xeon e3 1268l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1270-v2":{"humanName":"xeon e3 1270 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1270-v6":{"humanName":"xeon e3 1270 v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1271-v3":{"humanName":"xeon e3 1271 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1275l-v3":{"humanName":"xeon e3 1275l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1276-v3":{"humanName":"xeon e3 1276 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1505m-v6":{"humanName":"xeon e3 1505m v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1535m-v5":{"humanName":"xeon e3 1535m v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1535m-v6":{"humanName":"xeon e3 1535m v6","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e3-1545m-v5":{"humanName":"xeon e3 1545m v5","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1603":{"humanName":"xeon e5 1603","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1607-v2":{"humanName":"xeon e5 1607 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1607":{"humanName":"xeon e5 1607","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1620-v2":{"humanName":"xeon e5 1620 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1620-v4":{"humanName":"xeon e5 1620 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1630-v3":{"humanName":"xeon e5 1630 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1630-v4":{"humanName":"xeon e5 1630 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1650-v4":{"humanName":"xeon e5 1650 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1660-v2":{"humanName":"xeon e5 1660 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1660-v3":{"humanName":"xeon e5 1660 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-1680-v4":{"humanName":"xeon e5 1680 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2420-v2":{"humanName":"xeon e5 2420 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2470-v2":{"humanName":"xeon e5 2470 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2620-v2":{"humanName":"xeon e5 2620 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2623-v4":{"humanName":"xeon e5 2623 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2630l-v2":{"humanName":"xeon e5 2630l v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2630l-v3":{"humanName":"xeon e5 2630l v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2640-v2":{"humanName":"xeon e5 2640 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2640-v3":{"humanName":"xeon e5 2640 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2643-v2":{"humanName":"xeon e5 2643 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2650l-v4":{"humanName":"xeon e5 2650l v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2660-v2":{"humanName":"xeon e5 2660 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2660-v4":{"humanName":"xeon e5 2660 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2667-v3":{"humanName":"xeon e5 2667 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2667-v4":{"humanName":"xeon e5 2667 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2670-v2":{"humanName":"xeon e5 2670 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2670-v3":{"humanName":"xeon e5 2670 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2673-v3":{"humanName":"xeon e5 2673 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2673-v4":{"humanName":"xeon e5 2673 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2678-v3":{"humanName":"xeon e5 2678 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2680-v2":{"humanName":"xeon e5 2680 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2680-v4":{"humanName":"xeon e5 2680 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2683-v4":{"humanName":"xeon e5 2683 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2687w-v4":{"humanName":"xeon e5 2687w v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v2":{"humanName":"xeon e5 2690 v2","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v3":{"humanName":"xeon e5 2690 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2690-v4":{"humanName":"xeon e5 2690 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2695-v4":{"humanName":"xeon e5 2695 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2696-v3":{"humanName":"xeon e5 2696 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2697a-v4":{"humanName":"xeon e5 2697a v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2698-v4":{"humanName":"xeon e5 2698 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-e5-2699-v4":{"humanName":"xeon e5 2699 v4","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-5317":{"humanName":"xeon gold 5317","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6128":{"humanName":"xeon gold 6128","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6132":{"humanName":"xeon gold 6132","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6134":{"humanName":"xeon gold 6134","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6136":{"humanName":"xeon gold 6136","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6138":{"humanName":"xeon gold 6138","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6140":{"humanName":"xeon gold 6140","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6148":{"humanName":"xeon gold 6148","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6150":{"humanName":"xeon gold 6150","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-gold-6154":{"humanName":"xeon gold 6154","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-processor-e5-1680-v3":{"humanName":"xeon processor e5 1680 v3","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4108":{"humanName":"xeon silver 4108","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4114":{"humanName":"xeon silver 4114","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4210":{"humanName":"xeon silver 4210","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4210r":{"humanName":"xeon silver 4210r","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4214":{"humanName":"xeon silver 4214","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4214r":{"humanName":"xeon silver 4214r","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4216":{"humanName":"xeon silver 4216","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-silver-4310":{"humanName":"xeon silver 4310","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-10855m":{"humanName":"xeon w 10855m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-10885m":{"humanName":"xeon w 10885m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-11855m":{"humanName":"xeon w 11855m","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1270":{"humanName":"xeon w 1270","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1270p":{"humanName":"xeon w 1270p","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1290":{"humanName":"xeon w 1290","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-1350":{"humanName":"xeon w 1350","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-2140b":{"humanName":"xeon w 2140b","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w-3375":{"humanName":"xeon w 3375","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w5-2445":{"humanName":"xeon w5 2445","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w7-2495x":{"humanName":"xeon w7 2495x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon-w9-3475x":{"humanName":"xeon w9 3475x","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"xeon":{"humanName":"xeon","isPart":true,"type":"CPU","data":{"Manufacturer":"Intel","Core Count":0,"Thread Count":0,"Base Frequency":"not complete","TDP":"not complete"}},"MISSINGCPUS":{"humanName":"MISSINGCPUS","type":"Generic Container","isPart":false,"topHeader":"","sections":[{"header":"MISSINGCPUS","members":["MISSINGCPUSAGAIN"]}]},"Root":{"humanName":"Root","type":"Generic Container","isPart":false,"topHeader":"SELECT CATEGORY:","sections":[{"header":"AMD","members":["MISSINGCPUS","CPUs-DESKTOP","CPUs-SERVER","GPUs-CONSUMER","APUs-DESKTOP","APUs-MOBILE"]},{"header":"Intel","members":["Desktop-CPUs-Intel","Mobile-CPUs-Intel","Embedded-CPUs-Intel","Server-CPUs-Intel"]}]},"Pentium-J3355":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3355"},"Pentium-J3355E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-29","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3355E"},"Pentium-J3455":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3455"},"Pentium-J3455E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.5 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"250 MHz","GPU Boost Frequency":"750 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3455E"},"Desktop-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Pentium-J4205","Pentium-J3455E","Pentium-J3455"]},{"header":"2 Threads","members":["Pentium-J3355E","Pentium-J3355"]},{"header":"4 Threads","members":["Pentium-J4205","Pentium-J3455E","Pentium-J3455"]},{"header":"2 Threads","members":["Pentium-J3355E","Pentium-J3355"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1296","BGA1296"]}},"Pentium-J1750":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1750"},"Pentium-J1800":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1800"},"Pentium-J1850":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1850"},"Pentium-J1900":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-11-04","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J1900"},"Pentium-J2850":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Desktop","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium J2850"},"Desktop-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Pentium-J2900","Pentium-J2850","Pentium-J1900","Pentium-J1850"]},{"header":"2 Threads","members":["Pentium-J1800","Pentium-J1750"]},{"header":"4 Threads","members":["Pentium-J2900","Pentium-J2850","Pentium-J1900","Pentium-J1850"]},{"header":"2 Threads","members":["Pentium-J1800","Pentium-J1750"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-11","Sockets":["BGA1170","BGA1170"]}},"Core-i7-965":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2008-11-17","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-965"},"Desktop-Bloomfield":{"humanName":"Bloomfield","sections":[{"header":"8 Threads","members":["Core-i7-975","Core-i7-965","Core-i7-960","Core-i7-950","Core-i7-940","Core-i7-930","Core-i7-920"]},{"header":"8 Threads","members":["Core-i7-975","Core-i7-965","Core-i7-960","Core-i7-950","Core-i7-940","Core-i7-930","Core-i7-920"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-11-17","Sockets":["LGA1366","LGA1366"]}},"Pentium-J3060":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3060"},"Pentium-J3160":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Desktop","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium J3160"},"Desktop-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Pentium-J3710","Pentium-J3160"]},{"header":"2 Threads","members":["Pentium-J3060"]},{"header":"4 Threads","members":["Pentium-J3710","Pentium-J3160"]},{"header":"2 Threads","members":["Pentium-J3060"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-01-10","Sockets":["BGA1170","BGA1170"]}},"Desktop-Broadwell-E":{"humanName":"Broadwell E","sections":[{"header":"17 - 64 Threads","members":["Core-i7-6950X"]},{"header":"9 - 16 Threads","members":["Core-i7-6900K","Core-i7-6850K","Core-i7-6800K"]},{"header":"17 - 64 Threads","members":["Core-i7-6950X"]},{"header":"9 - 16 Threads","members":["Core-i7-6900K","Core-i7-6850K","Core-i7-6800K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-05-30","Sockets":["LGA20113","LGA20113"]}},"Desktop-Broadwell":{"humanName":"Broadwell","sections":[{"header":"8 Threads","members":["Core-i7-5775R","Core-i7-5775C"]},{"header":"4 Threads","members":["Core-i5-5675R","Core-i5-5675C","Core-i5-5575R"]},{"header":"8 Threads","members":["Core-i7-5775R","Core-i7-5775C"]},{"header":"4 Threads","members":["Core-i5-5675R","Core-i5-5675C","Core-i5-5575R"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-06-02","Sockets":["BGA1364","LGA1150","BGA1364","LGA1150"]}},"Pentium-347":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"Q4 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 347"},"Pentium-352":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"2006-06-25","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 352"},"Pentium-356":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"Q2 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 356"},"Pentium-365":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"81 mm","Release Date":"2007-01-21","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 365"},"Pentium-631":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 631"},"Pentium-641":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 641"},"Pentium-651":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2006-10-11","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 651"},"Pentium-661":{"data":{"Manufacturer":"Intel","Architecture":"Cedarmill","Market":"Desktop","Lithography":"65 nm","TDP":"86 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 661"},"Desktop-Cedarmill":{"humanName":"Cedarmill","sections":[{"header":"2 Threads","members":["Pentium-661","Pentium-651","Pentium-641","Pentium-631"]},{"header":"1 Threads","members":["Pentium-365","Pentium-356","Pentium-352","Pentium-347"]},{"header":"2 Threads","members":["Pentium-661","Pentium-651","Pentium-641","Pentium-631"]},{"header":"1 Threads","members":["Pentium-365","Pentium-356","Pentium-352","Pentium-347"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q1 2006","Sockets":["PLGA775","PLGA775"]}},"Atom-D2500":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom D2500"},"Atom-D2550":{"data":{"Manufacturer":"Intel","Architecture":"Cedarview","Market":"Desktop","Lithography":"32 nm","TDP":"10 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-02-26","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"640 MHz"},"isPart":true,"type":"CPU","humanName":"Atom D2550"},"Desktop-Cedarview":{"humanName":"Cedarview","sections":[{"header":"4 Threads","members":["Atom-D2700","Atom-D2550"]},{"header":"2 Threads","members":["Atom-D2500"]},{"header":"4 Threads","members":["Atom-D2700","Atom-D2550"]},{"header":"2 Threads","members":["Atom-D2500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-09-26","Sockets":["BGA559","BGA559"]}},"Core-i3-560":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-08-29","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-560"},"Core-i5-655K":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-06-01","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-655K"},"Core-i5-670":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.46 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"FCLGA1156","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"733 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-670"},"Pentium-G6951":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-09-04","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G6951"},"Pentium-G6960":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Desktop","Lithography":"32 nm","TDP":"73 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-01-09","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G6960"},"Desktop-Clarkdale":{"humanName":"Clarkdale","sections":[{"header":"4 Threads","members":["Core-i5-680","Core-i5-670","Core-i5-661","Core-i5-660","Core-i5-655K","Core-i5-650","Core-i3-560","Core-i3-550","Core-i3-540","Core-i3-530"]},{"header":"2 Threads","members":["Pentium-G6960","Pentium-G6951","Pentium-G6950"]},{"header":"4 Threads","members":["Core-i5-680","Core-i5-670","Core-i5-661","Core-i5-660","Core-i5-655K","Core-i5-650","Core-i3-560","Core-i3-550","Core-i3-540","Core-i3-530"]},{"header":"2 Threads","members":["Pentium-G6960","Pentium-G6951","Pentium-G6950"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-01-07","Sockets":["LGA1156","LGA1156"]}},"Core-i3-8300T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8300T"},"Core-i3-9300":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9300"},"Core-i3-9300T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9300T"},"Core-i3-9320":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"62 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9320"},"Core-i3-9350K":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"91 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9350K"},"Pentium-G4900":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4900"},"Pentium-G4900T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4900T"},"Pentium-G4920":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4920"},"Pentium-G4930":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930"},"Pentium-G4930T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930T"},"Pentium-G4950":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4950"},"Pentium-G5400":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"58 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5400"},"Pentium-G5420":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5420"},"Pentium-G5420T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5420T"},"Pentium-G5500":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14 nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5500"},"Pentium-G5600":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14nm","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-04-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5600"},"Pentium-G5600T":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5600T"},"Pentium-G5620":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Desktop","Lithography":"14","TDP":"54 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-04-23","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G5620"},"Desktop-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Core-i9-9900T","Core-i9-9900KS","Core-i9-9900KF","Core-i9-9900K","Core-i9-9900","Core-i7-8700T","Core-i7-8700K","Core-i7-8700","Core-i7-8086K"]},{"header":"8 Threads","members":["Core-i7-9700T","Core-i7-9700KF","Core-i7-9700K","Core-i7-9700F","Core-i7-9700"]},{"header":"6 Threads","members":["Core-i5-9600T","Core-i5-9600KF","Core-i5-9600K","Core-i5-9600","Core-i5-9500T","Core-i5-9500F","Core-i5-9500","Core-i5-9400T","Core-i5-9400F","Core-i5-9400","Core-i5-8600T","Core-i5-8600K","Core-i5-8600","Core-i5-8500T","Core-i5-8500","Core-i5-8400T","Core-i5-8400"]},{"header":"4 Threads","members":["Pentium-G5620","Pentium-G5600T","Pentium-G5600","Pentium-G5500T","Pentium-G5500","Pentium-G5420T","Pentium-G5420","Pentium-G5400T","Pentium-G5400","Core-i3-9350KF","Core-i3-9350K","Core-i3-9320","Core-i3-9300T","Core-i3-9300","Core-i3-9100T","Core-i3-9100F","Core-i3-9100","Core-i3-8350K","Core-i3-8300T","Core-i3-8300","Core-i3-8100T","Core-i3-8100"]},{"header":"2 Threads","members":["Pentium-G4950","Pentium-G4930T","Pentium-G4930","Pentium-G4920","Pentium-G4900T","Pentium-G4900"]},{"header":"9 - 16 Threads","members":["Core-i9-9900T","Core-i9-9900KS","Core-i9-9900KF","Core-i9-9900K","Core-i9-9900","Core-i7-8700T","Core-i7-8700K","Core-i7-8700","Core-i7-8086K"]},{"header":"8 Threads","members":["Core-i7-9700T","Core-i7-9700KF","Core-i7-9700K","Core-i7-9700F","Core-i7-9700"]},{"header":"6 Threads","members":["Core-i5-9600T","Core-i5-9600KF","Core-i5-9600K","Core-i5-9600","Core-i5-9500T","Core-i5-9500F","Core-i5-9500","Core-i5-9400T","Core-i5-9400F","Core-i5-9400","Core-i5-8600T","Core-i5-8600K","Core-i5-8600","Core-i5-8500T","Core-i5-8500","Core-i5-8400T","Core-i5-8400"]},{"header":"4 Threads","members":["Pentium-G5620","Pentium-G5600T","Pentium-G5600","Pentium-G5500T","Pentium-G5500","Pentium-G5420T","Pentium-G5420","Pentium-G5400T","Pentium-G5400","Core-i3-9350KF","Core-i3-9350K","Core-i3-9320","Core-i3-9300T","Core-i3-9300","Core-i3-9100T","Core-i3-9100F","Core-i3-9100","Core-i3-8350K","Core-i3-8300T","Core-i3-8300","Core-i3-8100T","Core-i3-8100"]},{"header":"2 Threads","members":["Pentium-G4950","Pentium-G4930T","Pentium-G4930","Pentium-G4920","Pentium-G4900T","Pentium-G4900"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-10-05","Sockets":["LGA1151","LGA1151"]}},"Core-E4300":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-01-21","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4300"},"Core-E4400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-04-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4400"},"Core-E4500":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4500"},"Core-E4600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2007-10-21","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4600"},"Core-E4700":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"Q1 2008","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E4700"},"Core-E6300":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2006-07-29","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6300"},"Core-E6320":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-04-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6320"},"Core-E6400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Release Date":"2006-07-29","Socket":"LGA775, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6400"},"Core-E6420":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-04-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6420"},"Core-E6540":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6540"},"Core-E6550":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6550"},"Core-E6600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6600"},"Core-E6700":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6700"},"Core-E6750":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6750"},"Core-E6850":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-22","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E6850"},"Core-X6800":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"75 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X6800"},"Pentium-220":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"19 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2007-10-21","Socket":"PBGA479","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 220"},"Pentium-420":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-06-03","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 420"},"Pentium-430":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-06-03","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 430"},"Pentium-440":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2007-06-03","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 440"},"Pentium-450":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-08-31","AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 450"},"Pentium-E1200":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1200"},"Pentium-E1400":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1400"},"Pentium-E1500":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1500"},"Pentium-E1600":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"512 KiB","Die Size":"77 mm","Release Date":"2009-06-03","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E1600"},"Pentium-E2160":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q3 2006","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2160"},"Pentium-E2180":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"Q3 2007","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2180"},"Pentium-E2200":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"2007-12-02","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2200"},"Pentium-E2220":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Desktop","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"77 mm","Release Date":"2008-03-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E2220"},"Desktop-Conroe":{"humanName":"Conroe","sections":[{"header":"2 Threads","members":["Pentium-E2220","Pentium-E2200","Pentium-E2180","Pentium-E2160","Pentium-E2140","Pentium-E1600","Pentium-E1500","Pentium-E1400","Pentium-E1200","Core-X6800","Core-E6850","Core-E6750","Core-E6700","Core-E6600","Core-E6550","Core-E6540","Core-E6420","Core-E6400","Core-E6320","Core-E6300","Core-E4700","Core-E4600","Core-E4500","Core-E4400","Core-E4300"]},{"header":"1 Threads","members":["Pentium-450","Pentium-440","Pentium-430","Pentium-420","Pentium-220"]},{"header":"2 Threads","members":["Pentium-E2220","Pentium-E2200","Pentium-E2180","Pentium-E2160","Pentium-E2140","Pentium-E1600","Pentium-E1500","Pentium-E1400","Pentium-E1200","Core-X6800","Core-E6850","Core-E6750","Core-E6700","Core-E6600","Core-E6550","Core-E6540","Core-E6420","Core-E6400","Core-E6320","Core-E6300","Core-E4700","Core-E4600","Core-E4500","Core-E4400","Core-E4300"]},{"header":"1 Threads","members":["Pentium-450","Pentium-440","Pentium-430","Pentium-420","Pentium-220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2006","Sockets":["LGA775","PLGA775","PBGA479","LGA775","PLGA775","PBGA479"]}},"Core-i5-4670R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4670R"},"Core-i7-4770R":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-03","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770R"},"Desktop-Crystal-Well":{"humanName":"Crystal Well","sections":[{"header":"8 Threads","members":["Core-i7-4770R"]},{"header":"4 Threads","members":["Core-i5-4670R","Core-i5-4570R"]},{"header":"8 Threads","members":["Core-i7-4770R"]},{"header":"4 Threads","members":["Core-i5-4670R","Core-i5-4570R"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-03","Sockets":["BGA1364","BGA1364"]}},"Desktop-Devils-Canyon":{"humanName":"Devil's Canyon","sections":[{"header":"8 Threads","members":["Core-i7-4790K"]},{"header":"4 Threads","members":["Core-i5-4690K"]},{"header":"8 Threads","members":["Core-i7-4790K"]},{"header":"4 Threads","members":["Core-i5-4690K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-06-02","Sockets":["LGA1150","LGA1150"]}},"Desktop-Diamondville":{"humanName":"Diamondville","sections":[{"header":"4 Threads","members":["Atom-330"]},{"header":"2 Threads","members":["Atom-230"]},{"header":"4 Threads","members":["Atom-330"]},{"header":"2 Threads","members":["Atom-230"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-06-03","Sockets":["PBGA437","PBGA437"]}},"Pentium-J4005":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4005"},"Pentium-J4105":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4105"},"Pentium-J5005":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Desktop","Lithography":"14 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J5005"},"Pentium-J4025":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4025"},"Pentium-J4125":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J4125"},"Pentium-J5040":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Desktop","Lithography":"14nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"250 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium J5040"},"Desktop-Gemini-Lake-Refresh":{"humanName":"Gemini Lake Refresh","sections":[{"header":"4 Threads","members":["Pentium-J5040","Pentium-J4125"]},{"header":"2 Threads","members":["Pentium-J4025"]},{"header":"4 Threads","members":["Pentium-J5040","Pentium-J4125"]},{"header":"2 Threads","members":["Pentium-J4025"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-11-04","Sockets":["BGA1090","BGA1090"]}},"Desktop-Gemini-Lake":{"humanName":"Gemini Lake","sections":[{"header":"4 Threads","members":["Pentium-J5005","Pentium-J4105"]},{"header":"2 Threads","members":["Pentium-J4005"]},{"header":"4 Threads","members":["Pentium-J5005","Pentium-J4105"]},{"header":"2 Threads","members":["Pentium-J4005"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-12-11","Sockets":["BGA1090","BGA1090"]}},"Desktop-Gulftown":{"humanName":"Gulftown","sections":[{"header":"9 - 16 Threads","members":["Core-i7-990X","Core-i7-980X","Core-i7-980","Core-i7-970"]},{"header":"9 - 16 Threads","members":["Core-i7-990X","Core-i7-980X","Core-i7-980","Core-i7-970"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1366","LGA1366"]}},"Core-i3-4330T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4330T"},"Core-i3-4350T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4350T"},"Core-i3-4360T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4360T"},"Core-i3-4370T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4370T"},"Core-i5-4440S":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4440S"},"Core-i5-4690T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4690T"},"Pentium-G1820":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1820"},"Pentium-G1820T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1820T"},"Pentium-G1830":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-29","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1830"},"Pentium-G1840":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1840"},"Pentium-G1840T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1840T"},"Pentium-G1850":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"53 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G1850"},"Pentium-G3240T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3240T"},"Pentium-G3260T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3260T"},"Pentium-G3420T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3420T"},"Pentium-G3440T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3440T"},"Pentium-G3450T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-07-20","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3450T"},"Pentium-G3460T":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-03-30","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Pentium G3460T"},"Desktop-Haswell-E":{"humanName":"Haswell E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-5960X","Core-i7-5930K","Core-i7-5820K"]},{"header":"9 - 16 Threads","members":["Core-i7-5960X","Core-i7-5930K","Core-i7-5820K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-08-29","Sockets":["LGA20113","LGA20113"]}},"Desktop-Haswell":{"humanName":"Haswell","sections":[{"header":"8 Threads","members":["Core-i7-4790T","Core-i7-4790S","Core-i7-4790","Core-i7-4785T","Core-i7-4771","Core-i7-4770T","Core-i7-4770S","Core-i7-4770K","Core-i7-4770","Core-i7-4765T"]},{"header":"4 Threads","members":["Core-i5-4690T","Core-i5-4690S","Core-i5-4690","Core-i5-4670T","Core-i5-4670S","Core-i5-4670K","Core-i5-4670","Core-i5-4590T","Core-i5-4590S","Core-i5-4590","Core-i5-4570T","Core-i5-4570S","Core-i5-4570","Core-i5-4460T","Core-i5-4460S","Core-i5-4460","Core-i5-4440S","Core-i5-4440","Core-i5-4430S","Core-i5-4430","Core-i3-4370T","Core-i3-4370","Core-i3-4360T","Core-i3-4360","Core-i3-4350T","Core-i3-4350","Core-i3-4340","Core-i3-4330T","Core-i3-4330","Core-i3-4170T","Core-i3-4170","Core-i3-4160T","Core-i3-4160","Core-i3-4150T","Core-i3-4150","Core-i3-4130T","Core-i3-4130"]},{"header":"2 Threads","members":["Pentium-G3470","Pentium-G3460T","Pentium-G3460","Pentium-G3450T","Pentium-G3450","Pentium-G3440T","Pentium-G3440","Pentium-G3430","Pentium-G3420T","Pentium-G3420","Pentium-G3260T","Pentium-G3260","Pentium-G3258","Pentium-G3250T","Pentium-G3250","Pentium-G3240T","Pentium-G3240","Pentium-G3220T","Pentium-G3220","Pentium-G1850","Pentium-G1840T","Pentium-G1840","Pentium-G1830","Pentium-G1820T","Pentium-G1820"]},{"header":"8 Threads","members":["Core-i7-4790T","Core-i7-4790S","Core-i7-4790","Core-i7-4785T","Core-i7-4771","Core-i7-4770T","Core-i7-4770S","Core-i7-4770K","Core-i7-4770","Core-i7-4765T"]},{"header":"4 Threads","members":["Core-i5-4690T","Core-i5-4690S","Core-i5-4690","Core-i5-4670T","Core-i5-4670S","Core-i5-4670K","Core-i5-4670","Core-i5-4590T","Core-i5-4590S","Core-i5-4590","Core-i5-4570T","Core-i5-4570S","Core-i5-4570","Core-i5-4460T","Core-i5-4460S","Core-i5-4460","Core-i5-4440S","Core-i5-4440","Core-i5-4430S","Core-i5-4430","Core-i3-4370T","Core-i3-4370","Core-i3-4360T","Core-i3-4360","Core-i3-4350T","Core-i3-4350","Core-i3-4340","Core-i3-4330T","Core-i3-4330","Core-i3-4170T","Core-i3-4170","Core-i3-4160T","Core-i3-4160","Core-i3-4150T","Core-i3-4150","Core-i3-4130T","Core-i3-4130"]},{"header":"2 Threads","members":["Pentium-G3470","Pentium-G3460T","Pentium-G3460","Pentium-G3450T","Pentium-G3450","Pentium-G3440T","Pentium-G3440","Pentium-G3430","Pentium-G3420T","Pentium-G3420","Pentium-G3260T","Pentium-G3260","Pentium-G3258","Pentium-G3250T","Pentium-G3250","Pentium-G3240T","Pentium-G3240","Pentium-G3220T","Pentium-G3220","Pentium-G1850","Pentium-G1840T","Pentium-G1840","Pentium-G1830","Pentium-G1820T","Pentium-G1820"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","LGA1150"]}},"Core-i3-3245":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3245"},"Core-i3-3250T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3250T"},"Core-i5-3570T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3570T"},"Pentium-G1610":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1610"},"Pentium-G1610T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1610T"},"Pentium-G1620":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1620"},"Pentium-G1620T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1620T"},"Pentium-G1630":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G1630"},"Pentium-G2030T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2030T"},"Pentium-G2100T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2100T"},"Pentium-G2120T":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2120T"},"Pentium-G2140":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Desktop","Lithography":"22 nm","TDP":"55 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G2140"},"Desktop-Ivy-Bridge-E":{"humanName":"Ivy Bridge E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-4960X","Core-i7-4930K"]},{"header":"8 Threads","members":["Core-i7-4820K"]},{"header":"9 - 16 Threads","members":["Core-i7-4960X","Core-i7-4930K"]},{"header":"8 Threads","members":["Core-i7-4820K"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Desktop-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3770T","Core-i7-3770S","Core-i7-3770K","Core-i7-3770"]},{"header":"4 Threads","members":["Core-i5-3570T","Core-i5-3570S","Core-i5-3570K","Core-i5-3570","Core-i5-3550S","Core-i5-3550","Core-i5-3475S","Core-i5-3470T","Core-i5-3470S","Core-i5-3470","Core-i5-3450S","Core-i5-3450","Core-i5-3350P","Core-i5-3340S","Core-i5-3340","Core-i5-3330S","Core-i5-3330","Core-i3-3250T","Core-i3-3250","Core-i3-3245","Core-i3-3240T","Core-i3-3240","Core-i3-3225","Core-i3-3220T","Core-i3-3220","Core-i3-3210"]},{"header":"2 Threads","members":["Pentium-G2140","Pentium-G2130","Pentium-G2120T","Pentium-G2120","Pentium-G2100T","Pentium-G2030T","Pentium-G2030","Pentium-G2020T","Pentium-G2020","Pentium-G2010","Pentium-G1630","Pentium-G1620T","Pentium-G1620","Pentium-G1610T","Pentium-G1610"]},{"header":"8 Threads","members":["Core-i7-3770T","Core-i7-3770S","Core-i7-3770K","Core-i7-3770"]},{"header":"4 Threads","members":["Core-i5-3570T","Core-i5-3570S","Core-i5-3570K","Core-i5-3570","Core-i5-3550S","Core-i5-3550","Core-i5-3475S","Core-i5-3470T","Core-i5-3470S","Core-i5-3470","Core-i5-3450S","Core-i5-3450","Core-i5-3350P","Core-i5-3340S","Core-i5-3340","Core-i5-3330S","Core-i5-3330","Core-i3-3250T","Core-i3-3250","Core-i3-3245","Core-i3-3240T","Core-i3-3240","Core-i3-3225","Core-i3-3220T","Core-i3-3220","Core-i3-3210"]},{"header":"2 Threads","members":["Pentium-G2140","Pentium-G2130","Pentium-G2120T","Pentium-G2120","Pentium-G2100T","Pentium-G2030T","Pentium-G2030","Pentium-G2020T","Pentium-G2020","Pentium-G2010","Pentium-G1630","Pentium-G1620T","Pentium-G1620","Pentium-G1610T","Pentium-G1610"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["LGA1155","LGA1155"]}},"Core-i3-7101TE":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7101TE"},"Pentium-G3930":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930"},"Pentium-G3930E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","TDP":"54 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930E"},"Pentium-G3930T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930T"},"Pentium-G3930TE":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3930TE"},"Pentium-G3950":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3950"},"Pentium-G4600T":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4600T"},"Desktop-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Core-i7-7740X","Core-i7-7700T","Core-i7-7700K","Core-i7-7700"]},{"header":"4 Threads","members":["Pentium-G4620","Pentium-G4600T","Pentium-G4600","Pentium-G4560T","Pentium-G4560","Core-i5-7640X","Core-i5-7600T","Core-i5-7600K","Core-i5-7600","Core-i5-7500T","Core-i5-7500","Core-i5-7400T","Core-i5-7400","Core-i3-7350K","Core-i3-7320","Core-i3-7300T","Core-i3-7300","Core-i3-7101TE","Core-i3-7101E","Core-i3-7100T","Core-i3-7100"]},{"header":"2 Threads","members":["Pentium-G3950","Pentium-G3930TE","Pentium-G3930T","Pentium-G3930E","Pentium-G3930"]},{"header":"8 Threads","members":["Core-i7-7740X","Core-i7-7700T","Core-i7-7700K","Core-i7-7700"]},{"header":"4 Threads","members":["Pentium-G4620","Pentium-G4600T","Pentium-G4600","Pentium-G4560T","Pentium-G4560","Core-i5-7640X","Core-i5-7600T","Core-i5-7600K","Core-i5-7600","Core-i5-7500T","Core-i5-7500","Core-i5-7400T","Core-i5-7400","Core-i3-7350K","Core-i3-7320","Core-i3-7300T","Core-i3-7300","Core-i3-7101TE","Core-i3-7101E","Core-i3-7100T","Core-i3-7100"]},{"header":"2 Threads","members":["Pentium-G3950","Pentium-G3930TE","Pentium-G3930T","Pentium-G3930E","Pentium-G3930"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["LGA1151","LGA2066","LGA1151","LGA2066"]}},"Core-Q6600":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q6600"},"Core-Q6700":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q6700"},"Core-QX6700":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q4 2006","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6700"},"Core-QX6800":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-04-09","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6800"},"Core-QX6850":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX6850"},"Desktop-Kentsfield":{"humanName":"Kentsfield","sections":[{"header":"4 Threads","members":["Core-QX6850","Core-QX6800","Core-QX6700","Core-Q6700","Core-Q6600"]},{"header":"4 Threads","members":["Core-QX6850","Core-QX6800","Core-QX6700","Core-Q6700","Core-Q6600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q4 2006","Sockets":["LGA775","LGA775"]}},"Core-i5-750S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-01-07","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i5-750S"},"Core-i7-860S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-01-07","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-860S"},"Core-i7-870S":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Desktop","Lithography":"45 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q2 2010","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-870S"},"Desktop-Lynnfield":{"humanName":"Lynnfield","sections":[{"header":"8 Threads","members":["Core-i7-880","Core-i7-875K","Core-i7-870S","Core-i7-870","Core-i7-860S","Core-i7-860"]},{"header":"4 Threads","members":["Core-i5-760","Core-i5-750S","Core-i5-750"]},{"header":"8 Threads","members":["Core-i7-880","Core-i7-875K","Core-i7-870S","Core-i7-870","Core-i7-860S","Core-i7-860"]},{"header":"4 Threads","members":["Core-i5-760","Core-i5-750S","Core-i5-750"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-08","Sockets":["LGA1156","LGA1156"]}},"Atom-D425":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Desktop","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3, DDR2","Base Frequency":"1.8 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-26","Socket":"FCBGA559","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom D425"},"Desktop-Pineview":{"humanName":"Pineview","sections":[{"header":"4 Threads","members":["Atom-D525","Atom-D510"]},{"header":"2 Threads","members":["Atom-D425","Atom-D410"]},{"header":"4 Threads","members":["Atom-D525","Atom-D510"]},{"header":"2 Threads","members":["Atom-D425","Atom-D410"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["BGA559","BGA559"]}},"Pentium-315":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 315"},"Pentium-315J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 315J"},"Pentium-320":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"2004-02-14","Socket":"H-PBGA478, H-PBGA479, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 320"},"Pentium-325":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 325"},"Pentium-325J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 325J"},"Pentium-326":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PLGA478, PLGA775","Other Extensions":["x86-64","x86-64","x86-64","x86-64"],"AES":false},"isPart":true,"type":"CPU","humanName":"Pentium 326"},"Pentium-330J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 330J"},"Pentium-331":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 331"},"Pentium-335":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q2 2004","Socket":"PLGA478, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 335"},"Pentium-335J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 335J"},"Pentium-336":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 336"},"Pentium-340J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 340J"},"Pentium-341":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"2005-07-29","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 341"},"Pentium-345":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 345"},"Pentium-345J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA478, PLGA775, PPGA478","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 345J"},"Pentium-346":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 346"},"Pentium-350J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"73 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA478, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 350J"},"Pentium-351":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA478, PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 351"},"Pentium-355":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"256 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 355"},"Pentium-505":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 505"},"Pentium-505J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 505J"},"Pentium-506":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q2 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 506"},"Pentium-511":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775, PPGA478","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 511"},"Pentium-515":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 515"},"Pentium-516":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 516"},"Pentium-517":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 517"},"Pentium-519":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 519"},"Pentium-519K":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":1,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 519K"},"Pentium-520J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 520J"},"Pentium-521":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 521"},"Pentium-524":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q2 2006","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 524"},"Pentium-530J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2004","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 530J"},"Pentium-531":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"2004-06-25","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 531"},"Pentium-540J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 540J"},"Pentium-541":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2004","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 541"},"Pentium-550J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 550J"},"Pentium-551":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"2004-06-25","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 551"},"Pentium-560J":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PLGA775","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 560J"},"Pentium-561":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 561"},"Pentium-571":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Release Date":"Q3 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 571"},"Pentium-620":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 620"},"Pentium-630":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 630"},"Pentium-640":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 640"},"Pentium-650":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"84 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 650"},"Pentium-660":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q1 2005","Socket":"PLGA775, PPGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 660"},"Pentium-662":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 662"},"Pentium-670":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q2 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 670"},"Pentium-672":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Desktop","Lithography":"90 nm","TDP":"115 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"135 mm","Release Date":"Q4 2005","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 672"},"Desktop-Prescott":{"humanName":"Prescott","sections":[{"header":"2 Threads","members":["Pentium-672","Pentium-670","Pentium-662","Pentium-660","Pentium-650","Pentium-640","Pentium-630","Pentium-620","Pentium-571","Pentium-561","Pentium-560J","Pentium-551","Pentium-550J","Pentium-541","Pentium-540J","Pentium-531","Pentium-530J","Pentium-524","Pentium-521","Pentium-520J","Pentium-517"]},{"header":"1 Threads","members":["Pentium-519K","Pentium-519","Pentium-516","Pentium-515","Pentium-511","Pentium-506","Pentium-505J","Pentium-505","Pentium-355","Pentium-351","Pentium-350J","Pentium-346","Pentium-345J","Pentium-345","Pentium-341","Pentium-340J","Pentium-336","Pentium-335J","Pentium-335","Pentium-331","Pentium-330J","Pentium-326","Pentium-325J","Pentium-325","Pentium-320","Pentium-315J","Pentium-315"]},{"header":"2 Threads","members":["Pentium-672","Pentium-670","Pentium-662","Pentium-660","Pentium-650","Pentium-640","Pentium-630","Pentium-620","Pentium-571","Pentium-561","Pentium-560J","Pentium-551","Pentium-550J","Pentium-541","Pentium-540J","Pentium-531","Pentium-530J","Pentium-524","Pentium-521","Pentium-520J","Pentium-517"]},{"header":"1 Threads","members":["Pentium-519K","Pentium-519","Pentium-516","Pentium-515","Pentium-511","Pentium-506","Pentium-505J","Pentium-505","Pentium-355","Pentium-351","Pentium-350J","Pentium-346","Pentium-345J","Pentium-345","Pentium-341","Pentium-340J","Pentium-336","Pentium-335J","Pentium-335","Pentium-331","Pentium-330J","Pentium-326","Pentium-325J","Pentium-325","Pentium-320","Pentium-315J","Pentium-315"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q2 2004","Sockets":["PPGA478","PLGA478","PLGA775","PPGA775","PPGA478","PLGA478","PLGA775","PPGA775"]}},"Pentium-915":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 915"},"Pentium-920":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 920"},"Pentium-930":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 930"},"Pentium-935":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"2007-01-21","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 935"},"Pentium-940":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 940"},"Pentium-945":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q3 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 945"},"Pentium-950":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 950"},"Pentium-955":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 955"},"Pentium-960":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q2 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 960"},"Pentium-965":{"data":{"Manufacturer":"Intel","Architecture":"Presler","Market":"Desktop","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Release Date":"Q1 2006","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 965"},"Desktop-Presler":{"humanName":"Presler","sections":[{"header":"4 Threads","members":["Pentium-965","Pentium-955"]},{"header":"2 Threads","members":["Pentium-960","Pentium-950","Pentium-945","Pentium-940","Pentium-935","Pentium-930","Pentium-920","Pentium-915"]},{"header":"4 Threads","members":["Pentium-965","Pentium-955"]},{"header":"2 Threads","members":["Pentium-960","Pentium-950","Pentium-945","Pentium-940","Pentium-935","Pentium-930","Pentium-920","Pentium-915"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q1 2006","Sockets":["PLGA775","PLGA775"]}},"Core-i3-2100T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2100T"},"Core-i3-2102":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2102"},"Core-i5-2380P":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-01-29","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i5-2380P"},"Core-i5-2390T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2390T"},"Core-i5-2500T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2500T"},"Pentium-G440":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G440"},"Pentium-G460":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-12-11","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G460"},"Pentium-G465":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G465"},"Pentium-G470":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2013-06-09","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G470"},"Pentium-G530":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G530"},"Pentium-G530T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G530T"},"Pentium-G540":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G540"},"Pentium-G540T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G540T"},"Pentium-G550":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G550"},"Pentium-G550T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G550T"},"Pentium-G555":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium G555"},"Pentium-G620T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G620T"},"Pentium-G622":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G622"},"Pentium-G630T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G630T"},"Pentium-G632":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-09-04","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G632"},"Pentium-G640T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G640T"},"Pentium-G645T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-09-02","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G645T"},"Pentium-G860T":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Desktop","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCLGA1155","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium G860T"},"Desktop-Sandy-Bridge-E":{"humanName":"Sandy Bridge E","sections":[{"header":"9 - 16 Threads","members":["Core-i7-3970X","Core-i7-3960X","Core-i7-3930K"]},{"header":"8 Threads","members":["Core-i7-3820"]},{"header":"9 - 16 Threads","members":["Core-i7-3970X","Core-i7-3960X","Core-i7-3930K"]},{"header":"8 Threads","members":["Core-i7-3820"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-11-14","Sockets":["LGA2011","LGA2011"]}},"Desktop-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2700K","Core-i7-2600S","Core-i7-2600K","Core-i7-2600"]},{"header":"4 Threads","members":["Core-i5-2550K","Core-i5-2500T","Core-i5-2500S","Core-i5-2500K","Core-i5-2500","Core-i5-2450P","Core-i5-2405S","Core-i5-2400S","Core-i5-2400","Core-i5-2390T","Core-i5-2380P","Core-i5-2320","Core-i5-2310","Core-i5-2300","Core-i3-2130","Core-i3-2125","Core-i3-2120T","Core-i3-2120","Core-i3-2105","Core-i3-2102","Core-i3-2100T","Core-i3-2100"]},{"header":"2 Threads","members":["Pentium-G870","Pentium-G860T","Pentium-G860","Pentium-G850","Pentium-G840","Pentium-G645T","Pentium-G645","Pentium-G640T","Pentium-G640","Pentium-G632","Pentium-G630T","Pentium-G630","Pentium-G622","Pentium-G620T","Pentium-G620","Pentium-G555","Pentium-G550T","Pentium-G550","Pentium-G540T","Pentium-G540","Pentium-G530T","Pentium-G530","Pentium-G470","Pentium-G465","Pentium-G460"]},{"header":"1 Threads","members":["Pentium-G440"]},{"header":"8 Threads","members":["Core-i7-2700K","Core-i7-2600S","Core-i7-2600K","Core-i7-2600"]},{"header":"4 Threads","members":["Core-i5-2550K","Core-i5-2500T","Core-i5-2500S","Core-i5-2500K","Core-i5-2500","Core-i5-2450P","Core-i5-2405S","Core-i5-2400S","Core-i5-2400","Core-i5-2390T","Core-i5-2380P","Core-i5-2320","Core-i5-2310","Core-i5-2300","Core-i3-2130","Core-i3-2125","Core-i3-2120T","Core-i3-2120","Core-i3-2105","Core-i3-2102","Core-i3-2100T","Core-i3-2100"]},{"header":"2 Threads","members":["Pentium-G870","Pentium-G860T","Pentium-G860","Pentium-G850","Pentium-G840","Pentium-G645T","Pentium-G645","Pentium-G640T","Pentium-G640","Pentium-G632","Pentium-G630T","Pentium-G630","Pentium-G622","Pentium-G620T","Pentium-G620","Pentium-G555","Pentium-G550T","Pentium-G550","Pentium-G540T","Pentium-G540","Pentium-G530T","Pentium-G530","Pentium-G470","Pentium-G465","Pentium-G460"]},{"header":"1 Threads","members":["Pentium-G440"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-01-09","Sockets":["LGA1155","LGA1155"]}},"Core-i5-6585R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6585R"},"Core-i5-6685R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6685R"},"Core-i7-6785R":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6785R"},"Pentium-G3900":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900"},"Pentium-G3900T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900T"},"Pentium-G3920":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"51 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3920"},"Pentium-G4500T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Desktop","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4500T"},"Desktop-Skylake":{"humanName":"Skylake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-3175X","Core-i9-9980XE","Core-i9-9960X","Core-i9-9940X","Core-i9-9920X","Core-i9-9900X","Core-i9-9820X","Core-i9-7980XE","Core-i9-7960X","Core-i9-7940X","Core-i9-7920X","Core-i9-7900X"]},{"header":"9 - 16 Threads","members":["Core-i7-9800X","Core-i7-7820X","Core-i7-7800X"]},{"header":"8 Threads","members":["Core-i7-6785R","Core-i7-6700T","Core-i7-6700K","Core-i7-6700"]},{"header":"4 Threads","members":["Core-i5-6685R","Core-i5-6600T","Core-i5-6600K","Core-i5-6600","Core-i5-6585R","Core-i5-6500T","Core-i5-6500","Core-i5-6402P","Core-i5-6400T","Core-i5-6400","Core-i3-6320","Core-i3-6300T","Core-i3-6300","Core-i3-6100T","Core-i3-6100","Core-i3-6098P"]},{"header":"2 Threads","members":["Pentium-G4520","Pentium-G4500T","Pentium-G4500","Pentium-G4400T","Pentium-G4400","Pentium-G3920","Pentium-G3900T","Pentium-G3900"]},{"header":"17 - 64 Threads","members":["Xeon-W-3175X","Core-i9-9980XE","Core-i9-9960X","Core-i9-9940X","Core-i9-9920X","Core-i9-9900X","Core-i9-9820X","Core-i9-7980XE","Core-i9-7960X","Core-i9-7940X","Core-i9-7920X","Core-i9-7900X"]},{"header":"9 - 16 Threads","members":["Core-i7-9800X","Core-i7-7820X","Core-i7-7800X"]},{"header":"8 Threads","members":["Core-i7-6785R","Core-i7-6700T","Core-i7-6700K","Core-i7-6700"]},{"header":"4 Threads","members":["Core-i5-6685R","Core-i5-6600T","Core-i5-6600K","Core-i5-6600","Core-i5-6585R","Core-i5-6500T","Core-i5-6500","Core-i5-6402P","Core-i5-6400T","Core-i5-6400","Core-i3-6320","Core-i3-6300T","Core-i3-6300","Core-i3-6100T","Core-i3-6100","Core-i3-6098P"]},{"header":"2 Threads","members":["Pentium-G4520","Pentium-G4500T","Pentium-G4500","Pentium-G4400T","Pentium-G4400","Pentium-G3920","Pentium-G3900T","Pentium-G3900"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-08-05","Sockets":["LGA1151","LGA2066","LGA3647","LGA1151","LGA2066","LGA3647"]}},"Pentium-805":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q1 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 805"},"Pentium-820":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"95 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 820"},"Pentium-830":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"130 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 830"},"Pentium-840":{"data":{"Manufacturer":"Intel","Architecture":"Smithfield","Market":"Desktop","Lithography":"90 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Release Date":"Q2 2005","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 840"},"Desktop-Smithfield":{"humanName":"Smithfield","sections":[{"header":"4 Threads","members":["Pentium-840"]},{"header":"2 Threads","members":["Pentium-830","Pentium-820","Pentium-805"]},{"header":"4 Threads","members":["Pentium-840"]},{"header":"2 Threads","members":["Pentium-830","Pentium-820","Pentium-805"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q1 2005","Sockets":["PLGA775","PLGA775"]}},"Core-E7200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7200"},"Core-E7300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7300"},"Core-E7400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-10-19","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7400"},"Core-E7500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7500"},"Core-E7600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2009-06-03","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E7600"},"Core-E8190":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8190"},"Core-E8200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8200"},"Core-E8300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-04-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8300"},"Core-E8400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8400"},"Core-E8500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-20","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8500"},"Core-E8600":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core E8600"},"Pentium-E3200":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3200"},"Pentium-E3300":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3300"},"Pentium-E3400":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"Q1 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E3400"},"Pentium-E3500":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.7 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"Q3 2010","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium E3500"},"Pentium-E6500K":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"2 MiB","Die Size":"82 mm","Release Date":"2009-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium E6500K"},"Desktop-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Pentium-E6800","Pentium-E6700","Pentium-E6600","Pentium-E6500K","Pentium-E6500","Pentium-E6300","Pentium-E5800","Pentium-E5700","Pentium-E5500","Pentium-E5400","Pentium-E5300","Pentium-E5200","Pentium-E3500","Pentium-E3400","Pentium-E3300","Pentium-E3200","Core-E8600","Core-E8500","Core-E8400","Core-E8300","Core-E8200","Core-E8190","Core-E7600","Core-E7500","Core-E7400","Core-E7300","Core-E7200"]},{"header":"2 Threads","members":["Pentium-E6800","Pentium-E6700","Pentium-E6600","Pentium-E6500K","Pentium-E6500","Pentium-E6300","Pentium-E5800","Pentium-E5700","Pentium-E5500","Pentium-E5400","Pentium-E5300","Pentium-E5200","Pentium-E3500","Pentium-E3400","Pentium-E3300","Pentium-E3200","Core-E8600","Core-E8500","Core-E8400","Core-E8300","Core-E8200","Core-E8190","Core-E7600","Core-E7500","Core-E7400","Core-E7300","Core-E7200"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-01-20","Sockets":["LGA775","LGA775"]}},"Core-Q8200":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2008-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8200"},"Core-Q8200S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8200S"},"Core-Q8300":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2008-12-01","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8300"},"Core-Q8400":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-04-25","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8400"},"Core-Q8400S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"164 mm","Release Date":"2009-04-25","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q8400S"},"Core-Q9300":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9300"},"Core-Q9400":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9400"},"Core-Q9400S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9400S"},"Core-Q9450":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9450"},"Core-Q9500":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9500"},"Core-Q9505":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9505"},"Core-Q9505S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2009-08-31","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9505S"},"Core-Q9550":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9550"},"Core-Q9550S":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-01-18","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9550S"},"Core-Q9650":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-10","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9650"},"Core-QX9650":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9650"},"Core-QX9770":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"136 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9770"},"Core-QX9775":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Desktop","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-31","Socket":"LGA771","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9775"},"Desktop-Yorkfield":{"humanName":"Yorkfield","sections":[{"header":"4 Threads","members":["Core-QX9775","Core-QX9770","Core-QX9650","Core-Q9650","Core-Q9550S","Core-Q9550","Core-Q9505S","Core-Q9505","Core-Q9500","Core-Q9450","Core-Q9400S","Core-Q9400","Core-Q9300","Core-Q8400S","Core-Q8400","Core-Q8300","Core-Q8200S","Core-Q8200"]},{"header":"4 Threads","members":["Core-QX9775","Core-QX9770","Core-QX9650","Core-Q9650","Core-Q9550S","Core-Q9550","Core-Q9505S","Core-Q9505","Core-Q9500","Core-Q9450","Core-Q9400S","Core-Q9400","Core-Q9300","Core-Q8400S","Core-Q8400","Core-Q8300","Core-Q8200S","Core-Q8200"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA775","LGA771","LGA775","LGA771"]}},"Desktop-CPUs-Intel":{"humanName":"Desktop CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Desktop-Gemini-Lake-Refresh","Desktop-Cascade-Lake","Desktop-Gemini-Lake","Desktop-Coffee-Lake","Desktop-Kaby-Lake","Desktop-Apollo-Lake","Desktop-Broadwell-E","Desktop-Braswell","Desktop-Skylake","Desktop-Broadwell"]},{"header":"2010 - 2014","members":["Desktop-Haswell-E","Desktop-Devils-Canyon","Desktop-Bay-Trail","Desktop-Ivy-Bridge-E","Desktop-Crystal-Well","Desktop-Haswell","Desktop-Ivy-Bridge","Desktop-Sandy-Bridge-E","Desktop-Cedarview","Desktop-Sandy-Bridge","Desktop-Gulftown","Desktop-Clarkdale","Desktop-Pineview"]},{"header":"2005 - 2009","members":["Desktop-Lynnfield","Desktop-Bloomfield","Desktop-Diamondville","Desktop-Wolfdale","Desktop-Yorkfield","Desktop-Kentsfield","Desktop-Conroe","Desktop-Cedarmill","Desktop-Presler","Desktop-Smithfield"]},{"header":"2000 - 2004","members":["Desktop-Prescott"]},{"header":"2015 - 2019","members":["Desktop-Gemini-Lake-Refresh","Desktop-Cascade-Lake","Desktop-Gemini-Lake","Desktop-Coffee-Lake","Desktop-Kaby-Lake","Desktop-Apollo-Lake","Desktop-Broadwell-E","Desktop-Braswell","Desktop-Skylake","Desktop-Broadwell"]},{"header":"2010 - 2014","members":["Desktop-Haswell-E","Desktop-Devils-Canyon","Desktop-Bay-Trail","Desktop-Ivy-Bridge-E","Desktop-Crystal-Well","Desktop-Haswell","Desktop-Ivy-Bridge","Desktop-Sandy-Bridge-E","Desktop-Cedarview","Desktop-Sandy-Bridge","Desktop-Gulftown","Desktop-Clarkdale","Desktop-Pineview"]},{"header":"2005 - 2009","members":["Desktop-Lynnfield","Desktop-Bloomfield","Desktop-Diamondville","Desktop-Wolfdale","Desktop-Yorkfield","Desktop-Kentsfield","Desktop-Conroe","Desktop-Cedarmill","Desktop-Presler","Desktop-Smithfield"]},{"header":"2000 - 2004","members":["Desktop-Prescott"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Atom-E3930":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"6.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, MT/s;
LPDDR4","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L, MT/s;
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3930"},"Atom-E3940":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"9.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,
LPDDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz","VRAM Type":"DDR3L,
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3940"},"Atom-E3950":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Embedded","Lithography":"14 nm","TDP":"12 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L,
LPDDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-10-25","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","VRAM Type":"DDR3L,
LPDDR4","Maximum VRAM Capacity":"2 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E3950"},"Embedded-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Atom-E3950","Atom-E3940"]},{"header":"2 Threads","members":["Atom-E3930"]},{"header":"4 Threads","members":["Atom-E3950","Atom-E3940"]},{"header":"2 Threads","members":["Atom-E3930"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-10-25","Sockets":["BGA1296","BGA1296"]}},"Core-i5-520E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-520E"},"Core-i7-620LE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620LE"},"Core-i7-620UE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Embedded","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","Boost Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620UE"},"Embedded-Arrandale":{"humanName":"Arrandale","sections":[{"header":"4 Threads","members":["Core-i7-620UE","Core-i7-620LE","Core-i5-520E"]},{"header":"4 Threads","members":["Core-i7-620UE","Core-i7-620LE","Core-i5-520E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-01-07","Sockets":["BGA1288","BGA1288"]}},"Atom-E3805":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.33 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-10-06","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom E3805"},"Atom-E3815":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3815"},"Atom-E3825":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.33 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3825"},"Atom-E3826":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1067 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"533 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3826"},"Atom-E3827":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"8 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.75 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"542 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3827"},"Atom-E3845":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Embedded","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.91 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-08","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"542 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E3845"},"Embedded-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Atom-E3845"]},{"header":"2 Threads","members":["Atom-E3827","Atom-E3826","Atom-E3825","Atom-E3805"]},{"header":"1 Threads","members":["Atom-E3815"]},{"header":"4 Threads","members":["Atom-E3845"]},{"header":"2 Threads","members":["Atom-E3827","Atom-E3826","Atom-E3825","Atom-E3805"]},{"header":"1 Threads","members":["Atom-E3815"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-10-08","Sockets":["BGA1170","BGA1170"]}},"Atom-E8000":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Embedded","Lithography":"14 nm","TDP":"5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-17","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Atom E8000"},"Embedded-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Atom-E8000"]},{"header":"4 Threads","members":["Atom-E8000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-01-17","Sockets":["BGA1170","BGA1170"]}},"Core-i7-5700EQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5700EQ"},"Core-i7-5850EQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5850EQ"},"Xeon-E3-1258LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"700 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1258LV4"},"Xeon-E3-1278LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"800 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1278LV4"},"Xeon-E5-2608LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"50 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2608LV4"},"Xeon-E5-2618LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV4"},"Xeon-E5-2628LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV4"},"Xeon-E5-2648LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV4"},"Xeon-E5-2658V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V4"},"Xeon-E5-2699RV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-10-24","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699RV4"},"Xeon-E5-4628LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Embedded","Lithography":"14 nm","TDP":"75 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4628LV4"},"Embedded-Broadwell":{"humanName":"Broadwell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4628LV4","Xeon-E5-2699RV4","Xeon-E5-2658V4","Xeon-E5-2648LV4","Xeon-E5-2628LV4","Xeon-E5-2618LV4"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2608LV4"]},{"header":"8 Threads","members":["Xeon-E3-1278LV4","Xeon-E3-1258LV4","Core-i7-5850EQ","Core-i7-5700EQ"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4628LV4","Xeon-E5-2699RV4","Xeon-E5-2658V4","Xeon-E5-2648LV4","Xeon-E5-2628LV4","Xeon-E5-2618LV4"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2608LV4"]},{"header":"8 Threads","members":["Xeon-E3-1278LV4","Xeon-E3-1258LV4","Core-i7-5850EQ","Core-i7-5700EQ"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-06-02","Sockets":["BGA1364","LGA20113","BGA1364","LGA20113"]}},"Core-i3-9100E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR","Base Frequency":"3.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100E"},"Core-i3-9100HL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100HL"},"Core-i3-9100TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-9100TE"},"Core-i5-9500E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9500E"},"Core-i5-9500TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-9500TE"},"Core-i7-9700E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"65 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9700E"},"Core-i7-9700TE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9700TE"},"Core-i7-9850HE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9850HE"},"Core-i7-9850HL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-9850HL"},"Pentium-G4930E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4930E"},"Pentium-G4932E":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium G4932E"},"Xeon-E-2226GE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2226GE"},"Xeon-E-2254ME":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2254ME"},"Xeon-E-2254ML":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2254ML"},"Xeon-E-2276ME":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276ME"},"Xeon-E-2276ML":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"25 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-06-10","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276ML"},"Xeon-E-2278GE":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278GE"},"Xeon-E-2278GEL":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Embedded","Lithography":"14nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-06-10","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278GEL"},"Embedded-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2278GEL","Xeon-E-2278GE","Xeon-E-2276ML","Xeon-E-2276ME","Core-i7-9850HL","Core-i7-9850HE"]},{"header":"8 Threads","members":["Xeon-E-2254ML","Xeon-E-2254ME","Core-i7-9700TE","Core-i7-9700E"]},{"header":"6 Threads","members":["Xeon-E-2226GE","Core-i5-9500TE","Core-i5-9500E"]},{"header":"4 Threads","members":["Core-i3-9100TE","Core-i3-9100HL","Core-i3-9100E"]},{"header":"2 Threads","members":["Pentium-G4932E","Pentium-G4930E"]},{"header":"9 - 16 Threads","members":["Xeon-E-2278GEL","Xeon-E-2278GE","Xeon-E-2276ML","Xeon-E-2276ME","Core-i7-9850HL","Core-i7-9850HE"]},{"header":"8 Threads","members":["Xeon-E-2254ML","Xeon-E-2254ME","Core-i7-9700TE","Core-i7-9700E"]},{"header":"6 Threads","members":["Xeon-E-2226GE","Core-i5-9500TE","Core-i5-9500E"]},{"header":"4 Threads","members":["Core-i3-9100TE","Core-i3-9100HL","Core-i3-9100E"]},{"header":"2 Threads","members":["Pentium-G4932E","Pentium-G4930E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-06-10","Sockets":["BGA1440","LGA1151","BGA1440","LGA1151"]}},"Xeon-L5408":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Embedded","Lithography":"45 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5408"},"Embedded-Harpertown":{"humanName":"Harpertown","sections":[{"header":"4 Threads","members":["Xeon-L5408"]},{"header":"4 Threads","members":["Xeon-L5408"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-03-31","Sockets":["LGA771","LGA771"]}},"Core-i3-4100E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4100E"},"Core-i3-4102E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4102E"},"Core-i3-4110E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4110E"},"Core-i3-4112E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-4112E"},"Core-i3-4330TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i3-4330TE"},"Core-i3-4340TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i3-4340TE"},"Core-i5-4400E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4400E"},"Core-i5-4402E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4402E"},"Core-i5-4402EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"27 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4402EC"},"Core-i5-4410E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4410E"},"Core-i5-4422E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4422E"},"Core-i5-4570TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Core i5-4570TE"},"Core-i7-4700EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"43 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4700EC"},"Core-i7-4700EQ":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-01","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4700EQ"},"Core-i7-4702EC":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"27 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-03-28","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4702EC"},"Core-i7-4770TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4770TE"},"Pentium-2000E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium 2000E"},"Pentium-2002E":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCBGA1364","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium 2002E"},"Pentium-G1820TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-01-07","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB"},"isPart":true,"type":"CPU","humanName":"Pentium G1820TE"},"Pentium-G3320TE":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1024 MiB"},"isPart":true,"type":"CPU","humanName":"Pentium G3320TE"},"Xeon-E3-1268LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1268LV3"},"Xeon-E5-1428LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428LV3"},"Xeon-E5-2408LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2408LV3"},"Xeon-E5-2418LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418LV3"},"Xeon-E5-2428LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"55 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428LV3"},"Xeon-E5-2438LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2438LV3"},"Xeon-E5-2608LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"52 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2608LV3"},"Xeon-E5-2618LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV3"},"Xeon-E5-2628LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV3"},"Xeon-E5-2648LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV3"},"Xeon-E5-2658AV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-01-28","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658AV3"},"Xeon-E5-2658V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V3"},"Xeon-E5-4648V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Embedded","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4648V3"},"Embedded-Haswell":{"humanName":"Haswell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4648V3","Xeon-E5-2658V3","Xeon-E5-2658AV3","Xeon-E5-2648LV3","Xeon-E5-2628LV3","Xeon-E5-2438LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2618LV3","Xeon-E5-2608LV3","Xeon-E5-2428LV3","Xeon-E5-2418LV3","Xeon-E5-1428LV3"]},{"header":"8 Threads","members":["Xeon-E5-2408LV3","Xeon-E3-1268LV3","Core-i7-4770TE","Core-i7-4702EC","Core-i7-4700EQ","Core-i7-4700EC"]},{"header":"4 Threads","members":["Core-i5-4570TE","Core-i5-4422E","Core-i5-4410E","Core-i5-4402EC","Core-i5-4402E","Core-i5-4400E","Core-i3-4340TE","Core-i3-4330TE","Core-i3-4112E","Core-i3-4110E","Core-i3-4102E","Core-i3-4100E"]},{"header":"2 Threads","members":["Pentium-G3320TE","Pentium-G1820TE","Pentium-2002E","Pentium-2000E"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4648V3","Xeon-E5-2658V3","Xeon-E5-2658AV3","Xeon-E5-2648LV3","Xeon-E5-2628LV3","Xeon-E5-2438LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2618LV3","Xeon-E5-2608LV3","Xeon-E5-2428LV3","Xeon-E5-2418LV3","Xeon-E5-1428LV3"]},{"header":"8 Threads","members":["Xeon-E5-2408LV3","Xeon-E3-1268LV3","Core-i7-4770TE","Core-i7-4702EC","Core-i7-4700EQ","Core-i7-4700EC"]},{"header":"4 Threads","members":["Core-i5-4570TE","Core-i5-4422E","Core-i5-4410E","Core-i5-4402EC","Core-i5-4402E","Core-i5-4400E","Core-i3-4340TE","Core-i3-4330TE","Core-i3-4112E","Core-i3-4110E","Core-i3-4102E","Core-i3-4100E"]},{"header":"2 Threads","members":["Pentium-G3320TE","Pentium-G1820TE","Pentium-2002E","Pentium-2000E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","BGA1364","LGA20113","LGA1356","LGA1150","BGA1364","LGA20113","LGA1356"]}},"Core-i3-3120ME":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-07-26","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3120ME"},"Core-i3-3217UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-07-26","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3217UE"},"Core-i5-3610ME":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023, FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3610ME"},"Core-i7-3517UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3517UE"},"Core-i7-3555LE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2012-06-03","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"550 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3555LE"},"Core-i7-3612QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3612QE"},"Core-i7-3615QE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-04-29","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-3615QE"},"Pentium-1020E":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1020E"},"Pentium-1047UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1047UE"},"Pentium-1405V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 1405V2"},"Pentium-927UE":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Embedded","Lithography":"22 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 927UE"},"Xeon-E5-1428LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428LV2"},"Xeon-E5-2418LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418LV2"},"Xeon-E5-2428LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"60 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428LV2"},"Xeon-E5-2448LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2448LV2"},"Embedded-Ivy-Bridge-EN":{"humanName":"Ivy Bridge EN","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-2448LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2428LV2","Xeon-E5-2418LV2","Xeon-E5-1428LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-2448LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2428LV2","Xeon-E5-2418LV2","Xeon-E5-1428LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-01-09","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2618LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"50 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2618LV2"},"Xeon-E5-2628LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2628LV2"},"Xeon-E5-2648LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648LV2"},"Xeon-E5-2658V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658V2"},"Xeon-E5-4624LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Embedded","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4624LV2"},"Embedded-Ivy-Bridge-EP":{"humanName":"Ivy Bridge EP","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4624LV2","Xeon-E5-2658V2","Xeon-E5-2648LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2628LV2","Xeon-E5-2618LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4624LV2","Xeon-E5-2658V2","Xeon-E5-2648LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2628LV2","Xeon-E5-2618LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Embedded-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3615QE","Core-i7-3612QE","Core-i7-3610QE"]},{"header":"4 Threads","members":["Core-i7-3555LE","Core-i7-3517UE","Core-i5-3610ME","Core-i3-3217UE","Core-i3-3120ME"]},{"header":"2 Threads","members":["Pentium-1405V2","Pentium-1047UE","Pentium-1020E"]},{"header":"1 Threads","members":["Pentium-927UE"]},{"header":"8 Threads","members":["Core-i7-3615QE","Core-i7-3612QE","Core-i7-3610QE"]},{"header":"4 Threads","members":["Core-i7-3555LE","Core-i7-3517UE","Core-i5-3610ME","Core-i3-3217UE","Core-i3-3120ME"]},{"header":"2 Threads","members":["Pentium-1405V2","Pentium-1047UE","Pentium-1020E"]},{"header":"1 Threads","members":["Pentium-927UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["BGA1023","PGA988","LGA1356","BGA1023","PGA988","LGA1356"]}},"Pentium-P1053":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"30 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium P1053"},"Xeon-EC3539":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC3539"},"Xeon-EC5509":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"85 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5509"},"Xeon-EC5539":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Base Frequency":"2.27 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5539"},"Xeon-EC5549":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.933 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon EC5549"},"Xeon-LC3518":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"23 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC3518"},"Xeon-LC3528":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Base Frequency":"1.73 GHz","Boost Frequency":"1.87 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC3528"},"Xeon-LC5518":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"48 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Base Frequency":"1.73 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC5518"},"Xeon-LC5528":{"data":{"Manufacturer":"Intel","Architecture":"Jasper Forest","Market":"Embedded","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Base Frequency":"2.13 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"8 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon LC5528"},"Embedded-Jasper-Forest":{"humanName":"Jasper Forest","sections":[{"header":"8 Threads","members":["Xeon-LC5528","Xeon-LC5518","Xeon-EC5549"]},{"header":"4 Threads","members":["Xeon-LC3528","Xeon-EC5509","Xeon-EC3539"]},{"header":"2 Threads","members":["Xeon-EC5539","Pentium-P1053"]},{"header":"1 Threads","members":["Xeon-LC3518"]},{"header":"8 Threads","members":["Xeon-LC5528","Xeon-LC5518","Xeon-EC5549"]},{"header":"4 Threads","members":["Xeon-LC3528","Xeon-EC5509","Xeon-EC3539"]},{"header":"2 Threads","members":["Xeon-EC5539","Pentium-P1053"]},{"header":"1 Threads","members":["Xeon-LC3518"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["LGA1366","LGA1366"]}},"Core-i3-7100E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100E"},"Core-i3-7102E":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7102E"},"Core-i5-7440EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7440EQ"},"Core-i5-7442EQ":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7442EQ"},"Xeon-E3-1501LV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-06-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1501LV6"},"Xeon-E3-1501MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-06-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"1.7001953125 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1501MV6"},"Xeon-E3-1505LV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505LV6"},"Embedded-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1505LV6","Core-i7-7820EQ"]},{"header":"4 Threads","members":["Xeon-E3-1501MV6","Xeon-E3-1501LV6","Core-i5-7442EQ","Core-i5-7440EQ","Core-i3-7102E","Core-i3-7100E"]},{"header":"8 Threads","members":["Xeon-E3-1505LV6","Core-i7-7820EQ"]},{"header":"4 Threads","members":["Xeon-E3-1501MV6","Xeon-E3-1501LV6","Core-i5-7442EQ","Core-i5-7440EQ","Core-i3-7102E","Core-i3-7100E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["BGA1440","BGA1440"]}},"Xeon-L5508":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Embedded","Lithography":"45 nm","TDP":"38 W","Core Count":2,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5508"},"Xeon-L5518":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Embedded","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5518"},"Embedded-Nehalem-EP":{"humanName":"Nehalem EP","sections":[{"header":"8 Threads","members":["Xeon-L5518"]},{"header":"4 Threads","members":["Xeon-L5508"]},{"header":"8 Threads","members":["Xeon-L5518"]},{"header":"4 Threads","members":["Xeon-L5508"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Atom-C2308":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.25 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-03-27","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2308"},"Atom-C2316":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2017-07-10","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2316"},"Atom-C2338":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2338"},"Atom-C2358":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"7 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2358"},"Atom-C2508":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"9.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.25 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-03-27","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2508"},"Atom-C2516":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-07-10","Socket":"FCBGA1283","AES":true},"isPart":true,"type":"CPU","humanName":"Atom C2516"},"Atom-C2518":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"13 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2518"},"Atom-C2538":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2538"},"Atom-C2558":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2558"},"Atom-C2718":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"18 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2718"},"Atom-C2738":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2738"},"Atom-C2758":{"data":{"Manufacturer":"Intel","Architecture":"Rangeley","Market":"Embedded","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2758"},"Embedded-Rangeley":{"humanName":"Rangeley","sections":[{"header":"8 Threads","members":["Atom-C2758","Atom-C2738","Atom-C2718"]},{"header":"4 Threads","members":["Atom-C2558","Atom-C2538","Atom-C2518","Atom-C2516","Atom-C2508"]},{"header":"2 Threads","members":["Atom-C2358","Atom-C2338","Atom-C2316","Atom-C2308"]},{"header":"8 Threads","members":["Atom-C2758","Atom-C2738","Atom-C2718"]},{"header":"4 Threads","members":["Atom-C2558","Atom-C2538","Atom-C2518","Atom-C2516","Atom-C2508"]},{"header":"2 Threads","members":["Atom-C2358","Atom-C2338","Atom-C2316","Atom-C2308"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-04","Sockets":["BGA1283","BGA1283"]}},"Core-i3-2310E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q1 2011","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2310E"},"Core-i3-2340UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2340UE"},"Core-i5-2515E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2515E"},"Core-i7-2610UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-03-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2610UE"},"Core-i7-2655LE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-03-01","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2655LE"},"Core-i7-2715QE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2715QE"},"Pentium-807UE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1000 MHz","L2 Cache (Total)":"1024 KiB","Release Date":"2011-12-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 807UE"},"Pentium-827E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-16","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 827E"},"Pentium-847E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 847E"},"Pentium-B810E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Embedded","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B810E"},"Xeon-E5-2418L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"50 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon E5-2418L"},"Xeon-E5-2428L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2428L"},"Xeon-E5-2448L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Embedded","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2448L"},"Embedded-Sandy-Bridge-EN":{"humanName":"Sandy Bridge EN","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2448L","Xeon-E5-2428L"]},{"header":"8 Threads","members":["Xeon-E5-2418L"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2448L","Xeon-E5-2428L"]},{"header":"8 Threads","members":["Xeon-E5-2418L"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-05-14","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2648L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Embedded","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2648L"},"Xeon-E5-2658":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Embedded","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5-2658"},"Embedded-Sandy-Bridge-EP":{"humanName":"Sandy Bridge EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2658","Xeon-E5-2648L"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2658","Xeon-E5-2648L"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-03-06","Sockets":["LGA2011","LGA2011"]}},"Embedded-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2715QE"]},{"header":"4 Threads","members":["Core-i7-2655LE","Core-i7-2610UE","Core-i5-2515E","Core-i3-2340UE","Core-i3-2310E"]},{"header":"2 Threads","members":["Pentium-B810E","Pentium-847E"]},{"header":"1 Threads","members":["Pentium-827E","Pentium-807UE"]},{"header":"8 Threads","members":["Core-i7-2715QE"]},{"header":"4 Threads","members":["Core-i7-2655LE","Core-i7-2610UE","Core-i5-2515E","Core-i3-2340UE","Core-i3-2310E"]},{"header":"2 Threads","members":["Pentium-B810E","Pentium-847E"]},{"header":"1 Threads","members":["Pentium-827E","Pentium-807UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"Q1 2011","Sockets":["BGA1023","BGA1023"]}},"Core-i3-6100E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100E"},"Core-i3-6100TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100TE"},"Core-i3-6102E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6102E"},"Core-i5-6440EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6440EQ"},"Core-i5-6442EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.9 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6442EQ"},"Core-i7-6700TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6700TE"},"Core-i7-6820EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6820EQ"},"Core-i7-6822EQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6822EQ"},"Pentium-G3900E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900E"},"Pentium-G3900TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3900TE"},"Pentium-G3902E":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G3902E"},"Pentium-G4400TE":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-12-01","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium G4400TE"},"Xeon-E3-1268LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1268LV5"},"Xeon-E3-1505LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-11","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505LV5"},"Xeon-E3-1558LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1558LV5"},"Xeon-E3-1578LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Embedded","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L, DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"700 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1578LV5"},"Embedded-Skylake":{"humanName":"Skylake","sections":[{"header":"8 Threads","members":["Xeon-E3-1578LV5","Xeon-E3-1558LV5","Xeon-E3-1505LV5","Xeon-E3-1268LV5","Core-i7-6822EQ","Core-i7-6820EQ","Core-i7-6700TE"]},{"header":"4 Threads","members":["Core-i5-6500TE","Core-i5-6442EQ","Core-i5-6440EQ","Core-i3-6102E","Core-i3-6100TE","Core-i3-6100E"]},{"header":"2 Threads","members":["Pentium-G4400TE","Pentium-G3902E","Pentium-G3900TE","Pentium-G3900E"]},{"header":"8 Threads","members":["Xeon-E3-1578LV5","Xeon-E3-1558LV5","Xeon-E3-1505LV5","Xeon-E3-1268LV5","Core-i7-6822EQ","Core-i7-6820EQ","Core-i7-6700TE"]},{"header":"4 Threads","members":["Core-i5-6500TE","Core-i5-6442EQ","Core-i5-6440EQ","Core-i3-6102E","Core-i3-6100TE","Core-i3-6100E"]},{"header":"2 Threads","members":["Pentium-G4400TE","Pentium-G3902E","Pentium-G3900TE","Pentium-G3900E"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-10-11","Sockets":["LGA1151","BGA1440","LGA1151","BGA1440"]}},"Atom-E645C":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E645C"},"Atom-E645CT":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E645CT"},"Atom-E665C":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E665C"},"Atom-E665CT":{"data":{"Manufacturer":"Intel","Architecture":"Stellarton","Market":"Embedded","Lithography":"45 nm","TDP":"7 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2010-11-22","Socket":"FCBGA1466","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E665CT"},"Embedded-Stellarton":{"humanName":"Stellarton","sections":[{"header":"2 Threads","members":["Atom-E665CT","Atom-E665C","Atom-E645CT","Atom-E645C"]},{"header":"2 Threads","members":["Atom-E665CT","Atom-E665C","Atom-E645CT","Atom-E645C"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2010-11-22","Sockets":["BGA1466","BGA1466"]}},"Atom-E620":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"600 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E620"},"Atom-E620T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"600 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E620T"},"Atom-E640":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E640"},"Atom-E640T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"320 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E640T"},"Atom-E660":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E660"},"Atom-E660T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"3.6 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.3 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E660T"},"Atom-E680":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"4.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E680"},"Atom-E680T":{"data":{"Manufacturer":"Intel","Architecture":"Tunnel Creek","Market":"Embedded","Lithography":"45 nm","TDP":"4.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"Q3 2010","Socket":"FCBGA676","Other Extensions":[{}],"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom E680T"},"Embedded-Tunnel-Creek":{"humanName":"Tunnel Creek","sections":[{"header":"2 Threads","members":["Atom-E680T","Atom-E680","Atom-E660T","Atom-E660","Atom-E640T","Atom-E640","Atom-E620T","Atom-E620"]},{"header":"2 Threads","members":["Atom-E680T","Atom-E680","Atom-E660T","Atom-E660","Atom-E640T","Atom-E640","Atom-E620T","Atom-E620"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q3 2010","Sockets":["BGA676","BGA676"]}},"Core-i3-8145UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8145UE"},"Core-i5-8365UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8365UE"},"Core-i7-8665UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8665UE"},"Pentium-4305UE":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Embedded","Lithography":"14nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-06-10","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4305UE"},"Embedded-Whiskey-Lake":{"humanName":"Whiskey Lake","sections":[{"header":"8 Threads","members":["Core-i7-8665UE","Core-i5-8365UE"]},{"header":"4 Threads","members":["Core-i3-8145UE"]},{"header":"2 Threads","members":["Pentium-4305UE"]},{"header":"8 Threads","members":["Core-i7-8665UE","Core-i5-8365UE"]},{"header":"4 Threads","members":["Core-i3-8145UE"]},{"header":"2 Threads","members":["Pentium-4305UE"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-06-10","Sockets":["BGA1528","BGA1528"]}},"Xeon-E5240":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5240"},"Xeon-L3014":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"82 mm","Release Date":"2008-09-30","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3014"},"Xeon-L5238":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Embedded","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"Q1 2008","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5238"},"Embedded-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Xeon-L5238","Xeon-E5240"]},{"header":"1 Threads","members":["Xeon-L3014"]},{"header":"2 Threads","members":["Xeon-L5238","Xeon-E5240"]},{"header":"1 Threads","members":["Xeon-L3014"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2008","Sockets":["LGA771","LGA771"]}},"Embedded-CPUs-Intel":{"humanName":"Embedded CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Embedded-Whiskey-Lake","Embedded-Coffee-Lake","Embedded-Kaby-Lake","Embedded-Apollo-Lake","Embedded-Braswell","Embedded-Skylake","Embedded-Broadwell"]},{"header":"2010 - 2014","members":["Embedded-Ivy-Bridge-EN","Embedded-Bay-Trail","Embedded-Ivy-Bridge-EP","Embedded-Rangeley","Embedded-Haswell","Embedded-Gladden","Embedded-Sandy-Bridge-EN","Embedded-Ivy-Bridge","Embedded-Sandy-Bridge-EP","Embedded-Sandy-Bridge","Embedded-Stellarton","Embedded-Tunnel-Creek","Embedded-Arrandale","Embedded-Jasper-Forest"]},{"header":"2005 - 2009","members":["Embedded-Nehalem-EP","Embedded-Harpertown","Embedded-Wolfdale"]},{"header":"2015 - 2019","members":["Embedded-Whiskey-Lake","Embedded-Coffee-Lake","Embedded-Kaby-Lake","Embedded-Apollo-Lake","Embedded-Braswell","Embedded-Skylake","Embedded-Broadwell"]},{"header":"2010 - 2014","members":["Embedded-Ivy-Bridge-EN","Embedded-Bay-Trail","Embedded-Ivy-Bridge-EP","Embedded-Rangeley","Embedded-Haswell","Embedded-Gladden","Embedded-Sandy-Bridge-EN","Embedded-Ivy-Bridge","Embedded-Sandy-Bridge-EP","Embedded-Sandy-Bridge","Embedded-Stellarton","Embedded-Tunnel-Creek","Embedded-Arrandale","Embedded-Jasper-Forest"]},{"header":"2005 - 2009","members":["Embedded-Nehalem-EP","Embedded-Harpertown","Embedded-Wolfdale"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Pentium-4425Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 4425Y"},"Core-i3-10110Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-10110Y"},"Core-i5-10310Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-21","Socket":"UTFCBGA1377","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.1","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-10310Y"},"Core-i5-8310Y":{"data":{"Manufacturer":"Intel","Architecture":"Amber Lake Y","Market":"Mobile","Lithography":"14 nm","TDP":"7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2019","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8310Y"},"Mobile-Amber-Lake-Y":{"humanName":"Amber Lake Y","sections":[{"header":"8 Threads","members":["Core-i7-10510Y","Core-i5-10310Y","Core-i5-10210Y"]},{"header":"4 Threads","members":["Core-m3-8100Y","Core-i7-8500Y","Core-i5-8310Y","Core-i5-8210Y","Core-i5-8200Y","Core-i3-10110Y"]},{"header":"8 Threads","members":["Core-i7-10510Y","Core-i5-10310Y","Core-i5-10210Y"]},{"header":"4 Threads","members":["Core-m3-8100Y","Core-i7-8500Y","Core-i5-8310Y","Core-i5-8210Y","Core-i5-8200Y","Core-i3-10110Y"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-08-28","Sockets":["BGA1515","UTBGA1377","BGA1515","UTBGA1377"]}},"Mobile-Amber-Lake":{"humanName":"Amber Lake","sections":[{"header":"4 Threads","members":["Pentium-4425Y"]},{"header":"4 Threads","members":["Pentium-4425Y"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-01-01","Sockets":["BGA1515","BGA1515"]}},"Pentium-N3350":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3350"},"Pentium-N3350E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","GPU Boost Frequency":"650 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3350E"},"Pentium-N3450":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3, LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-08-30","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3, LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3450"},"Pentium-N4200E":{"data":{"Manufacturer":"Intel","Architecture":"Apollo Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR3L/LPDDR3,
LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-07-22","Socket":"FCBGA1296","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"200 MHz","VRAM Type":"DDR3L/LPDDR3,
LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N4200E"},"Mobile-Apollo-Lake":{"humanName":"Apollo Lake","sections":[{"header":"4 Threads","members":["Pentium-N4200E","Pentium-N4200","Pentium-N3450"]},{"header":"2 Threads","members":["Pentium-N3350E","Pentium-N3350"]},{"header":"4 Threads","members":["Pentium-N4200E","Pentium-N4200","Pentium-N3450"]},{"header":"2 Threads","members":["Pentium-N3350E","Pentium-N3350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1296","BGA1296"]}},"Core-i3-330E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-330E"},"Core-i3-330UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-330UM"},"Core-i3-380UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q4 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-380UM"},"Core-i3-390M":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"BGA1288, PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-390M"},"Core-i5-430UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"1.73 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-430UM"},"Core-i5-470UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"1.86 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q4 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-470UM"},"Core-i5-520UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.066 GHz","Boost Frequency":"1.866 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-520UM"},"Core-i5-540UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-540UM"},"Core-i5-560UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-560UM"},"Core-i7-610E":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"500 MHz","GPU Boost Frequency":"766 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-610E"},"Core-i7-620LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620LM"},"Core-i7-620UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-620UM"},"Core-i7-640UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-01-07","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-640UM"},"Core-i7-660LM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"3.06 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"266 MHz","GPU Boost Frequency":"566 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660LM"},"Core-i7-660UE":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660UE"},"Core-i7-660UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-660UM"},"Core-i7-680UM":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.46 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"BGA1288","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-680UM"},"Pentium-P4500":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2010-04-01","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4500"},"Pentium-P4505":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4505"},"Pentium-P4600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P4600"},"Pentium-P6000":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q2 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P6000"},"Pentium-P6300":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.27 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"Q1 2011","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium P6300"},"Pentium-U3400":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3400"},"Pentium-U3405":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"Q1 2010","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3405"},"Pentium-U3600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"81 mm","Release Date":"2011-01-09","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U3600"},"Pentium-U5400":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2010-05-24","Socket":"BGA1288","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U5400"},"Pentium-U5600":{"data":{"Manufacturer":"Intel","Architecture":"Arrandale","Market":"Mobile","Lithography":"32 nm","TDP":"18 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.33 GHz","L2 Cache (Total)":"3 MiB","Die Size":"81 mm","Release Date":"2011-01-09","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"166 MHz","GPU Boost Frequency":"500 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium U5600"},"Mobile-Arrandale":{"humanName":"Arrandale","sections":[{"header":"4 Threads","members":["Core-i7-680UM","Core-i7-660UM","Core-i7-660UE","Core-i7-660LM","Core-i7-640UM","Core-i7-640M","Core-i7-640LM","Core-i7-620UM","Core-i7-620M","Core-i7-620LM","Core-i7-610E","Core-i5-580M","Core-i5-560UM","Core-i5-560M","Core-i5-540UM","Core-i5-540M","Core-i5-520UM","Core-i5-520M","Core-i5-480M","Core-i5-470UM","Core-i5-460M","Core-i5-450M","Core-i5-430UM","Core-i5-430M","Core-i3-390M","Core-i3-380UM","Core-i3-380M","Core-i3-370M","Core-i3-350M","Core-i3-330UM","Core-i3-330M","Core-i3-330E"]},{"header":"2 Threads","members":["Pentium-U5600","Pentium-U5400","Pentium-U3600","Pentium-U3405","Pentium-U3400","Pentium-P6300","Pentium-P6200","Pentium-P6100","Pentium-P6000","Pentium-P4600","Pentium-P4505","Pentium-P4500"]},{"header":"4 Threads","members":["Core-i7-680UM","Core-i7-660UM","Core-i7-660UE","Core-i7-660LM","Core-i7-640UM","Core-i7-640M","Core-i7-640LM","Core-i7-620UM","Core-i7-620M","Core-i7-620LM","Core-i7-610E","Core-i5-580M","Core-i5-560UM","Core-i5-560M","Core-i5-540UM","Core-i5-540M","Core-i5-520UM","Core-i5-520M","Core-i5-480M","Core-i5-470UM","Core-i5-460M","Core-i5-450M","Core-i5-430UM","Core-i5-430M","Core-i3-390M","Core-i3-380UM","Core-i3-380M","Core-i3-370M","Core-i3-350M","Core-i3-330UM","Core-i3-330M","Core-i3-330E"]},{"header":"2 Threads","members":["Pentium-U5600","Pentium-U5400","Pentium-U3600","Pentium-U3405","Pentium-U3400","Pentium-P6300","Pentium-P6200","Pentium-P6100","Pentium-P6000","Pentium-P4600","Pentium-P4505","Pentium-P4500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"Q1 2010","Sockets":["BGA1288","PGA988","BGA1288","PGA988"]}},"Pentium-A1020":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.41 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-03","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"688 MHz","GPU Boost Frequency":"896 MHz","DirectX Support":"11.2"},"isPart":true,"type":"CPU","humanName":"Pentium A1020"},"Pentium-N2805":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"667 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2805"},"Pentium-N2806":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2806"},"Pentium-N2807":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.3 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.58 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-02-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2807"},"Pentium-N2808":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"4.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.58 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"311 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2808"},"Pentium-N2810":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2810"},"Pentium-N2815":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2815"},"Pentium-N2820":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2820"},"Pentium-N2830":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"750 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2830"},"Pentium-N2840":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"311 MHz","GPU Boost Frequency":"792 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2840"},"Pentium-N2910":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-11","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"756 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2910"},"Pentium-N2920":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3L","Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-10-24","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"844 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2920"},"Pentium-N2930":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-02-13","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2930"},"Pentium-N2940":{"data":{"Manufacturer":"Intel","Architecture":"Bay Trail","Market":"Mobile","Lithography":"22 nm","TDP":"7.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3L","Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-07-20","Socket":"FCBGA1170","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"313 MHz","GPU Boost Frequency":"854 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium N2940"},"Mobile-Bay-Trail":{"humanName":"Bay Trail","sections":[{"header":"4 Threads","members":["Pentium-N3540","Pentium-N3530","Pentium-N3520","Pentium-N3510","Pentium-N2940","Pentium-N2930","Pentium-N2920","Pentium-N2910","Pentium-A1020","Atom-Z3795","Atom-Z3785","Atom-Z3775D","Atom-Z3775","Atom-Z3770D","Atom-Z3770","Atom-Z3745D","Atom-Z3745","Atom-Z3740D","Atom-Z3740","Atom-Z3736G","Atom-Z3736F","Atom-Z3735G","Atom-Z3735F","Atom-Z3735E","Atom-Z3735D"]},{"header":"2 Threads","members":["Pentium-N2840","Pentium-N2830","Pentium-N2820","Pentium-N2815","Pentium-N2810","Pentium-N2808","Pentium-N2807","Pentium-N2806","Pentium-N2805"]},{"header":"4 Threads","members":["Pentium-N3540","Pentium-N3530","Pentium-N3520","Pentium-N3510","Pentium-N2940","Pentium-N2930","Pentium-N2920","Pentium-N2910","Pentium-A1020","Atom-Z3795","Atom-Z3785","Atom-Z3775D","Atom-Z3775","Atom-Z3770D","Atom-Z3770","Atom-Z3745D","Atom-Z3745","Atom-Z3740D","Atom-Z3740","Atom-Z3736G","Atom-Z3736F","Atom-Z3735G","Atom-Z3735F","Atom-Z3735E","Atom-Z3735D"]},{"header":"2 Threads","members":["Pentium-N2840","Pentium-N2830","Pentium-N2820","Pentium-N2815","Pentium-N2810","Pentium-N2808","Pentium-N2807","Pentium-N2806","Pentium-N2805"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-11","Sockets":["BGA1170","UTBGA1380","UTBGA592","BGA1170","UTBGA1380","UTBGA592"]}},"Pentium-N3000":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"4 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3000"},"Pentium-N3010":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"4 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.04 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3010"},"Pentium-N3050":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3050"},"Pentium-N3060":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3060"},"Pentium-N3150":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-03-30","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3150"},"Pentium-N3160":{"data":{"Manufacturer":"Intel","Architecture":"Braswell","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2016-01-10","Socket":"FCBGA1170","AES":true,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"320 MHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"8 GiB","DirectX Support":"0","OpenGL Support":"Yes"},"isPart":true,"type":"CPU","humanName":"Pentium N3160"},"Mobile-Braswell":{"humanName":"Braswell","sections":[{"header":"4 Threads","members":["Pentium-N3710","Pentium-N3700","Pentium-N3160","Pentium-N3150"]},{"header":"2 Threads","members":["Pentium-N3060","Pentium-N3050","Pentium-N3010","Pentium-N3000"]},{"header":"4 Threads","members":["Pentium-N3710","Pentium-N3700","Pentium-N3160","Pentium-N3150"]},{"header":"2 Threads","members":["Pentium-N3060","Pentium-N3050","Pentium-N3010","Pentium-N3000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-30","Sockets":["BGA1170","BGA1170"]}},"Core-5Y10":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10"},"Core-5Y10a":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10a"},"Core-5Y10c":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"800 MHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"800 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y10c"},"Core-5Y31":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"900 MHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y31"},"Core-5Y51":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y51"},"Core-5Y70":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-09-05","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y70"},"Core-5Y71":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"LPDDR3, DDR3L/DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2014-10-26","Socket":"FCBGA1234","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L/DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core 5Y71"},"Core-i3-5157U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-5157U"},"Core-i5-5350H":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-5350H"},"Core-i7-5750HQ":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-5750HQ"},"Pentium-3205U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3205U"},"Pentium-3215U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-06-07","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3215U"},"Pentium-3755U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-01-05","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"100 MHz","GPU Boost Frequency":"800 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3755U"},"Pentium-3765U":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-06-07","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","DirectX Support":"12"},"isPart":true,"type":"CPU","humanName":"Pentium 3765U"},"Mobile-Broadwell":{"humanName":"Broadwell","sections":[{"header":"8 Threads","members":["Core-i7-5950HQ","Core-i7-5850HQ","Core-i7-5750HQ","Core-i7-5700HQ"]},{"header":"4 Threads","members":["Pentium-3825U","Core-i7-5650U","Core-i7-5600U","Core-i7-5557U","Core-i7-5550U","Core-i7-5500U","Core-i5-5350U","Core-i5-5350H","Core-i5-5300U","Core-i5-5287U","Core-i5-5257U","Core-i5-5250U","Core-i5-5200U","Core-i3-5157U","Core-i3-5020U","Core-i3-5015U","Core-i3-5010U","Core-i3-5005U","Core-5Y71","Core-5Y70","Core-5Y51","Core-5Y31","Core-5Y10c","Core-5Y10a","Core-5Y10"]},{"header":"2 Threads","members":["Pentium-3805U","Pentium-3765U","Pentium-3755U","Pentium-3215U","Pentium-3205U"]},{"header":"8 Threads","members":["Core-i7-5950HQ","Core-i7-5850HQ","Core-i7-5750HQ","Core-i7-5700HQ"]},{"header":"4 Threads","members":["Pentium-3825U","Core-i7-5650U","Core-i7-5600U","Core-i7-5557U","Core-i7-5550U","Core-i7-5500U","Core-i5-5350U","Core-i5-5350H","Core-i5-5300U","Core-i5-5287U","Core-i5-5257U","Core-i5-5250U","Core-i5-5200U","Core-i3-5157U","Core-i3-5020U","Core-i3-5015U","Core-i3-5010U","Core-i3-5005U","Core-5Y71","Core-5Y70","Core-5Y51","Core-5Y31","Core-5Y10c","Core-5Y10a","Core-5Y10"]},{"header":"2 Threads","members":["Pentium-3805U","Pentium-3765U","Pentium-3755U","Pentium-3215U","Pentium-3205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2014-09-05","Sockets":["BGA1234","BGA1168","BGA1364","BGA1234","BGA1168","BGA1364"]}},"Mobile-Cedarview":{"humanName":"Cedarview","sections":[{"header":"4 Threads","members":["Atom-N2800","Atom-N2600"]},{"header":"4 Threads","members":["Atom-N2800","Atom-N2600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-12-28","Sockets":["BGA559","BGA559"]}},"Mobile-Cherry-Trail":{"humanName":"Cherry Trail","sections":[{"header":"4 Threads","members":["Atom-x7-Z8750","Atom-x7-Z8700","Atom-x5-Z8550","Atom-x5-Z8500","Atom-x5-Z8350","Atom-x5-Z8330","Atom-x5-Z8300"]},{"header":"4 Threads","members":["Atom-x7-Z8750","Atom-x7-Z8700","Atom-x5-Z8550","Atom-x5-Z8500","Atom-x5-Z8350","Atom-x5-Z8330","Atom-x5-Z8300"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-02","Sockets":["UTBGA1380","UTBGA592","UTBGA1380","UTBGA592"]}},"Core-i7-940XM":{"data":{"Manufacturer":"Intel","Architecture":"Clarksfield","Market":"Mobile","Lithography":"45 nm","TDP":"55 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"3.33 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"Q3 2010","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i7-940XM"},"Mobile-Clarksfield":{"humanName":"Clarksfield","sections":[{"header":"8 Threads","members":["Core-i7-940XM","Core-i7-920XM","Core-i7-840QM","Core-i7-820QM","Core-i7-740QM","Core-i7-720QM"]},{"header":"8 Threads","members":["Core-i7-940XM","Core-i7-920XM","Core-i7-840QM","Core-i7-820QM","Core-i7-740QM","Core-i7-720QM"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-23","Sockets":["PGA988","PGA988"]}},"Mobile-Cloverview":{"humanName":"Cloverview","sections":[{"header":"4 Threads","members":["Atom-Z2760","Atom-Z2580","Atom-Z2560","Atom-Z2520"]},{"header":"4 Threads","members":["Atom-Z2760","Atom-Z2580","Atom-Z2560","Atom-Z2520"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-09-27","Sockets":["MB4760","MB4760"]}},"Core-i3-8100H":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-07-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-8100H"},"Core-i5-8269U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.6 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2018-04-03","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8269U"},"Core-i5-8400B":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2018-04-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-8400B"},"Core-i7-8557U":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-07-09","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-8557U"},"Mobile-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2286M","Xeon-E-2276M","Xeon-E-2186M","Xeon-E-2176M","Core-i9-9980HK","Core-i9-9880H","Core-i9-8950HK","Core-i7-9850H","Core-i7-9750HF","Core-i7-9750H","Core-i7-8850H","Core-i7-8750H","Core-i7-8700B"]},{"header":"8 Threads","members":["Core-i7-8569U","Core-i7-8559U","Core-i7-8557U","Core-i5-9400H","Core-i5-9300HF","Core-i5-9300H","Core-i5-8400H","Core-i5-8300H","Core-i5-8279U","Core-i5-8269U","Core-i5-8259U","Core-i5-8257U"]},{"header":"6 Threads","members":["Core-i5-8500B","Core-i5-8400B"]},{"header":"4 Threads","members":["Core-i3-8109U","Core-i3-8100H","Core-i3-8100B"]},{"header":"9 - 16 Threads","members":["Xeon-E-2286M","Xeon-E-2276M","Xeon-E-2186M","Xeon-E-2176M","Core-i9-9980HK","Core-i9-9880H","Core-i9-8950HK","Core-i7-9850H","Core-i7-9750HF","Core-i7-9750H","Core-i7-8850H","Core-i7-8750H","Core-i7-8700B"]},{"header":"8 Threads","members":["Core-i7-8569U","Core-i7-8559U","Core-i7-8557U","Core-i5-9400H","Core-i5-9300HF","Core-i5-9300H","Core-i5-8400H","Core-i5-8300H","Core-i5-8279U","Core-i5-8269U","Core-i5-8259U","Core-i5-8257U"]},{"header":"6 Threads","members":["Core-i5-8500B","Core-i5-8400B"]},{"header":"4 Threads","members":["Core-i3-8109U","Core-i3-8100H","Core-i3-8100B"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-04-03","Sockets":["BGA1440","BGA1528","BGA1440","BGA1528"]}},"Pentium-5205U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-10-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 5205U"},"Pentium-6405U":{"data":{"Manufacturer":"Intel","Architecture":"Comet Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-10-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 6405U"},"Mobile-Comet-Lake":{"humanName":"Comet Lake","sections":[{"header":"9 - 16 Threads","members":["Core-i7-10710U"]},{"header":"8 Threads","members":["Core-i7-10510U","Core-i5-10210U"]},{"header":"4 Threads","members":["Pentium-6405U","Core-i3-10110U"]},{"header":"2 Threads","members":["Pentium-5205U"]},{"header":"9 - 16 Threads","members":["Core-i7-10710U"]},{"header":"8 Threads","members":["Core-i7-10510U","Core-i5-10210U"]},{"header":"4 Threads","members":["Pentium-6405U","Core-i3-10110U"]},{"header":"2 Threads","members":["Pentium-5205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-08-21","Sockets":["BGA1528","BGA1528"]}},"Core-i7-4760HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-04-14","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4760HQ"},"Core-i7-4860HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2014-01-19","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4860HQ"},"Core-i7-4950HQ":{"data":{"Manufacturer":"Intel","Architecture":"Crystal Well","Market":"Mobile","Lithography":"22 nm","TDP":"47 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2013-06-04","Socket":"FCBGA1364","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4950HQ"},"Mobile-Crystal-Well":{"humanName":"Crystal Well","sections":[{"header":"8 Threads","members":["Core-i7-4980HQ","Core-i7-4960HQ","Core-i7-4950HQ","Core-i7-4870HQ","Core-i7-4860HQ","Core-i7-4850HQ","Core-i7-4770HQ","Core-i7-4760HQ","Core-i7-4750HQ"]},{"header":"8 Threads","members":["Core-i7-4980HQ","Core-i7-4960HQ","Core-i7-4950HQ","Core-i7-4870HQ","Core-i7-4860HQ","Core-i7-4850HQ","Core-i7-4770HQ","Core-i7-4760HQ","Core-i7-4750HQ"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-04","Sockets":["BGA1364","BGA1364"]}},"Mobile-Diamondville":{"humanName":"Diamondville","sections":[{"header":"2 Threads","members":["Atom-N280","Atom-N270"]},{"header":"2 Threads","members":["Atom-N280","Atom-N270"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-06-03","Sockets":["PBGA437","PBGA437"]}},"Pentium-350":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q3 2005","Socket":"H-PBGA478, H-PBGA479, PPGA478, PPGA479","AES":false,"Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 350"},"Pentium-353":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Base Frequency":"900 MHz","L2 Cache (Total)":"512 KiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 353"},"Pentium-360":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"Q4 2006","Socket":"H-PBGA479, PPGA478","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 360"},"Pentium-370":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Release Date":"2005-02-14","Socket":"H-PBGA478, H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 370"},"Pentium-373":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Die Size":"87 mm","Release Date":"2005-02-14","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 373"},"Pentium-380":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 380"},"Pentium-383":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 383"},"Pentium-390":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 390"},"Pentium-715":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 715"},"Pentium-725":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"Q2 2004","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 725"},"Pentium-730":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 730"},"Pentium-733":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 733"},"Pentium-735":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 735"},"Pentium-738":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-07-29","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 738"},"Pentium-740":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 740"},"Pentium-745":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-06-25","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 745"},"Pentium-745A":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"21 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-06-25","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 745A"},"Pentium-750":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 750"},"Pentium-753":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 753"},"Pentium-755":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 755"},"Pentium-758":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 758"},"Pentium-760":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Release Date":"2004-10-11","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 760"},"Pentium-765":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 765"},"Pentium-770":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 770"},"Pentium-773":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 773"},"Pentium-778":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"7.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 778"},"Pentium-780":{"data":{"Manufacturer":"Intel","Architecture":"Dothan","Market":"Mobile","Lithography":"90 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"2 MiB","Die Size":"87 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 780"},"Mobile-Dothan":{"humanName":"Dothan","sections":[{"header":"1 Threads","members":["Pentium-780","Pentium-778","Pentium-773","Pentium-770","Pentium-765","Pentium-760","Pentium-758","Pentium-755","Pentium-753","Pentium-750","Pentium-745A","Pentium-745","Pentium-740","Pentium-738","Pentium-735","Pentium-733","Pentium-730","Pentium-725","Pentium-715","Pentium-390","Pentium-383","Pentium-380","Pentium-373","Pentium-370","Pentium-360","Pentium-353","Pentium-350"]},{"header":"1 Threads","members":["Pentium-780","Pentium-778","Pentium-773","Pentium-770","Pentium-765","Pentium-760","Pentium-758","Pentium-755","Pentium-753","Pentium-750","Pentium-745A","Pentium-745","Pentium-740","Pentium-738","Pentium-735","Pentium-733","Pentium-730","Pentium-725","Pentium-715","Pentium-390","Pentium-383","Pentium-380","Pentium-373","Pentium-370","Pentium-360","Pentium-353","Pentium-350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"90 nm","Release Date":"Q2 2004","Sockets":["HPBGA478","HPBGA479","PPGA478","PPGA479","HPBGA478","HPBGA479","PPGA478","PPGA479"]}},"Pentium-N4000":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4000"},"Pentium-N4100":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4100"},"Pentium-N5000":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-12-11","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N5000"},"Pentium-N4020":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4020"},"Pentium-N4120":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N4120"},"Pentium-N5030":{"data":{"Manufacturer":"Intel","Architecture":"Gemini Lake Refresh","Market":"Mobile","Lithography":"14nm","TDP":"6 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4/LPDDR4","Base Frequency":"1.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-11-04","Socket":"FCBGA1090","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","VRAM Type":"DDR4/LPDDR4","Maximum VRAM Capacity":"8 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium N5030"},"Mobile-Gemini-Lake-Refresh":{"humanName":"Gemini Lake Refresh","sections":[{"header":"4 Threads","members":["Pentium-N5030","Pentium-N4120"]},{"header":"2 Threads","members":["Pentium-N4020"]},{"header":"4 Threads","members":["Pentium-N5030","Pentium-N4120"]},{"header":"2 Threads","members":["Pentium-N4020"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2019-11-04","Sockets":["BGA1090","BGA1090"]}},"Mobile-Gemini-Lake":{"humanName":"Gemini Lake","sections":[{"header":"4 Threads","members":["Pentium-N5000","Pentium-N4100"]},{"header":"2 Threads","members":["Pentium-N4000"]},{"header":"4 Threads","members":["Pentium-N5000","Pentium-N4100"]},{"header":"2 Threads","members":["Pentium-N4000"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-12-11","Sockets":["BGA1090","BGA1090"]}},"Core-i3-4010Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4010Y"},"Core-i3-4030Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4030Y"},"Core-i3-4100U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4100U"},"Core-i3-4110M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4110M"},"Core-i3-4120U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4120U"},"Core-i3-4158U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i3-4158U"},"Core-i5-4200Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4200Y"},"Core-i5-4220Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-04-14","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4220Y"},"Core-i5-4302Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4302Y"},"Core-i5-4330M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3L","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4330M"},"Core-i5-4350U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-06-03","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4350U"},"Core-i5-4360U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2014-01-19","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i5-4360U"},"Core-i7-4610Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"DDR3L, LPDDR3","Maximum VRAM Capacity":"2 GiB","DirectX Support":"12","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Core i7-4610Y"},"Pentium-2950M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2950M"},"Pentium-2955U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2955U"},"Pentium-2957U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2957U"},"Pentium-2961Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2961Y"},"Pentium-2970M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2970M"},"Pentium-2980U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2980U"},"Pentium-2981U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2981U"},"Pentium-3558U":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3558U"},"Pentium-3560M":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"37 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L","Base Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2014-04-14","Socket":"FCPGA946","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3560M"},"Pentium-3560Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3560Y"},"Pentium-3561Y":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Mobile","Lithography":"22 nm","TDP":"11.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3L, LPDDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-12-01","Socket":"FCBGA1168","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"200 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 3561Y"},"Mobile-Haswell":{"humanName":"Haswell","sections":[{"header":"8 Threads","members":["Core-i7-4940MX","Core-i7-4930MX","Core-i7-4910MQ","Core-i7-4900MQ","Core-i7-4810MQ","Core-i7-4800MQ","Core-i7-4722HQ","Core-i7-4720HQ","Core-i7-4712MQ","Core-i7-4712HQ","Core-i7-4710MQ","Core-i7-4710HQ","Core-i7-4702MQ","Core-i7-4702HQ","Core-i7-4700MQ","Core-i7-4700HQ"]},{"header":"4 Threads","members":["Core-i7-4650U","Core-i7-4610Y","Core-i7-4610M","Core-i7-4600U","Core-i7-4600M","Core-i7-4578U","Core-i7-4558U","Core-i7-4550U","Core-i7-4510U","Core-i7-4500U","Core-i5-4360U","Core-i5-4350U","Core-i5-4340M","Core-i5-4330M","Core-i5-4310U","Core-i5-4310M","Core-i5-4308U","Core-i5-4302Y","Core-i5-4300Y","Core-i5-4300U","Core-i5-4300M","Core-i5-4288U","Core-i5-4278U","Core-i5-4260U","Core-i5-4258U","Core-i5-4250U","Core-i5-4220Y","Core-i5-4210Y","Core-i5-4210U","Core-i5-4210M","Core-i5-4210H","Core-i5-4202Y","Core-i5-4200Y","Core-i5-4200U","Core-i5-4200M","Core-i5-4200H","Core-i3-4158U","Core-i3-4120U","Core-i3-4110M","Core-i3-4100U","Core-i3-4100M","Core-i3-4030Y","Core-i3-4030U","Core-i3-4025U","Core-i3-4020Y","Core-i3-4012Y","Core-i3-4010Y","Core-i3-4010U","Core-i3-4005U","Core-i3-4000M"]},{"header":"2 Threads","members":["Pentium-3561Y","Pentium-3560Y","Pentium-3560M","Pentium-3558U","Pentium-3556U","Pentium-3550M","Pentium-2981U","Pentium-2980U","Pentium-2970M","Pentium-2961Y","Pentium-2957U","Pentium-2955U","Pentium-2950M"]},{"header":"8 Threads","members":["Core-i7-4940MX","Core-i7-4930MX","Core-i7-4910MQ","Core-i7-4900MQ","Core-i7-4810MQ","Core-i7-4800MQ","Core-i7-4722HQ","Core-i7-4720HQ","Core-i7-4712MQ","Core-i7-4712HQ","Core-i7-4710MQ","Core-i7-4710HQ","Core-i7-4702MQ","Core-i7-4702HQ","Core-i7-4700MQ","Core-i7-4700HQ"]},{"header":"4 Threads","members":["Core-i7-4650U","Core-i7-4610Y","Core-i7-4610M","Core-i7-4600U","Core-i7-4600M","Core-i7-4578U","Core-i7-4558U","Core-i7-4550U","Core-i7-4510U","Core-i7-4500U","Core-i5-4360U","Core-i5-4350U","Core-i5-4340M","Core-i5-4330M","Core-i5-4310U","Core-i5-4310M","Core-i5-4308U","Core-i5-4302Y","Core-i5-4300Y","Core-i5-4300U","Core-i5-4300M","Core-i5-4288U","Core-i5-4278U","Core-i5-4260U","Core-i5-4258U","Core-i5-4250U","Core-i5-4220Y","Core-i5-4210Y","Core-i5-4210U","Core-i5-4210M","Core-i5-4210H","Core-i5-4202Y","Core-i5-4200Y","Core-i5-4200U","Core-i5-4200M","Core-i5-4200H","Core-i3-4158U","Core-i3-4120U","Core-i3-4110M","Core-i3-4100U","Core-i3-4100M","Core-i3-4030Y","Core-i3-4030U","Core-i3-4025U","Core-i3-4020Y","Core-i3-4012Y","Core-i3-4010Y","Core-i3-4010U","Core-i3-4005U","Core-i3-4000M"]},{"header":"2 Threads","members":["Pentium-3561Y","Pentium-3560Y","Pentium-3560M","Pentium-3558U","Pentium-3556U","Pentium-3550M","Pentium-2981U","Pentium-2980U","Pentium-2970M","Pentium-2961Y","Pentium-2957U","Pentium-2955U","Pentium-2950M"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["BGA1364","BGA1168","PGA946","BGA1364","BGA1168","PGA946"]}},"Core-i3-1000G1":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-1000G1"},"Core-i3-1000G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-1000G4"},"Core-i5-1030G4":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"700 MHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1030G4"},"Core-i5-1030G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"800 MHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-1030G7"},"Core-i7-1060G7":{"data":{"Manufacturer":"Intel","Architecture":"Ice Lake","Market":"Mobile","Lithography":"10 nm","TDP":"9 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"3733 MHz","Memory Type":"LPDDR4","Base Frequency":"1000 MHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-08-01","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-1060G7"},"Mobile-Ice-Lake":{"humanName":"Ice Lake","sections":[{"header":"8 Threads","members":["Core-i7-1065G7","Core-i7-1060G7","Core-i5-1035G7","Core-i5-1035G4","Core-i5-1035G1","Core-i5-1030G7","Core-i5-1030G4"]},{"header":"4 Threads","members":["Core-i3-1005G1","Core-i3-1000G4","Core-i3-1000G1"]},{"header":"8 Threads","members":["Core-i7-1065G7","Core-i7-1060G7","Core-i5-1035G7","Core-i5-1035G4","Core-i5-1035G1","Core-i5-1030G7","Core-i5-1030G4"]},{"header":"4 Threads","members":["Core-i3-1005G1","Core-i3-1000G4","Core-i3-1000G1"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"10 nm","Release Date":"2019-08-01","Sockets":["BGA1526","BGA1526"]}},"Core-i3-3130M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023, FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3130M"},"Core-i3-3229Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i3-3229Y"},"Core-i5-3439Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Core i5-3439Y"},"Pentium-1000M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1000M"},"Pentium-1005M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1005M"},"Pentium-1007U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1007U"},"Pentium-1017U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-06-09","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1017U"},"Pentium-1019Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1000 MHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-04-01","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1019Y"},"Pentium-1020M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1020M"},"Pentium-1037U":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 1037U"},"Pentium-2030M":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-20","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2030M"},"Pentium-2129Y":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-01-07","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"850 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 2129Y"},"Pentium-A1018":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Mobile","Lithography":"22 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/L/","Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-08-29","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium A1018"},"Mobile-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-3940XM","Core-i7-3920XM","Core-i7-3840QM","Core-i7-3820QM","Core-i7-3740QM","Core-i7-3720QM","Core-i7-3635QM","Core-i7-3632QM","Core-i7-3630QM","Core-i7-3615QM","Core-i7-3612QM","Core-i7-3610QM"]},{"header":"4 Threads","members":["Core-i7-3689Y","Core-i7-3687U","Core-i7-3667U","Core-i7-3540M","Core-i7-3537U","Core-i7-3520M","Core-i7-3517U","Core-i5-3439Y","Core-i5-3437U","Core-i5-3427U","Core-i5-3380M","Core-i5-3360M","Core-i5-3340M","Core-i5-3339Y","Core-i5-3337U","Core-i5-3320M","Core-i5-3317U","Core-i5-3230M","Core-i5-3210M","Core-i3-3229Y","Core-i3-3227U","Core-i3-3217U","Core-i3-3130M","Core-i3-3120M","Core-i3-3110M"]},{"header":"2 Threads","members":["Pentium-A1018","Pentium-2129Y","Pentium-2127U","Pentium-2117U","Pentium-2030M","Pentium-2020M","Pentium-1037U","Pentium-1020M","Pentium-1019Y","Pentium-1017U","Pentium-1007U","Pentium-1005M","Pentium-1000M"]},{"header":"8 Threads","members":["Core-i7-3940XM","Core-i7-3920XM","Core-i7-3840QM","Core-i7-3820QM","Core-i7-3740QM","Core-i7-3720QM","Core-i7-3635QM","Core-i7-3632QM","Core-i7-3630QM","Core-i7-3615QM","Core-i7-3612QM","Core-i7-3610QM"]},{"header":"4 Threads","members":["Core-i7-3689Y","Core-i7-3687U","Core-i7-3667U","Core-i7-3540M","Core-i7-3537U","Core-i7-3520M","Core-i7-3517U","Core-i5-3439Y","Core-i5-3437U","Core-i5-3427U","Core-i5-3380M","Core-i5-3360M","Core-i5-3340M","Core-i5-3339Y","Core-i5-3337U","Core-i5-3320M","Core-i5-3317U","Core-i5-3230M","Core-i5-3210M","Core-i3-3229Y","Core-i3-3227U","Core-i3-3217U","Core-i3-3130M","Core-i3-3120M","Core-i3-3110M"]},{"header":"2 Threads","members":["Pentium-A1018","Pentium-2129Y","Pentium-2127U","Pentium-2117U","Pentium-2030M","Pentium-2020M","Pentium-1037U","Pentium-1020M","Pentium-1019Y","Pentium-1017U","Pentium-1007U","Pentium-1005M","Pentium-1000M"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-04-29","Sockets":["PGA988","BGA1224","BGA1023","PGA988","BGA1224","BGA1023"]}},"Core-M3-7Y30":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1000 MHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2016-08-30","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-7Y30"},"Core-M3-7Y32":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-04-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-7Y32"},"Core-i3-7100H":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"RAM","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-7100H"},"Core-i5-7287U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7287U"},"Core-i5-7Y57":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"950 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-7Y57"},"Pentium-3865U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3865U"},"Pentium-3965U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-01-03","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3965U"},"Pentium-3965Y":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2017-06-29","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3965Y"},"Xeon-E3-1505MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505MV6"},"Xeon-E3-1535MV6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-01-03","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1535MV6"},"Mobile-Kaby-Lake-G":{"humanName":"Kaby Lake G","sections":[{"header":"8 Threads","members":["Core-i7-8809G","Core-i7-8709G","Core-i7-8706G","Core-i7-8705G","Core-i5-8305G"]},{"header":"8 Threads","members":["Core-i7-8809G","Core-i7-8709G","Core-i7-8706G","Core-i7-8705G","Core-i5-8305G"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-01-07","Sockets":["BGA2270","BGA2270"]}},"Pentium-3867U":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake R","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3867U"},"Mobile-Kaby-Lake-R":{"humanName":"Kaby Lake R","sections":[{"header":"8 Threads","members":["Core-i7-8650U","Core-i7-8550U","Core-i5-8350U","Core-i5-8250U"]},{"header":"4 Threads","members":["Pentium-4417U"]},{"header":"2 Threads","members":["Pentium-3867U"]},{"header":"8 Threads","members":["Core-i7-8650U","Core-i7-8550U","Core-i5-8350U","Core-i5-8250U"]},{"header":"4 Threads","members":["Pentium-4417U"]},{"header":"2 Threads","members":["Pentium-3867U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-08-21","Sockets":["BGA1356","BGA1356"]}},"Mobile-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1535MV6","Xeon-E3-1505MV6","Core-i7-7920HQ","Core-i7-7820HQ","Core-i7-7820HK","Core-i7-7700HQ"]},{"header":"4 Threads","members":["Pentium-4415Y","Pentium-4415U","Pentium-4410Y","Core-i7-7660U","Core-i7-7600U","Core-i7-7567U","Core-i7-7560U","Core-i7-7500U","Core-i7-7Y75","Core-i5-7440HQ","Core-i5-7360U","Core-i5-7300U","Core-i5-7300HQ","Core-i5-7287U","Core-i5-7267U","Core-i5-7260U","Core-i5-7200U","Core-i5-7Y57","Core-i5-7Y54","Core-i3-8130U","Core-i3-7167U","Core-i3-7130U","Core-i3-7100U","Core-i3-7100H","Core-i3-7020U","Core-M3-7Y32","Core-M3-7Y30"]},{"header":"2 Threads","members":["Pentium-3965Y","Pentium-3965U","Pentium-3865U"]},{"header":"8 Threads","members":["Xeon-E3-1535MV6","Xeon-E3-1505MV6","Core-i7-7920HQ","Core-i7-7820HQ","Core-i7-7820HK","Core-i7-7700HQ"]},{"header":"4 Threads","members":["Pentium-4415Y","Pentium-4415U","Pentium-4410Y","Core-i7-7660U","Core-i7-7600U","Core-i7-7567U","Core-i7-7560U","Core-i7-7500U","Core-i7-7Y75","Core-i5-7440HQ","Core-i5-7360U","Core-i5-7300U","Core-i5-7300HQ","Core-i5-7287U","Core-i5-7267U","Core-i5-7260U","Core-i5-7200U","Core-i5-7Y57","Core-i5-7Y54","Core-i3-8130U","Core-i3-7167U","Core-i3-7130U","Core-i3-7100U","Core-i3-7100H","Core-i3-7020U","Core-M3-7Y32","Core-M3-7Y30"]},{"header":"2 Threads","members":["Pentium-3965Y","Pentium-3965U","Pentium-3865U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2016-08-30","Sockets":["BGA1515","BGA1356","BGA1440","BGA1515","BGA1356","BGA1440"]}},"Atom-Z600":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"1.3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"400 MHz","Memory Type":"LPDDR1","Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz","VRAM Type":"LPDDR1","Maximum VRAM Capacity":"256 MiB"},"isPart":true,"type":"CPU","humanName":"Atom Z600"},"Atom-Z615":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz","VRAM Type":"DDR2","Maximum VRAM Capacity":"256 MiB"},"isPart":true,"type":"CPU","humanName":"Atom Z615"},"Atom-Z625":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.9 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-05-02","AES":false,"Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z625"},"Atom-Z650":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-04-11","Socket":"T-PBGA518","Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z650"},"Atom-Z670":{"data":{"Manufacturer":"Intel","Architecture":"Lincroft","Market":"Mobile","Lithography":"45 nm","TDP":"3 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"800 MHz","Memory Type":"DDR2","Base Frequency":"1.5 GHz","L2 Cache (Total)":"512 KiB","Release Date":"2011-04-11","Socket":"T-PBGA518","Other Extensions":[{}],"AVX/SSE/MMX":false,"GPU Base Frequency":"400 MHz"},"isPart":true,"type":"CPU","humanName":"Atom Z670"},"Mobile-Lincroft":{"humanName":"Lincroft","sections":[{"header":"2 Threads","members":["Atom-Z670","Atom-Z650","Atom-Z625","Atom-Z615","Atom-Z600"]},{"header":"2 Threads","members":["Atom-Z670","Atom-Z650","Atom-Z625","Atom-Z615","Atom-Z600"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2011-04-11","Sockets":["TPBGA518","TPBGA518"]}},"Core-L7200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-01-03","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7200"},"Core-L7300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7300"},"Core-L7400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-01-03","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7400"},"Core-L7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7500"},"Core-L7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core L7700"},"Core-T5200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5200"},"Core-T5250":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5250"},"Core-T5270":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5270"},"Core-T5300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5300"},"Core-T5450":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5450"},"Core-T5470":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5470"},"Core-T5500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5500"},"Core-T5550":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5550"},"Core-T5600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5600"},"Core-T5670":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2008-03-31","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5670"},"Core-T5750":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q1 2008","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5750"},"Core-T5800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q4 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5800"},"Core-T5870":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T5870"},"Core-T7100":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7100"},"Core-T7200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7200"},"Core-T7250":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7250"},"Core-T7300":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7300"},"Core-T7400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-07-29","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7400"},"Core-T7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7500"},"Core-T7600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"34 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"Q3 2007","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7600"},"Core-T7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-05-09","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7700"},"Core-T7800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T7800"},"Core-U2100":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U2100"},"Core-U2200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U2200"},"Core-U7500":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PBGA479","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7500"},"Core-U7600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2007-04-05","Socket":"PBGA479","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7600"},"Core-U7700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"143 mm","Release Date":"2008-01-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core U7700"},"Core-X7800":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-07-16","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X7800"},"Core-X7900":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-08-22","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X7900"},"Pentium-520":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"],"Release Date":"2007-01-03"},"isPart":true,"type":"CPU","humanName":"Pentium 520"},"Pentium-523":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"930 MHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 523"},"Pentium-530":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-03-25","Socket":"PGA478, PPGA478","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 530"},"Pentium-540":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"30 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2007-09-02","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 540"},"Pentium-550":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q3 2006","Socket":"PBGA479, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 550"},"Pentium-560":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-01-02"},"isPart":true,"type":"CPU","humanName":"Pentium 560"},"Pentium-570":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-04-06","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 570"},"Pentium-573":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1000 MHz","L2 Cache (Total)":"512 KiB","Die Size":"143 mm","Release Date":"2009-06-15","Socket":"PBGA479","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 573"},"Pentium-575":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-08-19","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 575"},"Pentium-585":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-08-19","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 585"},"Pentium-T1600":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-12-07","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T1600"},"Pentium-T1700":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"2008-12-07","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T1700"},"Pentium-T2310":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2007","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2310"},"Pentium-T2330":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2007","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2330"},"Pentium-T2370":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q1 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2370"},"Pentium-T2390":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T2390"},"Pentium-T3200":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3200"},"Pentium-T3400":{"data":{"Manufacturer":"Intel","Architecture":"Merom","Market":"Mobile","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.16 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"143 mm","Release Date":"Q4 2008","Socket":"PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3400"},"Mobile-Merom":{"humanName":"Merom","sections":[{"header":"2 Threads","members":["Pentium-T3400","Pentium-T3200","Pentium-T2390","Pentium-T2370","Pentium-T2330","Pentium-T2310","Pentium-T1700","Pentium-T1600","Core-X7900","Core-X7800","Core-U7700","Core-U7600","Core-U7500","Core-T7800","Core-T7700","Core-T7600","Core-T7500","Core-T7400","Core-T7300","Core-T7250","Core-T7200","Core-T7100","Core-T5870","Core-T5800","Core-T5750","Core-T5670","Core-T5600","Core-T5550","Core-T5500","Core-T5470","Core-T5450","Core-T5300","Core-T5270","Core-T5250","Core-T5200","Core-L7700","Core-L7500","Core-L7400","Core-L7300","Core-L7200"]},{"header":"1 Threads","members":["Pentium-585","Pentium-575","Pentium-573","Pentium-570","Pentium-560","Pentium-550","Pentium-540","Pentium-530","Pentium-523","Pentium-520","Core-U2200","Core-U2100"]},{"header":"2 Threads","members":["Pentium-T3400","Pentium-T3200","Pentium-T2390","Pentium-T2370","Pentium-T2330","Pentium-T2310","Pentium-T1700","Pentium-T1600","Core-X7900","Core-X7800","Core-U7700","Core-U7600","Core-U7500","Core-T7800","Core-T7700","Core-T7600","Core-T7500","Core-T7400","Core-T7300","Core-T7250","Core-T7200","Core-T7100","Core-T5870","Core-T5800","Core-T5750","Core-T5670","Core-T5600","Core-T5550","Core-T5500","Core-T5470","Core-T5450","Core-T5300","Core-T5270","Core-T5250","Core-T5200","Core-L7700","Core-L7500","Core-L7400","Core-L7300","Core-L7200"]},{"header":"1 Threads","members":["Pentium-585","Pentium-575","Pentium-573","Pentium-570","Pentium-560","Pentium-550","Pentium-540","Pentium-530","Pentium-523","Pentium-520","Core-U2200","Core-U2100"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2006","Sockets":["PBGA479","PPGA478","PGA478","PBGA479","PPGA478","PGA478"]}},"Mobile-Moorefield":{"humanName":"Moorefield","sections":[{"header":"4 Threads","members":["Atom-Z3590","Atom-Z3580","Atom-Z3570","Atom-Z3560","Atom-Z3530"]},{"header":"4 Threads","members":["Atom-Z3590","Atom-Z3580","Atom-Z3570","Atom-Z3560","Atom-Z3530"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-05-23","Sockets":["MB5T1064","MB5T1064"]}},"Core-P7350":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q3 2008","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7350"},"Core-P7370":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q4 2008","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7370"},"Core-P7450":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-01-09","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7450"},"Core-P7550":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-06-29","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7550"},"Core-P7570":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q3 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P7570"},"Core-P8400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8400"},"Core-P8600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8600"},"Core-P8700":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8700"},"Core-P8800":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P8800"},"Core-P9500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9500"},"Core-P9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9600"},"Core-P9700":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"28 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core P9700"},"Core-Q9000":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9000"},"Core-Q9100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-19","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core Q9100"},"Core-QX9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-19","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core QX9300"},"Core-SL9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9300"},"Core-SL9380":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-31","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9380"},"Core-SL9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9400"},"Core-SL9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SL9600"},"Core-SP9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.26 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9300"},"Core-SP9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9400"},"Core-SP9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"25 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SP9600"},"Core-SU3500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"Q2 2009","Socket":"BGA956","Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU3500"},"Core-SU9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9300"},"Core-SU9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-08-19","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9400"},"Core-SU9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core SU9600"},"Core-T6400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6400"},"Core-T6500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"2009-06-29","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6500"},"Core-T6600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q1 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6600"},"Core-T6670":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"107 mm","Release Date":"Q3 2009","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T6670"},"Core-T8100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T8100"},"Core-T8300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"3 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T8300"},"Core-T9300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9300"},"Core-T9400":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.53 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9400"},"Core-T9500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"BGA479, PGA478, PPGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9500"},"Core-T9550":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9550"},"Core-T9600":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9600"},"Core-T9800":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-12-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9800"},"Core-T9900":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-06-02","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core T9900"},"Core-X9000":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-01-07","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X9000"},"Core-X9100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"44 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-07-15","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Core X9100"},"Pentium-722":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2008-09-30","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 722"},"Pentium-723":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Other Extensions":["x86-64","x86-64"],"Release Date":"2008-08-19","Socket":"BGA956"},"isPart":true,"type":"CPU","humanName":"Pentium 723"},"Pentium-743":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-09-06","Socket":"BGA956","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 743"},"Pentium-763":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2011-01-09"},"isPart":true,"type":"CPU","humanName":"Pentium 763"},"Pentium-900":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-03-30","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 900"},"Pentium-925":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Base Frequency":"2.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2011-01-09","Socket":"PLGA775","AES":false,"Other Extensions":["x86-64","x86-64","x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium 925"},"Pentium-SU2300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"10 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-09-06","Socket":"BGA956"},"isPart":true,"type":"CPU","humanName":"Pentium SU2300"},"Pentium-T3100":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.9 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"2009-06-28","Socket":"BGA479, PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3100"},"Pentium-T3300":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q1 2010","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3300"},"Pentium-T3500":{"data":{"Manufacturer":"Intel","Architecture":"Penryn","Market":"Mobile","Lithography":"45 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"107 mm","Release Date":"Q3 2010","Socket":"PGA478","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Pentium T3500"},"Mobile-Penryn":{"humanName":"Penryn","sections":[{"header":"4 Threads","members":["Core-QX9300","Core-Q9100","Core-Q9000"]},{"header":"2 Threads","members":["Pentium-T4500","Pentium-T4400","Pentium-T4300","Pentium-T4200","Pentium-T3500","Pentium-T3300","Pentium-T3100","Pentium-SU2300","Core-X9100","Core-X9000","Core-T9900","Core-T9800","Core-T9600","Core-T9550","Core-T9500","Core-T9400","Core-T9300","Core-T8300","Core-T8100","Core-T6670","Core-T6600","Core-T6500","Core-T6400","Core-SU9600","Core-SU9400","Core-SU9300","Core-SP9600","Core-SP9400","Core-SP9300","Core-SL9600","Core-SL9400","Core-SL9380","Core-SL9300","Core-P9700","Core-P9600","Core-P9500","Core-P8800","Core-P8700","Core-P8600","Core-P8400","Core-P7570","Core-P7550","Core-P7450","Core-P7370","Core-P7350"]},{"header":"1 Threads","members":["Pentium-925","Pentium-900","Pentium-763","Pentium-743","Pentium-723","Pentium-722","Core-SU3500"]},{"header":"4 Threads","members":["Core-QX9300","Core-Q9100","Core-Q9000"]},{"header":"2 Threads","members":["Pentium-T4500","Pentium-T4400","Pentium-T4300","Pentium-T4200","Pentium-T3500","Pentium-T3300","Pentium-T3100","Pentium-SU2300","Core-X9100","Core-X9000","Core-T9900","Core-T9800","Core-T9600","Core-T9550","Core-T9500","Core-T9400","Core-T9300","Core-T8300","Core-T8100","Core-T6670","Core-T6600","Core-T6500","Core-T6400","Core-SU9600","Core-SU9400","Core-SU9300","Core-SP9600","Core-SP9400","Core-SP9300","Core-SL9600","Core-SL9400","Core-SL9380","Core-SL9300","Core-P9700","Core-P9600","Core-P9500","Core-P8800","Core-P8700","Core-P8600","Core-P8400","Core-P7570","Core-P7550","Core-P7450","Core-P7370","Core-P7350"]},{"header":"1 Threads","members":["Pentium-925","Pentium-900","Pentium-763","Pentium-743","Pentium-723","Pentium-722","Core-SU3500"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-01-07","Sockets":["BGA956","BGA479","PGA478","PPGA478","BGA956","BGA479","PGA478","PPGA478"]}},"Atom-N470":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"667 MHz","Memory Type":"DDR2","Base Frequency":"1.83 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"Q1 2010","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz"},"isPart":true,"type":"CPU","humanName":"Atom N470"},"Atom-N475":{"data":{"Manufacturer":"Intel","Architecture":"Pineview","Market":"Mobile","Lithography":"45 nm","TDP":"6.5 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Memory Type":"DDR2/3","Base Frequency":"1.83 GHz","L2 Cache (Total)":"512 KiB","Die Size":"66 mm","Release Date":"2010-06-01","Socket":"FCBGA559","Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"200 MHz"},"isPart":true,"type":"CPU","humanName":"Atom N475"},"Mobile-Pineview":{"humanName":"Pineview","sections":[{"header":"4 Threads","members":["Atom-N570","Atom-N550"]},{"header":"2 Threads","members":["Atom-N475","Atom-N470","Atom-N455","Atom-N450"]},{"header":"4 Threads","members":["Atom-N570","Atom-N550"]},{"header":"2 Threads","members":["Atom-N475","Atom-N470","Atom-N455","Atom-N450"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"Q1 2010","Sockets":["BGA559","BGA559"]}},"Core-i3-2312M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"Q2 2011","Socket":"PPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2312M"},"Core-i3-2330E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-06-19","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Core i3-2330E"},"Core-i5-2510E":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-02-20","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i5-2510E"},"Core-i7-2617M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2617M"},"Core-i7-2629M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2629M"},"Core-i7-2649M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"500 MHz","GPU Boost Frequency":"1.1 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2649M"},"Core-i7-2657M":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-20","Socket":"FCBGA1023","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2657M"},"Core-i7-2710QE":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2011-01-09","Socket":"FCPGA988","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false,"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Core i7-2710QE"},"Pentium-787":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-17","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 787"},"Pentium-797":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 797"},"Pentium-807":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":1,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-06-24","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 807"},"Pentium-847":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 847"},"Pentium-857":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-07-03","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 857"},"Pentium-867":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 867"},"Pentium-877":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 877"},"Pentium-887":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 887"},"Pentium-957":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"800 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 957"},"Pentium-977":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 977"},"Pentium-997":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"17 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCBGA1023","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium 997"},"Pentium-B710":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2011-07-16","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B710"},"Pentium-B720":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":1,"Thread Count":1,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-01-15","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B720"},"Pentium-B800":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-06-19","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B800"},"Pentium-B810":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-03-15","Socket":"PGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"950 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B810"},"Pentium-B815":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-01-15","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B815"},"Pentium-B820":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-06-24","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B820"},"Pentium-B830":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2012-09-30","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.05 GHz"},"isPart":true,"type":"CPU","humanName":"Pentium B830"},"Pentium-B840":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Mobile","Lithography":"32 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2011-09-04","Socket":"FCPGA988","AES":false,"Other Extensions":["x86-64","x86-64"],"GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1000 MHz"},"isPart":true,"type":"CPU","humanName":"Pentium B840"},"Mobile-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Core-i7-2960XM","Core-i7-2920XM","Core-i7-2860QM","Core-i7-2820QM","Core-i7-2760QM","Core-i7-2720QM","Core-i7-2710QE","Core-i7-2675QM","Core-i7-2670QM","Core-i7-2635QM","Core-i7-2630QM"]},{"header":"4 Threads","members":["Core-i7-2677M","Core-i7-2657M","Core-i7-2649M","Core-i7-2640M","Core-i7-2637M","Core-i7-2629M","Core-i7-2620M","Core-i7-2617M","Core-i5-2557M","Core-i5-2540M","Core-i5-2537M","Core-i5-2520M","Core-i5-2510E","Core-i5-2467M","Core-i5-2450M","Core-i5-2435M","Core-i5-2430M","Core-i5-2410M","Core-i3-2377M","Core-i3-2375M","Core-i3-2370M","Core-i3-2367M","Core-i3-2365M","Core-i3-2357M","Core-i3-2350M","Core-i3-2348M","Core-i3-2330M","Core-i3-2330E","Core-i3-2328M","Core-i3-2312M","Core-i3-2310M"]},{"header":"2 Threads","members":["Pentium-B980","Pentium-B970","Pentium-B960","Pentium-B950","Pentium-B940","Pentium-B840","Pentium-B830","Pentium-B820","Pentium-B815","Pentium-B810","Pentium-B800","Pentium-997","Pentium-987","Pentium-977","Pentium-967","Pentium-957","Pentium-887","Pentium-877","Pentium-867","Pentium-857","Pentium-847","Pentium-807"]},{"header":"1 Threads","members":["Pentium-B720","Pentium-B710","Pentium-797","Pentium-787"]},{"header":"8 Threads","members":["Core-i7-2960XM","Core-i7-2920XM","Core-i7-2860QM","Core-i7-2820QM","Core-i7-2760QM","Core-i7-2720QM","Core-i7-2710QE","Core-i7-2675QM","Core-i7-2670QM","Core-i7-2635QM","Core-i7-2630QM"]},{"header":"4 Threads","members":["Core-i7-2677M","Core-i7-2657M","Core-i7-2649M","Core-i7-2640M","Core-i7-2637M","Core-i7-2629M","Core-i7-2620M","Core-i7-2617M","Core-i5-2557M","Core-i5-2540M","Core-i5-2537M","Core-i5-2520M","Core-i5-2510E","Core-i5-2467M","Core-i5-2450M","Core-i5-2435M","Core-i5-2430M","Core-i5-2410M","Core-i3-2377M","Core-i3-2375M","Core-i3-2370M","Core-i3-2367M","Core-i3-2365M","Core-i3-2357M","Core-i3-2350M","Core-i3-2348M","Core-i3-2330M","Core-i3-2330E","Core-i3-2328M","Core-i3-2312M","Core-i3-2310M"]},{"header":"2 Threads","members":["Pentium-B980","Pentium-B970","Pentium-B960","Pentium-B950","Pentium-B940","Pentium-B840","Pentium-B830","Pentium-B820","Pentium-B815","Pentium-B810","Pentium-B800","Pentium-997","Pentium-987","Pentium-977","Pentium-967","Pentium-957","Pentium-887","Pentium-877","Pentium-867","Pentium-857","Pentium-847","Pentium-807"]},{"header":"1 Threads","members":["Pentium-B720","Pentium-B710","Pentium-797","Pentium-787"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-01-09","Sockets":["BGA1224","PGA988","BGA1023","PPGA988","BGA1224","PGA988","BGA1023","PPGA988"]}},"Atom-Z500":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"0.65 W","Core Count":1,"Thread Count":2,"Base Frequency":"800 MHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z500"},"Atom-Z510":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510"},"Atom-Z510P":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510P"},"Atom-Z510PT":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z510PT"},"Atom-Z515":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"1.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-04-08","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z515"},"Atom-Z520PT":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z520PT"},"Atom-Z530":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z530"},"Atom-Z530P":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.2 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-03-27","Socket":"FCBGA437","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z530P"},"Atom-Z540":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2008-04-02","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z540"},"Atom-Z550":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.4 W","Core Count":1,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"2009-04-08","Socket":"PBGA441","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Atom Z550"},"Atom-Z560":{"data":{"Manufacturer":"Intel","Architecture":"Silverthorne","Market":"Mobile","Lithography":"45 nm","TDP":"2.5 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"512 KiB","Die Size":"26 mm","Release Date":"Q2 2010","Socket":"PBGA441","Other Extensions":[{}],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Atom Z560"},"Mobile-Silverthorne":{"humanName":"Silverthorne","sections":[{"header":"2 Threads","members":["Atom-Z560","Atom-Z550","Atom-Z540","Atom-Z530P","Atom-Z530","Atom-Z520PT","Atom-Z520","Atom-Z515","Atom-Z510PT","Atom-Z510P","Atom-Z500"]},{"header":"1 Threads","members":["Atom-Z510"]},{"header":"2 Threads","members":["Atom-Z560","Atom-Z550","Atom-Z540","Atom-Z530P","Atom-Z530","Atom-Z520PT","Atom-Z520","Atom-Z515","Atom-Z510PT","Atom-Z510P","Atom-Z500"]},{"header":"1 Threads","members":["Atom-Z510"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-04-02","Sockets":["PBGA441","BGA437","PBGA441","BGA437"]}},"Core-M3-6Y30":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"900 MHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"850 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M3-6Y30"},"Core-M5-6Y54":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M5-6Y54"},"Core-M5-6Y57":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M5-6Y57"},"Core-M7-6Y75":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"4.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"LPDDR3, DDR3L","Base Frequency":"1.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1515","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"LPDDR3, DDR3L","Maximum VRAM Capacity":"16 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core M7-6Y75"},"Core-i3-6100H":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"35 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i3-6100H"},"Core-i5-6287U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"28 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2015-09-01","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6287U"},"Core-i5-6350HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i5-6350HQ"},"Core-i7-6870HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.7 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6870HQ"},"Core-i7-6970HQ":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Core i7-6970HQ"},"Pentium-3855U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3855U"},"Pentium-3955U":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2015-12-27","Socket":"FCBGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Pentium 3955U"},"Xeon-E3-1505MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1505MV5"},"Xeon-E3-1515MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.8 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1000 MHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1515MV5"},"Xeon-E3-1535MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-09-01","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1535MV5"},"Xeon-E3-1545MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1545MV5"},"Xeon-E3-1575MV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Mobile","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-01-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.1 GHz","VRAM Type":"DDR4, LPDDR3, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1575MV5"},"Mobile-Skylake":{"humanName":"Skylake","sections":[{"header":"8 Threads","members":["Xeon-E3-1575MV5","Xeon-E3-1545MV5","Xeon-E3-1535MV5","Xeon-E3-1515MV5","Xeon-E3-1505MV5","Core-i7-6970HQ","Core-i7-6920HQ","Core-i7-6870HQ","Core-i7-6820HQ","Core-i7-6820HK","Core-i7-6770HQ","Core-i7-6700HQ"]},{"header":"4 Threads","members":["Pentium-4405Y","Pentium-4405U","Core-i7-6660U","Core-i7-6650U","Core-i7-6600U","Core-i7-6567U","Core-i7-6560U","Core-i7-6500U","Core-i5-6440HQ","Core-i5-6360U","Core-i5-6350HQ","Core-i5-6300U","Core-i5-6300HQ","Core-i5-6287U","Core-i5-6267U","Core-i5-6260U","Core-i5-6200U","Core-i3-6167U","Core-i3-6157U","Core-i3-6100U","Core-i3-6100H","Core-i3-6006U","Core-M7-6Y75","Core-M5-6Y57","Core-M5-6Y54","Core-M3-6Y30"]},{"header":"2 Threads","members":["Pentium-3955U","Pentium-3855U"]},{"header":"8 Threads","members":["Xeon-E3-1575MV5","Xeon-E3-1545MV5","Xeon-E3-1535MV5","Xeon-E3-1515MV5","Xeon-E3-1505MV5","Core-i7-6970HQ","Core-i7-6920HQ","Core-i7-6870HQ","Core-i7-6820HQ","Core-i7-6820HK","Core-i7-6770HQ","Core-i7-6700HQ"]},{"header":"4 Threads","members":["Pentium-4405Y","Pentium-4405U","Core-i7-6660U","Core-i7-6650U","Core-i7-6600U","Core-i7-6567U","Core-i7-6560U","Core-i7-6500U","Core-i5-6440HQ","Core-i5-6360U","Core-i5-6350HQ","Core-i5-6300U","Core-i5-6300HQ","Core-i5-6287U","Core-i5-6267U","Core-i5-6260U","Core-i5-6200U","Core-i3-6167U","Core-i3-6157U","Core-i3-6100U","Core-i3-6100H","Core-i3-6006U","Core-M7-6Y75","Core-M5-6Y57","Core-M5-6Y54","Core-M3-6Y30"]},{"header":"2 Threads","members":["Pentium-3955U","Pentium-3855U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-07-01","Sockets":["BGA1356","BGA1515","BGA1440","BGA1356","BGA1515","BGA1440"]}},"Mobile-SoFIA-3G-R":{"humanName":"SoFIA 3G R","sections":[{"header":"4 Threads","members":["Atom-x3-C3295RK","Atom-x3-C3265RK","Atom-x3-C3235RK","Atom-x3-C3230RK","Atom-x3-C3200RK","Atom-x3-3205RK"]},{"header":"4 Threads","members":["Atom-x3-C3295RK","Atom-x3-C3265RK","Atom-x3-C3235RK","Atom-x3-C3230RK","Atom-x3-C3200RK","Atom-x3-3205RK"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"28 nm","Release Date":"2015-03-02","Sockets":["VF2BGA361","VF2BGA361"]}},"Pentium-4205U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-01-01","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4205U"},"Pentium-4305U":{"data":{"Manufacturer":"Intel","Architecture":"Whiskey Lake","Market":"Mobile","Lithography":"14 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, LPDDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2019-04-16","Socket":"FCBGA1528","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"900 MHz","VRAM Type":"DDR4, LPDDR3","Maximum VRAM Capacity":"32 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Pentium 4305U"},"Mobile-Whiskey-Lake":{"humanName":"Whiskey Lake","sections":[{"header":"8 Threads","members":["Core-i7-8665U","Core-i7-8565U","Core-i5-8365U","Core-i5-8265U"]},{"header":"4 Threads","members":["Pentium-5405U","Core-i3-8145U"]},{"header":"2 Threads","members":["Pentium-4305U","Pentium-4205U"]},{"header":"8 Threads","members":["Core-i7-8665U","Core-i7-8565U","Core-i5-8365U","Core-i5-8265U"]},{"header":"4 Threads","members":["Pentium-5405U","Core-i3-8145U"]},{"header":"2 Threads","members":["Pentium-4305U","Pentium-4205U"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2018-08-28","Sockets":["BGA1528","BGA1528"]}},"Core-L2300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2300"},"Core-L2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2400"},"Core-L2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"15 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core L2500"},"Core-T1250":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1250"},"Core-T1300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1300"},"Core-T1350":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1350"},"Core-T1400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.83 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T1400"},"Core-T2050":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2050"},"Core-T2300E":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2300E"},"Core-T2350":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2350"},"Core-T2450":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2450"},"Core-T2700":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479, PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core T2700"},"Core-U1300":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"6 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1300"},"Core-U1400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"6 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1400"},"Core-U1500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U1500"},"Core-U2400":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"9 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U2400"},"Core-U2500":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"9 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"2 MiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Core U2500"},"Pentium-215":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.33 GHz","L2 Cache (Total)":"512 KiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 215"},"Pentium-410":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"27 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 410"},"Pentium-423":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"2006-02-14","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 423"},"Pentium-443":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"5.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Socket":"PBGA479","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium 443"},"Pentium-T2060":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q1 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2060"},"Pentium-T2080":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.73 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q2 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2080"},"Pentium-T2130":{"data":{"Manufacturer":"Intel","Architecture":"Yonah","Market":"Mobile","Lithography":"65 nm","TDP":"31 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"90 mm","Release Date":"Q2 2007","Socket":"PPGA478","Other Extensions":[{}]},"isPart":true,"type":"CPU","humanName":"Pentium T2130"},"Mobile-Yonah":{"humanName":"Yonah","sections":[{"header":"2 Threads","members":["Pentium-T2130","Pentium-T2080","Pentium-T2060","Core-U2500","Core-U2400","Core-T2700","Core-T2600","Core-T2500","Core-T2450","Core-T2400","Core-T2350","Core-T2300E","Core-T2300","Core-T2250","Core-T2050","Core-L2500","Core-L2400","Core-L2300"]},{"header":"1 Threads","members":["Pentium-443","Pentium-423","Pentium-410","Pentium-215","Core-U1500","Core-U1400","Core-U1300","Core-T1400","Core-T1350","Core-T1300","Core-T1250"]},{"header":"2 Threads","members":["Pentium-T2130","Pentium-T2080","Pentium-T2060","Core-U2500","Core-U2400","Core-T2700","Core-T2600","Core-T2500","Core-T2450","Core-T2400","Core-T2350","Core-T2300E","Core-T2300","Core-T2250","Core-T2050","Core-L2500","Core-L2400","Core-L2300"]},{"header":"1 Threads","members":["Pentium-443","Pentium-423","Pentium-410","Pentium-215","Core-U1500","Core-U1400","Core-U1300","Core-T1400","Core-T1350","Core-T1300","Core-T1250"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-02-14","Sockets":["PPGA478","PBGA479","PPGA478","PBGA479"]}},"Mobile-CPUs-Intel":{"humanName":"Mobile CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Mobile-Gemini-Lake-Refresh","Mobile-Comet-Lake","Mobile-Ice-Lake","Mobile-Amber-Lake","Mobile-Whiskey-Lake","Mobile-Amber-Lake-Y","Mobile-Coffee-Lake","Mobile-Kaby-Lake-G","Mobile-Gemini-Lake","Mobile-Kaby-Lake-R","Mobile-Kaby-Lake","Mobile-Apollo-Lake","Mobile-Skylake","Mobile-Braswell","Mobile-Cherry-Trail","Mobile-SoFIA-LTE","Mobile-SoFIA-3G-R"]},{"header":"2010 - 2014","members":["Mobile-Broadwell","Mobile-Moorefield","Mobile-Merrifield","Mobile-Bay-Trail","Mobile-Crystal-Well","Mobile-Haswell","Mobile-Cloverview","Mobile-Ivy-Bridge","Mobile-Penwell","Mobile-Cedarview","Mobile-Lincroft","Mobile-Sandy-Bridge","Mobile-Pineview","Mobile-Arrandale"]},{"header":"2005 - 2009","members":["Mobile-Clarksfield","Mobile-Diamondville","Mobile-Silverthorne","Mobile-Penryn","Mobile-Merom","Mobile-Yonah"]},{"header":"2000 - 2004","members":["Mobile-Dothan"]},{"header":"1970 - 1974","members":["Mobile-Tualatin","Mobile-Banias","Mobile-Prescott"]},{"header":"2015 - 2019","members":["Mobile-Gemini-Lake-Refresh","Mobile-Comet-Lake","Mobile-Ice-Lake","Mobile-Amber-Lake","Mobile-Whiskey-Lake","Mobile-Amber-Lake-Y","Mobile-Coffee-Lake","Mobile-Kaby-Lake-G","Mobile-Gemini-Lake","Mobile-Kaby-Lake-R","Mobile-Kaby-Lake","Mobile-Apollo-Lake","Mobile-Skylake","Mobile-Braswell","Mobile-Cherry-Trail","Mobile-SoFIA-LTE","Mobile-SoFIA-3G-R"]},{"header":"2010 - 2014","members":["Mobile-Broadwell","Mobile-Moorefield","Mobile-Merrifield","Mobile-Bay-Trail","Mobile-Crystal-Well","Mobile-Haswell","Mobile-Cloverview","Mobile-Ivy-Bridge","Mobile-Penwell","Mobile-Cedarview","Mobile-Lincroft","Mobile-Sandy-Bridge","Mobile-Pineview","Mobile-Arrandale"]},{"header":"2005 - 2009","members":["Mobile-Clarksfield","Mobile-Diamondville","Mobile-Silverthorne","Mobile-Penryn","Mobile-Merom","Mobile-Yonah"]},{"header":"2000 - 2004","members":["Mobile-Dothan"]},{"header":"1970 - 1974","members":["Mobile-Tualatin","Mobile-Banias","Mobile-Prescott"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Atom-C2350":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"6 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2350"},"Atom-C2530":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"9 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2530"},"Atom-C2550":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"14 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"2 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2550"},"Atom-C2730":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"12 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.7 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2730"},"Atom-C2750":{"data":{"Manufacturer":"Intel","Architecture":"Avoton","Market":"Server","Lithography":"22 nm","TDP":"20 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.4 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-04","Socket":"FCBGA1283","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C2750"},"Server-Avoton":{"humanName":"Avoton","sections":[{"header":"8 Threads","members":["Atom-C2750","Atom-C2730"]},{"header":"4 Threads","members":["Atom-C2550","Atom-C2530"]},{"header":"2 Threads","members":["Atom-C2350"]},{"header":"8 Threads","members":["Atom-C2750","Atom-C2730"]},{"header":"4 Threads","members":["Atom-C2550","Atom-C2530"]},{"header":"2 Threads","members":["Atom-C2350"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-04","Sockets":["BGA1283","BGA1283"]}},"Xeon-W3540":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon W3540"},"Xeon-W3580":{"data":{"Manufacturer":"Intel","Architecture":"Bloomfield","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon W3580"},"Server-Bloomfield":{"humanName":"Bloomfield","sections":[{"header":"8 Threads","members":["Xeon-W3580","Xeon-W3570","Xeon-W3565","Xeon-W3550","Xeon-W3540","Xeon-W3530","Xeon-W3520"]},{"header":"8 Threads","members":["Xeon-W3580","Xeon-W3570","Xeon-W3565","Xeon-W3550","Xeon-W3540","Xeon-W3530","Xeon-W3520"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Atom-S1269":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"11.7 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1269"},"Atom-S1279":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"13.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1279"},"Atom-S1289":{"data":{"Manufacturer":"Intel","Architecture":"Briarwood","Market":"Server","Lithography":"32 nm","TDP":"14.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2013-04-10","Socket":"FCBGA1283","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1289"},"Server-Briarwood":{"humanName":"Briarwood","sections":[{"header":"4 Threads","members":["Atom-S1289","Atom-S1279","Atom-S1269"]},{"header":"4 Threads","members":["Atom-S1289","Atom-S1279","Atom-S1269"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2013-04-10","Sockets":["BGA1283","BGA1283"]}},"Pentium-D1507":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"20 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1507"},"Pentium-D1508":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1508"},"Pentium-D1509":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"19 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1509"},"Pentium-D1517":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1517"},"Pentium-D1519":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Pentium D1519"},"Xeon-D-1513N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1513N"},"Xeon-D-1518":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1518"},"Xeon-D-1520":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-03-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1520"},"Xeon-D-1521":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1521"},"Xeon-D-1523N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1523N"},"Xeon-D-1527":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1527"},"Xeon-D-1528":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1528"},"Xeon-D-1529":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"20 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"1.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1529"},"Xeon-D-1531":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1531"},"Xeon-D-1533N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1533N"},"Xeon-D-1537":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1537"},"Xeon-D-1539":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.6 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1539"},"Xeon-D-1540":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-03-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1540"},"Xeon-D-1543N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1543N"},"Xeon-D-1548":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2015-11-09","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1548"},"Xeon-D-1553N":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-07-14","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1553N"},"Xeon-D-1557":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-02-26","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1557"},"Xeon-D-1559":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.5 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-04-12","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1559"},"Xeon-D-1567":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":12,"Thread Count":24,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2016-02-26","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1567"},"Xeon-D-1571":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":16,"Thread Count":32,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2016-02-17","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1571"},"Xeon-D-1577":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":16,"Thread Count":32,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"1.3 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2016-02-17","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1577"},"Xeon-E3-1265LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265LV4"},"Xeon-E3-1285LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285LV4"},"Xeon-E3-1285V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2015-06-02","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"300 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"32 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285V4"},"Xeon-E5-1620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V4"},"Xeon-E5-1630V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1630V4"},"Xeon-E5-1650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V4"},"Xeon-E5-1660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V4"},"Xeon-E5-1680V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-07","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1680V4"},"Xeon-E5-2603V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V4"},"Xeon-E5-2609V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V4"},"Xeon-E5-2620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V4"},"Xeon-E5-2623V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2623V4"},"Xeon-E5-2630LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"55 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV4"},"Xeon-E5-2630V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V4"},"Xeon-E5-2637V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V4"},"Xeon-E5-2640V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"90 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V4"},"Xeon-E5-2643V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V4"},"Xeon-E5-2650LV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV4"},"Xeon-E5-2650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V4"},"Xeon-E5-2660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V4"},"Xeon-E5-2667V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V4"},"Xeon-E5-2680V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V4"},"Xeon-E5-2683V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2683V4"},"Xeon-E5-2687WV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV4"},"Xeon-E5-2690V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V4"},"Xeon-E5-2695V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V4"},"Xeon-E5-2697AV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697AV4"},"Xeon-E5-2697V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V4"},"Xeon-E5-2698V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":20,"Thread Count":40,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"50 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2698V4"},"Xeon-E5-2699AV4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-10-24","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699AV4"},"Xeon-E5-2699V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"145 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-03-31","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699V4"},"Xeon-E5-4610V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V4"},"Xeon-E5-4620V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V4"},"Xeon-E5-4627V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":10,"Thread Count":10,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V4"},"Xeon-E5-4640V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V4"},"Xeon-E5-4650V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V4"},"Xeon-E5-4655V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4655V4"},"Xeon-E5-4660V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"120 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4660V4"},"Xeon-E5-4667V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4667V4"},"Xeon-E5-4669V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-06-20","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4669V4"},"Xeon-E7-4809V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V4"},"Xeon-E7-4820V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V4"},"Xeon-E7-4830V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V4"},"Xeon-E7-4850V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V4"},"Xeon-E7-8860V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860V4"},"Xeon-E7-8867V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867V4"},"Xeon-E7-8870V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":20,"Thread Count":40,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"50 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V4"},"Xeon-E7-8880V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":22,"Thread Count":44,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"55 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V4"},"Xeon-E7-8890V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V4"},"Xeon-E7-8891V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V4"},"Xeon-E7-8893V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2016-06-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V4"},"Xeon-E7-8894V4":{"data":{"Manufacturer":"Intel","Architecture":"Broadwell","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"60 MiB","Release Date":"2017-02-07","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8894V4"},"Server-Broadwell":{"humanName":"Broadwell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8894V4","Xeon-E7-8891V4","Xeon-E7-8890V4","Xeon-E7-8880V4","Xeon-E7-8870V4","Xeon-E7-8867V4","Xeon-E7-8860V4","Xeon-E7-4850V4","Xeon-E7-4830V4","Xeon-E7-4820V4","Xeon-E5-4669V4","Xeon-E5-4667V4","Xeon-E5-4660V4","Xeon-E5-4650V4","Xeon-E5-4640V4","Xeon-E5-4620V4","Xeon-E5-4610V4","Xeon-E5-2699V4","Xeon-E5-2699AV4","Xeon-E5-2698V4","Xeon-E5-2697V4","Xeon-E5-2697AV4","Xeon-E5-2695V4","Xeon-E5-2690V4","Xeon-E5-2687WV4","Xeon-E5-2683V4","Xeon-E5-2680V4","Xeon-E5-2660V4","Xeon-E5-2650V4","Xeon-E5-2650LV4","Xeon-E5-2640V4","Xeon-E5-2630V4","Xeon-E5-2630LV4","Xeon-D-1577","Xeon-D-1571","Xeon-D-1567","Xeon-D-1559","Xeon-D-1557"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V4","Xeon-E5-4655V4","Xeon-E5-4627V4","Xeon-E5-2667V4","Xeon-E5-2643V4","Xeon-E5-2620V4","Xeon-E5-1680V4","Xeon-E5-1660V4","Xeon-E5-1650V4","Xeon-D-1553N","Xeon-D-1548","Xeon-D-1543N","Xeon-D-1541","Xeon-D-1540","Xeon-D-1539","Xeon-D-1537","Xeon-D-1533N","Xeon-D-1531","Xeon-D-1528"]},{"header":"8 Threads","members":["Xeon-E7-8893V4","Xeon-E5-2637V4","Xeon-E5-2623V4","Xeon-E5-2609V4","Xeon-E5-1630V4","Xeon-E5-1620V4","Xeon-E3-1285V4","Xeon-E3-1285LV4","Xeon-E3-1265LV4","Xeon-D-1529","Xeon-D-1527","Xeon-D-1523N","Xeon-D-1521","Xeon-D-1520","Xeon-D-1518","Xeon-D-1513N","Pentium-D1519","Pentium-D1517"]},{"header":"6 Threads","members":["Xeon-E5-2603V4"]},{"header":"4 Threads","members":["Pentium-D1508"]},{"header":"2 Threads","members":["Pentium-D1509","Pentium-D1507"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8894V4","Xeon-E7-8891V4","Xeon-E7-8890V4","Xeon-E7-8880V4","Xeon-E7-8870V4","Xeon-E7-8867V4","Xeon-E7-8860V4","Xeon-E7-4850V4","Xeon-E7-4830V4","Xeon-E7-4820V4","Xeon-E5-4669V4","Xeon-E5-4667V4","Xeon-E5-4660V4","Xeon-E5-4650V4","Xeon-E5-4640V4","Xeon-E5-4620V4","Xeon-E5-4610V4","Xeon-E5-2699V4","Xeon-E5-2699AV4","Xeon-E5-2698V4","Xeon-E5-2697V4","Xeon-E5-2697AV4","Xeon-E5-2695V4","Xeon-E5-2690V4","Xeon-E5-2687WV4","Xeon-E5-2683V4","Xeon-E5-2680V4","Xeon-E5-2660V4","Xeon-E5-2650V4","Xeon-E5-2650LV4","Xeon-E5-2640V4","Xeon-E5-2630V4","Xeon-E5-2630LV4","Xeon-D-1577","Xeon-D-1571","Xeon-D-1567","Xeon-D-1559","Xeon-D-1557"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V4","Xeon-E5-4655V4","Xeon-E5-4627V4","Xeon-E5-2667V4","Xeon-E5-2643V4","Xeon-E5-2620V4","Xeon-E5-1680V4","Xeon-E5-1660V4","Xeon-E5-1650V4","Xeon-D-1553N","Xeon-D-1548","Xeon-D-1543N","Xeon-D-1541","Xeon-D-1540","Xeon-D-1539","Xeon-D-1537","Xeon-D-1533N","Xeon-D-1531","Xeon-D-1528"]},{"header":"8 Threads","members":["Xeon-E7-8893V4","Xeon-E5-2637V4","Xeon-E5-2623V4","Xeon-E5-2609V4","Xeon-E5-1630V4","Xeon-E5-1620V4","Xeon-E3-1285V4","Xeon-E3-1285LV4","Xeon-E3-1265LV4","Xeon-D-1529","Xeon-D-1527","Xeon-D-1523N","Xeon-D-1521","Xeon-D-1520","Xeon-D-1518","Xeon-D-1513N","Pentium-D1519","Pentium-D1517"]},{"header":"6 Threads","members":["Xeon-E5-2603V4"]},{"header":"4 Threads","members":["Pentium-D1508"]},{"header":"2 Threads","members":["Pentium-D1509","Pentium-D1507"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-03-09","Sockets":["BGA1667","LGA1150","LGA20113","LGA2011","BGA1667","LGA1150","LGA20113","LGA2011"]}},"Xeon-3204":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"1.9 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3204"},"Xeon-4208":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4208"},"Xeon-4209T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4209T"},"Xeon-4210":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4210"},"Xeon-4214":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4214"},"Xeon-4214Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4214Y"},"Xeon-4215":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4215"},"Xeon-4216":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"100 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4216"},"Xeon-5215":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215"},"Xeon-5215L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215L"},"Xeon-5215M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5215M"},"Xeon-5217":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5217"},"Xeon-5218":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218"},"Xeon-5218B":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218B"},"Xeon-5218N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"110 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218N"},"Xeon-5218T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5218T"},"Xeon-5220":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220"},"Xeon-5220S":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220S"},"Xeon-5220T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2667 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5220T"},"Xeon-5222":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5222"},"Xeon-6222V":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6222V"},"Xeon-6226":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6226"},"Xeon-6230":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230"},"Xeon-6230N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230N"},"Xeon-6230T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6230T"},"Xeon-6234":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6234"},"Xeon-6238":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238"},"Xeon-6238L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238L"},"Xeon-6238M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238M"},"Xeon-6238T":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6238T"},"Xeon-6240":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240"},"Xeon-6240L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240L"},"Xeon-6240M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240M"},"Xeon-6240Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6240Y"},"Xeon-6242":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6242"},"Xeon-6244":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6244"},"Xeon-6246":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6246"},"Xeon-6248":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6248"},"Xeon-6252":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6252"},"Xeon-6252N":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6252N"},"Xeon-6254":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"200 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6254"},"Xeon-6262V":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6262V"},"Xeon-8253":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8253"},"Xeon-8256":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8256"},"Xeon-8260":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260"},"Xeon-8260L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260L"},"Xeon-8260M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260M"},"Xeon-8260Y":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8260Y"},"Xeon-8268":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8268"},"Xeon-8270":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8270"},"Xeon-8276":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276"},"Xeon-8276L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276L"},"Xeon-8276M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8276M"},"Xeon-8280":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280"},"Xeon-8280L":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280L"},"Xeon-8280M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-04-02","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8280M"},"Xeon-9221":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"250 W","Core Count":32,"Thread Count":64,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-08-01","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9221"},"Xeon-9222":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"250 W","Core Count":32,"Thread Count":64,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-08-01","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9222"},"Xeon-9242":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"350 W","Core Count":48,"Thread Count":96,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"71.5 MiB","Release Date":"2019-04-02","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9242"},"Xeon-9282":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Market":"Server","Lithography":"14nm","TDP":"400 W","Core Count":56,"Thread Count":112,"Max Memory Channels":12,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"77 MiB","Release Date":"2019-04-02","AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 9282"},"Server-Cascade-Lake":{"humanName":"Cascade Lake","sections":[{"header":"65 - 128 Threads","members":["Xeon-9282","Xeon-9242"]},{"header":"17 - 64 Threads","members":["Xeon-9222","Xeon-9221","Xeon-8280M","Xeon-8280L","Xeon-8280","Xeon-8276M","Xeon-8276L","Xeon-8276","Xeon-8270","Xeon-8268","Xeon-8260Y","Xeon-8260M","Xeon-8260L","Xeon-8260","Xeon-8253","Xeon-6262V","Xeon-6254","Xeon-6252N","Xeon-6252","Xeon-6248","Xeon-6246","Xeon-6242","Xeon-6240Y","Xeon-6240M","Xeon-6240L","Xeon-6240","Xeon-6238T","Xeon-6238M","Xeon-6238L","Xeon-6238","Xeon-6230T","Xeon-6230N","Xeon-6230","Xeon-6226","Xeon-6222V","Xeon-5220T","Xeon-5220S","Xeon-5220","Xeon-5218T","Xeon-5218N","Xeon-5218B","Xeon-5218","Xeon-5215M","Xeon-5215L","Xeon-5215","Xeon-4216","Xeon-4214Y","Xeon-4214","Xeon-4210"]},{"header":"9 - 16 Threads","members":["Xeon-6244","Xeon-6234","Xeon-5217","Xeon-4215","Xeon-4209T","Xeon-4208"]},{"header":"8 Threads","members":["Xeon-8256","Xeon-5222"]},{"header":"6 Threads","members":["Xeon-3204"]},{"header":"65 - 128 Threads","members":["Xeon-9282","Xeon-9242"]},{"header":"17 - 64 Threads","members":["Xeon-9222","Xeon-9221","Xeon-8280M","Xeon-8280L","Xeon-8280","Xeon-8276M","Xeon-8276L","Xeon-8276","Xeon-8270","Xeon-8268","Xeon-8260Y","Xeon-8260M","Xeon-8260L","Xeon-8260","Xeon-8253","Xeon-6262V","Xeon-6254","Xeon-6252N","Xeon-6252","Xeon-6248","Xeon-6246","Xeon-6242","Xeon-6240Y","Xeon-6240M","Xeon-6240L","Xeon-6240","Xeon-6238T","Xeon-6238M","Xeon-6238L","Xeon-6238","Xeon-6230T","Xeon-6230N","Xeon-6230","Xeon-6226","Xeon-6222V","Xeon-5220T","Xeon-5220S","Xeon-5220","Xeon-5218T","Xeon-5218N","Xeon-5218B","Xeon-5218","Xeon-5215M","Xeon-5215L","Xeon-5215","Xeon-4216","Xeon-4214Y","Xeon-4214","Xeon-4210"]},{"header":"9 - 16 Threads","members":["Xeon-6244","Xeon-6234","Xeon-5217","Xeon-4215","Xeon-4209T","Xeon-4208"]},{"header":"8 Threads","members":["Xeon-8256","Xeon-5222"]},{"header":"6 Threads","members":["Xeon-3204"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-04-02","Sockets":["LGA3647","LGA3647"]}},"Atom-S1220":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"8.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1220"},"Atom-S1240":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"6.1 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1240"},"Atom-S1260":{"data":{"Manufacturer":"Intel","Architecture":"Centerton","Market":"Server","Lithography":"32 nm","TDP":"8.5 W","Core Count":2,"Thread Count":4,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"1024 KiB","Release Date":"2012-12-11","Socket":"FCBGA1283","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom S1260"},"Server-Centerton":{"humanName":"Centerton","sections":[{"header":"4 Threads","members":["Atom-S1260","Atom-S1240","Atom-S1220"]},{"header":"4 Threads","members":["Atom-S1260","Atom-S1240","Atom-S1220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-12-11","Sockets":["BGA1283","BGA1283"]}},"Xeon-L3406":{"data":{"Manufacturer":"Intel","Architecture":"Clarkdale","Market":"Server","Lithography":"32 nm","TDP":"30 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.53 GHz","L2 Cache (Total)":"4 MiB","Die Size":"81 mm","Release Date":"2010-03-16","Socket":"FCLGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L3406"},"Server-Clarkdale":{"humanName":"Clarkdale","sections":[{"header":"4 Threads","members":["Xeon-L3406"]},{"header":"4 Threads","members":["Xeon-L3406"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1156","LGA1156"]}},"Xeon-L5310":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-03-12","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5310"},"Xeon-L5318":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2008-03-31","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5318"},"Xeon-L5320":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-03-12","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5320"},"Xeon-L5335":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-08-13","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5335"},"Xeon-X5355":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"120 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2006-10-11","Socket":"LGA771, PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5355"},"Xeon-X5365":{"data":{"Manufacturer":"Intel","Architecture":"Clovertown","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-08-13","Socket":"PLGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5365"},"Server-Clovertown":{"humanName":"Clovertown","sections":[{"header":"4 Threads","members":["Xeon-X5365","Xeon-X5355","Xeon-L5335","Xeon-L5320","Xeon-L5318","Xeon-L5310","Xeon-E5345","Xeon-E5335","Xeon-E5320","Xeon-E5310"]},{"header":"4 Threads","members":["Xeon-X5365","Xeon-X5355","Xeon-L5335","Xeon-L5320","Xeon-L5318","Xeon-L5310","Xeon-E5345","Xeon-E5335","Xeon-E5320","Xeon-E5310"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-10-11","Sockets":["LGA771","PLGA771","LGA771","PLGA771"]}},"Xeon-E-2124":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E-2124"},"Xeon-E-2126G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.3 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2126G"},"Xeon-E-2134":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E-2134"},"Xeon-E-2174G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2174G"},"Xeon-E-2186G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2018-07-12","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2186G"},"Xeon-E-2226G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":6,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"4.7 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2226G"},"Xeon-E-2234":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E-2234"},"Xeon-E-2244G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"71 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2244G"},"Xeon-E-2246G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"4.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2246G"},"Xeon-E-2276G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.8 GHz","Boost Frequency":"4.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2276G"},"Xeon-E-2278G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2278G"},"Xeon-E-2288G":{"data":{"Manufacturer":"Intel","Architecture":"Coffee Lake","Market":"Server","Lithography":"14 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2019-05-27","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR4","Maximum VRAM Capacity":"128 GiB","DirectX Support":"12","OpenGL Support":"4.5"},"isPart":true,"type":"CPU","humanName":"Xeon E-2288G"},"Server-Coffee-Lake":{"humanName":"Coffee Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-E-2288G","Xeon-E-2286G","Xeon-E-2278G","Xeon-E-2276G","Xeon-E-2246G","Xeon-E-2236","Xeon-E-2186G","Xeon-E-2176G","Xeon-E-2146G","Xeon-E-2136"]},{"header":"8 Threads","members":["Xeon-E-2274G","Xeon-E-2244G","Xeon-E-2234","Xeon-E-2174G","Xeon-E-2144G","Xeon-E-2134"]},{"header":"6 Threads","members":["Xeon-E-2226G","Xeon-E-2126G"]},{"header":"4 Threads","members":["Xeon-E-2224G","Xeon-E-2224","Xeon-E-2124G","Xeon-E-2124"]},{"header":"9 - 16 Threads","members":["Xeon-E-2288G","Xeon-E-2286G","Xeon-E-2278G","Xeon-E-2276G","Xeon-E-2246G","Xeon-E-2236","Xeon-E-2186G","Xeon-E-2176G","Xeon-E-2146G","Xeon-E-2136"]},{"header":"8 Threads","members":["Xeon-E-2274G","Xeon-E-2244G","Xeon-E-2234","Xeon-E-2174G","Xeon-E-2144G","Xeon-E-2134"]},{"header":"6 Threads","members":["Xeon-E-2226G","Xeon-E-2126G"]},{"header":"4 Threads","members":["Xeon-E-2224G","Xeon-E-2224","Xeon-E-2124G","Xeon-E-2124"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14nm","Release Date":"2018-07-12","Sockets":["LGA1151","LGA1151"]}},"Xeon-3040":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Socket":"LGA775, PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3040"},"Xeon-3050":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"2 MiB","Die Size":"111 mm","Socket":"LGA775, PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3050"},"Xeon-3060":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3060"},"Xeon-3065":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2007-11-12","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3065"},"Xeon-3070":{"data":{"Manufacturer":"Intel","Architecture":"Conroe","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"PLGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 3070"},"Server-Conroe":{"humanName":"Conroe","sections":[{"header":"2 Threads","members":["Xeon-3070","Xeon-3065","Xeon-3060","Xeon-3050","Xeon-3040"]},{"header":"2 Threads","members":["Xeon-3070","Xeon-3065","Xeon-3060","Xeon-3050","Xeon-3040"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2007-11-12","Sockets":["LGA775","PLGA775","LGA775","PLGA775"]}},"Atom-C3308":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"9.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.6 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3308"},"Atom-C3336":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"11 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2018-08-31","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3336"},"Atom-C3338":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"8.5 W","Core Count":2,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.5 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2017-01-03","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3338"},"Atom-C3508":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"11.5 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4:","Base Frequency":"1.6 GHz","Boost Frequency":"1.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3508"},"Atom-C3538":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"15 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3538"},"Atom-C3558":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"16 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3558"},"Atom-C3708":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"17 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"1.7 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3708"},"Atom-C3750":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"21 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3750"},"Atom-C3758":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":8,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3758"},"Atom-C3808":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3808"},"Atom-C3830":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"21.5 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4:","Base Frequency":"1.9 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3830"},"Atom-C3850":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3850"},"Atom-C3858":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":12,"Thread Count":12,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3858"},"Atom-C3950":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"24 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"1.7 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3950"},"Atom-C3955":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"32 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2.1 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3955"},"Atom-C3958":{"data":{"Manufacturer":"Intel","Architecture":"Denverton","Market":"Server","Lithography":"14 nm","TDP":"31 W","Core Count":16,"Thread Count":16,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4:","Base Frequency":"2 GHz","Boost Frequency":"2 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2017-08-15","Socket":"FCBGA1310","AES":true,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Atom C3958"},"Server-Denverton":{"humanName":"Denverton","sections":[{"header":"9 - 16 Threads","members":["Atom-C3958","Atom-C3955","Atom-C3950","Atom-C3858","Atom-C3850","Atom-C3830","Atom-C3808"]},{"header":"8 Threads","members":["Atom-C3758","Atom-C3750","Atom-C3708"]},{"header":"4 Threads","members":["Atom-C3558","Atom-C3538","Atom-C3508"]},{"header":"2 Threads","members":["Atom-C3338","Atom-C3336","Atom-C3308"]},{"header":"9 - 16 Threads","members":["Atom-C3958","Atom-C3955","Atom-C3950","Atom-C3858","Atom-C3850","Atom-C3830","Atom-C3808"]},{"header":"8 Threads","members":["Atom-C3758","Atom-C3750","Atom-C3708"]},{"header":"4 Threads","members":["Atom-C3558","Atom-C3538","Atom-C3508"]},{"header":"2 Threads","members":["Atom-C3338","Atom-C3336","Atom-C3308"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-01-03","Sockets":["BGA1310","BGA1310"]}},"Xeon-E7420":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7420"},"Xeon-E7430":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7430"},"Xeon-E7440":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"16 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7440"},"Xeon-E7450":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"90 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7450"},"Xeon-L7445":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7445"},"Xeon-L7455":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"12 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7455"},"Xeon-X7460":{"data":{"Manufacturer":"Intel","Architecture":"Dunnington","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"16 MiB","Die Size":"503 mm","Release Date":"2008-09-15","Socket":"PGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X7460"},"Server-Dunnington":{"humanName":"Dunnington","sections":[{"header":"6 Threads","members":["Xeon-X7460","Xeon-L7455","Xeon-E7450"]},{"header":"4 Threads","members":["Xeon-L7445","Xeon-E7440","Xeon-E7430","Xeon-E7420"]},{"header":"6 Threads","members":["Xeon-X7460","Xeon-L7455","Xeon-E7450"]},{"header":"4 Threads","members":["Xeon-L7445","Xeon-E7440","Xeon-E7430","Xeon-E7420"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-09-15","Sockets":["PGA604","PGA604"]}},"Server-Gulftown":{"humanName":"Gulftown","sections":[{"header":"9 - 16 Threads","members":["Xeon-W3690"]},{"header":"9 - 16 Threads","members":["Xeon-W3690"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-02-14","Sockets":["LGA1366","LGA1366"]}},"Xeon-E5410":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5410"},"Xeon-L5410":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5410"},"Xeon-L5430":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5430"},"Xeon-X5482":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5482"},"Xeon-X5492":{"data":{"Manufacturer":"Intel","Architecture":"Harpertown","Market":"Server","Lithography":"45 nm","TDP":"150 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-09-08","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5492"},"Server-Harpertown":{"humanName":"Harpertown","sections":[{"header":"4 Threads","members":["Xeon-X5492","Xeon-X5482","Xeon-X5472","Xeon-X5470","Xeon-X5460","Xeon-X5450","Xeon-L5430","Xeon-L5420","Xeon-L5410","Xeon-E5472","Xeon-E5462","Xeon-E5450","Xeon-E5440","Xeon-E5430","Xeon-E5420","Xeon-E5410","Xeon-E5405"]},{"header":"4 Threads","members":["Xeon-X5492","Xeon-X5482","Xeon-X5472","Xeon-X5470","Xeon-X5460","Xeon-X5450","Xeon-L5430","Xeon-L5420","Xeon-L5410","Xeon-E5472","Xeon-E5462","Xeon-E5450","Xeon-E5440","Xeon-E5430","Xeon-E5420","Xeon-E5410","Xeon-E5405"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA771","LGA771"]}},"Xeon-E3-1220LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"13 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.1 GHz","Boost Frequency":"1.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220LV3"},"Xeon-E3-1225V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V3"},"Xeon-E3-1226V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1226V3"},"Xeon-E3-1230Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"1.8 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230Lv3"},"Xeon-E3-1231V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1231V3"},"Xeon-E3-1240LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240LV3"},"Xeon-E3-1241V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1241V3"},"Xeon-E3-1246V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1246V3"},"Xeon-E3-1265Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"2.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265Lv3"},"Xeon-E3-1271V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1271V3"},"Xeon-E3-1275LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.2 GHz","VRAM Type":"DDR3","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275LV3"},"Xeon-E3-1276V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1276V3"},"Xeon-E3-1281V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"82 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1281V3"},"Xeon-E3-1285-v3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.3 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285 v3"},"Xeon-E3-1285Lv3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.1 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-06-01","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","DirectX Support":"11.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285Lv3"},"Xeon-E3-1286LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.2 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.25 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1286LV3"},"Xeon-E3-1286V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"84 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2014-05-11","Socket":"FCLGA1150","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.3 GHz","VRAM Type":"DDR3, DDR3L","Maximum VRAM Capacity":"1.69921875 GiB","DirectX Support":"11.2","OpenGL Support":"4.3"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1286V3"},"Xeon-E5-1620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V3"},"Xeon-E5-1630V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1630V3"},"Xeon-E5-1650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V3"},"Xeon-E5-1660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V3"},"Xeon-E5-1680V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-1680V3"},"Xeon-E5-2603V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR4","Base Frequency":"1.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V3"},"Xeon-E5-2609V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V3"},"Xeon-E5-2620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V3"},"Xeon-E5-2623V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2623V3"},"Xeon-E5-2630LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"55 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV3"},"Xeon-E5-2630V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V3"},"Xeon-E5-2637V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V3"},"Xeon-E5-2640V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"90 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V3"},"Xeon-E5-2643V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V3"},"Xeon-E5-2650LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"65 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV3"},"Xeon-E5-2650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V3"},"Xeon-E5-2660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V3"},"Xeon-E5-2667V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V3"},"Xeon-E5-2670V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670V3"},"Xeon-E5-2680V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V3"},"Xeon-E5-2683V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2683V3"},"Xeon-E5-2687WV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"160 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV3"},"Xeon-E5-2690V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V3"},"Xeon-E5-2695V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V3"},"Xeon-E5-2697V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"145 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V3"},"Xeon-E5-2698V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2698V3"},"Xeon-E5-2699V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"145 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2014-09-08","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-2699V3"},"Xeon-E5-4610V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"1.7 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V3"},"Xeon-E5-4620V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V3"},"Xeon-E5-4627V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":10,"Thread Count":10,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V3"},"Xeon-E5-4640V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V3"},"Xeon-E5-4650V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V3"},"Xeon-E5-4655V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4655V3"},"Xeon-E5-4660V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"120 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4660V3"},"Xeon-E5-4667V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4667V3"},"Xeon-E5-4669V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"135 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-06-01","Socket":"FCLGA2011-3","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E5-4669V3"},"Xeon-E7-4809V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V3"},"Xeon-E7-4820V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V3"},"Xeon-E7-4830V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V3"},"Xeon-E7-4850V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"35 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V3"},"Xeon-E7-8860V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"40 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860V3"},"Xeon-E7-8867V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867V3"},"Xeon-E7-8870V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V3"},"Xeon-E7-8880LV3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880LV3"},"Xeon-E7-8880V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"150 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V3"},"Xeon-E7-8890V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V3"},"Xeon-E7-8891V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"165 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V3"},"Xeon-E7-8893V3":{"data":{"Manufacturer":"Intel","Architecture":"Haswell","Market":"Server","Lithography":"22 nm","TDP":"140 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR4, DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"45 MiB","Release Date":"2015-05-05","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V3"},"Server-Haswell":{"humanName":"Haswell","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8891V3","Xeon-E7-8890V3","Xeon-E7-8880V3","Xeon-E7-8880LV3","Xeon-E7-8870V3","Xeon-E7-8867V3","Xeon-E7-8860V3","Xeon-E7-4850V3","Xeon-E7-4830V3","Xeon-E7-4820V3","Xeon-E5-4669V3","Xeon-E5-4667V3","Xeon-E5-4660V3","Xeon-E5-4650V3","Xeon-E5-4640V3","Xeon-E5-4620V3","Xeon-E5-4610V3","Xeon-E5-2699V3","Xeon-E5-2698V3","Xeon-E5-2697V3","Xeon-E5-2695V3","Xeon-E5-2690V3","Xeon-E5-2687WV3","Xeon-E5-2683V3","Xeon-E5-2680V3","Xeon-E5-2670V3","Xeon-E5-2660V3","Xeon-E5-2650V3","Xeon-E5-2650LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V3","Xeon-E5-4655V3","Xeon-E5-4627V3","Xeon-E5-2667V3","Xeon-E5-2643V3","Xeon-E5-2640V3","Xeon-E5-2630V3","Xeon-E5-2630LV3","Xeon-E5-2620V3","Xeon-E5-1680V3","Xeon-E5-1660V3","Xeon-E5-1650V3"]},{"header":"8 Threads","members":["Xeon-E7-8893V3","Xeon-E5-2637V3","Xeon-E5-2623V3","Xeon-E5-1630V3","Xeon-E5-1620V3","Xeon-E3-1286V3","Xeon-E3-1286LV3","Xeon-E3-1285Lv3","Xeon-E3-1285-v3","Xeon-E3-1281V3","Xeon-E3-1280-v3","Xeon-E3-1276V3","Xeon-E3-1275LV3","Xeon-E3-1275-v3","Xeon-E3-1271V3","Xeon-E3-1270-v3","Xeon-E3-1265Lv3","Xeon-E3-1246V3","Xeon-E3-1245-v3","Xeon-E3-1241V3","Xeon-E3-1240LV3","Xeon-E3-1240-v3","Xeon-E3-1231V3","Xeon-E3-1230Lv3","Xeon-E3-1230-v3"]},{"header":"6 Threads","members":["Xeon-E5-2609V3","Xeon-E5-2603V3"]},{"header":"4 Threads","members":["Xeon-E3-1226V3","Xeon-E3-1225V3","Xeon-E3-1220LV3","Xeon-E3-1220-v3"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8891V3","Xeon-E7-8890V3","Xeon-E7-8880V3","Xeon-E7-8880LV3","Xeon-E7-8870V3","Xeon-E7-8867V3","Xeon-E7-8860V3","Xeon-E7-4850V3","Xeon-E7-4830V3","Xeon-E7-4820V3","Xeon-E5-4669V3","Xeon-E5-4667V3","Xeon-E5-4660V3","Xeon-E5-4650V3","Xeon-E5-4640V3","Xeon-E5-4620V3","Xeon-E5-4610V3","Xeon-E5-2699V3","Xeon-E5-2698V3","Xeon-E5-2697V3","Xeon-E5-2695V3","Xeon-E5-2690V3","Xeon-E5-2687WV3","Xeon-E5-2683V3","Xeon-E5-2680V3","Xeon-E5-2670V3","Xeon-E5-2660V3","Xeon-E5-2650V3","Xeon-E5-2650LV3"]},{"header":"9 - 16 Threads","members":["Xeon-E7-4809V3","Xeon-E5-4655V3","Xeon-E5-4627V3","Xeon-E5-2667V3","Xeon-E5-2643V3","Xeon-E5-2640V3","Xeon-E5-2630V3","Xeon-E5-2630LV3","Xeon-E5-2620V3","Xeon-E5-1680V3","Xeon-E5-1660V3","Xeon-E5-1650V3"]},{"header":"8 Threads","members":["Xeon-E7-8893V3","Xeon-E5-2637V3","Xeon-E5-2623V3","Xeon-E5-1630V3","Xeon-E5-1620V3","Xeon-E3-1286V3","Xeon-E3-1286LV3","Xeon-E3-1285Lv3","Xeon-E3-1285-v3","Xeon-E3-1281V3","Xeon-E3-1280-v3","Xeon-E3-1276V3","Xeon-E3-1275LV3","Xeon-E3-1275-v3","Xeon-E3-1271V3","Xeon-E3-1270-v3","Xeon-E3-1265Lv3","Xeon-E3-1246V3","Xeon-E3-1245-v3","Xeon-E3-1241V3","Xeon-E3-1240LV3","Xeon-E3-1240-v3","Xeon-E3-1231V3","Xeon-E3-1230Lv3","Xeon-E3-1230-v3"]},{"header":"6 Threads","members":["Xeon-E5-2609V3","Xeon-E5-2603V3"]},{"header":"4 Threads","members":["Xeon-E3-1226V3","Xeon-E3-1225V3","Xeon-E3-1220LV3","Xeon-E3-1220-v3"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-06-01","Sockets":["LGA1150","LGA20113","LGA2011","LGA1150","LGA20113","LGA2011"]}},"Xeon-D-1602":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"27 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1602"},"Xeon-D-1622":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1622"},"Xeon-D-1623N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1623N"},"Xeon-D-1627":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"6 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1627"},"Xeon-D-1633N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1633N"},"Xeon-D-1637":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"55 W","Core Count":6,"Thread Count":12,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"9 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1637"},"Xeon-D-1649N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1649N"},"Xeon-D-1653N":{"data":{"Manufacturer":"Intel","Architecture":"Hewitt Lake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":2,"Memory Type":"DDR4, DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2019-04-02","Socket":"FCBGA1667","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2"},"isPart":true,"type":"CPU","humanName":"Xeon D-1653N"},"Server-Hewitt-Lake":{"humanName":"Hewitt Lake","sections":[{"header":"9 - 16 Threads","members":["Xeon-D-1653N","Xeon-D-1649N","Xeon-D-1637","Xeon-D-1633N"]},{"header":"8 Threads","members":["Xeon-D-1627","Xeon-D-1623N","Xeon-D-1622"]},{"header":"4 Threads","members":["Xeon-D-1602"]},{"header":"9 - 16 Threads","members":["Xeon-D-1653N","Xeon-D-1649N","Xeon-D-1637","Xeon-D-1633N"]},{"header":"8 Threads","members":["Xeon-D-1627","Xeon-D-1623N","Xeon-D-1622"]},{"header":"4 Threads","members":["Xeon-D-1602"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-04-02","Sockets":["BGA1667","BGA1667"]}},"Xeon-E3-1220LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"17 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220LV2"},"Xeon-E3-1220V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.1 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V2"},"Xeon-E3-1225V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V2"},"Xeon-E3-1240V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V2"},"Xeon-E3-1245V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V2"},"Xeon-E3-1265LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.15 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1265LV2"},"Xeon-E3-1270V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V2"},"Xeon-E3-1275V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"77 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"650 MHz","GPU Boost Frequency":"1.25 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V2"},"Xeon-E3-1280V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"69 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V2"},"Xeon-E3-1290V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"87 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-14","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1290V2"},"Xeon-E7-2850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2850V2"},"Xeon-E7-2870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2870V2"},"Xeon-E7-2880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2880V2"},"Xeon-E7-2890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-2890V2"},"Xeon-E7-4809V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4809V2"},"Xeon-E7-4820V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820V2"},"Xeon-E7-4830V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830V2"},"Xeon-E7-4850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850V2"},"Xeon-E7-4860V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4860V2"},"Xeon-E7-4870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4870V2"},"Xeon-E7-4880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4880V2"},"Xeon-E7-4890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-4890V2"},"Xeon-E7-8850V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8850V2"},"Xeon-E7-8857V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8857V2"},"Xeon-E7-8870V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870V2"},"Xeon-E7-8880LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"105 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880LV2"},"Xeon-E7-8880V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8880V2"},"Xeon-E7-8890V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":15,"Thread Count":30,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8890V2"},"Xeon-E7-8891V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8891V2"},"Xeon-E7-8893V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge","Market":"Server","Lithography":"22 nm","TDP":"155 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"37.5 MiB","Release Date":"2014-02-18","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E7-8893V2"},"Xeon-E5-2403V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2403V2"},"Xeon-E5-2407V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2407V2"},"Xeon-E5-2420V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2420V2"},"Xeon-E5-2430LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430LV2"},"Xeon-E5-2430V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430V2"},"Xeon-E5-2440V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.9 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2440V2"},"Xeon-E5-2450LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450LV2"},"Xeon-E5-2450V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450V2"},"Xeon-E5-2470V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EN","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-01-09","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2470V2"},"Server-Ivy-Bridge-EN":{"humanName":"Ivy Bridge EN","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-2470V2","Xeon-E5-2450LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2450V2","Xeon-E5-2440V2","Xeon-E5-2430V2","Xeon-E5-2430LV2","Xeon-E5-2420V2"]},{"header":"4 Threads","members":["Xeon-E5-2407V2","Xeon-E5-2403V2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-2470V2","Xeon-E5-2450LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2450V2","Xeon-E5-2440V2","Xeon-E5-2430V2","Xeon-E5-2430LV2","Xeon-E5-2420V2"]},{"header":"4 Threads","members":["Xeon-E5-2407V2","Xeon-E5-2403V2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2014-01-09","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-1620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1620V2"},"Xeon-E5-1650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1650V2"},"Xeon-E5-1660V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1660V2"},"Xeon-E5-2603V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603V2"},"Xeon-E5-2609V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609V2"},"Xeon-E5-2620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2620V2"},"Xeon-E5-2630LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630LV2"},"Xeon-E5-2630V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630V2"},"Xeon-E5-2637V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637V2"},"Xeon-E5-2640V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2640V2"},"Xeon-E5-2643V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2643V2"},"Xeon-E5-2650LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"70 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.7 GHz","Boost Frequency":"2.1 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650LV2"},"Xeon-E5-2650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650V2"},"Xeon-E5-2660V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2660V2"},"Xeon-E5-2667V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667V2"},"Xeon-E5-2670V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.5 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2670V2"},"Xeon-E5-2680V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.8 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2680V2"},"Xeon-E5-2687WV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2687WV2"},"Xeon-E5-2690V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2690V2"},"Xeon-E5-2695V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2695V2"},"Xeon-E5-2697V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2013-09-10","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2697V2"},"Xeon-E5-4603V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4603V2"},"Xeon-E5-4607V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4607V2"},"Xeon-E5-4610V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610V2"},"Xeon-E5-4620V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620V2"},"Xeon-E5-4627V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"130 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"3.3 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4627V2"},"Xeon-E5-4640V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.7 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640V2"},"Xeon-E5-4650V2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"95 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"25 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650V2"},"Xeon-E5-4657LV2":{"data":{"Manufacturer":"Intel","Architecture":"Ivy Bridge EP","Market":"Server","Lithography":"22 nm","TDP":"115 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Max Memory Frequency":"1866 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2014-03-03","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4657LV2"},"Server-Ivy-Bridge-EP":{"humanName":"Ivy Bridge EP","sections":[{"header":"17 - 64 Threads","members":["Xeon-E5-4657LV2","Xeon-E5-4650V2","Xeon-E5-4640V2","Xeon-E5-2697V2","Xeon-E5-2695V2","Xeon-E5-2690V2","Xeon-E5-2680V2","Xeon-E5-2670V2","Xeon-E5-2660V2","Xeon-E5-2650LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4620V2","Xeon-E5-4610V2","Xeon-E5-4607V2","Xeon-E5-2687WV2","Xeon-E5-2667V2","Xeon-E5-2650V2","Xeon-E5-2643V2","Xeon-E5-2640V2","Xeon-E5-2630V2","Xeon-E5-2630LV2","Xeon-E5-2620V2","Xeon-E5-1660V2","Xeon-E5-1650V2"]},{"header":"8 Threads","members":["Xeon-E5-4627V2","Xeon-E5-4603V2","Xeon-E5-2637V2","Xeon-E5-1620V2"]},{"header":"4 Threads","members":["Xeon-E5-2609V2","Xeon-E5-2603V2"]},{"header":"17 - 64 Threads","members":["Xeon-E5-4657LV2","Xeon-E5-4650V2","Xeon-E5-4640V2","Xeon-E5-2697V2","Xeon-E5-2695V2","Xeon-E5-2690V2","Xeon-E5-2680V2","Xeon-E5-2670V2","Xeon-E5-2660V2","Xeon-E5-2650LV2"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4620V2","Xeon-E5-4610V2","Xeon-E5-4607V2","Xeon-E5-2687WV2","Xeon-E5-2667V2","Xeon-E5-2650V2","Xeon-E5-2643V2","Xeon-E5-2640V2","Xeon-E5-2630V2","Xeon-E5-2630LV2","Xeon-E5-2620V2","Xeon-E5-1660V2","Xeon-E5-1650V2"]},{"header":"8 Threads","members":["Xeon-E5-4627V2","Xeon-E5-4603V2","Xeon-E5-2637V2","Xeon-E5-1620V2"]},{"header":"4 Threads","members":["Xeon-E5-2609V2","Xeon-E5-2603V2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2013-09-10","Sockets":["LGA2011","LGA2011"]}},"Server-Ivy-Bridge":{"humanName":"Ivy Bridge","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8891V2","Xeon-E7-8890V2","Xeon-E7-8880V2","Xeon-E7-8880LV2","Xeon-E7-8870V2","Xeon-E7-8850V2","Xeon-E7-4890V2","Xeon-E7-4880V2","Xeon-E7-4870V2","Xeon-E7-4860V2","Xeon-E7-4850V2","Xeon-E7-4830V2","Xeon-E7-2890V2","Xeon-E7-2880V2","Xeon-E7-2870V2","Xeon-E7-2850V2"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8893V2","Xeon-E7-8857V2","Xeon-E7-4820V2","Xeon-E7-4809V2"]},{"header":"8 Threads","members":["Xeon-E3-1290V2","Xeon-E3-1280V2","Xeon-E3-1275V2","Xeon-E3-1270V2","Xeon-E3-1265LV2","Xeon-E3-1245V2","Xeon-E3-1240V2","Xeon-E3-1230V2"]},{"header":"4 Threads","members":["Xeon-E3-1225V2","Xeon-E3-1220V2","Xeon-E3-1220LV2"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8891V2","Xeon-E7-8890V2","Xeon-E7-8880V2","Xeon-E7-8880LV2","Xeon-E7-8870V2","Xeon-E7-8850V2","Xeon-E7-4890V2","Xeon-E7-4880V2","Xeon-E7-4870V2","Xeon-E7-4860V2","Xeon-E7-4850V2","Xeon-E7-4830V2","Xeon-E7-2890V2","Xeon-E7-2880V2","Xeon-E7-2870V2","Xeon-E7-2850V2"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8893V2","Xeon-E7-8857V2","Xeon-E7-4820V2","Xeon-E7-4809V2"]},{"header":"8 Threads","members":["Xeon-E3-1290V2","Xeon-E3-1280V2","Xeon-E3-1275V2","Xeon-E3-1270V2","Xeon-E3-1265LV2","Xeon-E3-1245V2","Xeon-E3-1240V2","Xeon-E3-1230V2"]},{"header":"4 Threads","members":["Xeon-E3-1225V2","Xeon-E3-1220V2","Xeon-E3-1220LV2"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"22 nm","Release Date":"2012-05-14","Sockets":["LGA1155","LGA2011","LGA1155","LGA2011"]}},"Xeon-E3-1220V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V6"},"Xeon-E3-1225V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V6"},"Xeon-E3-1230V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V6"},"Xeon-E3-1240V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V6"},"Xeon-E3-1245V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4.1 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V6"},"Xeon-E3-1270V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V6"},"Xeon-E3-1275V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"73 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.8 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V6"},"Xeon-E3-1280V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"72 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.9 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-03-28","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V6"},"Xeon-E3-1285V6":{"data":{"Manufacturer":"Intel","Architecture":"Kaby Lake","Market":"Server","Lithography":"14 nm","TDP":"79 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"4.1 GHz","Boost Frequency":"4.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2017-08-15","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1285V6"},"Server-Kaby-Lake":{"humanName":"Kaby Lake","sections":[{"header":"8 Threads","members":["Xeon-E3-1285V6","Xeon-E3-1280V6","Xeon-E3-1275V6","Xeon-E3-1270V6","Xeon-E3-1245V6","Xeon-E3-1240V6","Xeon-E3-1230V6"]},{"header":"4 Threads","members":["Xeon-E3-1225V6","Xeon-E3-1220V6"]},{"header":"8 Threads","members":["Xeon-E3-1285V6","Xeon-E3-1280V6","Xeon-E3-1275V6","Xeon-E3-1270V6","Xeon-E3-1245V6","Xeon-E3-1240V6","Xeon-E3-1230V6"]},{"header":"4 Threads","members":["Xeon-E3-1225V6","Xeon-E3-1220V6"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2017-03-28","Sockets":["LGA1151","LGA1151"]}},"Xeon-X3210":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"105 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-01-08","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3210"},"Xeon-X3230":{"data":{"Manufacturer":"Intel","Architecture":"Kentsfield","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"2007-07-22","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3230"},"Server-Kentsfield":{"humanName":"Kentsfield","sections":[{"header":"4 Threads","members":["Xeon-X3230","Xeon-X3220","Xeon-X3210"]},{"header":"4 Threads","members":["Xeon-X3230","Xeon-X3220","Xeon-X3210"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2007-01-08","Sockets":["LGA775","LGA775"]}},"Xeon-L3426":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2009-09-08","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L3426"},"Xeon-X3480":{"data":{"Manufacturer":"Intel","Architecture":"Lynnfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.06 GHz","Boost Frequency":"3.73 GHz","L2 Cache (Total)":"8 MiB","Die Size":"296 mm","Release Date":"2010-06-01","Socket":"LGA1156","AES":false,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X3480"},"Server-Lynnfield":{"humanName":"Lynnfield","sections":[{"header":"8 Threads","members":["Xeon-X3480","Xeon-X3470","Xeon-X3460","Xeon-X3450","Xeon-X3440","Xeon-L3426"]},{"header":"4 Threads","members":["Xeon-X3430"]},{"header":"8 Threads","members":["Xeon-X3480","Xeon-X3470","Xeon-X3460","Xeon-X3450","Xeon-X3440","Xeon-L3426"]},{"header":"4 Threads","members":["Xeon-X3430"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-09-08","Sockets":["LGA1156","LGA1156"]}},"Xeon-E5502":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5502"},"Xeon-E5503":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"Q1 2010","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5503"},"Xeon-L5506":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"800 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2009-03-30","Socket":"FCLGA1366","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5506"},"Xeon-L5530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.66 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5530"},"Xeon-W5580":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.46 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-03-30","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon W5580"},"Xeon-W5590":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EP","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.33 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Die Size":"263 mm","Release Date":"2009-08-04","Socket":"FCLGA1366","AES":false,"Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon W5590"},"Server-Nehalem-EP":{"humanName":"Nehalem EP","sections":[{"header":"8 Threads","members":["Xeon-X5570","Xeon-X5560","Xeon-X5550","Xeon-W5590","Xeon-W5580","Xeon-L5530","Xeon-L5520","Xeon-E5540","Xeon-E5530","Xeon-E5520"]},{"header":"4 Threads","members":["Xeon-L5506","Xeon-E5507","Xeon-E5506","Xeon-E5504"]},{"header":"2 Threads","members":["Xeon-E5503","Xeon-E5502"]},{"header":"8 Threads","members":["Xeon-X5570","Xeon-X5560","Xeon-X5550","Xeon-W5590","Xeon-W5580","Xeon-L5530","Xeon-L5520","Xeon-E5540","Xeon-E5530","Xeon-E5520"]},{"header":"4 Threads","members":["Xeon-L5506","Xeon-E5507","Xeon-E5506","Xeon-E5504"]},{"header":"2 Threads","members":["Xeon-E5503","Xeon-E5502"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2009-03-30","Sockets":["LGA1366","LGA1366"]}},"Xeon-E3-1220L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"20 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2011-04-05","Socket":"FCLGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220L"},"Xeon-E3-1235":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1235"},"Xeon-E3-1275":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2","GPU Base Frequency":"850 MHz","GPU Boost Frequency":"1.35 GHz"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275"},"Xeon-E3-1280":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-04-05","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280"},"Xeon-E3-1290":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-07-01","Socket":"LGA1155","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1290"},"Pentium-1405":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Max Memory Channels":2,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.2 GHz","Boost Frequency":"1.8 GHz","L2 Cache (Total)":"5 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 1405"},"Xeon-E5-1428L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-1428L"},"Xeon-E5-2403":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2403"},"Xeon-E5-2407":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2407"},"Xeon-E5-2430L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2430L"},"Xeon-E5-2440":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2440"},"Xeon-E5-2450":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.1 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450"},"Xeon-E5-2450L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2450L"},"Xeon-E5-2470":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EN","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":3,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.3 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA1356","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2470"},"Server-Sandy-Bridge-EN":{"humanName":"Sandy Bridge EN","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-2470","Xeon-E5-2450L","Xeon-E5-2450","Xeon-E5-2440","Xeon-E5-2430L","Xeon-E5-2430","Xeon-E5-2420","Xeon-E5-1428L"]},{"header":"4 Threads","members":["Xeon-E5-2407","Xeon-E5-2403"]},{"header":"2 Threads","members":["Pentium-1405"]},{"header":"9 - 16 Threads","members":["Xeon-E5-2470","Xeon-E5-2450L","Xeon-E5-2450","Xeon-E5-2440","Xeon-E5-2430L","Xeon-E5-2430","Xeon-E5-2420","Xeon-E5-1428L"]},{"header":"4 Threads","members":["Xeon-E5-2407","Xeon-E5-2403"]},{"header":"2 Threads","members":["Pentium-1405"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-05-14","Sockets":["LGA1356","LGA1356"]}},"Xeon-E5-2603":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2603"},"Xeon-E5-2609":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2609"},"Xeon-E5-2630L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2630L"},"Xeon-E5-2637":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":2,"Thread Count":4,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"5 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2637"},"Xeon-E5-2650L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1.8 GHz","Boost Frequency":"2.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2650L"},"Xeon-E5-2667":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-03-06","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-2667"},"Xeon-E5-4603":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"10 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4603"},"Xeon-E5-4607":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4607"},"Xeon-E5-4610":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.9 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4610"},"Xeon-E5-4617":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.9 GHz","Boost Frequency":"3.4 GHz","L2 Cache (Total)":"15 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4617"},"Xeon-E5-4620":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.2 GHz","Boost Frequency":"2.6 GHz","L2 Cache (Total)":"16 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4620"},"Xeon-E5-4640":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4640"},"Xeon-E5-4650":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.7 GHz","Boost Frequency":"3.3 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650"},"Xeon-E5-4650L":{"data":{"Manufacturer":"Intel","Architecture":"Sandy Bridge EP","Market":"Server","Lithography":"32 nm","TDP":"115 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2.6 GHz","Boost Frequency":"3.1 GHz","L2 Cache (Total)":"20 MiB","Release Date":"2012-05-14","Socket":"FCLGA2011","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E5-4650L"},"Server-Sandy-Bridge-EP":{"humanName":"Sandy Bridge EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-E5-4650L","Xeon-E5-4650","Xeon-E5-4640","Xeon-E5-4620","Xeon-E5-4610","Xeon-E5-4607","Xeon-E5-2690","Xeon-E5-2687W","Xeon-E5-2680","Xeon-E5-2670","Xeon-E5-2667","Xeon-E5-2665","Xeon-E5-2660","Xeon-E5-2650L","Xeon-E5-2650","Xeon-E5-2640","Xeon-E5-2630L","Xeon-E5-2630","Xeon-E5-2620","Xeon-E5-1660","Xeon-E5-1650"]},{"header":"8 Threads","members":["Xeon-E5-4603","Xeon-E5-2643","Xeon-E5-1620"]},{"header":"6 Threads","members":["Xeon-E5-4617"]},{"header":"4 Threads","members":["Xeon-E5-2637","Xeon-E5-2609","Xeon-E5-2603"]},{"header":"9 - 16 Threads","members":["Xeon-E5-4650L","Xeon-E5-4650","Xeon-E5-4640","Xeon-E5-4620","Xeon-E5-4610","Xeon-E5-4607","Xeon-E5-2690","Xeon-E5-2687W","Xeon-E5-2680","Xeon-E5-2670","Xeon-E5-2667","Xeon-E5-2665","Xeon-E5-2660","Xeon-E5-2650L","Xeon-E5-2650","Xeon-E5-2640","Xeon-E5-2630L","Xeon-E5-2630","Xeon-E5-2620","Xeon-E5-1660","Xeon-E5-1650"]},{"header":"8 Threads","members":["Xeon-E5-4603","Xeon-E5-2643","Xeon-E5-1620"]},{"header":"6 Threads","members":["Xeon-E5-4617"]},{"header":"4 Threads","members":["Xeon-E5-2637","Xeon-E5-2609","Xeon-E5-2603"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2012-03-06","Sockets":["LGA2011","LGA2011"]}},"Server-Sandy-Bridge":{"humanName":"Sandy Bridge","sections":[{"header":"8 Threads","members":["Xeon-E3-1290","Xeon-E3-1280","Xeon-E3-1275","Xeon-E3-1270","Xeon-E3-1260L","Xeon-E3-1245","Xeon-E3-1240","Xeon-E3-1235","Xeon-E3-1230"]},{"header":"4 Threads","members":["Xeon-E3-1225","Xeon-E3-1220L","Xeon-E3-1220"]},{"header":"8 Threads","members":["Xeon-E3-1290","Xeon-E3-1280","Xeon-E3-1275","Xeon-E3-1270","Xeon-E3-1260L","Xeon-E3-1245","Xeon-E3-1240","Xeon-E3-1235","Xeon-E3-1230"]},{"header":"4 Threads","members":["Xeon-E3-1225","Xeon-E3-1220L","Xeon-E3-1220"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-04-05","Sockets":["LGA1155","LGA1155"]}},"Xeon-3104":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":6,"Thread Count":6,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3104"},"Xeon-3106":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4","Base Frequency":"1.7 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 3106"},"Xeon-4108":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.8 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4108"},"Xeon-4109T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4109T"},"Xeon-4110":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4110"},"Xeon-4112":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4112"},"Xeon-4114":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4114"},"Xeon-4114T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4114T"},"Xeon-4116":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4116"},"Xeon-4116T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 4116T"},"Xeon-5115":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":10,"Thread Count":20,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"13.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5115"},"Xeon-5118":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5118"},"Xeon-5119T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5119T"},"Xeon-5120":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"19.25 MiB","Die Size":"143 mm","Socket":"FCLGA3647","Other Extensions":["x86-64","x86-64"],"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Boost Frequency":"3.2 GHz","Release Date":"2017-07-11","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5120"},"Xeon-5120T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2400 MHz","Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5120T"},"Xeon-5122":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 5122"},"Xeon-6126":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126"},"Xeon-6126F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126F"},"Xeon-6126T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6126T"},"Xeon-6128":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"115 W","Core Count":6,"Thread Count":12,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6128"},"Xeon-6130":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130"},"Xeon-6130F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130F"},"Xeon-6130T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6130T"},"Xeon-6132":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":14,"Thread Count":28,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"19.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6132"},"Xeon-6134":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6134"},"Xeon-6136":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6136"},"Xeon-6138":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138"},"Xeon-6138F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"135 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138F"},"Xeon-6138P":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"195 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2018-05-15","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138P"},"Xeon-6138T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6138T"},"Xeon-6140":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6140"},"Xeon-6142":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6142"},"Xeon-6142F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6142F"},"Xeon-6144":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6144"},"Xeon-6146":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.2 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6146"},"Xeon-6148":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6148"},"Xeon-6148F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":20,"Thread Count":40,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.4 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"27.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6148F"},"Xeon-6150":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6150"},"Xeon-6152":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"140 W","Core Count":22,"Thread Count":44,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"30.25 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6152"},"Xeon-6154":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"200 W","Core Count":18,"Thread Count":36,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 6154"},"Xeon-8153":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"125 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8153"},"Xeon-8156":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":4,"Thread Count":8,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.6 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8156"},"Xeon-8158":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":12,"Thread Count":24,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"24.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8158"},"Xeon-8160":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160"},"Xeon-8160F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"160 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160F"},"Xeon-8160T":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8160T"},"Xeon-8164":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"150 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8164"},"Xeon-8168":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8168"},"Xeon-8170":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":26,"Thread Count":52,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"35.75 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8170"},"Xeon-8176":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"165 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8176"},"Xeon-8176F":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"173 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8176F"},"Xeon-8180":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2017-07-11","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon 8180"},"Xeon-D-2123IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"60 W","Core Count":4,"Thread Count":8,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2123IT"},"Xeon-D-2141I":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2141I"},"Xeon-D-2142IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2142IT"},"Xeon-D-2143IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2143IT"},"Xeon-D-2145NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2145NT"},"Xeon-D-2146NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.3 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"11 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2146NT"},"Xeon-D-2161I":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"90 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2161I"},"Xeon-D-2163IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"75 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.1 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"17 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2163IT"},"Xeon-D-2166NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"85 W","Core Count":12,"Thread Count":24,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"17 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2166NT"},"Xeon-D-2173IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"70 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.7 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2173IT"},"Xeon-D-2177NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"105 W","Core Count":14,"Thread Count":28,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"1.9 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"19 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2177NT"},"Xeon-D-2183IT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"100 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2.2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2183IT"},"Xeon-D-2187NT":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"110 W","Core Count":16,"Thread Count":32,"Max Memory Channels":4,"Memory Type":"DDR4","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2018-02-07","Socket":"FCBGA2518","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon D-2187NT"},"Xeon-E3-1220V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1220V5"},"Xeon-E3-1225V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1225V5"},"Xeon-E3-1230V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.4 GHz","Boost Frequency":"3.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1230V5"},"Xeon-E3-1235LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2 GHz","Boost Frequency":"3 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1235LV5"},"Xeon-E3-1240LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.1 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240LV5"},"Xeon-E3-1240V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1240V5"},"Xeon-E3-1245V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1245V5"},"Xeon-E3-1260LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"2.9 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1260LV5"},"Xeon-E3-1270V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1270V5"},"Xeon-E3-1275V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.6 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"400 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR4, DDR3L","Maximum VRAM Capacity":"64 GiB","DirectX Support":"12","OpenGL Support":"4.4"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1275V5"},"Xeon-E3-1280V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR4, DDR3L","Base Frequency":"3.7 GHz","Boost Frequency":"4 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2015-10-19","Socket":"FCLGA1151","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","DirectX Support":"0","OpenGL Support":"N/A"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1280V5"},"Xeon-E3-1565LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"35 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"3.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.05 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1565LV5"},"Xeon-E3-1585LV5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"45 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"3 GHz","Boost Frequency":"3.7 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1585LV5"},"Xeon-E3-1585V5":{"data":{"Manufacturer":"Intel","Architecture":"Skylake","Market":"Server","Lithography":"14 nm","TDP":"65 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"2133 MHz","Memory Type":"DDR3L,LPDDR3, DDR4","Base Frequency":"3.5 GHz","Boost Frequency":"3.9 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2016-05-31","Socket":"FCBGA1440","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"AVX2","GPU Base Frequency":"350 MHz","GPU Boost Frequency":"1.15 GHz","VRAM Type":"DDR3L,LPDDR3, DDR4","Maximum VRAM Capacity":"64 GiB"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1585V5"},"Server-Skylake":{"humanName":"Skylake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-2195","Xeon-W-2175","Xeon-W-2155","Xeon-D-2187NT","Xeon-D-2183IT","Xeon-D-2177NT","Xeon-D-2173IT","Xeon-D-2166NT","Xeon-D-2163IT","Xeon-D-2161I","Xeon-8180","Xeon-8176F","Xeon-8176","Xeon-8170","Xeon-8168","Xeon-8164","Xeon-8160T","Xeon-8160F","Xeon-8160","Xeon-8158","Xeon-8153","Xeon-6154","Xeon-6152","Xeon-6150","Xeon-6148F","Xeon-6148","Xeon-6146","Xeon-6142F","Xeon-6142","Xeon-6140","Xeon-6138T","Xeon-6138P","Xeon-6138F","Xeon-6138","Xeon-6136","Xeon-6132","Xeon-6130T","Xeon-6130F","Xeon-6130","Xeon-6126T","Xeon-6126F","Xeon-6126","Xeon-5120T","Xeon-5120","Xeon-5119T","Xeon-5118","Xeon-5115","Xeon-4116T","Xeon-4116","Xeon-4114T","Xeon-4114"]},{"header":"9 - 16 Threads","members":["Xeon-W-2145","Xeon-W-2135","Xeon-W-2133","Xeon-D-2146NT","Xeon-D-2145NT","Xeon-D-2143IT","Xeon-D-2142IT","Xeon-D-2141I","Xeon-6144","Xeon-6134","Xeon-6128","Xeon-4110","Xeon-4109T","Xeon-4108"]},{"header":"8 Threads","members":["Xeon-W-2125","Xeon-W-2123","Xeon-E3-1585V5","Xeon-E3-1585LV5","Xeon-E3-1565LV5","Xeon-E3-1280V5","Xeon-E3-1275V5","Xeon-E3-1270V5","Xeon-E3-1260LV5","Xeon-E3-1245V5","Xeon-E3-1240V5","Xeon-E3-1240LV5","Xeon-E3-1230V5","Xeon-D-2123IT","Xeon-8156","Xeon-5122","Xeon-4112","Xeon-3106"]},{"header":"6 Threads","members":["Xeon-3104"]},{"header":"4 Threads","members":["Xeon-E3-1235LV5","Xeon-E3-1225V5","Xeon-E3-1220V5"]},{"header":"17 - 64 Threads","members":["Xeon-W-2195","Xeon-W-2175","Xeon-W-2155","Xeon-D-2187NT","Xeon-D-2183IT","Xeon-D-2177NT","Xeon-D-2173IT","Xeon-D-2166NT","Xeon-D-2163IT","Xeon-D-2161I","Xeon-8180","Xeon-8176F","Xeon-8176","Xeon-8170","Xeon-8168","Xeon-8164","Xeon-8160T","Xeon-8160F","Xeon-8160","Xeon-8158","Xeon-8153","Xeon-6154","Xeon-6152","Xeon-6150","Xeon-6148F","Xeon-6148","Xeon-6146","Xeon-6142F","Xeon-6142","Xeon-6140","Xeon-6138T","Xeon-6138P","Xeon-6138F","Xeon-6138","Xeon-6136","Xeon-6132","Xeon-6130T","Xeon-6130F","Xeon-6130","Xeon-6126T","Xeon-6126F","Xeon-6126","Xeon-5120T","Xeon-5120","Xeon-5119T","Xeon-5118","Xeon-5115","Xeon-4116T","Xeon-4116","Xeon-4114T","Xeon-4114"]},{"header":"9 - 16 Threads","members":["Xeon-W-2145","Xeon-W-2135","Xeon-W-2133","Xeon-D-2146NT","Xeon-D-2145NT","Xeon-D-2143IT","Xeon-D-2142IT","Xeon-D-2141I","Xeon-6144","Xeon-6134","Xeon-6128","Xeon-4110","Xeon-4109T","Xeon-4108"]},{"header":"8 Threads","members":["Xeon-W-2125","Xeon-W-2123","Xeon-E3-1585V5","Xeon-E3-1585LV5","Xeon-E3-1565LV5","Xeon-E3-1280V5","Xeon-E3-1275V5","Xeon-E3-1270V5","Xeon-E3-1260LV5","Xeon-E3-1245V5","Xeon-E3-1240V5","Xeon-E3-1240LV5","Xeon-E3-1230V5","Xeon-D-2123IT","Xeon-8156","Xeon-5122","Xeon-4112","Xeon-3106"]},{"header":"6 Threads","members":["Xeon-3104"]},{"header":"4 Threads","members":["Xeon-E3-1235LV5","Xeon-E3-1225V5","Xeon-E3-1220V5"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2015-10-19","Sockets":["LGA3647","LGA1151","BGA1440","LGA2066","BGA2518","LGA3647","LGA1151","BGA1440","LGA2066","BGA2518"]}},"Xeon-E7210":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7210"},"Xeon-E7220":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7220"},"Xeon-E7310":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7310"},"Xeon-E7320":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7320"},"Xeon-E7330":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7330"},"Xeon-E7340":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.4 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E7340"},"Xeon-L7345":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"50 W","Core Count":4,"Thread Count":4,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L7345"},"Xeon-X7350":{"data":{"Manufacturer":"Intel","Architecture":"Tigerton","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.93 GHz","L2 Cache (Total)":"8 MiB","Die Size":"286 mm","Release Date":"Q3 2007","Socket":"PGA604, PPGA604","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X7350"},"Server-Tigerton":{"humanName":"Tigerton","sections":[{"header":"4 Threads","members":["Xeon-X7350","Xeon-L7345","Xeon-E7340","Xeon-E7330","Xeon-E7320","Xeon-E7310"]},{"header":"2 Threads","members":["Xeon-E7220","Xeon-E7210"]},{"header":"4 Threads","members":["Xeon-X7350","Xeon-L7345","Xeon-E7340","Xeon-E7330","Xeon-E7320","Xeon-E7310"]},{"header":"2 Threads","members":["Xeon-E7220","Xeon-E7210"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"Q3 2007","Sockets":["PPGA604","PGA604","PPGA604","PGA604"]}},"Xeon-E5603":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5603"},"Xeon-E5606":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5606"},"Xeon-E5607":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5607"},"Xeon-E5630":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5630"},"Xeon-E5640":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5640"},"Xeon-E5645":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.67 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5645"},"Xeon-E5649":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"80 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.53 GHz","Boost Frequency":"2.93 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E5649"},"Xeon-L5609":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":4,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","Boost Frequency":"1.86 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5609"},"Xeon-L5618":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.87 GHz","Boost Frequency":"2.26 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon L5618"},"Xeon-L5630":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5630"},"Xeon-L5638":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true},"isPart":true,"type":"CPU","humanName":"Xeon L5638"},"Xeon-L5640":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"60 W","Core Count":6,"Thread Count":12,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2010-03-16","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon L5640"},"Xeon-X5647":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1066 MHz","Memory Type":"DDR3","Base Frequency":"2.93 GHz","Boost Frequency":"3.2 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5647"},"Xeon-X5672":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.2 GHz","Boost Frequency":"3.6 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5672"},"Xeon-X5687":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EP","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":4,"Thread Count":8,"Max Memory Channels":3,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"3.6 GHz","Boost Frequency":"3.86 GHz","L2 Cache (Total)":"12 MiB","Release Date":"2011-02-14","Socket":"FCLGA1366","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon X5687"},"Server-Westmere-EP":{"humanName":"Westmere EP","sections":[{"header":"9 - 16 Threads","members":["Xeon-X5690","Xeon-X5680","Xeon-X5675","Xeon-X5670","Xeon-X5660","Xeon-X5650","Xeon-W3680","Xeon-W3670","Xeon-L5640","Xeon-L5638","Xeon-E5649","Xeon-E5645"]},{"header":"8 Threads","members":["Xeon-X5687","Xeon-X5677","Xeon-X5672","Xeon-X5667","Xeon-X5647","Xeon-L5630","Xeon-L5618","Xeon-E5640","Xeon-E5630","Xeon-E5620"]},{"header":"4 Threads","members":["Xeon-L5609","Xeon-E5607","Xeon-E5606","Xeon-E5603"]},{"header":"9 - 16 Threads","members":["Xeon-X5690","Xeon-X5680","Xeon-X5675","Xeon-X5670","Xeon-X5660","Xeon-X5650","Xeon-W3680","Xeon-W3670","Xeon-L5640","Xeon-L5638","Xeon-E5649","Xeon-E5645"]},{"header":"8 Threads","members":["Xeon-X5687","Xeon-X5677","Xeon-X5672","Xeon-X5667","Xeon-X5647","Xeon-L5630","Xeon-L5618","Xeon-E5640","Xeon-E5630","Xeon-E5620"]},{"header":"4 Threads","members":["Xeon-L5609","Xeon-E5607","Xeon-E5606","Xeon-E5603"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2010-03-16","Sockets":["LGA1366","LGA1366"]}},"Xeon-E7-2803":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.73 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2803"},"Xeon-E7-2820":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2820"},"Xeon-E7-2830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2830"},"Xeon-E7-2850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2850"},"Xeon-E7-2860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2860"},"Xeon-E7-2870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-2870"},"Xeon-E7-4807":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.86 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4807"},"Xeon-E7-4820":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4820"},"Xeon-E7-4830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4830"},"Xeon-E7-4850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4850"},"Xeon-E7-4860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4860"},"Xeon-E7-4870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-4870"},"Xeon-E7-8830":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":8,"Thread Count":16,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8830"},"Xeon-E7-8837":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":8,"Thread Count":8,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.66 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8837"},"Xeon-E7-8850":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8850"},"Xeon-E7-8860":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.26 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8860"},"Xeon-E7-8867L":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"105 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.13 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8867L"},"Xeon-E7-8870":{"data":{"Manufacturer":"Intel","Architecture":"Westmere EX","Market":"Server","Lithography":"32 nm","TDP":"130 W","Core Count":10,"Thread Count":20,"Max Memory Channels":4,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.4 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"30 MiB","Release Date":"2011-04-05","Socket":"LGA1567","AES":true,"Other Extensions":["x86-64","x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E7-8870"},"Server-Westmere-EX":{"humanName":"Westmere EX","sections":[{"header":"17 - 64 Threads","members":["Xeon-E7-8870","Xeon-E7-8867L","Xeon-E7-8860","Xeon-E7-8850","Xeon-E7-4870","Xeon-E7-4860","Xeon-E7-4850","Xeon-E7-2870","Xeon-E7-2860","Xeon-E7-2850"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8830","Xeon-E7-4830","Xeon-E7-4820","Xeon-E7-4807","Xeon-E7-2830","Xeon-E7-2820","Xeon-E7-2803"]},{"header":"8 Threads","members":["Xeon-E7-8837"]},{"header":"17 - 64 Threads","members":["Xeon-E7-8870","Xeon-E7-8867L","Xeon-E7-8860","Xeon-E7-8850","Xeon-E7-4870","Xeon-E7-4860","Xeon-E7-4850","Xeon-E7-2870","Xeon-E7-2860","Xeon-E7-2850"]},{"header":"9 - 16 Threads","members":["Xeon-E7-8830","Xeon-E7-4830","Xeon-E7-4820","Xeon-E7-4807","Xeon-E7-2830","Xeon-E7-2820","Xeon-E7-2803"]},{"header":"8 Threads","members":["Xeon-E7-8837"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"32 nm","Release Date":"2011-04-05","Sockets":["LGA1567","LGA1567"]}},"Xeon-E3120":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E3120"},"Xeon-E5205":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5205"},"Xeon-E5220":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-03-31","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon E5220"},"Xeon-L3110":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"45 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2009-02-27","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3110"},"Xeon-L5215":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"20 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-09-30","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5215"},"Xeon-L5240":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-05-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L5240"},"Xeon-X5260":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5260"},"Xeon-X5270":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2008-10-01","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5270"},"Xeon-X5272":{"data":{"Manufacturer":"Intel","Architecture":"Wolfdale","Market":"Server","Lithography":"45 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"6 MiB","Die Size":"107 mm","Release Date":"2007-11-12","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X5272"},"Server-Wolfdale":{"humanName":"Wolfdale","sections":[{"header":"2 Threads","members":["Xeon-X5272","Xeon-X5270","Xeon-X5260","Xeon-L5240","Xeon-L5215","Xeon-L3110","Xeon-E5220","Xeon-E5205","Xeon-E3120","Xeon-E3110"]},{"header":"2 Threads","members":["Xeon-X5272","Xeon-X5270","Xeon-X5260","Xeon-L5240","Xeon-L5215","Xeon-L3110","Xeon-E5220","Xeon-E5205","Xeon-E3120","Xeon-E3110"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2007-11-12","Sockets":["LGA775","LGA771","LGA775","LGA771"]}},"Xeon-5110":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5110"},"Xeon-5113":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5113"},"Xeon-5128":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"1.86 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-10-11","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5128"},"Xeon-5130":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5130"},"Xeon-5133":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5133"},"Xeon-5138":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"35 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.13 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-10-11","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5138"},"Xeon-5140":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5140"},"Xeon-5148":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"40 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.33 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Release Date":"2006-06-25","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5148"},"Xeon-5150":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"65 W","Core Count":2,"Thread Count":2,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5150"},"Xeon-5160":{"data":{"Manufacturer":"Intel","Architecture":"Woodcrest","Market":"Server","Lithography":"65 nm","TDP":"80 W","Core Count":2,"Thread Count":2,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"143 mm","Socket":"LGA771","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5160"},"Server-Woodcrest":{"humanName":"Woodcrest","sections":[{"header":"2 Threads","members":["Xeon-5160","Xeon-5150","Xeon-5148","Xeon-5140","Xeon-5138","Xeon-5133","Xeon-5130","Xeon-5128","Xeon-5113","Xeon-5110"]},{"header":"2 Threads","members":["Xeon-5160","Xeon-5150","Xeon-5148","Xeon-5140","Xeon-5138","Xeon-5133","Xeon-5130","Xeon-5128","Xeon-5113","Xeon-5110"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"65 nm","Release Date":"2006-06-25","Sockets":["LGA771","LGA771"]}},"Xeon-L3360":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"65 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-02-23","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon L3360"},"Xeon-X3320":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3320"},"Xeon-X3330":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"6 MiB","Die Size":"164 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3330"},"Xeon-X3350":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3350"},"Xeon-X3360":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-03-24","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3360"},"Xeon-X3370":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2008-08-10","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3370"},"Xeon-X3380":{"data":{"Manufacturer":"Intel","Architecture":"Yorkfield","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"12 MiB","Die Size":"214 mm","Release Date":"2009-03-02","Socket":"LGA775","Other Extensions":["x86-64","x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon X3380"},"Server-Yorkfield":{"humanName":"Yorkfield","sections":[{"header":"4 Threads","members":["Xeon-X3380","Xeon-X3370","Xeon-X3360","Xeon-X3350","Xeon-X3330","Xeon-X3320","Xeon-L3360"]},{"header":"4 Threads","members":["Xeon-X3380","Xeon-X3370","Xeon-X3360","Xeon-X3350","Xeon-X3330","Xeon-X3320","Xeon-L3360"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"45 nm","Release Date":"2008-03-24","Sockets":["LGA775","LGA775"]}},"Server-CPUs-Intel":{"humanName":"Server CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["Server-Cascade-Lake","Server-Hewitt-Lake","Server-Coffee-Lake","Server-Kaby-Lake","Server-Denverton","Server-Skylake","Server-Broadwell"]},{"header":"2010 - 2014","members":["Server-Ivy-Bridge-EN","Server-Ivy-Bridge-EP","Server-Avoton","Server-Haswell","Server-Briarwood","Server-Centerton","Server-Sandy-Bridge-EN","Server-Ivy-Bridge","Server-Sandy-Bridge-EP","Server-Sandy-Bridge","Server-Westmere-EX","Server-Gulftown","Server-Clarkdale","Server-Westmere-EP","Server-Nehalem-EX"]},{"header":"2005 - 2009","members":["Server-Lynnfield","Server-Nehalem-EP","Server-Bloomfield","Server-Dunnington","Server-Yorkfield","Server-Conroe","Server-Wolfdale","Server-Harpertown","Server-Tigerton","Server-Kentsfield","Server-Clovertown","Server-Woodcrest"]},{"header":"1970 - 1974","members":["Server-Dempsey","Server-Paxville","Server-Tulsa"]},{"header":"2015 - 2019","members":["Server-Cascade-Lake","Server-Hewitt-Lake","Server-Coffee-Lake","Server-Kaby-Lake","Server-Denverton","Server-Skylake","Server-Broadwell"]},{"header":"2010 - 2014","members":["Server-Ivy-Bridge-EN","Server-Ivy-Bridge-EP","Server-Avoton","Server-Haswell","Server-Briarwood","Server-Centerton","Server-Sandy-Bridge-EN","Server-Ivy-Bridge","Server-Sandy-Bridge-EP","Server-Sandy-Bridge","Server-Westmere-EX","Server-Gulftown","Server-Clarkdale","Server-Westmere-EP","Server-Nehalem-EX"]},{"header":"2005 - 2009","members":["Server-Lynnfield","Server-Nehalem-EP","Server-Bloomfield","Server-Dunnington","Server-Yorkfield","Server-Conroe","Server-Wolfdale","Server-Harpertown","Server-Tigerton","Server-Kentsfield","Server-Clovertown","Server-Woodcrest"]},{"header":"1970 - 1974","members":["Server-Dempsey","Server-Paxville","Server-Tulsa"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Xeon-W-3225":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"160 W","Core Count":8,"Thread Count":16,"Max Memory Channels":6,"Max Memory Frequency":"2666 MHz","Memory Type":"DDR4","Base Frequency":"3.7 GHz","Boost Frequency":"4.3 GHz","L2 Cache (Total)":"16.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3225"},"Xeon-W-3245M":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":16,"Thread Count":32,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"3.2 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"22 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3245M"},"Xeon-W-3265":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":24,"Thread Count":48,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.7 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"33 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3265"},"Xeon-W-3275":{"data":{"Manufacturer":"Intel","Architecture":"Cascade Lake","Lithography":"14 nm","TDP":"205 W","Core Count":28,"Thread Count":56,"Max Memory Channels":6,"Max Memory Frequency":"2933 MHz","Memory Type":"DDR4","Base Frequency":"2.5 GHz","Boost Frequency":"4.4 GHz","L2 Cache (Total)":"38.5 MiB","Release Date":"2019-06-03","Socket":"FCLGA3647","AES":true,"AVX/SSE/MMX":"AVX-512"},"isPart":true,"type":"CPU","humanName":"Xeon W-3275"},"undefined-Cascade-Lake":{"humanName":"Cascade Lake","sections":[{"header":"17 - 64 Threads","members":["Xeon-W-3275M","Xeon-W-3275","Xeon-W-3265M","Xeon-W-3265","Xeon-W-3245M","Xeon-W-3245","Xeon-W-3235","Xeon-W-2295","Xeon-W-2275","Xeon-W-2265","Xeon-W-2255"]},{"header":"9 - 16 Threads","members":["Xeon-W-3225","Xeon-W-3223","Xeon-W-2245","Xeon-W-2235"]},{"header":"8 Threads","members":["Xeon-W-2225","Xeon-W-2223"]},{"header":"17 - 64 Threads","members":["Xeon-W-3275M","Xeon-W-3275","Xeon-W-3265M","Xeon-W-3265","Xeon-W-3245M","Xeon-W-3245","Xeon-W-3235","Xeon-W-2295","Xeon-W-2275","Xeon-W-2265","Xeon-W-2255"]},{"header":"9 - 16 Threads","members":["Xeon-W-3225","Xeon-W-3223","Xeon-W-2245","Xeon-W-2235"]},{"header":"8 Threads","members":["Xeon-W-2225","Xeon-W-2223"]}],"type":"CPU Architecture","topHeader":"SELECT CPU:","data":{"Manufacturer":"Intel","Lithography":"14 nm","Release Date":"2019-06-03","Sockets":["LGA3647","LGA3647"]}},"undefined-CPUs-Intel":{"humanName":"undefined CPUs (Intel)","sections":[{"header":"2015 - 2019","members":["undefined-Cascade-Lake"]},{"header":"2015 - 2019","members":["undefined-Cascade-Lake"]}],"type":"Generic Container","topHeader":"SELECT ARCHITECTURE:","data":{"Manufacturer":"Intel"}},"Pentium-310":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.2 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q4 2005","Socket":"H-PBGA479, PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 310"},"Pentium-330":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.4 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q2 2004","Socket":"PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 330"},"Pentium-340":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Release Date":"Q4 2004","Socket":"PPGA478","AES":false,"Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 340"},"Pentium-333":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"7 W","Core Count":1,"Thread Count":1,"Base Frequency":"900 MHz","L2 Cache (Total)":"512 KiB","Die Size":"83 mm","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 333"},"Xeon-5030":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5030"},"Xeon-5040":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.83 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5040"},"Xeon-5050":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5050"},"Xeon-5060":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5060"},"Xeon-5070":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5070"},"Xeon-5080":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"130 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.73 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5080"},"Xeon-7020":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.66 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7020"},"Xeon-7030":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"2 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7030"},"Xeon-7040":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7040"},"Xeon-7041":{"data":{"Manufacturer":"Intel","Architecture":"Paxville","Market":"Server","Lithography":"90 nm","TDP":"165 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"206 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7041"},"Xeon-7110M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.6 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7110M"},"Xeon-7110N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7110N"},"Xeon-7120M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7120M"},"Xeon-7120N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3 GHz","L2 Cache (Total)":"4 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7120N"},"Xeon-7130M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"8 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7130M"},"Xeon-7130N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.16 GHz","L2 Cache (Total)":"8 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7130N"},"Xeon-7140M":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.4 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7140M"},"Xeon-7140N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7140N"},"Pentium-518":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"2.8 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 518"},"Pentium-532":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.06 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 532"},"Pentium-538":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 538"},"Pentium-548":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.33 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 548"},"Pentium-552":{"data":{"Manufacturer":"Intel","Architecture":"Prescott","Market":"Mobile","Lithography":"90 nm","TDP":"88 W","Core Count":1,"Thread Count":2,"Base Frequency":"3.46 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"112 mm","Socket":"PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 552"},"Pentium-705":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"24.5 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.5 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479, PPGA478","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 705"},"Pentium-718":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"12 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.3 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 718"},"Pentium-713":{"data":{"Manufacturer":"Intel","Architecture":"Banias","Market":"Mobile","Lithography":"130 nm","TDP":"7 W","Core Count":1,"Thread Count":1,"Base Frequency":"1.1 GHz","L2 Cache (Total)":"1024 KiB","Die Size":"83 mm","Socket":"H-PBGA479","Other Extensions":[]},"isPart":true,"type":"CPU","humanName":"Pentium 713"},"Xeon-5063":{"data":{"Manufacturer":"Intel","Architecture":"Dempsey","Market":"Server","Lithography":"65 nm","TDP":"95 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.2 GHz","L2 Cache (Total)":"4 MiB","Die Size":"162 mm","Socket":"PLGA771","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 5063"},"Xeon-7150N":{"data":{"Manufacturer":"Intel","Architecture":"Tulsa","Market":"Server","Lithography":"65 nm","TDP":"150 W","Core Count":2,"Thread Count":4,"Base Frequency":"3.5 GHz","L2 Cache (Total)":"16 MiB","Die Size":"435 mm","Socket":"PPGA604","Other Extensions":["x86-64"]},"isPart":true,"type":"CPU","humanName":"Xeon 7150N"},"Xeon-E6510":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","TDP":"105 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.73 GHz","Boost Frequency":"1.733 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E6510"},"Xeon-E6540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E6540"},"Xeon-E7520":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":4,"Thread Count":8,"Base Frequency":"1.866 GHz","Boost Frequency":"1.866 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7520"},"Xeon-E7530":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"1.866 GHz","Boost Frequency":"2.133 GHz","L2 Cache (Total)":"12 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7530"},"Xeon-E7540":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"105 W","Core Count":6,"Thread Count":12,"Base Frequency":"2 GHz","Boost Frequency":"2.266 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon E7540"},"Xeon-L7545":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":6,"Thread Count":12,"Base Frequency":"1.866 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon L7545"},"Xeon-L7555":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"95 W","Core Count":8,"Thread Count":16,"Base Frequency":"1.866 GHz","Boost Frequency":"2.533 GHz","L2 Cache (Total)":"24 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon L7555"},"Xeon-X6550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X6550"},"Xeon-X7542":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":6,"Thread Count":6,"Base Frequency":"2.666 GHz","Boost Frequency":"2.8 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7542"},"Xeon-X7550":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","Boost Frequency":"2.4 GHz","L2 Cache (Total)":"18 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7550"},"Xeon-X7560":{"data":{"Manufacturer":"Intel","Architecture":"Nehalem EX","Market":"Server","Lithography":"45 nm","TDP":"130 W","Core Count":8,"Thread Count":16,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2.266 GHz","Boost Frequency":"2.666 GHz","L2 Cache (Total)":"24 MiB","Release Date":"Q1 2010","Socket":"FCLGA1567"},"isPart":true,"type":"CPU","humanName":"Xeon X7560"},"Xeon-E3-1125C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E3-1125C"},"Xeon-E3-1105C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3","Base Frequency":"1000 MHz","L2 Cache (Total)":"6 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Xeon E3-1105C"},"Core-i3-2115C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"2 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Core i3-2115C"},"Pentium-B915C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"15 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.5 GHz","L2 Cache (Total)":"3 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium B915C"},"Pentium-725C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"10 W","Core Count":1,"Thread Count":2,"Max Memory Channels":1,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3","Base Frequency":"1.3 GHz","L2 Cache (Total)":"1.5 MiB","Release Date":"2012-05-31","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":false},"isPart":true,"type":"CPU","humanName":"Pentium 725C"},"Xeon-E3-1105CV2":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"1.8 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1105CV2"},"Xeon-E3-1125CV2":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"40 W","Core Count":4,"Thread Count":8,"Max Memory Channels":2,"Max Memory Frequency":"1600 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"8 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Xeon E3-1125CV2"},"Pentium-B925C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","TDP":"15 W","Core Count":2,"Thread Count":4,"Base Frequency":"2 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-11-14"},"isPart":true,"type":"CPU","humanName":"Pentium B925C"},"Core-i3-3115C":{"data":{"Manufacturer":"Intel","Architecture":"Gladden","Market":"Embedded","Lithography":"22 nm","TDP":"25 W","Core Count":2,"Thread Count":4,"Max Memory Channels":2,"Max Memory Frequency":"1333 MHz","Memory Type":"DDR3/DDR3L","Base Frequency":"2.5 GHz","L2 Cache (Total)":"4 MiB","Release Date":"2013-09-10","Socket":"FCBGA1284","AES":true,"Other Extensions":["x86-64"],"AVX/SSE/MMX":"SSE 4.2"},"isPart":true,"type":"CPU","humanName":"Core i3-3115C"}} \ No newline at end of file From e644b94564417d870410fdf7745c1720dd5215fe Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 7 Dec 2024 21:31:29 +0000 Subject: [PATCH 28/41] more file permission fixes --- specs/GPUs-CONSUMER-3dfx.yaml | 0 specs/GPUs-CONSUMER-AMD.yaml | 0 specs/GPUs-CONSUMER-ATI.yaml | 0 specs/GPUs-CONSUMER-Intel.yaml | 0 specs/GPUs-CONSUMER-Matrox.yaml | 0 specs/GPUs-CONSUMER-Nvidia.yaml | 0 specs/GPUs-CONSUMER-PowerVR.yaml | 0 specs/GPUs-CONSUMER-XGI.yaml | 0 8 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 specs/GPUs-CONSUMER-3dfx.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-AMD.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-ATI.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-Intel.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-Matrox.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-Nvidia.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-PowerVR.yaml mode change 100755 => 100644 specs/GPUs-CONSUMER-XGI.yaml diff --git a/specs/GPUs-CONSUMER-3dfx.yaml b/specs/GPUs-CONSUMER-3dfx.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER-AMD.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-ATI.yaml b/specs/GPUs-CONSUMER-ATI.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-Intel.yaml b/specs/GPUs-CONSUMER-Intel.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-Matrox.yaml b/specs/GPUs-CONSUMER-Matrox.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER-Nvidia.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-PowerVR.yaml b/specs/GPUs-CONSUMER-PowerVR.yaml old mode 100755 new mode 100644 diff --git a/specs/GPUs-CONSUMER-XGI.yaml b/specs/GPUs-CONSUMER-XGI.yaml old mode 100755 new mode 100644 From 13cdacd9fd6b4eb2628785cb12416cd51fb216c6 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sun, 8 Dec 2024 10:21:04 +0000 Subject: [PATCH 29/41] fix some gpu outputs --- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml | 4 +++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml | 4 +++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml | 4 +++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml | 3 ++- specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml | 3 ++- 16 files changed, 35 insertions(+), 16 deletions(-) diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml index 88540431..663a6299 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml @@ -31,7 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x HDMI 2.1 - - 2x DisplayPort 1.4a1x USB Type-C + - 2x DisplayPort 1.4a + - 1x USB Type-C Power Connectors: 2x 8-pin Length: 267 mm Width: 120 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml index c16ab283..13258cae 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml @@ -31,7 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x HDMI 2.1 - - 2x DisplayPort 1.4a1x USB Type-C + - 2x DisplayPort 1.4a + - 1x USB Type-C Power Connectors: 2x 8-pin Length: 267 mm Width: 120 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml index edc0482b..86e539bd 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml @@ -31,7 +31,8 @@ data: Slot Width: Triple-slot Outputs: - 1x HDMI 2.1 - - 2x DisplayPort 1.4a1x USB Type-C + - 2x DisplayPort 1.4a + - 1x USB Type-C Power Connectors: 2x 8-pin Length: 267 mm Width: 120 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml index 819decc2..a3532d00 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml @@ -31,7 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x HDMI 2.1 - - 2x DisplayPort 1.4a1x USB Type-C + - 2x DisplayPort 1.4a + - 1x USB Type-C Power Connectors: 2x 8-pin Length: 267 mm Width: 135 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml index 07f5047b..78fa9ac4 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 294.4 GFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 1x 6-pin Ray Tracing Cores: 16 diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml index 49c1c697..d4ccc249 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml @@ -30,7 +30,9 @@ data: FP32 Compute: 22.57 TFLOPS FP64 Compute: 705.3 GFLOPS (1:32) Slot Width: Dual-slot - Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Outputs: + - 1x HDMI 2.1a + - 3x DisplayPort 2.1 Power Connectors: 1x 8-pin Length: 204 mm Width: 115 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml index 601a114c..e7b5e0bc 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml @@ -30,7 +30,9 @@ data: FP32 Compute: 21.75 TFLOPS FP64 Compute: 679.7 GFLOPS (1:32) Slot Width: Dual-slot - Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Outputs: + - 1x HDMI 2.1a + - 3x DisplayPort 2.1 Power Connectors: 1x 8-pin Length: 204 mm Width: 115 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml index b64a856b..b9d33b69 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 1,099 GFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 267 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml index d27e9821..d36c0a69 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 998.4 GFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 1x 8-pin Length: 267 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml index 03e6e9ac..3760a894 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml @@ -30,7 +30,9 @@ data: FP32 Compute: 37.32 TFLOPS FP64 Compute: 1,166 GFLOPS (1:32) Slot Width: Dual-slot - Outputs: 1x HDMI 2.1a3x DisplayPort 2.1 + Outputs: + - 1x HDMI 2.1a + - 3x DisplayPort 2.1 Power Connectors: 2x 8-pin Length: 267 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml index 349ed3c6..1bb0180b 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 1,437 GFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 276 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml index ab13934a..975f04ea 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 1.609 TFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 276 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml index 0f9bb767..c66eba5e 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 1.918 TFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 287 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml index c9283134..e6797069 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 2.016 TFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 276 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml index 2be14ea6..a940a73a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 2.534 TFLOPS (1:32) Slot Width: Dual-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 2x 8-pin Length: 287 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml index a860c915..ef9b9362 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml @@ -31,7 +31,8 @@ data: FP64 Compute: 2.764 TFLOPS (1:32) Slot Width: Triple-slot Outputs: - - 1x HDMI 2.1a2x DisplayPort 2.1 + - 1x HDMI 2.1a + - 2x DisplayPort 2.1 - 1x USB Type-C Power Connectors: 3x 8-pin Length: 287 mm From 4172e6398ad49a597c4532dd0ad2e1775d44a577 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sun, 8 Dec 2024 20:16:32 +0000 Subject: [PATCH 30/41] wip - categorisation --- specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml | 64 ++++++++++--------- specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml | 48 ++++++++------ .../AMD/RDNA-3.0/Radeon-RX-7700.yaml | 2 +- .../AMD/TeraScale/FireGL-V7700.yaml | 3 +- .../AMD/TeraScale/FireGL-V8600.yaml | 3 +- 5 files changed, 65 insertions(+), 55 deletions(-) diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml index 7b133b67..6deaaf94 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml @@ -4,12 +4,44 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 7 nm DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2020-10-28' Manufacturer: AMD sections: + - header: Consumer RX + members: + - Radeon-RX-6950-XT + - Radeon-RX-6900-XTX + - Radeon-RX-6900-XT + - Radeon-RX-6850M-XT + - Radeon-RX-6800S + - Radeon-RX-6800M + - Radeon-RX-6800-XT + - Radeon-RX-6800 + - Radeon-RX-6750-XT + - Radeon-RX-6750-GRE-12-GB + - Radeon-RX-6750-GRE-10-GB + - Radeon-RX-6700M + - Radeon-RX-6700-XT + - Radeon-RX-6700S + - Radeon-RX-6700 + - Radeon-RX-6650M-XT + - Radeon-RX-6650M + - Radeon-RX-6650-XT + - Radeon-RX-6600S + - Radeon-RX-6600M + - Radeon-RX-6600-XT + - Radeon-RX-6600 + - Radeon-RX-6550S + - Radeon-RX-6550M + - Radeon-RX-6500M + - Radeon-RX-6500-XT + - Radeon-RX-6450M + - Radeon-RX-6400 + - Radeon-RX-6300M + - Radeon-RX-6300 - header: WHOLE RANGE members: - Radeon-610M @@ -28,33 +60,3 @@ sections: - Radeon-Pro-W6800X - Radeon-Pro-W6800X-Duo - Radeon-Pro-W6900X - - Radeon-RX-6300 - - Radeon-RX-6300M - - Radeon-RX-6400 - - Radeon-RX-6450M - - Radeon-RX-6500-XT - - Radeon-RX-6500M - - Radeon-RX-6550M - - Radeon-RX-6550S - - Radeon-RX-6600 - - Radeon-RX-6600-XT - - Radeon-RX-6600M - - Radeon-RX-6600S - - Radeon-RX-6650-XT - - Radeon-RX-6650M - - Radeon-RX-6650M-XT - - Radeon-RX-6700 - - Radeon-RX-6700-XT - - Radeon-RX-6700M - - Radeon-RX-6750-GRE-10-GB - - Radeon-RX-6750-GRE-12-GB - - Radeon-RX-6750-XT - - Radeon-RX-6800 - - Radeon-RX-6800-XT - - Radeon-RX-6800M - - Radeon-RX-6800S - - Radeon-RX-6850M-XT - - Radeon-RX-6900-XT - - Radeon-RX-6900-XTX - - Radeon-RX-6950-XT - - Radeon-RX-6700S diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml index 8728d59d..1029639f 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml @@ -4,36 +4,42 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 5 nm DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022-11-03' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Consumer RX members: - - Radeon-740M - - Radeon-760M - - Radeon-780M - - Radeon-PRO-W7500 - - Radeon-PRO-W7600 - - Radeon-PRO-W7700 - - Radeon-PRO-W7800 - - Radeon-PRO-W7900 - - Radeon-RX-7500-XT - - Radeon-RX-7600 - - Radeon-RX-7600-XT - - Radeon-RX-7600M + - Radeon-RX-7900-XTX + - Radeon-RX-7900-XT + - Radeon-RX-7900-GRE + - Radeon-RX-7800-XT + - Radeon-RX-7700S + - Radeon-RX-7700-XT - Radeon-RX-7600M-XT - Radeon-RX-7600S - - Radeon-RX-7700 - - Radeon-RX-7700-XT - - Radeon-RX-7700S - - Radeon-RX-7800-XT - - Radeon-RX-7900-GRE - - Radeon-RX-7900-XT - - Radeon-RX-7900-XTX + - Radeon-RX-7600-XT + - Radeon-RX-7600 + - header: Workstation PRO + members: + - Radeon-PRO-W7900 + - Radeon-PRO-W7800 + - Radeon-PRO-W7700 + - Radeon-PRO-W7600 + - Radeon-PRO-W7500 + - header: Mobile + members: - Radeon-RX-7900M + - Radeon-RX-7600M + - Radeon-780M + - Radeon-760M + - Radeon-740M + - header: Never Released + members: + - Radeon-RX-7500-XT + - Radeon-RX-7700 - Radeon-RX-7950-XT - Radeon-RX-7950-XTX - Radeon-RX-7990-XTX diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml index d36c0a69..65c4a1d9 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml @@ -11,7 +11,7 @@ data: Vulkan Support: '1.3' OpenGL Support: '4.6' OpenCL Support: '2.2' - Release Date: '2023' + Release Date: 'Never Released' GPU Base Frequency: 1900 MHz GPU Boost Frequency: 2600 MHz VRAM Frequency: 2250 MHz diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml index bf739f53..7a4a7e99 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml @@ -30,7 +30,8 @@ data: Slot Width: Dual-slot Outputs: - 1x DVI - - 1x DisplayPort1x S-Video + - 1x DisplayPort + - 1x S-Video Power Connectors: 1x 6-pin Length: 254 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml index 5dd8cee8..407fb7fc 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml @@ -29,7 +29,8 @@ data: Slot Width: Dual-slot Outputs: - 1x DVI - - 1x DisplayPort1x S-Video + - 1x DisplayPort + - 1x S-Video Power Connectors: 1x 6-pin + 1x 8-pin Length: 254 mm Width: 111 mm From 3243226e8d82e76ed165a5331bc05f3deb83423b Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Mon, 9 Dec 2024 19:13:05 +0000 Subject: [PATCH 31/41] add Pixel Shaders --- .../GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml | 1 + .../ATI/Ultra-Threaded-SE/Wii-GPU.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-28nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-40nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-65nm.yaml | 1 + .../Nvidia/Curie/Playstation-3-GPU-90nm.yaml | 1 + specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml | 1 + .../3dfx/Voodoo-Scalable/Spectre-1000.yaml | 1 + .../3dfx/Voodoo-Scalable/Spectre-2000.yaml | 1 + .../3dfx/Voodoo-Scalable/Spectre-3000.yaml | 1 + .../Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml | 1 + .../Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml | 1 + .../Voodoo4-2-4200-PCI-16-MB.yaml | 1 + .../Voodoo4-2-4200-PCI-32-MB.yaml | 1 + .../Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml | 1 + .../3dfx/Voodoo-Scalable/Voodoo5-6000.yaml | 1 + .../AMD/Mach/3D-Rage-II+-DVD.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml | 1 + .../Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml | 1 + .../AMD/Mach/Graphics-Pro-Turbo.yaml | 1 + .../AMD/Mach/Graphics-Ultra-Pro-ISA.yaml | 1 + .../AMD/Mach/Graphics-Ultra-Pro-PCI.yaml | 1 + .../AMD/Mach/Graphics-Ultra-Pro-VLB.yaml | 1 + .../AMD/Mach/Graphics-Ultra-XLR-VLB.yaml | 1 + .../GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml | 1 + .../AMD/Mach/Graphics-Vantage.yaml | 1 + .../AMD/Mach/Graphics-Wonder-PCI.yaml | 1 + .../AMD/Mach/Graphics-Wonder-VLB.yaml | 1 + .../AMD/Mach/Graphics-Xpression-ISA.yaml | 1 + .../AMD/Mach/Graphics-Xpression.yaml | 1 + .../AMD/Mach/Rage-LT-PRO-AGP.yaml | 1 + .../AMD/Mach/Video-Xpression+.yaml | 1 + .../AMD/Mach/Video-Xpression.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml | 1 + specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml | 1 + specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml | 1 + specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml | 1 + specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml | 1 + specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml | 1 + .../R300/All-In-Wonder-2006-AGP-Edition.yaml | 1 + .../ATI/R300/All-In-Wonder-9500.yaml | 1 + .../ATI/R300/All-In-Wonder-9600-PRO.yaml | 1 + .../ATI/R300/All-In-Wonder-9600-XT.yaml | 1 + .../ATI/R300/All-In-Wonder-9600.yaml | 1 + .../ATI/R300/All-In-Wonder-9700-PRO.yaml | 1 + .../ATI/R300/All-In-Wonder-9800-PRO.yaml | 1 + .../ATI/R300/All-In-Wonder-9800-SE.yaml | 1 + .../ATI/R300/All-In-Wonder-X600-PRO.yaml | 1 + .../ATI/R300/FireGL-9500-Z1-128.yaml | 1 + .../ATI/R300/FireGL-9600-T2-128.yaml | 1 + .../ATI/R300/FireGL-9600-T2-64S.yaml | 1 + .../ATI/R300/FireGL-9700-X1-128.yaml | 1 + .../ATI/R300/FireGL-9700-X1-256.yaml | 1 + .../ATI/R300/FireGL-9700-X1-256p.yaml | 1 + .../ATI/R300/FireGL-9800-X2-256.yaml | 1 + .../ATI/R300/FireGL-9800-X2-256T.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml | 1 + .../ATI/R300/FireMV-2400-PCI.yaml | 1 + .../ATI/R300/FireMV-2400-PCIe-x1.yaml | 1 + .../ATI/R300/Mobility-FireGL-T2.yaml | 1 + .../ATI/R300/Mobility-FireGL-T2e.yaml | 1 + .../ATI/R300/Mobility-FireGL-V3100.yaml | 1 + .../ATI/R300/Mobility-FireGL-V3200.yaml | 1 + .../ATI/R300/Mobility-Radeon-9500.yaml | 1 + .../ATI/R300/Mobility-Radeon-9550.yaml | 1 + .../R300/Mobility-Radeon-9600-PRO-Turbo.yaml | 1 + .../ATI/R300/Mobility-Radeon-9600-PRO.yaml | 1 + .../ATI/R300/Mobility-Radeon-9600.yaml | 1 + .../ATI/R300/Mobility-Radeon-9700-SE.yaml | 1 + .../ATI/R300/Mobility-Radeon-9700.yaml | 1 + .../ATI/R300/Mobility-Radeon-X300-IGP.yaml | 1 + .../ATI/R300/Mobility-Radeon-X300.yaml | 1 + .../ATI/R300/Mobility-Radeon-X600-SE.yaml | 1 + .../ATI/R300/Mobility-Radeon-X600.yaml | 1 + .../ATI/R300/Radeon-9500-PRO.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml | 1 + .../ATI/R300/Radeon-9600-PRO.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml | 1 + .../ATI/R300/Radeon-9700-PRO-X4.yaml | 1 + .../ATI/R300/Radeon-9700-PRO.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml | 1 + .../ATI/R300/Radeon-9800-PRO-MAXX.yaml | 1 + .../ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml | 1 + .../ATI/R300/Radeon-9800-PRO.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml | 1 + .../ATI/R300/Radeon-9800-XT-Mac-Edition.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml | 1 + .../ATI/R300/Radeon-9800-XXL.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml | 1 + .../ATI/R300/Radeon-X1050-AGP.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml | 1 + .../ATI/R300/Radeon-X300-SE-HyperMemory.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml | 1 + .../ATI/R300/Radeon-X550-HyperMemory.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml | 1 + .../ATI/R300/Radeon-X600-PRO.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml | 1 + .../GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml | 1 + .../ATI/R300/Radeon-Xpress--200M-IGP.yaml | 1 + .../ATI/R300/Radeon-Xpress-1100-IGP.yaml | 1 + .../R300/Radeon-Xpress-1100-Mobile-IGP.yaml | 1 + .../ATI/R300/Radeon-Xpress-1150-IGP.yaml | 1 + .../R300/Radeon-Xpress-1150-Mobile-IGP.yaml | 1 + .../ATI/R300/Radeon-Xpress-200-IGP.yaml | 1 + .../ATI/R300/Radeon-Xpress-200M-IGP.yaml | 1 + .../ATI/R400/All-In-Wonder-X800-GT.yaml | 1 + .../ATI/R400/All-In-Wonder-X800-SE.yaml | 1 + .../ATI/R400/All-In-Wonder-X800-VE.yaml | 1 + .../ATI/R400/All-In-Wonder-X800-XL.yaml | 1 + .../ATI/R400/All-In-Wonder-X800-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml | 1 + specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml | 1 + specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml | 1 + .../ATI/R400/Mobility-FireGL-V5000.yaml | 1 + .../ATI/R400/Mobility-Radeon-9800.yaml | 1 + .../ATI/R400/Mobility-Radeon-X700-XL.yaml | 1 + .../ATI/R400/Mobility-Radeon-X700.yaml | 1 + .../ATI/R400/Mobility-Radeon-X800-XT.yaml | 1 + .../ATI/R400/Mobility-Radeon-X800.yaml | 1 + .../ATI/R400/Radeon-2100-IGP.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml | 1 + .../ATI/R400/Radeon-X550-XTX.yaml | 1 + .../ATI/R400/Radeon-X700-AGP.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml | 1 + .../ATI/R400/Radeon-X700-PRO-AGP.yaml | 1 + .../ATI/R400/Radeon-X700-PRO.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml | 1 + .../R400/Radeon-X800-CrossFire-Edition.yaml | 1 + .../ATI/R400/Radeon-X800-GT-AGP.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml | 1 + .../ATI/R400/Radeon-X800-GTO-AGP.yaml | 1 + .../ATI/R400/Radeon-X800-GTO.yaml | 1 + .../ATI/R400/Radeon-X800-GTO2.yaml | 1 + .../ATI/R400/Radeon-X800-PRO-AGP.yaml | 1 + .../ATI/R400/Radeon-X800-PRO.yaml | 1 + .../ATI/R400/Radeon-X800-SE-AGP.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml | 1 + .../ATI/R400/Radeon-X800-VE-AGP.yaml | 1 + .../ATI/R400/Radeon-X800-XL-AGP.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml | 1 + .../ATI/R400/Radeon-X800-XT-AGP.yaml | 1 + .../ATI/R400/Radeon-X800-XT-Mac-Edition.yaml | 1 + .../ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml | 1 + .../ATI/R400/Radeon-X800-XT-Platinum.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml | 1 + specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml | 1 + .../R400/Radeon-X850-CrossFire-Edition.yaml | 1 + .../ATI/R400/Radeon-X850-PRO-AGP.yaml | 1 + .../ATI/R400/Radeon-X850-PRO.yaml | 1 + .../ATI/R400/Radeon-X850-XT-AGP.yaml | 1 + .../ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml | 1 + .../ATI/R400/Radeon-X850-XT-Platinum.yaml | 1 + .../GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml | 1 + .../ATI/R400/Radeon-Xpress-1200-IGP.yaml | 1 + .../R400/Radeon-Xpress-1200-Mobile-IGP.yaml | 1 + .../ATI/R400/Radeon-Xpress-1250-IGP.yaml | 1 + .../R400/Radeon-Xpress-1250-Mobile-IGP.yaml | 1 + .../R400/Radeon-Xpress-1270-Mobile-IGP.yaml | 1 + .../ATI/Rage-2/3D-Rage-IIC-AGP.yaml | 1 + .../ATI/Rage-2/3D-Rage-IIC-PCI.yaml | 1 + .../ATI/Rage-3/3D-Rage-PRO-AGP.yaml | 1 + .../ATI/Rage-3/3D-Rage-PRO-PCI.yaml | 1 + .../ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml | 1 + .../ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml | 1 + .../ATI/Rage-4/All-In-Wonder-128-PCI.yaml | 1 + .../Rage-4/All-In-Wonder-128-PRO-Ultra.yaml | 1 + .../ATI/Rage-4/All-In-Wonder-128-PRO.yaml | 1 + .../ATI/Rage-4/All-In-Wonder-128.yaml | 1 + .../ATI/Rage-4/Rage-128-GL-PCI.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml | 1 + .../ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml | 1 + .../ATI/Rage-4/Rage-128-PRO-Ultra.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml | 1 + .../ATI/Rage-4/Rage-128-Ultra.yaml | 1 + .../ATI/Rage-4/Rage-128-VR-AGP.yaml | 1 + .../ATI/Rage-4/Rage-128-VR-PCI.yaml | 1 + .../ATI/Rage-4/Rage-Fury-MAXX.yaml | 1 + specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-CL.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-M.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-M1.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-M3.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-M4.yaml | 1 + .../ATI/Rage-4/Rage-Mobility-P.yaml | 1 + .../ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml | 1 + specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml | 1 + .../ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml | 1 + .../ATI/Rage-6/Mobility-Radeon-7000.yaml | 1 + .../ATI/Rage-6/Mobility-Radeon-P.yaml | 1 + .../ATI/Rage-6/Mobility-Radeon.yaml | 1 + .../Rage-6/Radeon-7000-Mac-Edition-PCI.yaml | 1 + .../ATI/Rage-6/Radeon-7000-Mac-Edition.yaml | 1 + .../ATI/Rage-6/Radeon-7000-PCI.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml | 1 + .../ATI/Rage-6/Radeon-7200-64-MB.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml | 1 + .../ATI/Rage-6/Radeon-DDR-MAXX.yaml | 1 + .../ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml | 1 + .../ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml | 1 + .../ATI/Rage-6/Radeon-DDR-VIVO.yaml | 1 + specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-320.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-320M.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-330M.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-340.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-340M.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-345M.yaml | 1 + .../ATI/Rage-6/Radeon-IGP-350M.yaml | 1 + specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml | 1 + .../ATI/Rage-6/Radeon-SDR-PCI.yaml | 1 + specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml | 1 + .../ATI/Rage-6/Radeon-VE-AGP.yaml | 1 + .../ATI/Rage-6/Radeon-VE-PCI.yaml | 1 + .../ATI/Rage-7/All-In-Wonder-9000-PRO.yaml | 1 + .../ATI/Rage-7/All-In-Wonder-9200-SE.yaml | 1 + .../ATI/Rage-7/All-In-Wonder-9200.yaml | 1 + .../Rage-7/All-In-Wonder-Radeon-7500-VE.yaml | 1 + .../ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml | 1 + .../ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml | 1 + .../Rage-7/All-In-Wonder-Radeon-8500DV.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml | 1 + .../ATI/Rage-7/FireMV-2200-PCI.yaml | 1 + .../ATI/Rage-7/Mobility-FireGL-7800.yaml | 1 + .../ATI/Rage-7/Mobility-FireGL-9000.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-7500.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-7500C.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-9000.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml | 1 + .../Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml | 1 + .../ATI/Rage-7/Mobility-Radeon-9200.yaml | 1 + .../ATI/Rage-7/Radeon-7500-LE.yaml | 1 + .../ATI/Rage-7/Radeon-7500-Mac-Edition.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml | 1 + .../ATI/Rage-7/Radeon-8500-LE.yaml | 1 + .../ATI/Rage-7/Radeon-8500-X4.yaml | 1 + .../ATI/Rage-7/Radeon-8500-XT.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml | 1 + .../ATI/Rage-7/Radeon-9000-LE.yaml | 1 + .../Rage-7/Radeon-9000-PRO-Mac-Edition.yaml | 1 + .../ATI/Rage-7/Radeon-9000-PRO.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml | 1 + .../ATI/Rage-7/Radeon-9100-PCI.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml | 1 + .../ATI/Rage-7/Radeon-9200-LE.yaml | 1 + .../ATI/Rage-7/Radeon-9200-PCI.yaml | 1 + .../ATI/Rage-7/Radeon-9200-PRO.yaml | 1 + .../ATI/Rage-7/Radeon-9200-SE-PCI.yaml | 1 + .../ATI/Rage-7/Radeon-9200-SE.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml | 1 + .../ATI/Rage-7/Radeon-9250-PCI.yaml | 1 + .../GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml | 1 + .../All-In-Wonder-2006-PCIe-Edition.yaml | 1 + .../All-In-Wonder-X1800-XL.yaml | 1 + .../Ultra-Threaded-SE/All-In-Wonder-X1900.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V3300.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V3350.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V3400.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V5200.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V7200.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V7300.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireGL-V7350.yaml | 1 + .../Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml | 1 + .../ATI/Ultra-Threaded-SE/FireMV-2250.yaml | 1 + .../Mobility-FireGL-V5200.yaml | 1 + .../Mobility-FireGL-V5250.yaml | 1 + .../Mobility-Radeon-HD-2300.yaml | 1 + .../Mobility-Radeon-X1300.yaml | 1 + .../Mobility-Radeon-X1350.yaml | 1 + .../Mobility-Radeon-X1400.yaml | 1 + .../Mobility-Radeon-X1450.yaml | 1 + .../Mobility-Radeon-X1600-Mac-Edition.yaml | 1 + .../Mobility-Radeon-X1600.yaml | 1 + .../Mobility-Radeon-X1700.yaml | 1 + .../Mobility-Radeon-X1800-XT.yaml | 1 + .../Mobility-Radeon-X1800.yaml | 1 + .../Mobility-Radeon-X1900.yaml | 1 + .../Mobility-Radeon-X2300-HD.yaml | 1 + .../Mobility-Radeon-X2300.yaml | 1 + .../Mobility-Radeon-X2500.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1300-AGP.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1300-PCI.yaml | 1 + .../Radeon-X1300-PRO-AGP.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1300-PRO.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1300.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1550-AGP.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1550-PCI.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1550.yaml | 1 + .../Radeon-X1600-PRO-AGP.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1600-PRO.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml | 1 + .../Radeon-X1600-XT-Dual.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1600.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1650-AGP.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1650-GTO.yaml | 1 + .../Radeon-X1650-PRO-AGP.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1650-PRO.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml | 1 + .../Radeon-X1650-XT-Dual.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1650.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1700-FSC.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml | 1 + .../Radeon-X1800-CrossFire-Edition.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1800-GTO.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml | 1 + .../Radeon-X1900-CrossFire-Edition.yaml | 1 + .../Radeon-X1900-G5-Mac-Edition.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1900-XTX.yaml | 1 + .../Radeon-X1950-CrossFire-Edition.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml | 1 + .../Radeon-X1950-PRO-AGP.yaml | 1 + .../Radeon-X1950-PRO-DUAL.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1950-PRO.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml | 1 + .../ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml | 1 + .../Radeon-X1950-XTX-Uber-Edition.yaml | 1 + .../Ultra-Threaded-SE/Radeon-X1950-XTX.yaml | 1 + .../Ultra-Threaded-SE/Stream-Processor.yaml | 1 + .../ATI/Wonder/Color-Emulation-Card.yaml | 1 + .../ATI/Wonder/EGA-Wonder-480.yaml | 1 + .../ATI/Wonder/EGA-Wonder-800+.yaml | 1 + .../ATI/Wonder/EGA-Wonder-800.yaml | 1 + .../ATI/Wonder/Graphics-Solution-Plus.yaml | 1 + .../ATI/Wonder/Graphics-Solution.yaml | 1 + .../ATI/Wonder/VGA-Improved-Performance.yaml | 1 + .../GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml | 1 + .../ATI/Wonder/VGA-Wonder-XL24.yaml | 1 + specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml | 1 + .../Intel/Generation-1.0/i752-Graphics.yaml | 1 + .../Intel/Generation-1.0/i752.yaml | 1 + .../Intel/Generation-1.0/i810-Graphics.yaml | 1 + .../Intel/Generation-1.0/i815-Graphics.yaml | 1 + .../Intel/Generation-1.0/i830M-Graphics.yaml | 1 + .../Intel/Generation-1.0/i830MG-Graphics.yaml | 1 + .../Generation-2.0/Extreme-Graphics-2.yaml | 1 + .../Intel/Generation-2.0/Extreme-Graphics.yaml | 1 + .../Intel/Generation-2.0/i852GM-Graphics.yaml | 1 + .../Intel/Generation-3.0/GMA-900.yaml | 1 + .../Intel/Generation-3.5/GMA-950.yaml | 1 + .../Intel/Generation-4.0/GMA-3000.yaml | 1 + .../Intel/Generation-4.0/GMA-3100.yaml | 1 + .../Intel/Generation-4.0/GMA-X3000.yaml | 1 + .../Intel/Generation-4.0/GMA-X3100.yaml | 1 + .../Intel/Generation-4.0/GMA-X3500.yaml | 1 + .../Intel/PowerVR-SGX545/GMA.yaml | 1 + specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml | 1 + .../Intel/i740/i740-Graphics.yaml | 1 + .../Matrox/G100/Productiva-G100.yaml | 1 + .../GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml | 1 + .../Matrox/G200/Millennium-G200-SD.yaml | 1 + .../Matrox/G200/Millennium-G200.yaml | 1 + .../Matrox/G200/Millennium-G200A.yaml | 1 + .../Matrox/G200/Millennium-G250.yaml | 1 + .../Matrox/G200/Mystique-G200.yaml | 1 + .../Matrox/G400/Marvel-G400-TV.yaml | 1 + .../Matrox/G400/Millennium-G400-MAX.yaml | 1 + .../Matrox/G400/Millennium-G400.yaml | 1 + .../Matrox/G400/Millennium-G450-LP.yaml | 1 + .../Matrox/G400/Millennium-G450-x2-MMS.yaml | 1 + .../Matrox/G400/Millennium-G450-x4-MMS.yaml | 1 + .../Matrox/G400/Millennium-G450.yaml | 1 + .../Matrox/G500/Millennium-G550-PCIe.yaml | 1 + .../Matrox/G500/Millennium-G550.yaml | 1 + specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml | 1 + specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml | 1 + specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml | 1 + specs/GPUs-CONSUMER/Matrox/MP/QID.yaml | 1 + .../Matrox/PX/M9125-PCIe-x16.yaml | 1 + .../Parhelia/Millenium-P650-LP-MDD-PCIe.yaml | 1 + .../Matrox/Parhelia/Millenium-P650-PCIe.yaml | 1 + .../Matrox/Parhelia/Millenium-P650.yaml | 1 + .../Matrox/Parhelia/Millenium-P750.yaml | 1 + .../Matrox/Parhelia/Parhelia-128-MB.yaml | 1 + .../Matrox/Parhelia/Parhelia-256-MB.yaml | 1 + .../Matrox/Parhelia/Parhelia-APVe.yaml | 1 + .../Matrox/Parhelia/Parhelia-DL256.yaml | 1 + .../Matrox/Parhelia/Parhelia-HR256.yaml | 1 + .../Matrox/Parhelia/Parhelia-PCI.yaml | 1 + .../Parhelia/Parhelia-Precision-SDT.yaml | 1 + .../Parhelia/Parhelia-Precision-SGT.yaml | 1 + .../Nvidia/Celsius/GeForce-256-DDR.yaml | 1 + .../Nvidia/Celsius/GeForce-256-SDR.yaml | 1 + .../Nvidia/Celsius/GeForce-6200-AGP.yaml | 1 + .../Nvidia/Celsius/GeForce-PCX-4300.yaml | 1 + .../Nvidia/Celsius/GeForce2-GTS-PRO.yaml | 1 + .../Nvidia/Celsius/GeForce2-GTS.yaml | 1 + .../Nvidia/Celsius/GeForce2-Go-100.yaml | 1 + .../Nvidia/Celsius/GeForce2-Go-200.yaml | 1 + .../Nvidia/Celsius/GeForce2-Go.yaml | 1 + .../Celsius/GeForce2-MX-+-nForce-220.yaml | 1 + .../Celsius/GeForce2-MX-+-nForce-420.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-200-LP.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-200-PCI.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-200.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-400-PCI.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-400.yaml | 1 + .../Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX-PCI.yaml | 1 + .../Nvidia/Celsius/GeForce2-MX.yaml | 1 + .../Nvidia/Celsius/GeForce2-PRO.yaml | 1 + .../Nvidia/Celsius/GeForce2-Ti.yaml | 1 + .../Nvidia/Celsius/GeForce2-Ultra.yaml | 1 + .../Nvidia/Celsius/GeForce4-410-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-420-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-440-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-448-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-460-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-488-Go.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml | 1 + .../Celsius/GeForce4-MX-4000-Rev.-2.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-4000.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-420-PCI.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-420.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-440-8x.yaml | 1 + .../Celsius/GeForce4-MX-440-Mac-Edition.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-440-SE.yaml | 1 + .../Nvidia/Celsius/GeForce4-MX-440.yaml | 1 + .../Nvidia/Celsius/Quadro-NVS-280-SD.yaml | 1 + .../Nvidia/Celsius/Quadro-NVS-50-PCI.yaml | 1 + specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml | 1 + .../Nvidia/Celsius/Quadro2-Go.yaml | 1 + .../Celsius/Quadro2-MXR-Low-Profile.yaml | 1 + .../Nvidia/Celsius/Quadro2-MXR.yaml | 1 + .../Nvidia/Celsius/Quadro2-Pro.yaml | 1 + .../Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml | 1 + .../Nvidia/Celsius/Quadro4-100-NVS.yaml | 1 + .../Nvidia/Celsius/Quadro4-200-NVS.yaml | 1 + .../Nvidia/Celsius/Quadro4-380-XGL.yaml | 1 + .../Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml | 1 + .../Nvidia/Celsius/Quadro4-500-Go-GL.yaml | 1 + .../Nvidia/Celsius/Quadro4-500-XGL.yaml | 1 + .../Nvidia/Celsius/Quadro4-550-XGL.yaml | 1 + .../Nvidia/Celsius/Quadro4-580-XGL.yaml | 1 + .../Curie/GeForce-6100-+-nForce-400.yaml | 1 + .../Curie/GeForce-6100-+-nForce-405.yaml | 1 + .../Curie/GeForce-6100-+-nForce-420.yaml | 1 + .../Curie/GeForce-6100-+-nForce-430.yaml | 1 + .../Nvidia/Curie/GeForce-6100.yaml | 1 + .../Nvidia/Curie/GeForce-6150-LE.yaml | 1 + .../Curie/GeForce-6150-SE-+-nForce-430.yaml | 1 + .../Nvidia/Curie/GeForce-6150.yaml | 1 + .../Curie/GeForce-6200-LE-AGP-512-MB.yaml | 1 + .../Nvidia/Curie/GeForce-6200-LE-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-6200-LE-PCI.yaml | 1 + .../Nvidia/Curie/GeForce-6200-LE.yaml | 1 + .../Nvidia/Curie/GeForce-6200-PCI.yaml | 1 + .../Curie/GeForce-6200-SE-TurboCache.yaml | 1 + .../Nvidia/Curie/GeForce-6200-TurboCache.yaml | 1 + .../Nvidia/Curie/GeForce-6200-X2-PCI.yaml | 1 + .../Nvidia/Curie/GeForce-6200.yaml | 1 + .../Nvidia/Curie/GeForce-6500.yaml | 1 + .../Nvidia/Curie/GeForce-6600-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-6600-GT-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-6600-GT-Dual.yaml | 1 + .../Nvidia/Curie/GeForce-6600-GT.yaml | 1 + .../Nvidia/Curie/GeForce-6600-LE-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-6600-LE.yaml | 1 + .../Nvidia/Curie/GeForce-6600-VE.yaml | 1 + .../Nvidia/Curie/GeForce-6600.yaml | 1 + .../Nvidia/Curie/GeForce-6610-XL.yaml | 1 + .../Nvidia/Curie/GeForce-6700-XL.yaml | 1 + .../Nvidia/Curie/GeForce-6800-GS.yaml | 1 + .../Nvidia/Curie/GeForce-6800-GT-DDL.yaml | 1 + .../Nvidia/Curie/GeForce-6800-GT-Dual.yaml | 1 + .../Nvidia/Curie/GeForce-6800-GT.yaml | 1 + .../Nvidia/Curie/GeForce-6800-GTO.yaml | 1 + .../Nvidia/Curie/GeForce-6800-LE.yaml | 1 + .../Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml | 1 + .../Nvidia/Curie/GeForce-6800-Ultra.yaml | 1 + .../Nvidia/Curie/GeForce-6800-XE.yaml | 1 + .../Nvidia/Curie/GeForce-6800-XT.yaml | 1 + .../Nvidia/Curie/GeForce-6800.yaml | 1 + .../Curie/GeForce-7000M-+-nForce-610M.yaml | 1 + .../Curie/GeForce-7025-+-nForce-630a.yaml | 1 + .../Curie/GeForce-7050-+-nForce-610i.yaml | 1 + .../Curie/GeForce-7050-+-nForce-620i.yaml | 1 + .../Curie/GeForce-7050-+-nForce-630a.yaml | 1 + .../Curie/GeForce-7050-+-nForce-630i.yaml | 1 + .../Curie/GeForce-7050-PV-+-nForce-630a.yaml | 1 + .../Curie/GeForce-7050-SE-+-nForce-630a.yaml | 1 + .../Curie/GeForce-7100-+-nForce-630i.yaml | 1 + .../Nvidia/Curie/GeForce-7100-GS.yaml | 1 + .../Curie/GeForce-7150-+-nForce-630i.yaml | 1 + .../Curie/GeForce-7150M-+-nForce-630M.yaml | 1 + .../Nvidia/Curie/GeForce-7200-GS.yaml | 1 + .../Curie/GeForce-7300-GS-Low-Profile.yaml | 1 + .../Nvidia/Curie/GeForce-7300-GS.yaml | 1 + .../Nvidia/Curie/GeForce-7300-GT-AGP.yaml | 1 + .../Curie/GeForce-7300-GT-Mac-Edition.yaml | 1 + .../Nvidia/Curie/GeForce-7300-GT.yaml | 1 + .../Nvidia/Curie/GeForce-7300-LE.yaml | 1 + .../Nvidia/Curie/GeForce-7300-SE.yaml | 1 + .../Nvidia/Curie/GeForce-7350-LE.yaml | 1 + .../Nvidia/Curie/GeForce-7500-LE.yaml | 1 + .../Nvidia/Curie/GeForce-7600-GS-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7600-GS.yaml | 1 + .../Nvidia/Curie/GeForce-7600-GT-AGP.yaml | 1 + .../Curie/GeForce-7600-GT-Mac-Edition.yaml | 1 + .../Nvidia/Curie/GeForce-7600-GT.yaml | 1 + .../Nvidia/Curie/GeForce-7600-LE.yaml | 1 + .../Nvidia/Curie/GeForce-7650-GS.yaml | 1 + .../Curie/GeForce-7800-GS+-20Pipes-AGP.yaml | 1 + .../Curie/GeForce-7800-GS+-24Pipes-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GS+-AGP.yaml | 1 + .../Curie/GeForce-7800-GS-20Pipes-AGP.yaml | 1 + .../Curie/GeForce-7800-GS-24Pipes-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GS-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GT-Dual.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GT.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GTX-512.yaml | 1 + .../Nvidia/Curie/GeForce-7800-GTX.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GS-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GS.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GT.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GTO.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GTX.yaml | 1 + .../Nvidia/Curie/GeForce-7900-GX2.yaml | 1 + .../Nvidia/Curie/GeForce-7950-GT-AGP.yaml | 1 + .../Nvidia/Curie/GeForce-7950-GT.yaml | 1 + .../Nvidia/Curie/GeForce-7950-GX2.yaml | 1 + .../Curie/GeForce-Go-6100-+-nForce-Go-430.yaml | 1 + .../Curie/GeForce-Go-6150-+-nForce-Go-430.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6200-TE.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6200.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6250.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6400.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6600-TE.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6600.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6800-Ultra.yaml | 1 + .../Nvidia/Curie/GeForce-Go-6800.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7200.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7300.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7300T.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7400.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7400T.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7450.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7600-GT.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7600.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7700.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7800-GTX.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7800.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7900-GS.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7900-GTX.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7900-SE.yaml | 1 + .../Nvidia/Curie/GeForce-Go-7950-GTX.yaml | 1 + .../Nvidia/Curie/Quadro-FX-1400.yaml | 1 + .../Nvidia/Curie/Quadro-FX-1500.yaml | 1 + .../Nvidia/Curie/Quadro-FX-1500M.yaml | 1 + .../Nvidia/Curie/Quadro-FX-2500M.yaml | 1 + .../Nvidia/Curie/Quadro-FX-3400.yaml | 1 + .../Nvidia/Curie/Quadro-FX-3450.yaml | 1 + .../Nvidia/Curie/Quadro-FX-350.yaml | 1 + .../Nvidia/Curie/Quadro-FX-3500.yaml | 1 + .../Nvidia/Curie/Quadro-FX-3500M.yaml | 1 + .../Nvidia/Curie/Quadro-FX-350M.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4000-SDI.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4000.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4400.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4400G.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4500-SDI.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4500-X2.yaml | 1 + .../Nvidia/Curie/Quadro-FX-4500.yaml | 1 + .../Nvidia/Curie/Quadro-FX-540.yaml | 1 + .../Nvidia/Curie/Quadro-FX-550.yaml | 1 + .../Nvidia/Curie/Quadro-FX-5500-SDI.yaml | 1 + .../Nvidia/Curie/Quadro-FX-5500.yaml | 1 + .../Nvidia/Curie/Quadro-FX-550M.yaml | 1 + .../Nvidia/Curie/Quadro-FX-560.yaml | 1 + .../Nvidia/Curie/Quadro-FX-Go1400.yaml | 1 + .../Nvidia/Curie/Quadro-FX-Go540.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-110M.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-120M.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-210S.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-285.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-300M.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml | 1 + .../Nvidia/Curie/Quadro-NVS-510M.yaml | 1 + .../Curie/Quadro-Plex-1000-Model-II.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT.yaml | 1 + .../Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT2-M64.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml | 1 + .../Nvidia/Fahrenheit/Riva-TNT2.yaml | 1 + .../Nvidia/Fahrenheit/Vanta-LT.yaml | 1 + .../Nvidia/Kelvin/GeForce3-Ti200.yaml | 1 + .../Nvidia/Kelvin/GeForce3-Ti500.yaml | 1 + .../GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Go-4200.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Ti-4200.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Ti-4400.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Ti-4600.yaml | 1 + .../Nvidia/Kelvin/GeForce4-Ti-4800.yaml | 1 + .../Nvidia/Kelvin/Quadro-DCC.yaml | 1 + .../Nvidia/Kelvin/Quadro4-700-Go-GL.yaml | 1 + .../Nvidia/Kelvin/Quadro4-700-XGL.yaml | 1 + .../Nvidia/Kelvin/Quadro4-750-XGL.yaml | 1 + .../Nvidia/Kelvin/Quadro4-900-XGL.yaml | 1 + .../Nvidia/Kelvin/Quadro4-980-XGL.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5100.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200-LE.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200-PCI.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml | 1 + .../GeForce-FX-5200-Ultra-Mac-Edition.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5500-PCI.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5500.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5600-XT.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5600.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5700-EP.yaml | 1 + .../GeForce-FX-5700-Engineering-Sample.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5700-LE.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5700-VE.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5700.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5800.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5900-XT.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5900-ZT.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5900.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5100.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml | 1 + .../Rankine/GeForce-FX-Go5200-NPB-32M.yaml | 1 + .../Rankine/GeForce-FX-Go5200-NPB-64M.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5200.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5250.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5300.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5350.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5600.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5650.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-Go5700.yaml | 1 + .../Nvidia/Rankine/GeForce-PCX-5300.yaml | 1 + .../Nvidia/Rankine/GeForce-PCX-5750.yaml | 1 + .../Nvidia/Rankine/GeForce-PCX-5900.yaml | 1 + .../Nvidia/Rankine/GeForce-PCX-5950.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1100.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-1300.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-2000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-3000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-3000G.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-330.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-500.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-600-PCI.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-700.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-Go1000.yaml | 1 + .../Nvidia/Rankine/Quadro-FX-Go700.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-AGP.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-PCI.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml | 1 + .../Nvidia/Rankine/Quadro-NVS-55-PCI.yaml | 1 + .../Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml | 1 + .../Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml | 1 + .../Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml | 1 + .../Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml | 1 + .../Playstation-Vita-GPU.yaml | 1 + specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml | 1 + .../GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml | 1 + .../XGI/XG4/Volari-Duo-V5-Ultra.yaml | 1 + .../XGI/XG4/Volari-Duo-V8-Ultra.yaml | 1 + specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml | 1 + specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml | 1 + .../GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml | 1 + specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml | 1 + .../GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml | 1 + specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml | 1 + src/js/pure.js | 18 +++++++++++++----- src/js/row-data.js | 4 ++++ 723 files changed, 738 insertions(+), 5 deletions(-) diff --git a/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml index e7c9d855..ccc3bd9b 100644 --- a/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml +++ b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml @@ -29,3 +29,4 @@ data: Width: 161 mm Height: 110 mm Market: Console + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml index 014485b1..6dd21c4b 100644 --- a/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml +++ b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml @@ -28,3 +28,4 @@ data: Width: 197 mm Height: 60 mm Market: Console + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml index dc61b465..2dfe380c 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml @@ -29,3 +29,4 @@ data: Width: 60 mm Height: 230 mm Market: Console + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml index 5d20fd87..5c93c780 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml @@ -29,3 +29,4 @@ data: Width: 290 mm Height: 65 mm Market: Console + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml index aec33996..2d05da45 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml @@ -29,3 +29,4 @@ data: Width: 98 mm Height: 274 mm Market: Console + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml index b4f3e2cc..d96808ef 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml @@ -29,3 +29,4 @@ data: Width: 98 mm Height: 274 mm Market: Console + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml index 7d2fab91..a22b195a 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml @@ -30,3 +30,4 @@ data: Width: 100 mm Height: 260 mm Market: Console + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml index c896415b..fdb29717 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: 1x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml index 3471722d..cd764a08 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml index 71d382dc..0f8ccd51 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml index 84230648..2f8d4197 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml index 57c62567..0ad9bbe7 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml index dc120328..8b533a1d 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml index fcea71a5..8101428f 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml index ee0da555..1f32355c 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml index a2fc6762..17fd2dd0 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml index f843d835..09a35d3d 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml index 6a9d2b55..e2b01582 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml index bde1494f..4feffa55 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml index db5c6d2d..c01e2c8a 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: 1x Molex + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml index 31fa7930..3b35d478 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: 1x Molex + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml index 299eccb0..f8439ef8 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: 1x Molex + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml index 5dc67dc5..3694ee81 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: 1x Molex + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml index 44cae372..c2f08b40 100644 --- a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml +++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml index 99a992db..bb8c37aa 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA1x S-Video + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml index 4a3d2479..1898e27e 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml index b12eb432..e4b844c2 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml index 3975042c..1a325e9f 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: No outputs Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml index 7f9e5c65..2ec8e3cd 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml index ce9cb63a..e3495208 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml index 87259b40..e156e344 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml index 7ce93c99..70e8d060 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml index 56c4dd57..1e1fca52 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml index 89610af0..89df555b 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml index cf791df5..05df5aa2 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml index b2afd457..aee72449 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml index dc7819e3..04718d0f 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml index d7fabcc6..07664b1e 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml index a5a60346..38238c2e 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml index 4c85eacd..eaba4413 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml index 862122ac..ea51f8c3 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml index 6de05872..22a4cf9a 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml index a6cf09c9..e04e1188 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml index 88e9ffef..5871d6d0 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml index ccc7ead4..8dc5019f 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml index 0b7c170c..9c31d8e5 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml index b142bece..d96c85b9 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml index bdcda780..74df4050 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml index 2c67a6d2..e5d281e1 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml index 3e5f2f39..91279f82 100644 --- a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml +++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml @@ -29,3 +29,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml index ed9c4fdd..dd319991 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml index 4661ad5c..bd247ba6 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: No outputs Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml index 1a413733..3012c53c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml index 56bc5768..e821ebda 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml index 87abd33d..90175b73 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml index 700a3aa9..43123792 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 2x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml index 17990a9d..5764b55d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 2x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml index f42217fc..bdf0f2cb 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 2x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml index 45df4acf..bbb92466 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml index 1984cced..141e1e86 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml index 0dc4ca1d..d5a30b7e 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml index ea30abec..8d23db37 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x LFH60 Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml index ae959a7e..b1dc9dc7 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml index 48093622..70edd713 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml index 07ac15c2..ea12b6d8 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml index ece0c9f7..38f4fab9 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml index e247c709..765b314c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml index cf36c6c3..2f80051c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml index 522436b2..835543d5 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: No outputs Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml index a14dabb4..a3e17d19 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml @@ -29,3 +29,4 @@ data: Power Connectors: None Length: 170 mm Width: 69 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml index 4f6ea766..c0f9cc9c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml @@ -29,3 +29,4 @@ data: Power Connectors: None Length: 170 mm Width: 69 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml index b3437be2..d63a7757 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml @@ -29,3 +29,4 @@ data: Power Connectors: None Length: 170 mm Width: 69 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml index 7dd2485a..8260a0fa 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M10 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml index 2f2283dc..56600ef0 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M11 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml index 6dff95d2..d308f04b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M22 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml index e28a912f..dd0543c9 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M24 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml index 5e850f8f..3f3e22ab 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml @@ -25,3 +25,4 @@ data: GPU: M10 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml index 90425a90..4c0cf67d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M12 9550 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml index 1bb9dd24..87b91414 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml @@ -25,3 +25,4 @@ data: GPU: M10 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml index c9b68512..a6f3a259 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml @@ -25,3 +25,4 @@ data: GPU: M10 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml index c4853896..263b642a 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml @@ -25,3 +25,4 @@ data: GPU: M10 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml index f65ee8d2..e6d4031b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml @@ -25,3 +25,4 @@ data: GPU: M10 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml index 74f435ca..ba975534 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M11 P TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml index cfb0898f..00e15843 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml index d4e24db6..cc2e0e3f 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M22 X300 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml index 8b36586b..74fcf926 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M24C TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml index 91710703..955e387f 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M24 X600 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml index e486def6..8aa1f0ae 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml index f918e296..3cee23ff 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml index 957ac0a3..6f803189 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml index d9347a20..c36dec08 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml index b89bf5e2..c828489e 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml index 64fe2eaf..6a1f7ad4 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml index fedd44aa..87afb2fb 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml index 0b312c46..ee8d7aba 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml index 1fd099e2..f4cf7c2c 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml index a1d01f7b..0c698b19 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml index 94cb86f3..e71db214 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml @@ -27,3 +27,4 @@ data: Slot Width: Dual-slot Outputs: 4x DVI Power Connectors: 2x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml index 46af852f..7302bee4 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml index 7e035055..6059f7d7 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml index a68ea999..cc35bd73 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml index 0035f492..47da3292 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml index d553cd90..d8baa27d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml @@ -33,3 +33,4 @@ data: Length: 215 mm Width: 108 mm Height: 16 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml index 196b61f3..b64d4a89 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml index 0cce972a..b32f28ac 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml index 3030eb95..430e542b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml index 4ca59f0e..7dcf6c83 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml index 1e1af425..808de214 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml index b4ea8d43..48f48463 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml index 5504cbcf..26510c4d 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml index 5ff7ba4c..f875f312 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml index b6de835c..581c3c61 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml index 4341d912..78ea495b 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml index 2d9aae81..1d3f21e5 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml index f4ef54bb..0a814bc1 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml index 6f9150ce..e6db3080 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml index e358504b..f45fc555 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml index 37b161c2..c544139e 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml index 8d081760..5a0bc519 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml index 22b48a9b..5c9a92cd 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml index 713a8a77..ffdd9858 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml index 5a5a2031..478b2599 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml index 8ffbd52a..0ddf3341 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml index 32dd7c12..074fadc5 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml index fbff009f..5dcbae85 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml index 56699f45..b1387bd1 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml index 7ee6da71..4836e550 100644 --- a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml index d78712c8..9e151627 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml index 4ad9d319..827fff23 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml index 76af6702..60250997 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml index d6c289e0..a6e91d49 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml index 410a3fbc..2192e2bb 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml index 215d61b5..a012e0d8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 183 mm Width: 111 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml index 6ba2e85a..1229d8b1 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 211 mm Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml index 4bc8fdc7..e9f6d07f 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 211 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml index 87a74728..1a4d3d18 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml index 21c4874c..25839978 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M26 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml index a2c50fb9..5ececbf7 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M18 9800 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml index 936bcda3..f50cc433 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M26-CSP128 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml index 3b7bb5f8..4f0e149d 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M26 X700 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml index a4ba261a..a3c3ecdd 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M28 X800 XT TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml index 982493c8..cba19fd5 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M28 X800 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml index 2e1e4978..ba0e8e0a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml index aeb8e1ff..46e855c9 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml index 35c8afbf..8694dce3 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml index 9763a077..d9485991 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml index 1de4d1b6..bf84e35e 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml index 4c6e9a18..b0462d55 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml index 1dc0ce9f..25ecfdbb 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml @@ -33,3 +33,4 @@ data: Length: 190 mm Width: 109 mm Height: 16 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml index 8f87ed94..77a40f7b 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml index 1f000468..6f3502ae 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml index 23a3cec9..590ab658 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml index dfd4af53..290a91e1 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml index 8f7febd2..baa2a83b 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Dual-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml index 0386e29c..1616dafd 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml index 9bd1769a..2af013dd 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml index 2a07592d..a3b94376 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml index a810a421..c5584deb 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml index a9b21fa1..fd7f6636 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml index e1718802..dfe0729a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml index 4fe5afc4..8d32acf0 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml index 91d28400..2f4350c8 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml index baac700f..2ca98781 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml index 0e46d721..60eff9c5 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml index c17837f7..40a0dbdd 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml index 4581898f..3d86036e 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml index 834de9e2..5b503f62 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml index 532b7c2b..a85c1284 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml index 2a9a0e9a..d3d54345 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml index 9dbacd9d..ea33da90 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml index 3543f934..a6939281 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml index e4994b4e..9d83c841 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml index 5b6bfc8b..c96173ae 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x DMS-59 Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml index f5eddf59..6490841a 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml index b27f3af8..1c8bc9fa 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml index 3a8d21c7..cbfee0ab 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml index ec07ce81..4f4d3f67 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml @@ -33,3 +33,4 @@ data: Length: 186 mm Width: 111 mm Height: 41 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml index a6bf8100..e75b3106 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml @@ -33,3 +33,4 @@ data: Length: 186 mm Width: 111 mm Height: 41 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml index 78dac47a..57882914 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml index fbda0349..127a66c1 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml index 55b7c3ef..2d3feb9d 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml index 9a36e517..e9c2d2ef 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml index 613103a7..322e7381 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml index fd9226ab..c47a5660 100644 --- a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml index 9fc7b03b..ba5ee592 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml index 28576dae..c80f6faa 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml index 40ed6a65..65fdd0a6 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml index ebc25166..0c3cc45e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml index c4fbcca1..bcafe54e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml @@ -30,3 +30,4 @@ data: Length: 150 mm Width: 82 mm Height: 13 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml index f1d2c9ae..9d9bfcf2 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x DB13W3 + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml index eb37fc97..061b02b6 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml index 6d4a206f..48bb1f15 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml index 6c8ac8a8..09cd745f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml index 65fe2184..85da6dad 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml index 5e2b6688..380a42bf 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml index da9a9aac..84ee85c1 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml index fb54aa75..fac667e2 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml index b2f2e1fe..1c064c28 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml index d9dbc0cc..35614b93 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml index 8a20a24e..160cd2ae 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml index a794f158..df6d59df 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml index 9fede3c9..8d323fd0 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml index a24e2222..1c57b536 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml index d8643b95..d8640ac3 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml index f7297c96..d048ef00 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml index 74b77709..896a3087 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x DB13W3 + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml index 62df4a81..27575a73 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x DB13W3 + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml index 0cf5c2f0..d1626590 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml index a71e5986..d135366e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml index 936ef3bb..28f3262e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: MXM Module Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml index 6373fdda..43d27b0d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x DB13W3 + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml index f2335556..830e74a9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x DB13W3 + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml index 9d45e2e1..e930f2ce 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml index 25fe7d13..f10faacd 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml index 598df07a..1ca43238 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml index 7e686a24..171362c8 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml index e9b29351..d9ea7e14 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml index 2ea4adcd..b8ca8cd2 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml index d69500a6..d0ae421e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml index dd8fde93..31cd3937 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml index 2ad8528d..341d51e7 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml index ef75d14a..aedf1cde 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml index f6cdd249..bdd0fb5d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml index e9bbf5e9..d3c27e8f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml index df294492..bdbc94e4 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml index 3779e30d..b88e709f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA Power Connectors: 1x Molex + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml index bb7c33f2..1d10cfde 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml index 225d8c6b..f69ce245 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml index a0b4c910..06653e20 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml index 67eb2336..23c0553f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml index 7522b2ec..83bce79e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Motherboard Dependent Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml index 9ec116a6..971ec902 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml index 8e66b0ca..375343ff 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml index 52797286..2a1d31dc 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Motherboard Dependent Power Connectors: None + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml index 2a217378..51d2160e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml index 3b914988..14616596 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml index 7d0249f1..0d987fe0 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml index 96f4b42d..609ce58c 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml index 01af2434..02078c99 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA1x S-Video Power Connectors: None Length: 165 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml index 64146f7a..5d075857 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml index dea5db35..df365ec5 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml index 2ffec139..bf8f85a9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml index 2a7874ce..c464b3ed 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 2x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml index 6b60515e..bec69eb4 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml index 2f4aaa15..25c1c0d7 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml index 85a9b514..d0f9e9e5 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml index d61dd92c..70983302 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml index b4bd4a54..27e9521c 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml index 0baf0258..1a735c27 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml index 1bfd13d9..e1d4a5b5 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml index faf7435c..7bb1f8e9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml index 31b2fa54..407c97f1 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 170 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml index 1431441e..e4e7a237 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml @@ -27,3 +27,4 @@ data: TDP: 27 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml index d0d99237..142b37cb 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M9-CSP64GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml index a2776763..8b946c54 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M7-P TDP: 27 W Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml index d68a1369..246c9ead 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M7-16CL TDP: 27 W Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml index ea609065..c483fdbf 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml index 242ce98a..c4959129 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M9 9000 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml index 825fb008..14a91858 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml index 5fed5086..8cb7f389 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml index 6905fef7..397073e9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M9 9200 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml index 4acb0f18..2453854e 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml index 67192b1e..38a57a85 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml index 8ee5fc28..d4740092 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml index 28b082bb..b9d17218 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml index e88ad6dc..21113f5f 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Length: 330 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml index b3da4c04..dbd06382 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml index f3d65836..c5d3cb52 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml index 3d99a073..4eb28c64 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml index 0a66009f..7bfe15ba 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml index c40b4997..5b45980b 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 167 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml index 04d5b355..00c77ecf 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml index 87996d71..2c391e88 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml index e51fbabf..e8d76be7 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: No outputs Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml index 3504ed19..999fe6e9 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml index cd64effc..93dd8707 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml index e17c55cc..c87aecdf 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml index fb602a86..f5ddffb3 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml index e955b128..38372ad4 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml index e39a9e42..702088f7 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml index b283fb78..d1b1aff2 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml index 00ba8b3f..09c0535d 100644 --- a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml index aa99ed4e..63e7d0bd 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml @@ -29,3 +29,4 @@ data: Power Connectors: None Length: 249 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml index c998a87f..0f902525 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml @@ -31,3 +31,4 @@ data: Length: 254 mm Width: 111 mm Height: 19 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml index c45fd0e1..b19bac51 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml @@ -30,3 +30,4 @@ data: Power Connectors: 1x 6-pin Length: 248 mm Width: 111 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml index 885119be..ba32d06f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml index 93d76cbc..664472d5 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml index f9e51e1b..6c119dcb 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml index 260130b5..fb6c40f3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml index 234894e3..0c92aebc 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml index 796c70e4..33597741 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml index 4becffee..728ccaf1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml index 92aac106..bd9c2117 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml @@ -29,3 +29,4 @@ data: Power Connectors: None Length: 170 mm Width: 69 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml index 347124b9..6f7c9736 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml @@ -30,3 +30,4 @@ data: Length: 170 mm Width: 69 mm Height: 23 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml index d208fdcb..5a2d0207 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M56 GL TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml index d7fbf4f1..c845eb62 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M66-P TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml index 743cf8d1..1f521f19 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M71-S TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml index 0e8b1977..cc7f5acf 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M52-S TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml index 7b36d5c1..37f9fce3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M62-CSP64 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml index 8e03e937..fa5ad040 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml @@ -25,3 +25,4 @@ data: GPU: M54 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml index 61036854..08f006ce 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M64-CSP128 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml index e122a795..504d8f1f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml @@ -25,3 +25,4 @@ data: GPU: M56 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml index 7af50442..467aae9b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M56 X1600 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml index 1bb51f15..7a2d3a0f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M66-P TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml index 1b4e054f..a1e4b6b6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M58 P TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml index fe27d6bd..c7e8f8b0 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: MXM Module Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml index 501549b4..ff3871b6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: MXM Module Outputs: Portable Device Dependent + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml index 8f786714..343acf91 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M71-S TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml index a9ccb284..63fde2ef 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml @@ -26,3 +26,4 @@ data: GPU Variant: M64-M TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml index 4d10e2d0..c58e97e8 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml @@ -25,3 +25,4 @@ data: GPU: M66 TDP: unknown Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml index e04cac41..73ec8887 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml index 0ced9fbd..b3717a85 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml index 4ef3216e..8d41aafa 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml index ef093f79..05f73d9a 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml index 5a98d17a..64b3cb92 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml index 35cc2570..c537da11 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: No outputs Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml index cec4c4d6..9f57a0d6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml index 40a879c6..bbe995cf 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml index 6bf50501..3f1765fa 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml index f19548ef..3b265877 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml index 320056f2..4e644527 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml index e5391766..c86382f5 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml index f339eecc..c200f406 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: Floppy + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml index c26b3f18..573b1323 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml index 7adcb6f1..d82bd697 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml index 1d9400c3..f974295d 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml index f74f6cfd..e182b072 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml index a16463e4..362bad9e 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml @@ -29,3 +29,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml index 0eb4a541..6703817b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml index 4fd8f6ab..54c2cc91 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml index fda3a8c0..841a0b94 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x HDMI1x VGA Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml index ce9853ad..f10d05c3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml index e4a43556..39cdc00c 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml index 0384f495..f79a55a9 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml index 53aad2c7..476f9ee1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml index 37243386..f1d3e417 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: 1x 6-pin + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml index b3347310..33a14150 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml index 2213dfe0..206e22eb 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml index 24e5347f..6270c971 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml index c6dabd53..937042b8 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml index b1663059..f7a04eef 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml index 5e4b0c52..00db9b48 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml @@ -33,3 +33,4 @@ data: Length: 254 mm Width: 111 mm Height: 19 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml index c882dbef..a7090a4f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml @@ -28,3 +28,4 @@ data: Outputs: - 2x DVI - 1x S-Video + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml index ee606976..35e7180f 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml @@ -33,3 +33,4 @@ data: Length: 254 mm Width: 111 mm Height: 19 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml index 1e64cd2f..5050af5d 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml index 9c8fe985..54806008 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml index 4373d896..e81ace05 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml index d5a6698e..c21d900c 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml index 58a8aa23..330826e1 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Length: 242 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml index f03a7be4..1805596c 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Length: 242 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml index 085dd088..aa2fad54 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VHDCI Power Connectors: 1x 6-pin + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml index a76adf50..3f2541f2 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 2x Molex + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml index 9e8e304b..92beb4d3 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml index 975b5339..cfc8470b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 2x Molex + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml index 7c784ccb..23e31f9b 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 2x 6-pin Length: 300 mm + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml index dd4719f8..4fdd9af6 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 228 mm Width: 111 mm + Pixel Shaders: 36 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml index ef93cde3..1dca81fe 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml index 8817eb71..3738186c 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml index 881c46cc..444c51d4 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml @@ -31,3 +31,4 @@ data: - 1x VHDCI Power Connectors: 1x 6-pin Length: 230 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml index 42069a38..e76cc52c 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Length: 230 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml index 4ca4fe8d..876baf74 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml +++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 241 mm Width: 111 mm + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml index 5c9e5cc3..496d0593 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml index 83cc2d50..34025454 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml index 22d771b1..3ebcc26d 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml index 63dcd869..19e2d4ad 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml index e4d5e956..73dd1bcc 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml index 443620ce..937de7c5 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 0 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml index d4ff0794..c45eea70 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml @@ -26,3 +26,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Length: 178 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml index e1ee1bb3..887f1d96 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml index 04a83970..4bf039e1 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml index 616cb48b..f5f7f753 100644 --- a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml +++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml @@ -25,3 +25,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml index af65e335..623a5318 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml index b1c1de9d..b9907f36 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA2x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml index c11533e4..4c5e62c8 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml index 91e3282d..d496ee77 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml index 76632698..b9ea51ff 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml index 6b827791..61e1b7c7 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml index 734b8e11..cefd8398 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml index 77d77325..f8ac0c6e 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml index ca21139d..35cd9439 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml index 45493625..98e95ad5 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml index e6c76e0b..8dce7d36 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml @@ -27,3 +27,4 @@ data: TDP: 7 W Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml index e5a1f990..1a7d6d8d 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml @@ -27,3 +27,4 @@ data: TDP: 13 W Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml index 1e4c5271..36f7588e 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml @@ -26,3 +26,4 @@ data: TDP: 13 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml index d9c7c6da..3903bcc2 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml @@ -27,3 +27,4 @@ data: TDP: 13 W Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml index 0703040f..71718243 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml @@ -27,3 +27,4 @@ data: TDP: 13 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml index 79a225d9..24655802 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml @@ -27,3 +27,4 @@ data: TDP: 13 W Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml index a8b7fd4a..a1b6ff02 100644 --- a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml +++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml index 52a200c5..5cc33c73 100644 --- a/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: 1x VGA + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml index 81633f33..57149c59 100644 --- a/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml +++ b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml index b9b988b5..47c871bf 100644 --- a/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml index 55b5ea8e..aa256750 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml @@ -30,3 +30,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml index ff3afc6d..45777d9d 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml index ca36958c..aa29b174 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml index 8596fe0d..5bf00ac7 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml index 1ca90a5d..db036594 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml index 9cb1c72e..49aeef4f 100644 --- a/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml @@ -30,3 +30,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 1 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml index cca41316..ce1d4263 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml @@ -30,3 +30,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml index ac1863b2..e494fe99 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml index 02c64f19..2dfbdd78 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml @@ -30,3 +30,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml index 8e2431ef..1d422176 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x DVI Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml index 4a3a9fb7..f155263f 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml @@ -30,3 +30,4 @@ data: Length: 165 mm Width: 97 mm Height: 36 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml index 31a2aec6..0401a635 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml @@ -29,3 +29,4 @@ data: Length: 165 mm Width: 97 mm Height: 36 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml index e3317ee9..c485cbb1 100644 --- a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 150 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml index 7e136e3a..d71b46d1 100644 --- a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x DVI Length: 112 mm Width: 97 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml index c59f6998..ece267f4 100644 --- a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml +++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml index ad1dccec..9f8054c9 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x LFH60 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml index 3cafe838..b139579b 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x DVI Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml index 58bf0034..50f7a45a 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x LFH60 Power Connectors: None Length: 190 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml index d6fec78b..229e9903 100644 --- a/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml +++ b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x DVI Power Connectors: None Length: 165 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml index 1619445b..37aa46aa 100644 --- a/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml @@ -30,3 +30,4 @@ data: - 2x LFH60 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml index f83fa3fe..b79b81bf 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x LFH60 Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml index 4b64d96e..a27841c8 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml index 237d4c41..e98f678b 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml index a8d5978c..a88c583c 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml index 51fd95f4..427ac8b7 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 175 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml index 3a331c7c..19d65263 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 175 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml index 9befe351..6791322f 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml @@ -30,3 +30,4 @@ data: Length: 168 mm Width: 97 mm Height: 36 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml index d6988afb..c8979ab2 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x LFH60 Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml index 0ba5b9fd..0ab41da0 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x LFH60 Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml index 171db0db..c62a101b 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml index e1ca216d..b11cf18e 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x DVI Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml index 3a6fdba8..b9f7f719 100644 --- a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml +++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x DVI Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml index 25c3d59a..01642b2e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml index 56a4d9db..079bc616 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml index 180ff1c2..000c137d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml index 21d5fc86..21de6a0a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml index 23587346..a33c4970 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml index fb612b2d..42991e2f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml index 9d234601..260a0f83 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml @@ -27,3 +27,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml index e1048eca..90c9576c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml @@ -27,3 +27,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml index 5e65547f..89f51a5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml @@ -27,3 +27,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml index 1284ae8d..d72cdcd3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml index 7c2721ca..2dceb372 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml index 8c786782..66309286 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml index f1d72f6d..9ee1ba1c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml index 5bb3b05a..203bc68a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml index 73bfee46..fb11c7ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml index 6036fb27..c8f345f6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml index acac7758..7999fa16 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml index d985cbf2..c2a83488 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml index 8552b92d..d788f3e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml index 7fede0c5..a74a0ae5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml index e1b2ada6..04234713 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA Power Connectors: None Length: 183 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml index 4096e763..bf4b61c3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA2x S-Video Power Connectors: None Length: 165 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml index b9c813eb..a324a784 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x VGA Power Connectors: None Length: 183 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml index 3de191af..9fdeaedc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml index 5d0ed639..73f25dd8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml index 45a4dc90..f5069215 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml index c3942b6e..8682f572 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml index 8d236a8d..2fff3a02 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml index 7ecb48bf..3cb2aad5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml index 8fbe97eb..0edff174 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml index fccf210b..5e815c74 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml index 3ecfcdc4..5a308e83 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml index 779568d1..7c69a034 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml index e3fed0e1..412356b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml index 3b28522f..9dbd13d5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml index 71756a42..c54ea13a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml index ed917c3f..376ce3cf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml index b1380d72..ee90293d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml index 953dbcb8..3f0396e1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml index 05ec9554..fc6c512e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml index 1815c3a0..d5b2963a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml index 23efba4f..eb7cae73 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml index 6f355920..4cf733dc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml index 7436c0e9..71afb1b6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml index 20bb07df..0ede3007 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml index 36abecd1..8e2359c0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml index 81b7046b..03d7eeb1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml index 0b2d0cca..5768cba1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x LFH60 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml index ddbbdf1b..ed2336dc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml @@ -28,3 +28,4 @@ data: Outputs: 1x LFH60 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml index 4e4821ab..8e5254c7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml index 94486564..ea728d00 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 2x LFH60 Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml index 98b473d7..c68ec766 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml index 7ce6a000..e14d42e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x LFH60 Power Connectors: None Length: 168 mm + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml index 0be6b434..1cd5a26f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x LFH60 Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml index 4de7feee..c7ab78f2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x LFH60 Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml index 69d9faf5..130bbbab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml index 7e7493a1..e8ddd192 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml index e13d5d6d..bffa8b3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml index af22454c..18cdbff4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml index 150cf458..3d1e859a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml index 3995e604..4bd15fc2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml index 45121860..bcd72c03 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml index 805351df..bdd5ba9c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml index c41e087f..c2788344 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml index 081a9fbc..6d2edbfa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml index f6e5a4c5..d69a1cf7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml index 56032581..03d3d73e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml index 4f77ea12..14a0d6bc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml index 76d60d63..ccfefc24 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml index 6afdce62..c7fd5eed 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Length: 165 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml index a840608a..b82f0176 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml @@ -28,3 +28,4 @@ data: Outputs: 2x DMS-59 Power Connectors: 1x 6-pin Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml index 1fb63609..9a80e6e9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml index 7f314efd..8f494218 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml index b0da4aca..d628d962 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml index 53dc4022..a88caa93 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml index 1b5ec2e7..3dca861c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml index cbd4bb9d..a7a6dc65 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml index 6be80569..dd9834f1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml index d7d6e436..cde2f8f0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml index 47ef6e44..8523f4b5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml index 9a5a5156..54a5f518 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml index 56fefc8a..e734c7c4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml index 8cf290ea..90f666b1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA Power Connectors: 1x 6-pin + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml index 4db0a198..ab544b49 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml index 5166cf22..6cdb0469 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 305 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml index b6fd9ed8..0b07b9ae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml @@ -29,3 +29,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml index 7c9caa67..43e2ed35 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml index 758aeb98..1447f1d3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Dual-slot Outputs: 2x DVI Power Connectors: 1x 6-pin + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml index b24c3a67..eaf051f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml index ea61ea0f..17ad673d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 305 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml index a65a2142..2284ec49 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Length: 197 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml index 2e8eedf2..0ccbe386 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml index 74afd673..b9fd5b0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml index 0c2996e4..59ff83b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml index 63da2fcc..9176f31a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml index 4461bf5d..b932d868 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml index 389d2db5..e7625802 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml index 7bad7346..9fcae8f5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml index b0fbcd11..91068238 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml index 742ff7b0..c95595ee 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml index 33947483..8ef014e2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml index 4d5d219a..9b080672 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml index 8dc07693..ffd138bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml index f0a8e995..195df537 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml index fcec3798..a94bb2e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml index 2788653b..b343fc42 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml index 14895b99..cc503834 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml index 807ffea4..f6b7e34a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml index 5e5ab876..f9e76d14 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml index 36240fb4..4f91ebb2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml index b1b3a02c..70a4ec47 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml index 9e9c4993..c3917a8f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml index 44001ed4..80085c9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml index 8591fe5a..e44b9d13 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml index bb52cad9..293f4976 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml index fa242281..47fd896a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml index 050a9115..3bdaf2db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml index 918429ff..a55828d6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml index 5740fe6f..b0afaa21 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml index 1190359e..5cb45eae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x DVI Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml index 21033d55..97009487 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml index 9ffc4e77..a47b0424 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml index 0d75e12e..f22bb600 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml index 25e83b4d..bbd93194 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml index 4d076445..64782767 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml index 6b82d64d..81c38606 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml index dc6f30b1..dc77de6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml index 65f2a1e8..e3346b5e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml index bfcf4682..f6bd2e66 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml index 7ec45895..1e5311c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 2x VGA1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml index 9095d75a..a0e8b62a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 226 mm Width: 111 mm + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml index fb1520a4..ad501b98 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml @@ -32,3 +32,4 @@ data: Length: 228 mm Width: 111 mm Height: 38 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml index 3a4c9435..75829da5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Length: 228 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml index 20fe872d..c2d4a4e0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml index e05852da..f2607a78 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Length: 198 mm + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml index 71f50e4e..d50080fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml index ec54c052..5215225e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml index dd5b0bb3..12d031c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml index b2119bf2..cefd9f9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml @@ -30,3 +30,4 @@ data: - 1x S-Video Power Connectors: 2x 6-pin Length: 312 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml index 841566ab..38ebb802 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml index 2bf7d1ab..e41ed565 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml @@ -33,3 +33,4 @@ data: Length: 198 mm Width: 111 mm Height: 17 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml index 243798d4..e22845e6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml index 48e63cd1..5a77c7eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml index 5625eb69..1f5e4c68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml index 7339fa76..5c5686cd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml index 42530804..fd479243 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml @@ -27,3 +27,4 @@ data: TDP: 16 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml index d60590f9..98de14f1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml @@ -27,3 +27,4 @@ data: TDP: 10 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml index 6e314dc5..6a6c6027 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml index e1572435..bbd8d226 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml @@ -28,3 +28,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml index 82b0fd85..d24492fd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml index 6b99ebf4..2473ed22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml @@ -28,3 +28,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml index e59edbba..49103abe 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml @@ -27,3 +27,4 @@ data: TDP: 89 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml index cf885feb..f78cfe40 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml index 2d2549e0..8e54e464 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml index 07bcf173..b4855fb7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml index 6b31c79a..1c50807d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml index 839332aa..8c3cff1b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml index 0c156659..20d632f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml index bb9983e8..7d52b5e9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml index e9ef9e77..e03ba9fd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml index 027d6cbe..889d7948 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml index fdc1e86f..7aac6bb2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml index 1eb7a302..d268a5a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml index f796536e..61d72e92 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml @@ -26,3 +26,4 @@ data: TDP: 35 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml index 0457d68b..9c52ffe5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml @@ -26,3 +26,4 @@ data: TDP: 20 W Slot Width: MXM Module Outputs: Portable Device Dependent + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml index 08308e45..78c42c94 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml index 02c28f65..ba1609e3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml @@ -26,3 +26,4 @@ data: TDP: 20 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml index 31092bfa..d9fcf618 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml index 4c4e7148..e14d8116 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: None Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml index b641d32b..a88d11b4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 173 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml index 174ca7a2..39ccea06 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml @@ -28,3 +28,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml index 99a6b4c6..eee9193f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml index 94c3158b..34c1ec4e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 226 mm Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml index 01de1118..d724a555 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 226 mm Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml index 2b8d7c65..54cbb9d9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml @@ -31,3 +31,4 @@ data: Power Connectors: None Length: 168 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml index 899e005a..8630435f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml @@ -31,3 +31,4 @@ data: Power Connectors: 1x 6-pin Length: 173 mm Width: 111 mm + Pixel Shaders: 20 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml index d0609397..e2f1a711 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml index 969ad367..e4361692 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml @@ -27,3 +27,4 @@ data: TDP: 15 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml index acc88917..d268c936 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x 6-pin Length: 214 mm Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml index 69f9c554..229c7c18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 2x Molex Length: 214 mm Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml index c3d85f01..09379c04 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: 1x 6-pin Width: 111 mm + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml index aa7dfc48..a7cd6ff7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: 1x 6-pin + Pixel Shaders: 16 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml index d0f19824..454939fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml @@ -31,3 +31,4 @@ data: Power Connectors: 1x 6-pin Length: 267 mm Width: 111 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml index 59ecd41c..7cdb4aca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml @@ -30,3 +30,4 @@ data: Power Connectors: 2x 6-pin Length: 305 mm Width: 111 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml index ff382804..ff385f8f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml @@ -33,3 +33,4 @@ data: Length: 230 mm Width: 111 mm Height: 38 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml index e3762858..4d78fcae 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 198 mm Width: 111 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml index 0d33ce8e..3e729a5b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml @@ -32,3 +32,4 @@ data: Power Connectors: None Length: 198 mm Width: 111 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml index 21794be7..952f4ede 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml @@ -31,3 +31,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml index 955f35ab..527bae17 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml @@ -31,3 +31,4 @@ data: Power Connectors: 1x 6-pin Length: 229 mm Width: 111 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml index 88704f21..929fc61f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml @@ -25,3 +25,4 @@ data: GPU: G73 TDP: 35 W Outputs: Portable Device Dependent + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml index bad29abe..dc1b13e0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml @@ -31,3 +31,4 @@ data: Power Connectors: None Length: 198 mm Width: 111 mm + Pixel Shaders: 12 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml index cb29721c..94b02bf0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml index bdbf50d1..403cc782 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml @@ -28,3 +28,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml index 71dd1040..c2e9169b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml @@ -28,3 +28,4 @@ data: Slot Width: IGP Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml index 32b00e8d..f91406e2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml @@ -27,3 +27,4 @@ data: Slot Width: MXM Module Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml index 0e34d39d..0160c6e4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml @@ -26,3 +26,4 @@ data: TDP: 11 W Slot Width: IGP Outputs: Motherboard Dependent + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml index 0f5496d6..27805e1d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml index 54e910dd..f3b5b5c4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml @@ -27,3 +27,4 @@ data: TDP: 16 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml index ec52a946..ec018dbf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DMS-59 Power Connectors: None Length: 187 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml index 123f6139..853d5b4b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DMS-59 Power Connectors: None Length: 187 mm + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml index c0dd4e48..48574c40 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml @@ -26,3 +26,4 @@ data: TDP: 35 W Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml index 83abd970..e5544add 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml @@ -26,3 +26,4 @@ data: TDP: 640 W Outputs: No outputs Length: 522 mm + Pixel Shaders: 24 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml index 68085d34..d22482c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml index d83f7e20..ad913d93 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml index 0ba671a7..a1e3c47c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml index 684c5cc3..c3453b41 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml index 2d50792e..b6b4659c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml index dfd505e4..5d934ae2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA2x S-Video Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml index 962ac86d..25c8c01e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml index 48cf8be9..4f9069ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA Power Connectors: None + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml index 9152840b..b8dc3e82 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 183 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml index 21f2ac22..b4d8d54b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 183 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml index 8f77ecac..a8c08218 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml @@ -29,3 +29,4 @@ data: Outputs: 1x VGA1x DB13W3 Power Connectors: None Length: 165 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml index 6e00399e..8c4c85dd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml index 100ce7ef..73dfc0d9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml index ce4d79cb..f940f36e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 2x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml index 8cbe109c..45667f29 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 216 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml index bf81a290..943a098e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 216 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml index 7309a42d..6c68a163 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: None Length: 216 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml index 4fbbac4a..c02ee020 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml index 3f7272ad..5de94f4f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml index 40d60aa1..f8495dd5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml index fe33098a..9e9f4a14 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml index 84cc7f2a..b8f7a374 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml index 90c0c770..f5e4c440 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml @@ -30,3 +30,4 @@ data: - 2x DVI - 1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml index 0eb56480..2e65e6ef 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml @@ -27,3 +27,4 @@ data: Slot Width: Single-slot Outputs: 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml index 21eaffca..2911ca78 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml index 69fcecd8..83306c2d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 152 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml index 1c32f047..2ac7d778 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml index 3a09bbe1..6014fd70 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -29,3 +29,4 @@ data: Outputs: 2x DVI Power Connectors: None Length: 171 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml index b1fdba56..4b6ac4fc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 171 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml index a7dd8017..9b8f27ab 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml index 66cd3d7b..2db9fb55 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 165 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml index 6f637215..6a8a76c4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 152 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml index abe41d02..6a62bac4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 190 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml index 7a73a8af..6a47870a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -28,3 +28,4 @@ data: Slot Width: Single-slot Outputs: 1x DVI Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml index b00f9015..61fbcb9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml index 8bb5af4a..427a458d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml index 9eae2eab..2cc56f61 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml index 34e85a92..83dbd867 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml index 749550df..75c41316 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml index 5ae19155..c8c0a9b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 229 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml index d301cac5..c6c0536c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml index 6fed1feb..880ea91c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml index fb593555..744a3532 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 213 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml index 3f6ce756..438648c9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml @@ -30,3 +30,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 213 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml index e84ceade..27191bc4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 218 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml index 0edcffce..a81bdcc8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml index 757f4cf3..837ffab7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 1x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml index 589e97b8..627a7c0b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: 1x Molex Length: 218 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml index 17e0ce6c..2209e99e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml @@ -32,3 +32,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml index 7dd1a70b..fb6434c8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml index 6d946bbb..0668080c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml index 726d77ba..3ff57834 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml index cb9a2928..c84d231f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml index 1a709c3d..616e92c5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml index f7b071c2..766eb564 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml index 4ac66888..0787eef3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml index 91ca3b31..3bef9d26 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml index 67597753..10b9e3bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml index fcd66689..479a0be5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml index 14147ea5..8889f5aa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml index 1f873d61..311aa47b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml @@ -27,3 +27,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml index f93ca7a9..4569c1a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml index aa02201d..a096724c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml @@ -31,3 +31,4 @@ data: - 1x VGA1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml index 36227402..acdb2f4b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml index cf7f8ecc..0cf59ca0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml @@ -29,3 +29,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml index a2495e0b..aad65074 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml index 7861ad87..46f4619f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 241 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml index 572e6cef..2dbff20b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml @@ -33,3 +33,4 @@ data: Power Connectors: None Length: 241 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml index 8f4da2ea..de653d24 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml index 7d01c29d..0d7dc57e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml index 472bc743..fe5ef39a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml index fc802e9a..822720a5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml @@ -31,3 +31,4 @@ data: Power Connectors: None Length: 168 mm Width: 69 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml index cd5dd617..8a04411e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml @@ -33,3 +33,4 @@ data: Power Connectors: None Length: 152 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml index 166c5068..4d9245e5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml @@ -32,3 +32,4 @@ data: - 1x S-Video Length: 165 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml index 87b1961a..16e82a2b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml @@ -33,3 +33,4 @@ data: Power Connectors: 1x Molex Length: 229 mm Width: 111 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml index 793e43e2..b65af1d2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml index be2c1b7e..44165034 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml @@ -28,3 +28,4 @@ data: TDP: unknown Outputs: Portable Device Dependent Power Connectors: None + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml index 5a520fe3..bb188812 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml @@ -30,3 +30,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml index dbcb35f7..266b81e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml @@ -30,3 +30,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml index 13c4b9f9..53da8e20 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml @@ -30,3 +30,4 @@ data: Outputs: 1x DMS-59 Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml index f86b3ecf..6513581c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml @@ -31,3 +31,4 @@ data: - 1x S-Video Power Connectors: None Length: 168 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml index aef8155f..3eef99c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml @@ -27,3 +27,4 @@ data: TDP: 20 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml index 2c66694f..451ddd74 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml @@ -27,3 +27,4 @@ data: TDP: 20 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml index cb699ead..eda648dc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml @@ -26,3 +26,4 @@ data: TDP: 20 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml index 2f9c2e6c..3869ce1b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml @@ -26,3 +26,4 @@ data: TDP: 20 W Slot Width: IGP Outputs: Portable Device Dependent + Pixel Shaders: 48 diff --git a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml index 81879306..39e89dbd 100644 --- a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml +++ b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml @@ -29,3 +29,4 @@ data: Length: 182 mm Width: 19 mm Height: 84 mm + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml index f153c101..ddb66e8d 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml index 7ee6cfce..547aadff 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 8 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml index dbb0fa22..bc3921b6 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml index 29e22463..a02200e3 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml @@ -30,3 +30,4 @@ data: - 1x DVI - 1x VGA1x S-Video Power Connectors: 2x Molex + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml index e22706da..acb28639 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml @@ -29,3 +29,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml index a247dbaa..5574861b 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml index d4b76d9b..5f8eef25 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml @@ -26,3 +26,4 @@ data: TDP: unknown Slot Width: Single-slot Outputs: No outputs + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml index 957ba4f7..22aa496a 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 2 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml index 6aca37b2..9b41b730 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml index 73692d7d..b5db2edd 100644 --- a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml +++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml @@ -28,3 +28,4 @@ data: Outputs: - 1x DVI - 1x VGA1x S-Video + Pixel Shaders: 4 diff --git a/src/js/pure.js b/src/js/pure.js index a1c0a695..42005ec3 100644 --- a/src/js/pure.js +++ b/src/js/pure.js @@ -87,11 +87,19 @@ module.exports.genSubtext = (data, passedSpecData) => { innerData.TDP.replace(' ', '') + ' TDP', ]; case 'Graphics Card': - return [ - innerData['VRAM Capacity'].replace(' ', '') + ' VRAM', - innerData['Shader Processor Count'] + ' Shader Processors', - genClockText(innerData, true), - ]; + if (innerData['Shader Processor Count']){ + return [ + innerData['VRAM Capacity'].replace(' ', '') + ' VRAM', + innerData['Shader Processor Count'] + ' Shader Processors', + genClockText(innerData, true), + ]; + } else { + return [ + innerData['VRAM Capacity'].replace(' ', '') + ' VRAM', + innerData['Pixel Shaders'] + ' Pixel Shaders', + genClockText(innerData, true), + ]; + } case 'APU': return [ genCoreText(innerData), diff --git a/src/js/row-data.js b/src/js/row-data.js index f34b4467..f301a943 100644 --- a/src/js/row-data.js +++ b/src/js/row-data.js @@ -313,6 +313,10 @@ module.exports.sections = [ { name: 'Tensor Cores', processor: types.numberUp + }, + { + name: 'Pixel Shaders', + processor: types.numberUp } ], }, From c61e9f95b341259f4bf672bae2bacd84f371115c Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 10 Dec 2024 14:11:59 +0000 Subject: [PATCH 32/41] Rankine categorisation --- specs/GPUs-CONSUMER/Nvidia/Rankine.yaml | 28 ++++++++++++------- .../Nvidia/Rankine/GeForce-FX-5100.yaml | 6 +++- .../Nvidia/Rankine/GeForce-FX-5200-LE.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5200-PCI.yaml | 4 ++- .../Rankine/GeForce-FX-5200-Rev.-2.yaml | 4 ++- .../GeForce-FX-5200-Ultra-Mac-Edition.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5200.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5500-PCI.yaml | 4 ++- .../Nvidia/Rankine/GeForce-FX-5500.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml | 7 +++-- .../Rankine/GeForce-FX-5600-XT-PCI.yaml | 1 + .../Nvidia/Rankine/GeForce-FX-5600-XT.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5600.yaml | 4 ++- .../Nvidia/Rankine/GeForce-FX-5700-EP.yaml | 4 ++- .../GeForce-FX-5700-Engineering-Sample.yaml | 3 +- .../Nvidia/Rankine/GeForce-FX-5700-LE.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5700-VE.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5700.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5800.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5900-XT.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5900-ZT.yaml | 5 +++- .../Nvidia/Rankine/GeForce-FX-5900.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml | 5 +++- .../Nvidia/Rankine/GeForce-PCX-5300.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-PCX-5750.yaml | 5 +++- .../Nvidia/Rankine/GeForce-PCX-5900.yaml | 7 +++-- .../Nvidia/Rankine/GeForce-PCX-5950.yaml | 2 ++ .../Nvidia/Rankine/Quadro-FX-3000G.yaml | 3 +- 32 files changed, 136 insertions(+), 48 deletions(-) diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml index 88793620..2deafcf8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml @@ -4,13 +4,13 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 150 - 130 nm DirectX Support: '9.0a' Vulkan Support: 'N/A' Release Date: '2003-01-21' Manufacturer: Nvidia sections: - - header: WHOLE RANGE + - header: Main FX Range (Consumer) members: - GeForce-FX-5100 - GeForce-FX-5200 @@ -37,8 +37,18 @@ sections: - GeForce-FX-5900-XT - GeForce-FX-5900-ZT - GeForce-FX-5950-Ultra + - GeForce-FX-5600-Ultra + - header: PCIe Refresh + members: + - GeForce-PCX-5300 + - GeForce-PCX-5750 + - GeForce-PCX-5900 + - GeForce-PCX-5950 + - header: FX Go (Mobile) + members: - GeForce-FX-Go5100 - GeForce-FX-Go5200 + - GeForce-FX-Go5200-32M - GeForce-FX-Go5200-64M - GeForce-FX-Go5200-NPB-32M - GeForce-FX-Go5200-NPB-64M @@ -48,12 +58,8 @@ sections: - GeForce-FX-Go5600 - GeForce-FX-Go5650 - GeForce-FX-Go5700 - - GeForce-FX-5600-Ultra - - GeForce-FX-Go5200-32M - - GeForce-PCX-5300 - - GeForce-PCX-5750 - - GeForce-PCX-5900 - - GeForce-PCX-5950 + - header: Quadro FX (Workstation) + members: - Quadro-FX-330 - Quadro-FX-500 - Quadro-FX-600-PCI @@ -64,9 +70,11 @@ sections: - Quadro-FX-2000 - Quadro-FX-3000 - Quadro-FX-3000G - - Quadro-FX-Go700 - - Quadro-FX-Go1000 - Quadro-NVS-55-PCI - Quadro-NVS-280-AGP - Quadro-NVS-280-PCI - Quadro-NVS-280-PCIe + - header: Quadro FX (Workstation Mobile) + members: + - Quadro-FX-Go700 + - Quadro-FX-Go1000 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml index 2e65e6ef..a6544737 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5100 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,8 +24,11 @@ data: Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 + FP32 Compute: 12 GFLOPS TDP: unknown Slot Width: Single-slot - Outputs: 1x VGA1x S-Video + Outputs: + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml index 2911ca78..600b7ea8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 LE isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,11 +24,13 @@ data: Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 + FP32 Compute: 15 GFLOPS GPU Variant: NV34 5200 TDP: unknown Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml index 83306c2d..13be6060 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 PCI isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -28,7 +29,8 @@ data: Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Length: 152 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml index 2ac7d778..8e2dc4c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 Rev. 2 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -28,6 +29,7 @@ data: Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml index 6014fd70..9f563a6c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 Ultra Mac Edition isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml index 4b6ac4fc..3f09c06e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,12 +24,14 @@ data: Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 + FP32 Compute: 19.5 GFLOPS GPU Variant: NV34 5200 Ultra - TDP: unknown + TDP: 32 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 171 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml index 9b8f27ab..01d6bf0d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5200 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,11 +24,13 @@ data: Shader Processor Count: 0 Die Size: 124 mm² GPU: NV34 + FP32 Compute: 15 GFLOPS GPU Variant: NV34 5200 - TDP: unknown + TDP: 21 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml index 2db9fb55..a54c2c72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5500 PCI isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -28,7 +29,8 @@ data: Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Length: 165 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml index 6a8a76c4..9f9c71eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5500 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,12 +24,14 @@ data: Shader Processor Count: 0 Die Size: 91 mm² GPU: NV34B + FP32 Compute: 16.2 GFLOPS GPU Variant: FX 5500 TDP: unknown Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Length: 152 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml index 6a62bac4..e9df7c2c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5600 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,12 +24,14 @@ data: Shader Processor Count: 0 Die Size: 121 mm² GPU: NV31 + FP32 Compute: 21 GFLOPS GPU Variant: GF-FX-5600-U-A1 - TDP: unknown + TDP: 27 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 190 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml index 6a47870a..790a1386 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5600 XT PCI isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml index 61fbcb9a..64e2016c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5600 XT isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,12 +23,14 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 121 mm² + FP32 Compute: 14.1 GFLOPS GPU: NV31 GPU Variant: NV31 5600 XT TDP: unknown Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml index 427a458d..e4a07135 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml @@ -22,12 +22,14 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 121 mm² + FP32 Compute: 14.1 GFLOPS GPU: NV31 GPU Variant: NV31 5600 TDP: 37 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml index 2cc56f61..3f07b496 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5700 EP isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -27,6 +28,7 @@ data: Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml index 83dbd867..225090f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml @@ -27,6 +27,7 @@ data: Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml index 75c41316..bce9793e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5700 LE isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 133 mm² + FP32 Compute: 17.5 GFLOPS GPU: NV36 GPU Variant: FX 5700LE - TDP: unknown + TDP: 21 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml index c8c0a9b8..d3b9e9ce 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5700 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,13 +23,15 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 133 mm² + FP32 Compute: 21 GFLOPS GPU: NV36B GPU Variant: FX 5700 Ultra TDP: 46 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 229 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml index c6c0536c..80dd93a4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5700 VE isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 133 mm² + FP32 Compute: 17.5 GFLOPS GPU: NV36 - TDP: unknown + TDP: 20 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml index 880ea91c..cb8084c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5700 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 133 mm² + FP32 Compute: 29.7 GFLOPS GPU: NV36B TDP: 25 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml index 744a3532..a90d7719 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5800 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,12 +23,14 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 199 mm² + FP32 Compute: 30 GFLOPS GPU: NV30 - TDP: unknown + TDP: 66 W Slot Width: Dual-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 213 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml index 438648c9..f5652dd8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5800 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,12 +23,14 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 199 mm² + FP32 Compute: 24 GFLOPS GPU: NV30 TDP: 44 W Slot Width: Dual-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 213 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml index 27191bc4..314058be 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5900 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,13 +23,15 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 31.5 GFLOPS GPU: NV35 GPU Variant: FX 5900 Ultra - TDP: 59 W + TDP: 65 W Slot Width: Dual-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 218 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml index a81bdcc8..e6242f6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5900 XT isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 27.3 GFLOPS GPU: NV35 TDP: 35 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml index 837ffab7..88c05cea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5900 ZT isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 22.7 GFLOPS GPU: NV35 TDP: unknown Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml index 627a7c0b..fa5f79c6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5900 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,13 +23,15 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 28 GFLOPS GPU: NV35 GPU Variant: FX 5900 - TDP: unknown + TDP: 55 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 218 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml index 2209e99e..fa8abc01 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml @@ -3,6 +3,7 @@ humanName: GeForce FX 5950 Ultra isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,13 +23,15 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 33.2 GFLOPS GPU: NV38 GPU Variant: FX 5950 Ultra TDP: 74 W Slot Width: Dual-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: 1x Molex Length: 229 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml index 4569c1a2..d3af4a86 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml @@ -3,6 +3,7 @@ humanName: GeForce PCX 5300 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -23,10 +24,12 @@ data: Shader Processor Count: 0 Die Size: 91 mm² GPU: NV37 - TDP: unknown + FP32 Compute: 15 GFLOPS + TDP: 21 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml index a096724c..fefbc954 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml @@ -3,6 +3,7 @@ humanName: GeForce PCX 5750 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,13 +23,15 @@ data: Texture Mapping Unit Count: 4 Shader Processor Count: 0 Die Size: 125 mm² + FP32 Compute: 29.7 GFLOPS GPU: NV39 GPU Variant: FX 5700 TDP: 50 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Length: 168 mm Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml index acdb2f4b..b0220d76 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml @@ -3,6 +3,7 @@ humanName: GeForce PCX 5900 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,11 +23,13 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 25.5 GFLOPS GPU: NV35 - TDP: unknown + TDP: 49 W Slot Width: Single-slot Outputs: - 1x DVI - - 1x VGA1x S-Video + - 1x VGA + - 1x S-Video Power Connectors: None Pixel Shaders: 4 diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml index 0cf59ca0..3dbaf712 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml @@ -3,6 +3,7 @@ humanName: GeForce PCX 5950 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Rankine @@ -22,6 +23,7 @@ data: Texture Mapping Unit Count: 8 Shader Processor Count: 0 Die Size: 207 mm² + FP32 Compute: 33.2 GFLOPS GPU: NV38 TDP: 57 W Slot Width: Dual-slot diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml index fe5ef39a..324c7e43 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml @@ -29,7 +29,8 @@ data: Slot Width: Dual-slot Outputs: - 2x DVI - - 1x S-Video1x SDI + - 1x S-Video + - 1x SDI Power Connectors: 1x Molex Length: 229 mm Width: 111 mm From 1d921374f6a3a591e721b90876d937e866ae8305 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 10 Dec 2024 14:14:34 +0000 Subject: [PATCH 33/41] remove intel scraper --- Makefile | 12 ---- build/intel-config.js | 148 ------------------------------------------ build/intel-parse.js | 72 -------------------- 3 files changed, 232 deletions(-) delete mode 100644 build/intel-config.js delete mode 100644 build/intel-parse.js diff --git a/Makefile b/Makefile index ff677572..3cfe664b 100644 --- a/Makefile +++ b/Makefile @@ -35,11 +35,6 @@ athr_folder:= ./specs map_output := ./public/sitemap.txt -intc_procs := ./tmp/intel-scrape.json -intc_codes := ./tmp/intel-scrape-codenames.json -intc_scrape:= ${intc_procs} ${intc_codes} -intc_parse := ./tmp/intel-parse.json - ubch_cpus := ./tmp/scrape/userbenchmark-scrape-cpus.csv ubch_gpus := ./tmp/scrape/userbenchmark-scrape-gpus.csv ubch_scrape:= ${ubch_cpus} ${ubch_gpus} @@ -96,13 +91,6 @@ ${spec_output} ${map_output} : ${athr_output} ${intc_parse} ${ubch_parse} ${3dmk ${athr_output} : ${athr_input} build/gen-specs.js ${node} build/gen-specs.js ${athr_folder} ${athr_output} -${intc_scrape} : - ${curl} ${intc_procs} 'https://markasoftware.com/specdb-intel/intel-scrape.json' - ${curl} ${intc_codes} 'https://markasoftware.com/specdb-intel/intel-scrape-codenames.json' - -${intc_parse} : build/intel-parse.js build/intel-config.js ${intc_scrape} - ${node} build/intel-parse.js ${intc_scrape} ${intc_parse} - ${ubch_scrape} : ${curl} ${ubch_cpus} 'http://www.userbenchmark.com/resources/download/csv/CPU_UserBenchmarks.csv' ${curl} ${ubch_gpus} 'http://www.userbenchmark.com/resources/download/csv/GPU_UserBenchmarks.csv' diff --git a/build/intel-config.js b/build/intel-config.js deleted file mode 100644 index 22bb87bc..00000000 --- a/build/intel-config.js +++ /dev/null @@ -1,148 +0,0 @@ -const _ = require('lodash'); -const units = require('../src/js/units'); -const dates = require('../src/js/dates'); -const util = require('./util'); - -const intelConfig = { - // SPECIFIC - // we don't use the values, they're for future use so i don't have to look - // at the accursed odata page again - // FUCK I FORGOT ATOM AND HAD TO LOOK AT THE ACCURSED ODATA PAGE AGAIN - // here it is, by the way: https://odata.intel.com/API/v1_0/Products/Families()?$format=json - families: { - 122139: 'Core', - 29862: 'Pentium', - 595: 'Xeon', - 43521: 'Pentium', - 29035: 'Atom', - }, - deferred: { - codeName: { - idProp: 'CodeNameId', - valueProp: 'CodeNameText', - procProp: 'CodeNameEPMId', - }, - }, - // KEYMAP HELPERS - nameTransformer: (c, d, od) => - `${intelConfig.families[od.ProductFamilyId]} ${c}`, - // STANDARD - keyMap: { - // conveniently, all objects in the odata standard have __metadata - // it also is named in such a way that it makes sense that we use - // it for a special purpose - __metadata: { name: 'type', transformer: c => 'CPU' }, - codeName: [ - 'data.Architecture', - { name: 'inherits', transformer: c => [util.urlify(c)] }, - ], - MarketSegment: { name: 'data.Market', transformer: c => ({ - DT: 'Desktop', - SRV: 'Server', - EMB: 'Embedded', - MBL: 'Mobile', - })[c] }, - Lithography: 'data.Lithography', - MaxTDP: { name: 'data.TDP', transformer: c => c + ' W' }, - ProcessorNumber: [ - { name: 'humanName', transformer: (c, d, od) => intelConfig.nameTransformer(c, d, od) }, - { name: 'name', transformer: (c, d, od) => - util.urlify(intelConfig.nameTransformer(c, d, od)) - }, - ], - CoreCount: [ - 'data.Core Count', - 'data.Thread Count', - ], - HyperThreading: { name: 'data.Thread Count', transformer: (c, d) => d.data['Core Count'] * (c ? 2 : 1) }, - NumMemoryChannels: 'data.Max Memory Channels', - MemoryTypes: [ - { name: 'data.Max Memory Frequency', transformer: c => { - const regexMatches = c.match(/\d{3,}/g); - if (!_.isNil(regexMatches)) { - return `${_.max(regexMatches.map(Number))} MHz`; - } - } }, - { name: 'data.Memory Type', transformer: c => c.match(/\S*DDR[^-, ]*/g).join(', ') }, - ], - ClockSpeedMhz: { name: 'data.Base Frequency', transformer: util.unitTransformer('MHz') }, - ClockSpeedMaxMhz: { name: 'data.Boost Frequency', transformer: util.unitTransformer('MHz') }, - CacheKB: { name: 'data.L2 Cache (Total)', transformer: util.unitTransformer('KiB') }, - DieSize: { name: 'data.Die Size', transformer: c => `${c} mm`}, - BornOnDate: { name: 'data.Release Date', transformer: c => c.replace("'", ' ') - .replace(/(?=[0-6]\d)/, '20') - .replace(/(?=[7-9]\d)/, '19') }, - LaunchDate: { name: 'data.Release Date', transformer: util.isoDate }, - SocketsSupported: 'data.Socket', - AESTech: 'data.AES', - InstructionSet: { name: 'data.Other Extensions', transformer: c => c === '64-bit' ? ['x86-64'] : [] }, - InstructionSetExtensions: { name: 'data.AVX/SSE/MMX', transformer: util.substTransformer({ - '': false, - 'SSE4.1': 'SSE 4.1', - 'SSE4.2': 'SSE 4.2', - 'AVX2': 'AVX2', - 'AVX-512': 'AVX-512', - }) }, - GraphicsFreqMHz: { name: 'data.GPU Base Frequency', transformer: util.unitTransformer('MHz') }, - GraphicsMaxFreqMHz: - { name: 'data.GPU Boost Frequency', transformer: util.unitTransformer('MHz') }, - GraphicsMaxMemMB: [ - { name: 'data.VRAM Type', transformer: (c, d) => d.data['Memory Type'] || 'RAM' }, - { name: 'data.Maximum VRAM Capacity', transformer: util.unitTransformer('MiB') }, - ], - GraphicsDirectXSupport: { name: 'data.DirectX Support', transformer: - c => _.max(c.match(/[0-9.]*/g).map(Number)).toString() }, - GraphicsOpenGLSupport: 'data.OpenGL Support', - // TODO: GraphicsDeviceId to identify which model of HD graphics it is - }, - sectionPages: [ - { - toName: c => `${c.data.Market} CPUs (Intel)`, - toHeader: c => util.bucket(5, { - max: new Date().getFullYear(), - maxText: 'Present', - })(dates.parse(c.data['Release Date']).getFullYear()), - memberSorter: (a, b) => dates.parse(b.data['Release Date']) - dates.parse(a.data['Release Date']), - base: c => ({ - type: 'Generic Container', - topHeader: 'SELECT ARCHITECTURE:', - data: { Manufacturer: 'Intel' }, - }), - }, - { - toName: c => `${c.data.Market}-${c.data.Architecture}`, - toHeader: c => `${ - util.bucket(1, { - ranges: [ [ 9, 16 ], [ 17, 64 ], [ 65, 128 ]], - max: 129, - maxText: 'What the FUCK', - })(c.data['Thread Count']) - } Threads`, - base: c => ({ - humanName: c[0].data.Architecture, - type: 'CPU Architecture', - topHeader: 'SELECT CPU:', - data: { - Manufacturer: 'Intel', - Lithography: c[0].data.Lithography, - 'Release Date': _.minBy( - c - .filter(d => d.data['Release Date']) - .map(d => d.data['Release Date']), - d => dates.parse(d), - ) || null, - Sockets: _ - .chain(c) - .filter(d => typeof d.data.Socket === 'string') - .flatMap(d => d.data.Socket.split(', ')) - // TODO: should we do this replacement or not? Should we do it everywhere sockets are mentioned? - .map(socket => socket.replace(/(FC|-)/g, '')) - .uniq() - .value(), - }, - }), - }, - ], - // TODO: maybe prune properties only useful during sectionPages? (market) -}; -module.exports = intelConfig; diff --git a/build/intel-parse.js b/build/intel-parse.js deleted file mode 100644 index 0172fd6d..00000000 --- a/build/intel-parse.js +++ /dev/null @@ -1,72 +0,0 @@ -const fs = require('fs'); -const _ = require('lodash'); -const util = require('./util'); -const intelConfig = require('./intel-config'); - -/* - * Processing Intel data: - * 1. Read all data from disk - * 2. Combine deferred data into a single object - * 3. Filter data to only processors we want to scrape - * 4. Translate data into SpecDB format as per intelConfig.keyMap - * - * Step 4 also includes adding inheritance information. - */ - -const [ intelProcs, intelCodeNames, intelParse ] = process.argv.slice(2); -let [ procs, codeNames ] = [ intelProcs, intelCodeNames ].map(util.readJSON); - -// BEGIN step 2 -const processDeferred = (name, defData, mainData) => { - const info = intelConfig.deferred[name]; - const keyedInfo = _.keyBy(defData, c => c[info.idProp]); - return mainData.map(c => { - c[name] = keyedInfo[c[info.procProp]][info.valueProp]; - return c; - }); -}; -procs = processDeferred('codeName', codeNames.d, procs.d); -// END step 2 - -// step 3 -// BEGIN step 4 -const partList = procs.filter(c => c.ProductFamilyId in intelConfig.families).map(c => { - const toReturn = { isPart: true, inherits: [ 'Intel' ] }; - // iterate through the keys according to Intel's website - for (let intelKey of _.intersection(Object.keys(intelConfig.keyMap), Object.keys(c))) { - const intelValue = _.isString(c[intelKey]) ? c[intelKey].trim() : c[intelKey]; - if (_.isNil(intelValue) || intelValue === '') { - continue; - } - const sdbOutputs = _.castArray(intelConfig.keyMap[intelKey]); - // loop through all SDB keys this key refers to - for (let sdbOutput of sdbOutputs) { - const toMerge = {}; - if (_.isString(sdbOutput)) { - _.set(toMerge, sdbOutput, intelValue); - } else { - // it's an object - const transformerOutput = sdbOutput.transformer(intelValue, toReturn, c); - if ( - _.isFunction(transformerOutput) || - _.isPlainObject(transformerOutput) - ) { - console.error(`Key ${intelKey} for output key ${sdbOutput.name} incorrect type!`); - console.error(transformerOutput); - process.exit(1); - } - _.set(toMerge, sdbOutput.name, transformerOutput); - } - // merging bullshit allows arrays to work nicely, so adding to - // the list of supported x86 extensions or the inherits list still works. - // also, just to make .data work at all. - _.mergeWith(toReturn, toMerge, util.merger); - } - } - return toReturn; -}); -// END step 4 -const keyedPartList = util.keyByName(partList); -const toReturn = partList.concat(util.genSections(keyedPartList, intelConfig.sectionPages)); - -util.writeJSON(intelParse, toReturn); From 1c16df37fb3b489ec59f82486937434633a18615 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 10 Dec 2024 17:20:10 +0000 Subject: [PATCH 34/41] More categorisation --- .../AMD/CDNA-1.0.yaml | 2 +- .../AMD/CDNA-2.0.yaml | 2 +- .../AMD/CDNA-3.0.yaml | 2 +- .../AMD/GCN-1.0/FirePro-R5000.yaml | 2 +- .../GCN-1.0/FirePro-S10000-Passive-12GB.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S10000-Passive.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S10000.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S4000X.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S7000.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S9000.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S9010.yaml | 2 +- .../AMD/GCN-1.0/FirePro-S9050.yaml | 2 +- .../AMD/GCN-2.0/FirePro-S9100.yaml | 2 +- .../AMD/GCN-2.0/FirePro-S9150.yaml | 2 +- .../AMD/GCN-2.0/FirePro-S9170.yaml | 2 +- .../AMD/GCN-3.0/FirePro-S7100X.yaml | 2 +- .../AMD/GCN-3.0/FirePro-S7150-x2.yaml | 2 +- .../AMD/GCN-3.0/FirePro-S7150.yaml | 2 +- .../AMD/GCN-3.0/FirePro-S9300-X2.yaml | 2 +- .../AMD/RDNA-3.0/Radeon-PRO-v710.yaml | 38 +++++++++++++++++++ .../AMD/TeraScale-2/FireStream-9350.yaml | 1 + .../AMD/TeraScale-2/FireStream-9370.yaml | 1 + .../AMD/TeraScale/FirePro-RG220.yaml | 2 +- .../AMD/TeraScale/FireStream-9170.yaml | 1 + .../AMD/TeraScale/FireStream-9250.yaml | 1 + .../AMD/TeraScale/FireStream-9270.yaml | 1 + .../Ultra-Threaded-SE/Stream-Processor.yaml | 1 + 27 files changed, 64 insertions(+), 20 deletions(-) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-1.0.yaml (93%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-2.0.yaml (94%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/CDNA-3.0.yaml (93%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-R5000.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S10000-Passive.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S10000.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S4000X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S7000.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S9000.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S9010.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-1.0/FirePro-S9050.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-2.0/FirePro-S9100.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-2.0/FirePro-S9150.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-2.0/FirePro-S9170.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-3.0/FirePro-S7100X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-3.0/FirePro-S7150-x2.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-3.0/FirePro-S7150.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/GCN-3.0/FirePro-S9300-X2.yaml (97%) create mode 100644 specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale-2/FireStream-9350.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale-2/FireStream-9370.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/AMD/TeraScale/FirePro-RG220.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/ATI/Ultra-Threaded-SE/Stream-Processor.yaml (97%) diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-1.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml similarity index 93% rename from specs/GPUs-CONSUMER/AMD/CDNA-1.0.yaml rename to specs/GPUs-SERVER/AMD/CDNA-1.0.yaml index e1c00868..5101991f 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-1.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 7 nm DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2020-11-16' diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-2.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml similarity index 94% rename from specs/GPUs-CONSUMER/AMD/CDNA-2.0.yaml rename to specs/GPUs-SERVER/AMD/CDNA-2.0.yaml index 5218d060..dae3bf97 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-2.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 6 nm DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2021-11-08' diff --git a/specs/GPUs-CONSUMER/AMD/CDNA-3.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml similarity index 93% rename from specs/GPUs-CONSUMER/AMD/CDNA-3.0.yaml rename to specs/GPUs-SERVER/AMD/CDNA-3.0.yaml index cf14ca2f..c56be0e2 100644 --- a/specs/GPUs-CONSUMER/AMD/CDNA-3.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 5 nm DirectX Support: '' Vulkan Support: 'N/A' Release Date: '2023-01-04' diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml index b277d36e..6236e0b4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-R5000.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml @@ -3,7 +3,7 @@ humanName: FirePro R5000 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml index f0434c82..afc40e55 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml @@ -3,7 +3,7 @@ humanName: FirePro S10000 Passive 12GB isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml index bf0012b0..320d215c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml @@ -3,7 +3,7 @@ humanName: FirePro S10000 Passive isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml index 6eba1a76..a21a699f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S10000.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml @@ -3,7 +3,7 @@ humanName: FirePro S10000 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml index e8ef4362..3e0711de 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S4000X.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml @@ -3,7 +3,7 @@ humanName: FirePro S4000X isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml index 75ebfeee..e15e6785 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S7000.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml @@ -3,7 +3,7 @@ humanName: FirePro S7000 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml index 0aa4022f..67c94bb9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9000.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9000 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml index 5bf510f3..d083261a 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9010.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9010 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml rename to specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml index 05ab2e3d..7c7d8cd4 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-S9050.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9050 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9100.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml rename to specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9100.yaml index cc16a1c0..992d567e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9100.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9100.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9100 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml rename to specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml index 2e34a99e..a16a3042 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9150.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9150 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml rename to specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml index 64effd33..b95a8d94 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-S9170.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9170 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 2.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7100X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml rename to specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7100X.yaml index dc7c3d76..fe46511e 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7100X.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7100X.yaml @@ -3,7 +3,7 @@ humanName: FirePro S7100X isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml rename to specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml index 8af021cb..90d8ce97 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150-x2.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml @@ -3,7 +3,7 @@ humanName: FirePro S7150 x2 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml rename to specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml index 5f6155f2..27f29dbf 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S7150.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml @@ -3,7 +3,7 @@ humanName: FirePro S7150 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml rename to specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml index 71b9e4b1..6612fc58 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-S9300-X2.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml @@ -3,7 +3,7 @@ humanName: FirePro S9300 X2 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: GCN 3.0 diff --git a/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml new file mode 100644 index 00000000..84f8a5b1 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml @@ -0,0 +1,38 @@ +name: Radeon-PRO-V620 +humanName: Radeon PRO V620 +isPart: true +type: Graphics Card +data: + Market: Data center + Manufacturer: AMD + Vendor: AMD + Architecture: RDNA 3.0 + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '2.2' + Release Date: '2024-10-03' + GPU Base Frequency: 1900 MHz + GPU Boost Frequency: 2000 MHz + VRAM Frequency: 2250 MHz + VRAM Bandwidth: 504.0 GB/s + VRAM Capacity: 28 GiB + VRAM Type: GDDR6 + VRAM Bus Width: 224 bit + Render Output Unit Count: 96 + Texture Mapping Unit Count: 216 + Shader Processor Count: 3456 + Die Size: 346 mm² + GPU: Navi 32 + GPU Variant: Navi 32 + TDP: 158 W + FP32 Compute: 27.65 TFLOPS + FP64 Compute: 864.0 GFLOPS (1:32) + Slot Width: Single-slot + Outputs: No outputs + Power Connectors: 1x 8-pin + # Length: 267 mm + # Width: 120 mm + # Height: 50 mm + Ray Tracing Cores: 54 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9350.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml rename to specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9350.yaml index 72cde50a..2a64ed17 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9350.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9350.yaml @@ -3,6 +3,7 @@ humanName: FireStream 9350 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9370.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml rename to specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9370.yaml index 305007c3..c40cca56 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2/FireStream-9370.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9370.yaml @@ -3,6 +3,7 @@ humanName: FireStream 9370 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale 2 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FirePro-RG220.yaml similarity index 97% rename from specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml rename to specs/GPUs-SERVER/AMD/TeraScale/FirePro-RG220.yaml index 57886e78..6433b0c5 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale/FirePro-RG220.yaml @@ -3,7 +3,7 @@ humanName: FirePro RG220 isPart: true type: Graphics Card data: - Market: Workstation + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml index 543a4328..3d6b889f 100644 --- a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml @@ -3,6 +3,7 @@ humanName: FireStream 9170 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml index 46004c62..85e4999f 100644 --- a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml @@ -3,6 +3,7 @@ humanName: FireStream 9250 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml index 50a52ebc..10e48d78 100644 --- a/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml +++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml @@ -3,6 +3,7 @@ humanName: FireStream 9270 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: AMD Vendor: AMD Architecture: TeraScale diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml similarity index 97% rename from specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml rename to specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml index 876baf74..8fd5c9b0 100644 --- a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml +++ b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml @@ -3,6 +3,7 @@ humanName: Stream Processor isPart: true type: Graphics Card data: + Market: Data center Manufacturer: ATI Vendor: ATI Architecture: Ultra-Threaded SE From fbdd99e78be826b38a59ae372165a9d6b918b1f7 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 10 Dec 2024 17:21:14 +0000 Subject: [PATCH 35/41] fix PRO-v710 name --- specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml index 84f8a5b1..3f28ae0e 100644 --- a/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml +++ b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml @@ -1,5 +1,5 @@ -name: Radeon-PRO-V620 -humanName: Radeon PRO V620 +name: Radeon-PRO-V710 +humanName: Radeon PRO V710 isPart: true type: Graphics Card data: From eb74b035d84cdbf5c969d55aa836e196c360886a Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Wed, 11 Dec 2024 18:32:31 +0000 Subject: [PATCH 36/41] AMD server gpus categorisation --- specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml | 244 +++++++++--------- specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml | 87 ++++--- specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml | 7 +- specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml | 1 - specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml | 4 - specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml | 2 - specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml | 4 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml | 1 - specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml | 4 +- specs/GPUs-CONSUMER/AMD/TeraScale.yaml | 6 +- .../GPUs-CONSUMER-3dfx.yaml | 0 .../GPUs-CONSUMER-AMD.yaml | 0 .../GPUs-CONSUMER-ATI.yaml | 0 .../GPUs-CONSUMER-Intel.yaml | 0 .../GPUs-CONSUMER-Matrox.yaml | 0 .../GPUs-CONSUMER-Nvidia.yaml | 0 .../GPUs-CONSUMER-PowerVR.yaml | 0 .../GPUs-CONSUMER-XGI.yaml | 0 specs/GPUs-SERVER/AMD/CDNA-1.0.yaml | 2 +- specs/GPUs-SERVER/AMD/CDNA-2.0.yaml | 2 +- specs/GPUs-SERVER/AMD/CDNA-3.0.yaml | 2 +- specs/GPUs-SERVER/AMD/GCN-1.0.yaml | 26 ++ specs/GPUs-SERVER/AMD/GCN-2.0.yaml | 17 ++ specs/GPUs-SERVER/AMD/GCN-3.0.yaml | 21 ++ specs/GPUs-SERVER/AMD/GCN-4.0.yaml | 15 ++ specs/GPUs-SERVER/AMD/GCN-5.0.yaml | 20 ++ specs/GPUs-SERVER/AMD/GCN-5.1.yaml | 16 ++ specs/GPUs-SERVER/AMD/RDNA-1.0.yaml | 16 ++ specs/GPUs-SERVER/AMD/RDNA-2.0.yaml | 15 ++ specs/GPUs-SERVER/AMD/RDNA-3.0.yaml | 15 ++ specs/GPUs-SERVER/AMD/TeraScale-2.yaml | 16 ++ specs/GPUs-SERVER/AMD/TeraScale.yaml | 20 ++ specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml | 30 +++ specs/Root.yaml | 1 + 34 files changed, 407 insertions(+), 187 deletions(-) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-3dfx.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-AMD.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-ATI.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-Intel.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-Matrox.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-Nvidia.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-PowerVR.yaml (100%) rename specs/{ => GPUs-CONSUMER}/GPUs-CONSUMER-XGI.yaml (100%) create mode 100644 specs/GPUs-SERVER/AMD/GCN-1.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/GCN-2.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/GCN-3.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/GCN-4.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/GCN-5.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/GCN-5.1.yaml create mode 100644 specs/GPUs-SERVER/AMD/RDNA-1.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/RDNA-2.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/RDNA-3.0.yaml create mode 100644 specs/GPUs-SERVER/AMD/TeraScale-2.yaml create mode 100644 specs/GPUs-SERVER/AMD/TeraScale.yaml create mode 100644 specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml index 85f738cc..670da691 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml @@ -4,13 +4,33 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 28 nm DirectX Support: '11.1' Vulkan Support: '1.2.170' Release Date: '2011-12-22' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Consumer HD range + members: + - Radeon-HD-8750A + - Radeon-HD-8730A + - Radeon-HD-8670A + - Radeon-HD-8570A + - Radeon-HD-7990 + - Radeon-HD-7970-X2 + - Radeon-HD-7970-GHz-Edition + - Radeon-HD-7970 + - Radeon-HD-7950-Monica-BIOS-2 + - Radeon-HD-7950-Monica-BIOS-1 + - Radeon-HD-7950-Boost + - Radeon-HD-7950 + - Radeon-HD-7870-XT + - Radeon-HD-7870-GHz-Edition + - Radeon-HD-7850 + - Radeon-HD-7770-GHz-Edition + - Radeon-HD-7750 + - Radeon-HD-7730 + - header: Workstation FirePro members: - FirePro-D300 - FirePro-D500 @@ -22,15 +42,6 @@ sections: - FirePro-M4170 - FirePro-M5100 - FirePro-M6000 - - FirePro-R5000 - - FirePro-S4000X - - FirePro-S7000 - - FirePro-S9000 - - FirePro-S9010 - - FirePro-S9050 - - FirePro-S10000 - - FirePro-S10000-Passive - - FirePro-S10000-Passive-12GB - FirePro-W600 - FirePro-W2100 - FirePro-W4000 @@ -47,67 +58,117 @@ sections: - FirePro-W8000 - FirePro-W9000 - FirePro-W9000-X2 + - header: Mobile + members: + - Radeon-R7-M465X + - Radeon-R9-M275X + - Radeon-R9-M360 + - Radeon-R9-M365X + - Radeon-R9-M375 + - Radeon-R9-M375X + - Radeon-R9-M275 + - Radeon-R9-M290X + - Radeon-HD-8970M + - Radeon-HD-8870M + - Radeon-HD-8850M + - Radeon-HD-8830M + - Radeon-HD-8790M + - Radeon-HD-8770M + - Radeon-HD-8750M + - Radeon-HD-8730M + - Radeon-HD-8690M + - Radeon-HD-8670M + - Radeon-HD-8590M + - Radeon-HD-8570M + - Radeon-HD-8550M + - Radeon-HD-8530M + - Radeon-HD-7970M-X2 + - Radeon-HD-7970M + - Radeon-HD-7950M + - Radeon-HD-7870M + - Radeon-HD-7850M + - Radeon-HD-7770M + - Radeon-HD-7750M + - Radeon-HD-7730M + - Radeon-610-Mobile - Radeon-520-Mobile-DDR3 - Radeon-520-Mobile-GDDR5 - - Radeon-520-OEM - - Radeon-610-Mobile - Radeon-E8860 - - Radeon-HD-7730 - - Radeon-HD-7730M - - Radeon-HD-7750 - - Radeon-HD-7750M - - Radeon-HD-7770-GHz-Edition - - Radeon-HD-7770M - - Radeon-HD-7850 - - Radeon-HD-7850M - - Radeon-HD-7870-GHz-Edition - - Radeon-HD-7870-XT - - Radeon-HD-7870M - - Radeon-HD-7950 - - Radeon-HD-7950-Boost - - Radeon-HD-7950-Mac-Edition - - Radeon-HD-7950-Monica-BIOS-1 - - Radeon-HD-7950-Monica-BIOS-2 - - Radeon-HD-7950M - - Radeon-HD-7970 - - Radeon-HD-7970-GHz-Edition - - Radeon-HD-7970-X2 - - Radeon-HD-7970M - - Radeon-HD-7970M-X2 - - Radeon-HD-7990 - - Radeon-HD-8530M - - Radeon-HD-8550M - - Radeon-HD-8570-OEM - - Radeon-HD-8570A - - Radeon-HD-8570M - - Radeon-HD-8590M - - Radeon-HD-8670-OEM - - Radeon-HD-8670A - - Radeon-HD-8670M - - Radeon-HD-8730-OEM - - Radeon-HD-8730A - - Radeon-HD-8690M - - Radeon-HD-8730M - - Radeon-HD-8740-OEM - - Radeon-HD-8750A - - Radeon-HD-8750M - - Radeon-HD-8770M - - Radeon-HD-8790M - - Radeon-HD-8830M - - Radeon-HD-8850M - - Radeon-HD-8860-OEM - - Radeon-HD-8870-OEM - - Radeon-HD-8870M - - Radeon-HD-8950-OEM - - Radeon-HD-8970-OEM - - Radeon-HD-8970M - - Radeon-HD-8990-OEM + - header: OEM + members: - Radeon-HD-8760-OEM + - Radeon-HD-8990-OEM + - Radeon-HD-8970-OEM + - Radeon-HD-8950-OEM + - Radeon-HD-8870-OEM + - Radeon-HD-8860-OEM + - Radeon-HD-8740-OEM + - Radeon-HD-8730-OEM + - Radeon-HD-8670-OEM + - Radeon-HD-8570-OEM + - Radeon-HD-7950-Mac-Edition + - Radeon-R9-M290X-Mac-Edition + - Radeon-R9-M370X-Mac-Edition + - Radeon-R9-M390-Mac-Edition + - Radeon-520-OEM - Radeon-R5-240-OEM - Radeon-R5-340-OEM - Radeon-R5-340X-OEM - Radeon-R5-430-OEM - Radeon-R5-435-OEM + - Radeon-R7-250-OEM + - Radeon-R7-265X-OEM + - Radeon-R7-340-OEM + - Radeon-R7-350-OEM + - Radeon-R7-350X-OEM + - Radeon-R7-430-OEM + - Radeon-R7-435-OEM + - Radeon-R7-450-OEM + - Radeon-R9-255-OEM + - Radeon-R7-240-OEM + - header: Radeon R9 + members: + - Radeon-R9-A375 + - Radeon-R9-370X + - Radeon-R9-370-1024SP + - Radeon-R9-370 + - Radeon-R9-280X2 + - Radeon-R9-280X + - Radeon-R9-280 + - Radeon-R9-270X + - Radeon-R9-270-1024SP + - Radeon-R9-270 + - header: Radeon R8 + members: + - Radeon-R8-M435DX + - Radeon-R8-M350DX + - header: Radeon R7 + members: + - Radeon-R7-M465 + - Radeon-R7-M380 + - Radeon-R7-M370 + - Radeon-R7-M365X + - Radeon-R7-M340 + - Radeon-R7-M270DX + - Radeon-R7-M265DX + - Radeon-R7-M260X + - Radeon-R7-M260DX + - Radeon-R7-A265 + - Radeon-R7-370 + - Radeon-R7-350-Fake-Card + - Radeon-R7-350-640SP + - Radeon-R7-265 + - Radeon-R7-250XE + - Radeon-R7-250X + - Radeon-R7-250E + - Radeon-R7-250 + - Radeon-R7-240 + - header: Radeon R6 + members: + - Radeon-R6-M435DX + - Radeon-R6-M340DX + - header: Radeon R5 + members: - Radeon-R5-A230 - Radeon-R5-A240 - Radeon-R5-A320 @@ -123,60 +184,3 @@ sections: - Radeon-R5-M420 - Radeon-R5-M430 - Radeon-R5-M435 - - Radeon-R6-M340DX - - Radeon-R6-M435DX - - Radeon-R7-240 - - Radeon-R7-250 - - Radeon-R7-250-OEM - - Radeon-R7-250E - - Radeon-R7-250X - - Radeon-R7-250XE - - Radeon-R7-265 - - Radeon-R7-265X-OEM - - Radeon-R7-340-OEM - - Radeon-R7-350-640SP - - Radeon-R7-350-Fake-Card - - Radeon-R7-350-OEM - - Radeon-R7-350X-OEM - - Radeon-R7-370 - - Radeon-R7-430-OEM - - Radeon-R7-435-OEM - - Radeon-R7-450-OEM - - Radeon-R7-A265 - - Radeon-R7-M260DX - - Radeon-R7-M260X - - Radeon-R7-M265DX - - Radeon-R7-M270DX - - Radeon-R7-M340 - - Radeon-R7-M365X - - Radeon-R7-M370 - - Radeon-R7-M380 - - Radeon-R7-M465 - - Radeon-R8-M350DX - - Radeon-R8-M435DX - - Radeon-R9-255-OEM - - Radeon-R9-270 - - Radeon-R9-270-1024SP - - Radeon-R9-270X - - Radeon-R9-280 - - Radeon-R9-280X - - Radeon-R9-280X2 - - Radeon-R9-370 - - Radeon-R9-370-1024SP - - Radeon-R9-370X - - Radeon-R9-A375 - - Radeon-R7-240-OEM - - Radeon-R7-M465X - - Radeon-R9-M275X - - Radeon-R9-M290X-Mac-Edition - - Radeon-R9-M360 - - Radeon-R9-M365X - - Radeon-R9-M370X-Mac-Edition - - Radeon-R9-M375 - - Radeon-R9-M375X - - Radeon-R9-M390-Mac-Edition - - Radeon-R9-M275 - - Radeon-Sky-500 - - Radeon-Sky-700 - - Radeon-Sky-900 - - Radeon-R9-M290X diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml index b95ac12c..df91c744 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml @@ -4,70 +4,79 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 28 nm DirectX Support: '12.0' Vulkan Support: '1.2.170' Release Date: '2013-03-22' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Radeon R9 + members: + - Radeon-R9-M470X + - Radeon-R9-M470 + - Radeon-R9-M385X + - Radeon-R9-M385 + - Radeon-R9-M380 + - Radeon-R9-M280X + - Radeon-R9-M270X + - Radeon-R9-390X + - Radeon-R9-390-X2 + - Radeon-R9-390 + - Radeon-R9-295X2 + - Radeon-R9-290X2 + - Radeon-R9-290X + - Radeon-R9-290 + - header: Radeon R7 + members: + - Radeon-R7-260 + - Radeon-R7-260X + - Radeon-R7-360 + - Radeon-R7-360-896SP + - Radeon-R7-Graphics + - header: Radeon HD + members: + - Radeon-HD-7790 + - header: Workstation FirePro members: - FirePro-M6100 - - FirePro-S9100 - - FirePro-S9150 - - FirePro-S9170 - FirePro-W4300 - FirePro-W6150M - FirePro-W6170M - FirePro-W8100 - FirePro-W9100 - FirePro-W5100 - - Radeon-E8870-MXM + - header: Mobile + members: - Radeon-E8870-PCIe - - Radeon-HD-7790 + - Radeon-E8870-MXM + - Radeon-HD-8950M + - Radeon-R1E-Mobile-Graphics + - Radeon-R2-Mobile-Graphics + - Radeon-R2E-Mobile-Graphics + - Radeon-R3-Mobile-Graphics + - Radeon-R3E-Mobile-Graphics + - Radeon-R4E-Mobile-Graphics + - Radeon-R7-Mobile-Graphics + - header: Integrated + members: + - Radeon-R7-360E + - Radeon-HD-8210E + - Radeon-HD-8280E + - Radeon-HD-8330E + - Radeon-HD-8400E - Radeon-HD-8180-IGP - Radeon-HD-8210-IGP - - Radeon-HD-8210E - Radeon-HD-8240-Mobile-IGP - Radeon-HD-8250-IGP - Radeon-HD-8280-IGP - Radeon-HD-8280-Mobile-IGP - - Radeon-HD-8280E - Radeon-HD-8330-Mobile-IGP - - Radeon-HD-8330E - Radeon-HD-8400-IGP - Radeon-HD-8400-Mobile-IGP - - Radeon-HD-8400E + - header: OEM + members: - Radeon-HD-8770-OEM - - Radeon-HD-8950M - - Radeon-R1E-Mobile-Graphics - - Radeon-R2-Mobile-Graphics - - Radeon-R2E-Mobile-Graphics - - Radeon-R3-Mobile-Graphics - - Radeon-R3E-Mobile-Graphics - - Radeon-R4E-Mobile-Graphics - - Radeon-R7-260 - - Radeon-R7-260X - - Radeon-R7-360 - - Radeon-R7-360-896SP - - Radeon-R7-360E - - Radeon-R7-Graphics - - Radeon-R7-Mobile-Graphics - Radeon-R9-260-OEM - - Radeon-R9-290 - - Radeon-R9-290X - - Radeon-R9-290X2 - - Radeon-R9-295X2 - Radeon-R9-360-OEM - - Radeon-R9-390 - - Radeon-R9-390-X2 - - Radeon-R9-390X - - Radeon-R9-M270X - - Radeon-R9-M280X - - Radeon-R9-M380 - Radeon-R9-M380-Mac-Edition - - Radeon-R9-M385 - - Radeon-R9-M385X - - Radeon-R9-M470 - - Radeon-R9-M470X - Radeon-RX-455-OEM diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml index 204ff9b3..0a0974cc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 28 nm DirectX Support: '12.0' Vulkan Support: '1.2.170' Release Date: '2014' @@ -12,10 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - FirePro-S7100X - - FirePro-S7150 - - FirePro-S7150-x2 - - FirePro-S9300-X2 - FirePro-W7100 - FirePro-W7170M - Radeon-530-Mobile-DDR3 @@ -26,7 +22,6 @@ sections: - Radeon-625-OEM - Radeon-620-Mobile - Radeon-E8950 - - Radeon-Instinct-MI8 - Radeon-Pro-Duo - Radeon-Pro-SSG - Radeon-R4-Mobile-Graphics diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml index 7aaec15c..75817ae9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml @@ -30,7 +30,6 @@ sections: - Radeon-E9390-PCIe - Radeon-E9550-MXM - Radeon-E9560-PCIe - - Radeon-Instinct-MI6 - Radeon-Pro-450 - Radeon-Pro-455 - Radeon-Pro-460 diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml index 804da68f..c943f705 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml @@ -12,9 +12,6 @@ data: sections: - header: WHOLE RANGE members: - - Radeon-Instinct-MI25 - - Radeon-Pro-V340-8-GB - - Radeon-Pro-V340-16-GB - Radeon-Pro-Vega-16 - Radeon-Pro-Vega-20 - Radeon-Pro-Vega-48 @@ -24,7 +21,6 @@ sections: - Radeon-Pro-WX-8100 - Radeon-Pro-WX-8200 - Radeon-Pro-WX-9100 - - Radeon-Pro-V320 - Radeon-RX-Vega-10-Mobile - Radeon-RX-Vega-11 - Radeon-RX-Vega-11-Embedded diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml index b30a0f0a..834f28c8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml @@ -19,8 +19,6 @@ sections: - Radeon-Graphics-448SP-Mobile - Radeon-Graphics-512SP - Radeon-Graphics-512SP-Mobile - - Radeon-Instinct-MI50 - - Radeon-Instinct-MI60 - Radeon-Pro-V420 - Radeon-Pro-Vega-II - Radeon-Pro-Vega-II-Duo diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml index 7cc9d97d..597ceb79 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 7 nm DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2019-07-07' @@ -19,8 +19,6 @@ sections: - Radeon-Pro-5600M - Radeon-Pro-5700 - Radeon-Pro-5700-XT - - Radeon-Pro-V520 - - Radeon-Pro-V540 - Radeon-Pro-W5300M - Radeon-Pro-W5500 - Radeon-Pro-W5500M diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml index 6deaaf94..699a28bf 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml @@ -48,7 +48,6 @@ sections: - Radeon-660M - Radeon-680M - Radeon-Graphics-128SP - - Radeon-PRO-V620 - Radeon-PRO-W6300 - Radeon-Pro-W6300M - Radeon-PRO-W6400 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml index 33c4d45c..51aabff2 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 40 nm DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2009-09-23' @@ -32,8 +32,6 @@ sections: - FirePro-V8800 - FirePro-V9800 - FirePro-V9800P - - FireStream-9350 - - FireStream-9370 - Mobility-Radeon-HD-5430 - Mobility-Radeon-HD-5450 - Mobility-Radeon-HD-5570 diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml index 4f885fba..33cd7129 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 55 nm DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2005-11-22' @@ -25,7 +25,6 @@ sections: - FirePro-2450-Multi-View-PCIe-x1 - FirePro-M5725 - FirePro-M7740 - - FirePro-RG220 - FirePro-RG220A - FirePro-V3700 - FirePro-V3750 @@ -36,9 +35,6 @@ sections: - FirePro-V8700 - FirePro-V8700-Duo - FirePro-V8750 - - FireStream-9170 - - FireStream-9250 - - FireStream-9270 - Mobility-FireGL-V5600 - Mobility-FireGL-V5700 - Mobility-FireGL-V5725 diff --git a/specs/GPUs-CONSUMER-3dfx.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-3dfx.yaml similarity index 100% rename from specs/GPUs-CONSUMER-3dfx.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-3dfx.yaml diff --git a/specs/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml similarity index 100% rename from specs/GPUs-CONSUMER-AMD.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml diff --git a/specs/GPUs-CONSUMER-ATI.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-ATI.yaml similarity index 100% rename from specs/GPUs-CONSUMER-ATI.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-ATI.yaml diff --git a/specs/GPUs-CONSUMER-Intel.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml similarity index 100% rename from specs/GPUs-CONSUMER-Intel.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml diff --git a/specs/GPUs-CONSUMER-Matrox.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Matrox.yaml similarity index 100% rename from specs/GPUs-CONSUMER-Matrox.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-Matrox.yaml diff --git a/specs/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml similarity index 100% rename from specs/GPUs-CONSUMER-Nvidia.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml diff --git a/specs/GPUs-CONSUMER-PowerVR.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-PowerVR.yaml similarity index 100% rename from specs/GPUs-CONSUMER-PowerVR.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-PowerVR.yaml diff --git a/specs/GPUs-CONSUMER-XGI.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-XGI.yaml similarity index 100% rename from specs/GPUs-CONSUMER-XGI.yaml rename to specs/GPUs-CONSUMER/GPUs-CONSUMER-XGI.yaml diff --git a/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml index 5101991f..70440ca7 100644 --- a/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml @@ -10,6 +10,6 @@ data: Release Date: '2020-11-16' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Instinct series members: - Radeon-Instinct-MI100 diff --git a/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml index dae3bf97..0cfa607b 100644 --- a/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml @@ -10,7 +10,7 @@ data: Release Date: '2021-11-08' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Instinct series members: - Radeon-Instinct-MI200 - Radeon-Instinct-MI210 diff --git a/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml index c56be0e2..1a7333fc 100644 --- a/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml +++ b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml @@ -10,7 +10,7 @@ data: Release Date: '2023-01-04' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Instinct series members: - Radeon-Instinct-MI300 - Radeon-Instinct-MI300X diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml new file mode 100644 index 00000000..0dffa511 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml @@ -0,0 +1,26 @@ +name: GCN-1.0-server +humanName: GCN 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 28 nm + DirectX Support: '11.1' + Vulkan Support: '1.2.170' + Release Date: '2011-12-22' + Manufacturer: AMD +sections: + - header: WHOLE RANGE + members: + - FirePro-R5000 + - FirePro-S4000X + - FirePro-S7000 + - FirePro-S9000 + - FirePro-S9010 + - FirePro-S9050 + - FirePro-S10000 + - FirePro-S10000-Passive + - FirePro-S10000-Passive-12GB + - Radeon-Sky-500 + - Radeon-Sky-700 + - Radeon-Sky-900 diff --git a/specs/GPUs-SERVER/AMD/GCN-2.0.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0.yaml new file mode 100644 index 00000000..05961f80 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-2.0.yaml @@ -0,0 +1,17 @@ +name: GCN-2.0-server +humanName: GCN 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + Release Date: '2013-03-22' + Manufacturer: AMD +sections: + - header: FirePro Server + members: + - FirePro-S9100 + - FirePro-S9150 + - FirePro-S9170 diff --git a/specs/GPUs-SERVER/AMD/GCN-3.0.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0.yaml new file mode 100644 index 00000000..447557d7 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-3.0.yaml @@ -0,0 +1,21 @@ +name: GCN-3.0-server +humanName: GCN 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 28 nm + DirectX Support: '12.0' + Vulkan Support: '1.2.170' + Release Date: '2014' + Manufacturer: AMD +sections: + - header: FirePro Server + members: + - FirePro-S7100X + - FirePro-S7150 + - FirePro-S7150-x2 + - FirePro-S9300-X2 + - header: Instinct series + members: + - Radeon-Instinct-MI8 diff --git a/specs/GPUs-SERVER/AMD/GCN-4.0.yaml b/specs/GPUs-SERVER/AMD/GCN-4.0.yaml new file mode 100644 index 00000000..7f2beb21 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-4.0.yaml @@ -0,0 +1,15 @@ +name: GCN-4.0-server +humanName: GCN 4.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.0' + Vulkan Support: '1.3' + Release Date: '2016-06-29' + Manufacturer: AMD +sections: + - header: Instinct series + members: + - Radeon-Instinct-MI6 diff --git a/specs/GPUs-SERVER/AMD/GCN-5.0.yaml b/specs/GPUs-SERVER/AMD/GCN-5.0.yaml new file mode 100644 index 00000000..320e50d0 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-5.0.yaml @@ -0,0 +1,20 @@ +name: GCN-5.0-server +humanName: GCN 5.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2017-06-27' + Manufacturer: AMD +sections: + - header: Radeon Pro V series + members: + - Radeon-Pro-V340-8-GB + - Radeon-Pro-V340-16-GB + - Radeon-Pro-V320 + - header: Instinct series + members: + - Radeon-Instinct-MI25 diff --git a/specs/GPUs-SERVER/AMD/GCN-5.1.yaml b/specs/GPUs-SERVER/AMD/GCN-5.1.yaml new file mode 100644 index 00000000..be3a1724 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/GCN-5.1.yaml @@ -0,0 +1,16 @@ +name: GCN-5.1-server +humanName: GCN 5.1 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2018-11-18' + Manufacturer: AMD +sections: + - header: Instinct series + members: + - Radeon-Instinct-MI50 + - Radeon-Instinct-MI60 diff --git a/specs/GPUs-SERVER/AMD/RDNA-1.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0.yaml new file mode 100644 index 00000000..8caad225 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/RDNA-1.0.yaml @@ -0,0 +1,16 @@ +name: RDNA-1.0-server +humanName: RDNA 1.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 7 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2019-07-07' + Manufacturer: AMD +sections: + - header: Radeon Pro V series + members: + - Radeon-Pro-V520 + - Radeon-Pro-V540 diff --git a/specs/GPUs-SERVER/AMD/RDNA-2.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-2.0.yaml new file mode 100644 index 00000000..6821bd89 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/RDNA-2.0.yaml @@ -0,0 +1,15 @@ +name: RDNA-2.0-server +humanName: RDNA 2.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 7 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2020-10-28' + Manufacturer: AMD +sections: + - header: Radeon Pro V series + members: + - Radeon-PRO-V620 diff --git a/specs/GPUs-SERVER/AMD/RDNA-3.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-3.0.yaml new file mode 100644 index 00000000..f8b85de1 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/RDNA-3.0.yaml @@ -0,0 +1,15 @@ +name: RDNA-3.0-server +humanName: RDNA 3.0 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022-11-03' + Manufacturer: AMD +sections: + - header: Radeon Pro V series + members: + - Radeon-PRO-V710 diff --git a/specs/GPUs-SERVER/AMD/TeraScale-2.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2.yaml new file mode 100644 index 00000000..a1a7aa79 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/TeraScale-2.yaml @@ -0,0 +1,16 @@ +name: TeraScale-2-server +humanName: TeraScale 2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 40 nm + DirectX Support: '11.0' + Vulkan Support: 'N/A' + Release Date: '2009-09-23' + Manufacturer: AMD +sections: + - header: FireStream + members: + - FireStream-9350 + - FireStream-9370 diff --git a/specs/GPUs-SERVER/AMD/TeraScale.yaml b/specs/GPUs-SERVER/AMD/TeraScale.yaml new file mode 100644 index 00000000..f49b4a82 --- /dev/null +++ b/specs/GPUs-SERVER/AMD/TeraScale.yaml @@ -0,0 +1,20 @@ +name: TeraScale-server +humanName: TeraScale +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 55 nm + DirectX Support: '9.3' + Vulkan Support: 'N/A' + Release Date: '2005-11-22' + Manufacturer: AMD +sections: + - header: FireStream + members: + - FireStream-9170 + - FireStream-9250 + - FireStream-9270 + - header: FirePro Remote + members: + - FirePro-RG220 diff --git a/specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml b/specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml new file mode 100644 index 00000000..6f8c09b4 --- /dev/null +++ b/specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml @@ -0,0 +1,30 @@ +name: GPUs-SERVER-AMD +humanName: Server GPUs +type: Generic Container +isPart: false +topHeader: 'SELECT SERIES:' +data: + Manufacturer: AMD +sections: + - header: RDNA + members: + - RDNA-3.0-server + - RDNA-2.0-server + - RDNA-1.0-server + - header: CDNA + members: + - CDNA-3.0 + - CDNA-2.0 + - CDNA-1.0 + - header: GCN + members: + - GCN-5.1-server + - GCN-5.0-server + - GCN-4.0-server + - GCN-3.0-server + - GCN-2.0-server + - GCN-1.0-server + - header: TeraScale + members: + - TeraScale-2-server + - TeraScale-server diff --git a/specs/Root.yaml b/specs/Root.yaml index 017f211d..bc937c09 100644 --- a/specs/Root.yaml +++ b/specs/Root.yaml @@ -11,6 +11,7 @@ sections: - CPUs-SERVER - GPUs-CONSUMER-AMD - GPUs-CONSOLE-AMD + - GPUs-SERVER-AMD - APUs-DESKTOP - APUs-MOBILE - header: Intel From 74cd9763e120870db4dfdf73d3d871486786e995 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Wed, 11 Dec 2024 19:36:03 +0000 Subject: [PATCH 37/41] More categorisation and data fixing --- .../AMD/GCN-4.0/Radeon-E9550-MXM.yaml | 4 +- .../AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-470.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-470D.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-480.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-560-XT.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-570.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-570X.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-580-OEM.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-580.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-580G.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-580X.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-590-GME.yaml | 4 +- .../AMD/GCN-4.0/Radeon-RX-590.yaml | 4 +- specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml | 35 +++++++----- .../AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml | 4 +- .../AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml | 4 +- .../AMD/GCN-5.0/Radeon-RX-Vega-56.yaml | 4 +- .../Radeon-RX-Vega-64-Limited-Edition.yaml | 4 +- .../Radeon-RX-Vega-64-Liquid-Cooling.yaml | 4 +- .../AMD/GCN-5.0/Radeon-RX-Vega-64.yaml | 4 +- .../AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml | 4 +- ...eon-Vega-Frontier-Edition-Watercooled.yaml | 4 +- .../GCN-5.0/Radeon-Vega-Frontier-Edition.yaml | 4 +- .../GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml | 4 +- specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml | 56 +++++++++++-------- .../AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml | 4 +- .../Radeon-RX-5700-XT-50th-Anniversary.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5700.yaml | 4 +- .../AMD/RDNA-1.0/Radeon-RX-5700M.yaml | 4 +- specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml | 42 ++++++++------ specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml | 6 +- specs/GPUs-SERVER/AMD/GCN-1.0.yaml | 3 +- .../AMD/GCN-1.0/Radeon-Sky-500.yaml | 1 + .../AMD/GCN-1.0/Radeon-Sky-700.yaml | 1 + .../AMD/GCN-1.0/Radeon-Sky-900.yaml | 1 + 43 files changed, 191 insertions(+), 94 deletions(-) diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml index a4cd8f51..63657168 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml @@ -29,5 +29,7 @@ data: FP32 Compute: 5.732 TFLOPS FP64 Compute: 358.3 GFLOPS (1:16) Slot Width: MXM Module - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: None diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml index 08c84f4e..72179f04 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 5.728 TFLOPS FP64 Compute: 358.0 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin + 1x 8-pin Length: 305 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml index 3cf9bd82..8ebe40e3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 4.940 TFLOPS FP64 Compute: 308.7 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 240 mm Width: 95 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml index 97afea3b..a37bc7fe 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 4.322 TFLOPS FP64 Compute: 270.1 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml index acc587ac..cd31736c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 5.834 TFLOPS FP64 Compute: 364.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 240 mm Width: 95 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml index 1b85d6c6..4405d884 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 4.394 TFLOPS FP64 Compute: 274.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml index 7bfc61b3..6589c30c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml @@ -31,6 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x DVI - - 1x HDMI 2.0b3x DisplayPort 1.4a + - + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml index cae898dc..8f15b4f9 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml @@ -31,6 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x DVI - - 1x HDMI 2.0b3x DisplayPort 1.4a + - + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml index 3b86f537..bcccb5de 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml @@ -31,6 +31,8 @@ data: Slot Width: Dual-slot Outputs: - 1x DVI - - 1x HDMI 2.0b3x DisplayPort 1.4a + - + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml index c7c70937..99bf0288 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 5.834 TFLOPS FP64 Compute: 364.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml index 8514d678..30b59a26 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 6.175 TFLOPS FP64 Compute: 385.9 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml index 7ddbf44f..3ff4bf34 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 6.129 TFLOPS FP64 Compute: 383.0 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml index 86021b5a..7fa7822c 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 6.175 TFLOPS FP64 Compute: 385.9 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml index dae457da..93945019 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 6.543 TFLOPS FP64 Compute: 409.0 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml index 4753e4e4..1b176c56 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 7.119 TFLOPS FP64 Compute: 445.0 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 241 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml index c943f705..ffa358d8 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml @@ -10,27 +10,34 @@ data: Release Date: '2017-06-27' Manufacturer: AMD sections: + - header: RX Vega + members: + - Radeon-Vega-Frontier-Edition + - Radeon-Vega-Frontier-Edition-Watercooled + - Radeon-RX-Vega-64-Liquid-Cooling + - Radeon-RX-Vega-64-Limited-Edition + - Radeon-RX-Vega-64 + - Radeon-RX-Vega-56 + - Radeon-RX-Vega-11-Embedded + - Radeon-RX-Vega-11 + - header: RX Vega Mobile + members: + - Radeon-RX-Vega-56-Mobile + - Radeon-RX-Vega-11-Mobile + - Radeon-RX-Vega-10-Mobile + - header: Integrated + members: + - Radeon-Pro-Vega-56 - header: WHOLE RANGE members: - Radeon-Pro-Vega-16 - Radeon-Pro-Vega-20 - Radeon-Pro-Vega-48 - - Radeon-Pro-Vega-56 - Radeon-Pro-Vega-64 - Radeon-Pro-Vega-64X - Radeon-Pro-WX-8100 - Radeon-Pro-WX-8200 - Radeon-Pro-WX-9100 - - Radeon-RX-Vega-10-Mobile - - Radeon-RX-Vega-11 - - Radeon-RX-Vega-11-Embedded - - Radeon-RX-Vega-11-Mobile - - Radeon-RX-Vega-56 - - Radeon-RX-Vega-56-Mobile - - Radeon-RX-Vega-64 - - Radeon-RX-Vega-64-Limited-Edition - - Radeon-RX-Vega-64-Liquid-Cooling - - Radeon-RX-Vega-Nano - Radeon-Vega-3 - Radeon-Vega-3-Embedded - Radeon-Vega-3-Mobile @@ -42,5 +49,7 @@ sections: - Radeon-Vega-10-Mobile - Radeon-Vega-11 - Radeon-Vega-11-Embedded - - Radeon-Vega-Frontier-Edition - - Radeon-Vega-Frontier-Edition-Watercooled + - header: Never Released + members: + - Radeon-RX-Vega-Nano + diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml index a3572bd5..a42f7b7f 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml @@ -30,5 +30,7 @@ data: FP32 Compute: 8.960 TFLOPS FP64 Compute: 560.0 GFLOPS (1:16) Slot Width: IGP - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: None diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml index 3b506b37..f39458e6 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 9.326 TFLOPS FP64 Compute: 582.8 GFLOPS (1:16) Slot Width: MXM Module - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: None Length: 105 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml index 21bc8a33..d6521dcb 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 10.54 TFLOPS FP64 Compute: 659.0 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 280 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml index e1123714..90b54967 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 12.66 TFLOPS FP64 Compute: 791.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 272 mm Width: 112 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml index 7447a3cc..11fe1016 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 13.74 TFLOPS FP64 Compute: 858.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 272 mm Width: 112 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml index 06788b59..0a828de5 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 12.66 TFLOPS FP64 Compute: 791.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 280 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml index 9cd542da..5446abe3 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 12.66 TFLOPS FP64 Compute: 791.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 152 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml index 911b9fd1..26175fdd 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 13.11 TFLOPS FP64 Compute: 819.2 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 267 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml index 3e8ae1ba..5226f88b 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 13.11 TFLOPS FP64 Compute: 819.2 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 267 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml index a0940327..2762befc 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 13.44 TFLOPS FP64 Compute: 3.360 TFLOPS (1:4) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 2x 8-pin Length: 280 mm Width: 125 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml index 597ceb79..e6a0f0c3 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml @@ -10,31 +10,39 @@ data: Release Date: '2019-07-07' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: Consumer RX + members: + - Radeon-RX-5700-XT-50th-Anniversary + - Radeon-RX-5700-XT + - Radeon-RX-5700 + - Radeon-RX-5600-XT + - Radeon-RX-5500-XT + - header: Consumer RX Mobile members: - - Radeon-Pro-5300 - - Radeon-Pro-5300M - - Radeon-Pro-5500-XT - - Radeon-Pro-5500M - - Radeon-Pro-5600M - - Radeon-Pro-5700 - - Radeon-Pro-5700-XT - - Radeon-Pro-W5300M + - Radeon-RX-5700M + - Radeon-RX-5600M + - Radeon-RX-5500M + - Radeon-RX-5300M + - header: Workstation PRO Desktop + members: + - Radeon-Pro-W5700X + - Radeon-Pro-W5700 + - Radeon-Pro-W5500X - Radeon-Pro-W5500 + - Radeon-Pro-5700-XT + - Radeon-Pro-5700 + - Radeon-Pro-5500-XT + - Radeon-Pro-5300 + - header: Workstation PRO Mobile + members: - Radeon-Pro-W5500M - - Radeon-Pro-W5500X - - Radeon-Pro-W5700 - - Radeon-Pro-W5700X - - Radeon-RX-5300-OEM - - Radeon-RX-5300-XT-OEM - - Radeon-RX-5300M - - Radeon-RX-5500-OEM - - Radeon-RX-5500-XT - - Radeon-RX-5500M + - Radeon-Pro-W5300M + - Radeon-Pro-5600M + - Radeon-Pro-5500M + - Radeon-Pro-5300M + - header: OEM + members: - Radeon-RX-5600-OEM - - Radeon-RX-5600-XT - - Radeon-RX-5600M - - Radeon-RX-5700 - - Radeon-RX-5700-XT - - Radeon-RX-5700-XT-50th-Anniversary - - Radeon-RX-5700M + - Radeon-RX-5500-OEM + - Radeon-RX-5300-XT-OEM + - Radeon-RX-5300-OEM diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml index 867ae7bb..11e6d6d6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 4.632 TFLOPS FP64 Compute: 289.5 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 180 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml index 5d025209..4c03f505 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 5.196 TFLOPS FP64 Compute: 324.7 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin Length: 180 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml index f57c31de..37add05a 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 5.196 TFLOPS FP64 Compute: 324.7 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 180 mm Width: 110 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml index 263acb9f..24f26d6d 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 5.196 TFLOPS FP64 Compute: 324.7 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 180 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml index 4fccc4a1..65c01898 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml @@ -29,5 +29,7 @@ data: FP32 Compute: 6.390 TFLOPS FP64 Compute: 399.4 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml index 714287f5..6fce2795 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml @@ -29,6 +29,8 @@ data: FP32 Compute: 7.188 TFLOPS FP64 Compute: 449.3 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 8-pin Length: 267 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml index e1e9c1e0..6b11efb5 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 10.14 TFLOPS FP64 Compute: 633.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin + 1x 8-pin Length: 272 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml index df7b7f12..5a2e2600 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 9.754 TFLOPS FP64 Compute: 609.6 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin + 1x 8-pin Length: 272 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml index 8c88d340..1c05a2f0 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml @@ -29,7 +29,9 @@ data: FP32 Compute: 7.949 TFLOPS FP64 Compute: 496.8 GFLOPS (1:16) Slot Width: Dual-slot - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin + 1x 8-pin Length: 268 mm Width: 111 mm diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml index dc6b867c..ebb3cec6 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml @@ -28,5 +28,7 @@ data: TDP: 180 W FP32 Compute: 7.926 TFLOPS FP64 Compute: 495.4 GFLOPS (1:16) - Outputs: 1x HDMI 2.0b3x DisplayPort 1.4a + Outputs: + - 1x HDMI 2.0b + - 3x DisplayPort 1.4a Power Connectors: 1x 6-pin + 1x 8-pin diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml index 699a28bf..0980b833 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml @@ -16,46 +16,52 @@ sections: - Radeon-RX-6900-XTX - Radeon-RX-6900-XT - Radeon-RX-6850M-XT - - Radeon-RX-6800S - - Radeon-RX-6800M - Radeon-RX-6800-XT - Radeon-RX-6800 - Radeon-RX-6750-XT - Radeon-RX-6750-GRE-12-GB - Radeon-RX-6750-GRE-10-GB - - Radeon-RX-6700M - Radeon-RX-6700-XT - - Radeon-RX-6700S - Radeon-RX-6700 - Radeon-RX-6650M-XT - - Radeon-RX-6650M - Radeon-RX-6650-XT - - Radeon-RX-6600S - - Radeon-RX-6600M - Radeon-RX-6600-XT - Radeon-RX-6600 + - Radeon-RX-6500-XT + - Radeon-RX-6400 + - Radeon-RX-6300 + - header: Mobile + members: + - Radeon-RX-6800S + - Radeon-RX-6800M + - Radeon-RX-6700M + - Radeon-RX-6700S + - Radeon-RX-6650M + - Radeon-RX-6600S + - Radeon-RX-6600M - Radeon-RX-6550S - Radeon-RX-6550M - Radeon-RX-6500M - - Radeon-RX-6500-XT - Radeon-RX-6450M - - Radeon-RX-6400 - Radeon-RX-6300M - - Radeon-RX-6300 - - header: WHOLE RANGE - members: - - Radeon-610M - - Radeon-660M - Radeon-680M - - Radeon-Graphics-128SP + - Radeon-660M + - Radeon-610M + - header: Workstation PRO Desktop + members: - Radeon-PRO-W6300 - - Radeon-Pro-W6300M - Radeon-PRO-W6400 - - Radeon-Pro-W6500M - Radeon-PRO-W6600 - - Radeon-Pro-W6600M - Radeon-Pro-W6600X - Radeon-PRO-W6800 - Radeon-Pro-W6800X - Radeon-Pro-W6800X-Duo - Radeon-Pro-W6900X + - header: Workstation PRO Mobile + members: + - Radeon-Pro-W6300M + - Radeon-Pro-W6500M + - Radeon-Pro-W6600M + - header: Integrated + members: + - Radeon-Graphics-128SP diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml index 1029639f..9b72eefd 100644 --- a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml @@ -16,10 +16,7 @@ sections: - Radeon-RX-7900-XT - Radeon-RX-7900-GRE - Radeon-RX-7800-XT - - Radeon-RX-7700S - Radeon-RX-7700-XT - - Radeon-RX-7600M-XT - - Radeon-RX-7600S - Radeon-RX-7600-XT - Radeon-RX-7600 - header: Workstation PRO @@ -32,7 +29,10 @@ sections: - header: Mobile members: - Radeon-RX-7900M + - Radeon-RX-7700S + - Radeon-RX-7600M-XT - Radeon-RX-7600M + - Radeon-RX-7600S - Radeon-780M - Radeon-760M - Radeon-740M diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml index 0dffa511..ecefd97b 100644 --- a/specs/GPUs-SERVER/AMD/GCN-1.0.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml @@ -10,7 +10,7 @@ data: Release Date: '2011-12-22' Manufacturer: AMD sections: - - header: WHOLE RANGE + - header: FirePro Server members: - FirePro-R5000 - FirePro-S4000X @@ -21,6 +21,7 @@ sections: - FirePro-S10000 - FirePro-S10000-Passive - FirePro-S10000-Passive-12GB + - header: Radeon Sky - Radeon-Sky-500 - Radeon-Sky-700 - Radeon-Sky-900 diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml index 06a63ab3..bc8846c3 100644 --- a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml @@ -4,6 +4,7 @@ isPart: true type: Graphics Card data: Market: Cloud Gaming + Maximum Streams: 6 Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml index daf3f936..ffcff46a 100644 --- a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml @@ -4,6 +4,7 @@ isPart: true type: Graphics Card data: Market: Cloud Gaming + Maximum Streams: 6 Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml index e79b8e81..0a2c74b5 100644 --- a/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml @@ -4,6 +4,7 @@ isPart: true type: Graphics Card data: Market: Cloud Gaming + Maximum Streams: 6 Manufacturer: AMD Vendor: AMD Architecture: GCN 1.0 From 14679571a3b0778bd63b0eb6c9360e2272d9c7c4 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Wed, 11 Dec 2024 22:01:00 +0000 Subject: [PATCH 38/41] fix missing `members:` --- specs/GPUs-SERVER/AMD/GCN-1.0.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml index ecefd97b..de384aba 100644 --- a/specs/GPUs-SERVER/AMD/GCN-1.0.yaml +++ b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml @@ -22,6 +22,7 @@ sections: - FirePro-S10000-Passive - FirePro-S10000-Passive-12GB - header: Radeon Sky + members: - Radeon-Sky-500 - Radeon-Sky-700 - Radeon-Sky-900 From 05660844ce35a9cacfb55bdf0710e929bed57476 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Thu, 12 Dec 2024 19:14:57 +0000 Subject: [PATCH 39/41] unfinished intel arc, some minor edits --- specs/GPUs-CONSUMER/AMD/Mach.yaml | 2 +- specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml | 2 +- specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml | 3 ++ .../GPUs-CONSUMER/Intel/Generation-12.7.yaml | 7 ++- .../Intel/Generation-12.7/Arc-A310.yaml | 6 +-- .../Intel/Generation-12.7/Arc-A380.yaml | 36 ++++++++++++++++ specs/GPUs-CONSUMER/Intel/Xe2.yaml | 16 +++++++ specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml | 43 +++++++++++++++++++ specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml | 43 +++++++++++++++++++ 9 files changed, 151 insertions(+), 7 deletions(-) create mode 100644 specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380.yaml create mode 100644 specs/GPUs-CONSUMER/Intel/Xe2.yaml create mode 100644 specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml create mode 100644 specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml diff --git a/specs/GPUs-CONSUMER/AMD/Mach.yaml b/specs/GPUs-CONSUMER/AMD/Mach.yaml index de9b18c8..04ff3439 100644 --- a/specs/GPUs-CONSUMER/AMD/Mach.yaml +++ b/specs/GPUs-CONSUMER/AMD/Mach.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 600-500 nm DirectX Support: '' Vulkan Support: 'N/A' Release Date: '1992' diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml index aa101aae..7524f91d 100644 --- a/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml +++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 34-40 nm DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2010-12-14' diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml index fd4cb352..fe968b0e 100644 --- a/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml +++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml @@ -6,6 +6,9 @@ topHeader: 'SELECT SERIES:' data: Manufacturer: Intel sections: + - header: Intel Arc + members: + - Xe2 - header: uncategorised Graphics Cards members: - Generation-12.7 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml index d576219e..f221587f 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml @@ -10,9 +10,13 @@ data: Release Date: '2022' Manufacturer: Intel sections: - - header: WHOLE RANGE + - header: Desktop members: - Arc-A310 + - Arc-A380 + - Arc-A580 + - header: WHOLE RANGE + members: - Arc-A350 - Arc-A350M - Arc-A370M @@ -20,7 +24,6 @@ sections: - Arc-A530M - Arc-A550M - Arc-A570M - - Arc-A580 - Arc-A730M - Arc-A750 - Arc-A770 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml index 3940b407..69ef2265 100644 --- a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml @@ -22,15 +22,15 @@ data: VRAM Bus Width: 64 bit Render Output Unit Count: 16 Texture Mapping Unit Count: 32 - Shader Processor Count: 768 + Shader Processor Count: 192 Die Size: 157 mm² GPU: DG2-128 GPU Variant: ACM-G11 TDP: 30 W FP32 Compute: 2.688 TFLOPS - FP64 Compute: 672.0 GFLOPS (1:4) + FP64 Compute: 0.672 GFLOPS (1:4) Slot Width: Single-slot Outputs: 4x mini-DisplayPort 2.0 Power Connectors: None - Ray Tracing Cores: 6 + Ray Tracing Cores: 2 Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380.yaml new file mode 100644 index 00000000..a30ee8cf --- /dev/null +++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380.yaml @@ -0,0 +1,36 @@ +name: Arc-A310 +humanName: Arc A310 +isPart: true +type: Graphics Card +data: + Manufacturer: Intel + Vendor: Intel + Architecture: Generation 12.7 + Lithography: 6 nm + DirectX Support: '12.2' + HLSL Shader Model: '96' + Vulkan Support: '1.3' + OpenGL Support: '4.6' + OpenCL Support: '3.0' + Release Date: '2022-6-14' + GPU Base Frequency: 2000 MHz + GPU Boost Frequency: 2050 MHz + VRAM Frequency: 1937 MHz + VRAM Bandwidth: 186.0 GB/s + VRAM Capacity: 6 GiB + VRAM Type: GDDR6 + VRAM Bus Width: 96 bit + Render Output Unit Count: 16 + Texture Mapping Unit Count: 128 + Shader Processor Count: 256 + Die Size: 157 mm² + GPU: DG2-128 + GPU Variant: ACM-G11 + TDP: 75 W + FP32 Compute: 4.096 TFLOPS + FP64 Compute: 1.024 GFLOPS (1:4) + Slot Width: Single-slot + Outputs: 4x mini-DisplayPort 2.0 + Power Connectors: None + Ray Tracing Cores: 2 + Tensor Cores: 96 diff --git a/specs/GPUs-CONSUMER/Intel/Xe2.yaml b/specs/GPUs-CONSUMER/Intel/Xe2.yaml new file mode 100644 index 00000000..bd803dc1 --- /dev/null +++ b/specs/GPUs-CONSUMER/Intel/Xe2.yaml @@ -0,0 +1,16 @@ +name: Xe2 +humanName: Xe2 +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 14 nm + DirectX Support: '12.1' + Vulkan Support: '1.3' + Release Date: '2024-12-13' + Manufacturer: Intel +sections: + - header: WHOLE RANGE + members: + - Arc-B580 + - Arc-B570 \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml new file mode 100644 index 00000000..d32d6625 --- /dev/null +++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml @@ -0,0 +1,43 @@ +name: Arc-B570 +humanName: ARC B570 +isPart: true +type: Graphics Card +data: + Manufacturer: Intel + Vendor: Intel + Architecture: Xe2 + # Lithography: 6 nm + # DirectX Support: '12.2' + # HLSL Shader Model: '384' + # Vulkan Support: '1.3' + # OpenGL Support: '4.6' + # OpenCL Support: '3.0' + Release Date: '2025-01-16' + # GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2500 MHz + # VRAM Frequency: 2000 MHz + VRAM Bandwidth: 380.0 GB/s + VRAM Capacity: 10 GiB + # VRAM Type: GDDR6 + VRAM Bus Width: 160 bit + # Render Output Unit Count: 96 + # Texture Mapping Unit Count: 192 + # Shader Processor Count: 3072 + # Die Size: 406 mm² + GPU: BMG-G21 + # GPU Variant: ACM-G10 + TDP: 150 W + # FP32 Compute: 12.29 TFLOPS + Slot Width: Dual-slot + Outputs: + - 3x DisplayPort 2.1 + - 1x HDMI 2.1 + Power Connectors: 1x 8-pin + Ray Tracing Cores: 18 + Tensor Cores: 144 + Hardware Accelerated Media: + - AV1 + - HEVC + - AVC + - VP9 + - XAVC-H \ No newline at end of file diff --git a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml new file mode 100644 index 00000000..98246d0c --- /dev/null +++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml @@ -0,0 +1,43 @@ +name: Arc-B580 +humanName: ARC B580 +isPart: true +type: Graphics Card +data: + Manufacturer: Intel + Vendor: Intel + Architecture: Xe2 + # Lithography: 6 nm + # DirectX Support: '12.2' + # HLSL Shader Model: '384' + # Vulkan Support: '1.3' + # OpenGL Support: '4.6' + # OpenCL Support: '3.0' + Release Date: '2024-12-13' + # GPU Base Frequency: 1700 MHz + GPU Boost Frequency: 2670 MHz + # VRAM Frequency: 2000 MHz + VRAM Bandwidth: 456.0 GB/s + VRAM Capacity: 12 GiB + # VRAM Type: GDDR6 + VRAM Bus Width: 192 bit + # Render Output Unit Count: 96 + # Texture Mapping Unit Count: 192 + # Shader Processor Count: 3072 + # Die Size: 406 mm² + GPU: BMG-G21 + # GPU Variant: ACM-G10 + TDP: 190 W + # FP32 Compute: 12.29 TFLOPS + Slot Width: Dual-slot + Outputs: + - 3x DisplayPort 2.1 + - 1x HDMI 2.1 + Power Connectors: 1x 8-pin + Ray Tracing Cores: 20 + Tensor Cores: 160 + Hardware Accelerated Media: + - AV1 + - HEVC + - AVC + - VP9 + - XAVC-H From b4d2b9398b0453596bd19d980355b39421a20b9b Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Sat, 14 Dec 2024 20:43:12 +0000 Subject: [PATCH 40/41] amd lithography fix and categorisation * pascall categorisation * start on ada-lovelace categorisation --- specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml | 2 +- specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml | 2 +- specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml | 2 +- specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml | 2 +- specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml | 2 +- specs/GPUs-CONSOLE/AMD/TeraScale.yaml | 2 +- specs/GPUs-CONSOLE/Nvidia/Curie.yaml | 2 +- specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml | 2 +- specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml | 2 +- specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml | 42 ++--- specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml | 2 +- specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml | 5 - specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml | 16 +- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml | 54 ++++--- specs/GPUs-CONSUMER/Nvidia/Pascal.yaml | 152 ++++++++++-------- .../Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml | 1 + .../Nvidia/Pascal/GeForce-GT-1010.yaml | 1 + .../Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml | 1 + .../Nvidia/Pascal/GeForce-GT-1030.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml | 1 + .../Pascal/GeForce-GTX-1050-Mobile.yaml | 1 + .../Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml | 1 + .../Pascal/GeForce-GTX-1050-Ti-Mobile.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1050.yaml | 1 + .../Pascal/GeForce-GTX-1060-3-GB-GP104.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml | 1 + .../Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml | 1 + .../Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml | 1 + .../Pascal/GeForce-GTX-1060-6-GB-GP104.yaml | 1 + .../Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml | 1 + .../Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml | 1 + .../Pascal/GeForce-GTX-1060-Mobile.yaml | 1 + .../Pascal/GeForce-GTX-1070-GDDR5X.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml | 1 + .../Pascal/GeForce-GTX-1070-Mobile.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1070.yaml | 1 + .../Pascal/GeForce-GTX-1080-11Gbps.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml | 1 + .../Pascal/GeForce-GTX-1080-Mobile.yaml | 1 + .../Pascal/GeForce-GTX-1080-Ti-10-GB.yaml | 1 + .../Pascal/GeForce-GTX-1080-Ti-12-GB.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml | 1 + .../Nvidia/Pascal/GeForce-GTX-1080.yaml | 1 + .../Nvidia/Pascal/GeForce-MX150-GP107.yaml | 1 + .../Nvidia/Pascal/GeForce-MX150.yaml | 1 + .../Nvidia/Pascal/GeForce-MX230.yaml | 1 + .../Nvidia/Pascal/GeForce-MX250.yaml | 1 + .../Nvidia/Pascal/GeForce-MX330.yaml | 1 + .../Nvidia/Pascal/GeForce-MX350.yaml | 1 + .../Nvidia/Pascal/Quadro-P1000-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P2000-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P3000-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P3200-Max-Q.yaml | 4 +- .../Nvidia/Pascal/Quadro-P3200-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P4000-Max-Q.yaml | 4 +- .../Nvidia/Pascal/Quadro-P4000-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P4200-Max-Q.yaml | 4 +- .../Nvidia/Pascal/Quadro-P4200-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P500-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P5000-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P520-Max-Q.yaml | 4 +- .../Nvidia/Pascal/Quadro-P520-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P5200-Max-Q.yaml | 4 +- .../Nvidia/Pascal/Quadro-P5200-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P600-Mobile.yaml | 4 +- .../Nvidia/Pascal/Quadro-P620-Mobile.yaml | 4 +- .../Nvidia/Pascal/TITAN-X-Pascal.yaml | 1 + .../GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml | 1 + 75 files changed, 251 insertions(+), 152 deletions(-) diff --git a/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml index 424968bd..9fef96b2 100644 --- a/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 16-28 nm DirectX Support: '11.1' Vulkan Support: '1.2.170' Release Date: '2011-12-22' diff --git a/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml index d6665cc1..2e106fda 100644 --- a/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml +++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 16-28 nm DirectX Support: '12.0' Vulkan Support: '1.2.170' Release Date: '2013-03-22' diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml index 8d8d4c03..b18819ae 100644 --- a/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 6-7 nm DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2020-10-28' diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml index aa9b089a..c541237c 100644 --- a/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml +++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 4 nm DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022-11-03' diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml index 7251d0f6..030b8dd2 100644 --- a/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale-2.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 40 nm DirectX Support: '11.0' Vulkan Support: 'N/A' Release Date: '2009-09-23' diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale.yaml index 8cb653e1..c95bffaa 100644 --- a/specs/GPUs-CONSOLE/AMD/TeraScale.yaml +++ b/specs/GPUs-CONSOLE/AMD/TeraScale.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 45-80 nm DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2005-11-22' diff --git a/specs/GPUs-CONSOLE/Nvidia/Curie.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie.yaml index 1aefaedb..1c7b2002 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Curie.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Curie.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 90-28 nm DirectX Support: '9.3' Vulkan Support: 'N/A' Release Date: '2003-12-22' diff --git a/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml index f1d5ac0c..09b23533 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 150 nm DirectX Support: '8.1' Vulkan Support: 'N/A' Release Date: '2001-02-27' diff --git a/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml index 5f12e522..4703eb0e 100644 --- a/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml +++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 16-20 nm DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2014-09-19' diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml index ffa358d8..1315e942 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml @@ -25,30 +25,32 @@ sections: - Radeon-RX-Vega-56-Mobile - Radeon-RX-Vega-11-Mobile - Radeon-RX-Vega-10-Mobile - - header: Integrated + - header: Pro Vega (workstation) members: - - Radeon-Pro-Vega-56 - - header: WHOLE RANGE + - Radeon-Pro-WX-9100 + - Radeon-Pro-WX-8200 + - Radeon-Pro-WX-8100 + - header: Pro Vega Mobile (workstation) members: - - Radeon-Pro-Vega-16 - - Radeon-Pro-Vega-20 - - Radeon-Pro-Vega-48 - - Radeon-Pro-Vega-64 - Radeon-Pro-Vega-64X - - Radeon-Pro-WX-8100 - - Radeon-Pro-WX-8200 - - Radeon-Pro-WX-9100 - - Radeon-Vega-3 - - Radeon-Vega-3-Embedded - - Radeon-Vega-3-Mobile - - Radeon-Vega-6-Embedded - - Radeon-Vega-6-Mobile - - Radeon-Vega-8 - - Radeon-Vega-8-Embedded - - Radeon-Vega-8-Mobile - - Radeon-Vega-10-Mobile - - Radeon-Vega-11 + - Radeon-Pro-Vega-64 + - Radeon-Pro-Vega-56 + - Radeon-Pro-Vega-48 + - Radeon-Pro-Vega-20 + - Radeon-Pro-Vega-16 + - header: Integrated + members: - Radeon-Vega-11-Embedded + - Radeon-Vega-11 + - Radeon-Vega-10-Mobile + - Radeon-Vega-8-Mobile + - Radeon-Vega-8-Embedded + - Radeon-Vega-8 + - Radeon-Vega-6-Mobile + - Radeon-Vega-6-Embedded + - Radeon-Vega-3-Mobile + - Radeon-Vega-3-Embedded + - Radeon-Vega-3 - header: Never Released members: - Radeon-RX-Vega-Nano diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml index 834f28c8..be52c179 100644 --- a/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml +++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 7 nm DirectX Support: '12.1' Vulkan Support: '1.3' Release Date: '2018-11-18' diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml index 861c5713..1d188ed9 100644 --- a/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml +++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml @@ -11,11 +11,6 @@ sections: - RDNA-1.0 - RDNA-2.0 - RDNA-3.0 - - header: CDNA - members: - - CDNA-1.0 - - CDNA-2.0 - - CDNA-3.0 - header: GCN members: - GCN-1.0 diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml index fcfb6eb2..77615dbf 100644 --- a/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml +++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml @@ -11,20 +11,22 @@ sections: - Ada-Lovelace - Ampere - Turing + - header: GTX + members: + - Pascal + - Maxwell-2.0 + - Maxwell + - Kepler-2.0 + - Kepler + - Fermi-2.0 + - Fermi - header: uncategorised Graphics Cards members: - Celsius - Curie - Fahrenheit - - Fermi - - Fermi-2.0 - Hopper - Kelvin - - Kepler - - Kepler-2.0 - - Maxwell - - Maxwell-2.0 - - Pascal - Rankine - Tesla - Tesla-2.0 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml index d835b153..f32ba6ca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml @@ -10,34 +10,38 @@ data: Release Date: '2022-09-20' Manufacturer: Nvidia sections: - - header: WHOLE RANGE + - header: Main RTX Range (Consumer) members: - - GeForce-RTX-4050 - - GeForce-RTX-4050-Max-Q - - GeForce-RTX-4050-Mobile - - GeForce-RTX-4060 - - GeForce-RTX-4060-AD106 - - GeForce-RTX-4060-Max-Q - - GeForce-RTX-4060-Mobile - - GeForce-RTX-4060-Ti-8-GB - - GeForce-RTX-4060-Ti-16-GB - - GeForce-RTX-4070 - - GeForce-RTX-4070-Max-Q - - GeForce-RTX-4070-Mobile - - GeForce-RTX-4070-SUPER - - GeForce-RTX-4070-Ti - - GeForce-RTX-4070-Ti-SUPER - - GeForce-RTX-4080 - - GeForce-RTX-4080-12-GB - - GeForce-RTX-4080-Max-Q - - GeForce-RTX-4080-Mobile - - GeForce-RTX-4080-SUPER - - GeForce-RTX-4080-Ti - - GeForce-RTX-4090 + - GeForce-RTX-4090-Ti - GeForce-RTX-4090-D - - GeForce-RTX-4090-Max-Q + - GeForce-RTX-4090 + - GeForce-RTX-4080-Ti + - GeForce-RTX-4080-SUPER + - GeForce-RTX-4080-12-GB + - GeForce-RTX-4080 + - GeForce-RTX-4070-Ti-SUPER + - GeForce-RTX-4070-Ti + - GeForce-RTX-4070-SUPER + - GeForce-RTX-4070 + - GeForce-RTX-4060-Ti-16-GB + - GeForce-RTX-4060-Ti-8-GB + - GeForce-RTX-4060-AD106 + - GeForce-RTX-4060 + - GeForce-RTX-4050 + - header: RTX Mobile + members: - GeForce-RTX-4090-Mobile - - GeForce-RTX-4090-Ti + - GeForce-RTX-4090-Max-Q + - GeForce-RTX-4080-Mobile + - GeForce-RTX-4080-Max-Q + - GeForce-RTX-4070-Mobile + - GeForce-RTX-4070-Max-Q + - GeForce-RTX-4060-Mobile + - GeForce-RTX-4060-Max-Q + - GeForce-RTX-4050-Mobile + - GeForce-RTX-4050-Max-Q + - header: WHOLE RANGE + members: - L4 - L40 - L40-CNX diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml index 2d42e259..d9579236 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml @@ -4,55 +4,101 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 16-14 nm DirectX Support: '12.1' Vulkan Support: '1.2' Release Date: '2016' Manufacturer: Nvidia sections: - - header: WHOLE RANGE + - header: High-end Titan range (Consumer) + members: + - TITAN-Xp + - TITAN-X-Pascal + - header: Main GTX Range (Consumer) members: - - GeForce-GT-1010 - - GeForce-GT-1010-DDR4 - - GeForce-GT-1030 - - GeForce-GT-1030-DDR4 - - GeForce-GTX-1050 - - GeForce-GTX-1050-3-GB - - GeForce-GTX-1050-Max-Q - - GeForce-GTX-1050-Mobile - - GeForce-GTX-1050-Ti - - GeForce-GTX-1050-Ti-Max-Q - - GeForce-GTX-1050-Ti-Mobile - - GeForce-GTX-1060-3-GB-GP104 - - GeForce-GTX-1060-5-GB - - GeForce-GTX-1060-6-GB - - GeForce-GTX-1060-6-GB-9Gbps - - GeForce-GTX-1060-6-GB-GDDR5X - - GeForce-GTX-1060-6-GB-GP104 - - GeForce-GTX-1060-6-GB-Rev.-2 - - GeForce-GTX-1060-8-GB-GDDR5X - - GeForce-GTX-1060-Max-Q - - GeForce-GTX-1060-Mobile - - GeForce-GTX-1070 - - GeForce-GTX-1070-GDDR5X - - GeForce-GTX-1070-Max-Q - - GeForce-GTX-1070-Mobile - - GeForce-GTX-1070-Ti - - GeForce-GTX-1080 - - GeForce-GTX-1080-11Gbps - - GeForce-GTX-1080-Max-Q - - GeForce-GTX-1080-Mobile - - GeForce-GTX-1080-Ti - - GeForce-GTX-1080-Ti-10-GB - GeForce-GTX-1080-Ti-12-GB - - GeForce-MX150 - - GeForce-MX230 - - GeForce-MX250 - - GeForce-MX350 + - GeForce-GTX-1080-Ti-10-GB + - GeForce-GTX-1080-Ti + - GeForce-GTX-1080-11Gbps + - GeForce-GTX-1080 + - GeForce-GTX-1070-Ti + - GeForce-GTX-1070-GDDR5X + - GeForce-GTX-1070 + - GeForce-GTX-1060-8-GB-GDDR5X + - GeForce-GTX-1060-6-GB-Rev.-2 + - GeForce-GTX-1060-6-GB-GP104 + - GeForce-GTX-1060-6-GB-GDDR5X + - GeForce-GTX-1060-6-GB-9Gbps + - GeForce-GTX-1060-6-GB + - GeForce-GTX-1060-5-GB + - GeForce-GTX-1060-3-GB-GP104 - GeForce-GTX-1060-3-GB - - GeForce-MX150-GP107 + - GeForce-GTX-1050-Ti + - GeForce-GTX-1050-3-GB + - GeForce-GTX-1050 + - header: GTX Mobile + members: + - GeForce-GTX-1080-Mobile + - GeForce-GTX-1080-Max-Q + - GeForce-GTX-1070-Mobile + - GeForce-GTX-1070-Max-Q + - GeForce-GTX-1060-Mobile + - GeForce-GTX-1060-Max-Q + - GeForce-GTX-1050-Ti-Mobile + - GeForce-GTX-1050-Ti-Max-Q + - GeForce-GTX-1050-Mobile + - GeForce-GTX-1050-Max-Q + - header: Quadro Desktop (Workstation) + members: + - Quadro-P2200 + - Quadro-P6000 + - Quadro-P5000 + - Quadro-P4000 + - Quadro-P2000 + - Quadro-P1000 + - Quadro-P620 + - Quadro-P600 + - Quadro-P400 + - Quadro-GP100 + - header: Quadro Mobile (Workstation) + members: + - Quadro-P1000-Mobile + - Quadro-P5200-Mobile + - Quadro-P5200-Max-Q + - Quadro-P5000-X2-Mobile + - Quadro-P5000-Mobile + - Quadro-P4200-Mobile + - Quadro-P4200-Max-Q + - Quadro-P4000-Mobile + - Quadro-P4000-Max-Q + - Quadro-P3200-Mobile + - Quadro-P3200-Max-Q + - Quadro-P3000-Mobile + - Quadro-P2000-Mobile + - Quadro-P620-Mobile + - Quadro-P600-Mobile + - Quadro-P520-Mobile + - Quadro-P520-Max-Q + - Quadro-P500-Mobile + - header: Low-end GT Desktop + members: + - GeForce-GT-1030-DDR4 + - GeForce-GT-1030 + - GeForce-GT-1010-DDR4 + - GeForce-GT-1010 + - header: Low-end MX Mobile + members: - GeForce-MX330 + - GeForce-MX150-GP107 + - GeForce-MX350 + - GeForce-MX250 + - GeForce-MX230 + - GeForce-MX150 + - header: Embedded Jetson + members: - Jetson-TX2 + - header: Crypto Mining + members: - P102-100 - P102-101 - P104-100 @@ -60,31 +106,3 @@ sections: - P106-090 - P106-100 - P106M - - Quadro-GP100 - - Quadro-P400 - - Quadro-P500-Mobile - - Quadro-P520-Max-Q - - Quadro-P520-Mobile - - Quadro-P600 - - Quadro-P600-Mobile - - Quadro-P620 - - Quadro-P620-Mobile - - Quadro-P1000 - - Quadro-P2000 - - Quadro-P2000-Mobile - - Quadro-P3000-Mobile - - Quadro-P3200-Max-Q - - Quadro-P3200-Mobile - - Quadro-P4000 - - Quadro-P4000-Max-Q - - Quadro-P4000-Mobile - - Quadro-P4200-Max-Q - - Quadro-P4200-Mobile - - Quadro-P5000 - - Quadro-P5000-Mobile - - Quadro-P5000-X2-Mobile - - Quadro-P5200-Max-Q - - Quadro-P5200-Mobile - - Quadro-P6000 - - Quadro-P1000-Mobile - - Quadro-P2200 diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml index 2fe78af2..4f189f15 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml @@ -3,6 +3,7 @@ humanName: GeForce GT 1010 DDR4 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml index dcdae042..c7b256d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml @@ -3,6 +3,7 @@ humanName: GeForce GT 1010 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml index e913f004..3f86e6b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml @@ -3,6 +3,7 @@ humanName: GeForce GT 1030 DDR4 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml index 99a0363b..1e6a09c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml @@ -3,6 +3,7 @@ humanName: GeForce GT 1030 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml index e4652e24..2ab47c73 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 3 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml index f0ae4225..78e2ddca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml index 70dba4d5..c03b5b4b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml index 33be1124..85015a23 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 Ti Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml index ea3249db..7a6ece3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 Ti Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml index a04d2f12..5c2cd48c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 Ti isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml index 655aba4f..977d777f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1050 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml index 086e9a8e..12475739 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 3 GB GP104 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml index 7bcea07b..43261cca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 3 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml index 9e7dd949..830bb9a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 5 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml index 3990f498..59cde31d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 6 GB 9Gbps isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml index 002968a1..dc2657af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 6 GB GDDR5X isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml index 0fb61a2c..9df81629 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 6 GB GP104 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml index 277daf68..081bc313 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 6 GB Rev. 2 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml index dc397a0a..3cb2cfbc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 6 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml index 096e97b0..694e8b9a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 8 GB GDDR5X isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml index 6e9305af..71dd1d8e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml index a74a34fd..bdd31a2b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1060 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml index 4c721dac..77a38396 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1070 GDDR5X isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml index 5c37d6a2..d75bddb8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1070 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml index afb9d06c..50db7794 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1070 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml index b3fe0f58..54fbb2f8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1070 Ti isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml index d848895b..f1fb20b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1070 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml index 2c544ed6..02b9c138 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 11Gbps isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml index 1e16275c..7b11da7d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml index bf02f94e..b0a1c8a9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml index 9a5816fb..05301d72 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 Ti 10 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml index ba85b0a7..49322760 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 Ti 12 GB isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml index b376fb80..df1e31c1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 Ti isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml index 3b52d50a..179af5a0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml @@ -3,6 +3,7 @@ humanName: GeForce GTX 1080 isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml index 7b7c4a8d..ede6e0c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX150 GP107 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml index 17cbb8de..d7b6f6a1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX150 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml index 49139fc0..69e08998 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX230 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml index a1594d28..c6a70d93 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX250 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml index 270682e4..78869e62 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX330 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml index 34b7e09f..f069fbe3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml @@ -3,6 +3,7 @@ humanName: GeForce MX350 isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml index 3bb3f457..56c9dfb4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P1000 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml index d10585f6..0fb1f245 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P2000 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml index 2d8b81fb..e8ffd291 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P3000 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml index 40560e76..f3396005 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml @@ -3,7 +3,9 @@ humanName: Quadro P3200 Max-Q isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml index c75e71ea..c4f70a5f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P3200 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml index 4a12e55c..c44c99fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml @@ -3,7 +3,9 @@ humanName: Quadro P4000 Max-Q isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml index 11fc3642..21d62e15 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P4000 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml index 75a3c7c7..4437979c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml @@ -3,7 +3,9 @@ humanName: Quadro P4200 Max-Q isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml index 5aac0b2e..71a76b80 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P4200 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml index 55e16f45..00b032af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P500 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml index 3c631c7b..cfb6e67d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P5000 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml index f174190a..ce786880 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P5000 X2 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml index 730c997d..0fba2739 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml @@ -3,7 +3,9 @@ humanName: Quadro P520 Max-Q isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml index c56079b9..31899e88 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P520 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml index 560d8058..f69a06e3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml @@ -3,7 +3,9 @@ humanName: Quadro P5200 Max-Q isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml index 5f7e1cb8..3a8107eb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P5200 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml index 4d60e498..b89582fd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P600 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml index 65e84843..c685114a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml @@ -3,7 +3,9 @@ humanName: Quadro P620 Mobile isPart: true type: Graphics Card data: - Market: Workstation + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml index 82a04c4f..deaf7c02 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml @@ -3,6 +3,7 @@ humanName: TITAN X Pascal isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml index 241d50df..1fd7a3c2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml @@ -3,6 +3,7 @@ humanName: TITAN Xp isPart: true type: Graphics Card data: + Market: Consumer Manufacturer: Nvidia Vendor: Nvidia Architecture: Pascal From 174a927680caebcc829d19feb8cdfa0c7bfd0273 Mon Sep 17 00:00:00 2001 From: Sam Mear Date: Tue, 17 Dec 2024 17:42:45 +0000 Subject: [PATCH 41/41] Nvidia categorisation, intel battlemage --- specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml | 16 +- specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml | 26 +-- specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml | 53 +++--- .../Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml | 1 + .../Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml | 1 + .../Ada-Lovelace/RTX-2000-Ada-Generation.yaml | 2 + .../RTX-2000-Embedded-Ada-Generation.yaml | 2 + .../RTX-2000-Max-Q-Ada-Generation.yaml | 3 + .../RTX-2000-Mobile-Ada-Generation.yaml | 3 + .../RTX-3000-Mobile-Ada-Generation.yaml | 3 + .../RTX-3500-Embedded-Ada-Generation.yaml | 2 + .../RTX-3500-Mobile-Ada-Generation.yaml | 3 + .../Ada-Lovelace/RTX-4000-Ada-Generation.yaml | 2 + .../RTX-4000-Mobile-Ada-Generation.yaml | 3 + .../RTX-4000-SFF-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-4500-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-5000-Ada-Generation.yaml | 2 + .../RTX-5000-Embedded-Ada-Generation.yaml | 2 + .../RTX-5000-Max-Q-Ada-Generation.yaml | 3 + .../RTX-5000-Mobile-Ada-Generation.yaml | 3 + .../Ada-Lovelace/RTX-5880-Ada-Generation.yaml | 2 + .../Ada-Lovelace/RTX-6000-Ada-Generation.yaml | 2 + specs/GPUs-CONSUMER/Nvidia/Ampere.yaml | 178 +++++++++--------- .../Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-2050-Mobile.yaml | 1 + .../GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml | 1 + .../GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml | 1 + .../Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml | 1 + .../GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml | 1 + .../GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml | 1 + .../Ampere/GeForce-RTX-3050-Mobile.yaml | 1 + .../Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3050-Ti-Mobile.yaml | 1 + .../Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3060-Mobile.yaml | 1 + .../Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3070-Mobile.yaml | 1 + .../Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3070-Ti-Mobile.yaml | 1 + .../Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3080-Mobile.yaml | 1 + .../Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml | 1 + .../Ampere/GeForce-RTX-3080-Ti-Mobile.yaml | 1 + .../Nvidia/Ampere/RTX-A1000-Embedded.yaml | 2 + .../Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml | 3 + .../Nvidia/Ampere/RTX-A1000-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A2000-12-GB.yaml | 2 + .../Nvidia/Ampere/RTX-A2000-Embedded.yaml | 2 + .../Nvidia/Ampere/RTX-A2000-Max-Q.yaml | 3 + .../Nvidia/Ampere/RTX-A2000-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A2000.yaml | 2 + .../Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml | 3 + .../Nvidia/Ampere/RTX-A3000-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A4-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A4000-Max-Q.yaml | 3 + .../Nvidia/Ampere/RTX-A4000-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A4000.yaml | 2 + .../Nvidia/Ampere/RTX-A4000H.yaml | 2 + .../Nvidia/Ampere/RTX-A4500-Embedded.yaml | 2 + .../Nvidia/Ampere/RTX-A4500-Max-Q.yaml | 3 + .../Nvidia/Ampere/RTX-A4500-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A4500.yaml | 2 + .../Nvidia/Ampere/RTX-A500-Embedded.yaml | 2 + .../Nvidia/Ampere/RTX-A500-Mobile.yaml | 3 + .../GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml | 2 + .../Nvidia/Ampere/RTX-A5000-12Q.yaml | 2 + .../Nvidia/Ampere/RTX-A5000-8Q.yaml | 2 + .../Nvidia/Ampere/RTX-A5000-Max-Q.yaml | 3 + .../Nvidia/Ampere/RTX-A5000-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A5000.yaml | 2 + .../Nvidia/Ampere/RTX-A5500-Max-Q.yaml | 3 + .../Nvidia/Ampere/RTX-A5500-Mobile.yaml | 3 + .../Nvidia/Ampere/RTX-A5500.yaml | 2 + .../Nvidia/Ampere/RTX-A6000.yaml | 2 + specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml | 3 + specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml | 19 ++ .../Nvidia/Ada-Lovelace/L4.yaml | 1 + .../Nvidia/Ada-Lovelace/L40-CNX.yaml | 1 + .../Nvidia/Ada-Lovelace/L40.yaml | 1 + .../Nvidia/Ada-Lovelace/L40G.yaml | 1 + .../Nvidia/Ada-Lovelace/L40S.yaml | 1 + specs/GPUs-SERVER/Nvidia/Ampere.yaml | 16 ++ .../Nvidia/Ampere/A10-PCIe.yaml | 1 + .../Nvidia/Ampere/A100-PCIe-40-GB.yaml | 1 + .../Nvidia/Ampere/A100-PCIe-80-GB.yaml | 1 + .../Nvidia/Ampere/A100-SXM4-40-GB.yaml | 1 + .../Nvidia/Ampere/A100-SXM4-80-GB.yaml | 1 + .../Nvidia/Ampere/A100X.yaml | 1 + .../Nvidia/Ampere/A10G.yaml | 1 + .../Nvidia/Ampere/A10M.yaml | 1 + .../Nvidia/Ampere/A16-PCIe.yaml | 1 + .../Nvidia/Ampere/A2-PCIe.yaml | 1 + .../Nvidia/Ampere/A2.yaml | 1 + .../Nvidia/Ampere/A30-PCIe.yaml | 1 + .../Nvidia/Ampere/A30X.yaml | 1 + .../Nvidia/Ampere/A40-PCIe.yaml | 1 + specs/readme.md | 6 +- 105 files changed, 345 insertions(+), 140 deletions(-) create mode 100644 specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ada-Lovelace/L4.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ada-Lovelace/L40-CNX.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ada-Lovelace/L40.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ada-Lovelace/L40G.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ada-Lovelace/L40S.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A10-PCIe.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A100-PCIe-40-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A100-PCIe-80-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A100-SXM4-40-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A100-SXM4-80-GB.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A100X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A10G.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A10M.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A16-PCIe.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A2-PCIe.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A2.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A30-PCIe.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A30X.yaml (97%) rename specs/{GPUs-CONSUMER => GPUs-SERVER}/Nvidia/Ampere/A40-PCIe.yaml (97%) diff --git a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml index d32d6625..25454d0c 100644 --- a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml +++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml @@ -6,26 +6,26 @@ data: Manufacturer: Intel Vendor: Intel Architecture: Xe2 - # Lithography: 6 nm - # DirectX Support: '12.2' + Lithography: 5 nm + DirectX Support: '12.2' # HLSL Shader Model: '384' - # Vulkan Support: '1.3' - # OpenGL Support: '4.6' - # OpenCL Support: '3.0' + Vulkan Support: '1.4' + OpenGL Support: '4.6' + OpenCL Support: '3.0' Release Date: '2025-01-16' - # GPU Base Frequency: 1700 MHz + GPU Base Frequency: 2500 MHz GPU Boost Frequency: 2500 MHz # VRAM Frequency: 2000 MHz VRAM Bandwidth: 380.0 GB/s VRAM Capacity: 10 GiB - # VRAM Type: GDDR6 + VRAM Type: GDDR6 VRAM Bus Width: 160 bit # Render Output Unit Count: 96 # Texture Mapping Unit Count: 192 # Shader Processor Count: 3072 # Die Size: 406 mm² GPU: BMG-G21 - # GPU Variant: ACM-G10 + # GPU Variant: SRPMF TDP: 150 W # FP32 Compute: 12.29 TFLOPS Slot Width: Dual-slot diff --git a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml index 98246d0c..1ceb5d39 100644 --- a/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml +++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml @@ -6,28 +6,28 @@ data: Manufacturer: Intel Vendor: Intel Architecture: Xe2 - # Lithography: 6 nm - # DirectX Support: '12.2' + Lithography: 5 nm + DirectX Support: '12.2' # HLSL Shader Model: '384' - # Vulkan Support: '1.3' - # OpenGL Support: '4.6' - # OpenCL Support: '3.0' + Vulkan Support: '1.4' + OpenGL Support: '4.6' + OpenCL Support: '3.0' Release Date: '2024-12-13' - # GPU Base Frequency: 1700 MHz + GPU Base Frequency: 2670 MHz GPU Boost Frequency: 2670 MHz # VRAM Frequency: 2000 MHz VRAM Bandwidth: 456.0 GB/s VRAM Capacity: 12 GiB - # VRAM Type: GDDR6 + VRAM Type: GDDR6 VRAM Bus Width: 192 bit - # Render Output Unit Count: 96 - # Texture Mapping Unit Count: 192 - # Shader Processor Count: 3072 - # Die Size: 406 mm² + Render Output Unit Count: 80 + Texture Mapping Unit Count: 160 + Shader Processor Count: 2560 + Die Size: 272 mm² GPU: BMG-G21 - # GPU Variant: ACM-G10 + GPU Variant: SRPMF TDP: 190 W - # FP32 Compute: 12.29 TFLOPS + FP32 Compute: 13.67 TFLOPS Slot Width: Dual-slot Outputs: - 3x DisplayPort 2.1 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml index f32ba6ca..352b92e8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml @@ -4,7 +4,7 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm + Lithography: 5 nm DirectX Support: '12.2' Vulkan Support: '1.3' Release Date: '2022-09-20' @@ -12,12 +12,9 @@ data: sections: - header: Main RTX Range (Consumer) members: - - GeForce-RTX-4090-Ti - GeForce-RTX-4090-D - GeForce-RTX-4090 - - GeForce-RTX-4080-Ti - GeForce-RTX-4080-SUPER - - GeForce-RTX-4080-12-GB - GeForce-RTX-4080 - GeForce-RTX-4070-Ti-SUPER - GeForce-RTX-4070-Ti @@ -25,9 +22,7 @@ sections: - GeForce-RTX-4070 - GeForce-RTX-4060-Ti-16-GB - GeForce-RTX-4060-Ti-8-GB - - GeForce-RTX-4060-AD106 - GeForce-RTX-4060 - - GeForce-RTX-4050 - header: RTX Mobile members: - GeForce-RTX-4090-Mobile @@ -40,28 +35,34 @@ sections: - GeForce-RTX-4060-Max-Q - GeForce-RTX-4050-Mobile - GeForce-RTX-4050-Max-Q - - header: WHOLE RANGE + - header: Workstation RTX members: - - L4 - - L40 - - L40-CNX - - L40G - - L40S - - RTX-2000-Ada-Generation - - RTX-2000-Embedded-Ada-Generation - - RTX-2000-Max-Q-Ada-Generation - - RTX-2000-Mobile-Ada-Generation - - RTX-3000-Mobile-Ada-Generation - - RTX-3500-Embedded-Ada-Generation - - RTX-3500-Mobile-Ada-Generation + - RTX-6000-Ada-Generation + - RTX-5880-Ada-Generation + - RTX-5000-Ada-Generation + - RTX-4500-Ada-Generation + - RTX-4000-SFF-Ada-Generation - RTX-4000-Ada-Generation + - RTX-2000-Ada-Generation + - header: Workstation RTX Mobile + members: + - RTX-5000-Mobile-Ada-Generation + - RTX-5000-Max-Q-Ada-Generation - RTX-4000-Mobile-Ada-Generation - - RTX-4000-SFF-Ada-Generation - - RTX-4500-Ada-Generation - - RTX-5000-Ada-Generation + - RTX-3500-Mobile-Ada-Generation + - RTX-3000-Mobile-Ada-Generation + - RTX-2000-Mobile-Ada-Generation + - RTX-2000-Max-Q-Ada-Generation + - header: Workstation RTX Embedded + members: - RTX-5000-Embedded-Ada-Generation - - RTX-5000-Max-Q-Ada-Generation - - RTX-5000-Mobile-Ada-Generation - - RTX-5880-Ada-Generation - - RTX-6000-Ada-Generation + - RTX-3500-Embedded-Ada-Generation + - RTX-2000-Embedded-Ada-Generation + - header: Never Released + members: - TITAN-Ada + - GeForce-RTX-4090-Ti + - GeForce-RTX-4080-Ti + - GeForce-RTX-4080-12-GB + - GeForce-RTX-4060-AD106 + - GeForce-RTX-4050 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml index ab345945..203da00e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4050 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml index a45264f2..a3111841 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4050 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml index 74c0c518..ed51e519 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4060 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml index 16d7cb46..a1766242 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4060 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml index a622407d..f68223cf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4070 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml index 65149f8e..8717bf63 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4070 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml index b0c99273..ebe08546 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4080 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml index 609b88be..cfd61a67 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4080 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml index 91ee510e..6ece95a7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4090 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml index 6d753645..9769b78c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 4090 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml index 345adf31..33d14721 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml index 20e62edf..2ca196b8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 2000 Embedded Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml index dd5046fb..ff866a54 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 2000 Max-Q Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml index c50907eb..ff9d3031 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 2000 Mobile Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml index ec4f9944..f53b5f2c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 3000 Mobile Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml index fb4b2f66..38117746 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 3500 Embedded Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml index 0f41a1a8..a81227b2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 3500 Mobile Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml index e5f80654..282380b0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4000 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml index ebf6c25b..cd2fe00d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 4000 Mobile Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml index 0449cc48..df48497e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4000 SFF Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml index ad2ddc1a..23028456 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 4500 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml index 609954a9..9350db7e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml index 41876541..5356a541 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5000 Embedded Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml index 81ef2a05..1c491dc7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 5000 Max-Q Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml index 89b751c8..577d63de 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml @@ -3,6 +3,9 @@ humanName: RTX 5000 Mobile Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml index a35f29a6..72ee2ea0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 5880 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml index 9192bb39..65dd97b7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml @@ -3,6 +3,8 @@ humanName: RTX 6000 Ada Generation isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml index 03b6d48f..d782ad5e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml @@ -4,28 +4,96 @@ type: Graphics Architecture isPart: false topHeader: 'SELECT CARD:' data: - Lithography: 14 nm - DirectX Support: '' - Vulkan Support: 'N/A' + Lithography: 8 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' Release Date: '2020-05-14' Manufacturer: Nvidia sections: - - header: WHOLE RANGE + - header: Main RTX Range (Consumer) + members: + - GeForce-RTX-3090-Ti + - GeForce-RTX-3090 + - GeForce-RTX-3080-Ti-20-GB + - GeForce-RTX-3080-Ti + - GeForce-RTX-3080-12-GB + - GeForce-RTX-3080 + - GeForce-RTX-3070-TiM + - GeForce-RTX-3070-Ti-16-GB + - GeForce-RTX-3070-Ti-8-GB-GA102 + - GeForce-RTX-3070-Ti + - GeForce-RTX-3070 + - GeForce-RTX-3060-Ti-GDDR6X + - GeForce-RTX-3060-Ti-GA103 + - GeForce-RTX-3060-Ti + - GeForce-RTX-3060-3840SP + - GeForce-RTX-3060-12-GB-GA104 + - GeForce-RTX-3060-12-GB + - GeForce-RTX-3060-8-GB-GA104 + - GeForce-RTX-3050-OEM + - GeForce-RTX-3050-8-GB-GA107 + - GeForce-RTX-3050-8-GB + - GeForce-RTX-3050-6-GB + - GeForce-RTX-3050-4-GB + - header: RTX Mobile + members: + - GeForce-RTX-3080-Ti-Mobile + - GeForce-RTX-3080-Ti-Max-Q + - GeForce-RTX-3080-Mobile + - GeForce-RTX-3080-Max-Q + - GeForce-RTX-3070-Ti-Mobile + - GeForce-RTX-3070-Ti-Max-Q + - GeForce-RTX-3070-Mobile + - GeForce-RTX-3070-Max-Q + - GeForce-RTX-3060-Mobile + - GeForce-RTX-3060-Max-Q + - GeForce-RTX-3050-Ti-Mobile + - GeForce-RTX-3050-Ti-Max-Q + - GeForce-RTX-3050-Mobile-Refresh-6-GB + - GeForce-RTX-3050-Mobile-Refresh-4-GB + - GeForce-RTX-3050-Mobile + - GeForce-RTX-3050-Max-Q-Refresh-6-GB + - GeForce-RTX-3050-Max-Q-Refresh-4-GB + - GeForce-RTX-3050-Max-Q + - GeForce-RTX-2050-Mobile + - GeForce-RTX-2050-Max-Q + - header: Workstation + members: + - RTX-A4000 + - RTX-A6000 + - RTX-A5500 + - RTX-A5000-12Q + - RTX-A5000-8Q + - RTX-A5000 + - RTX-A4500-Embedded + - RTX-A4500 + - RTX-A4000H + - RTX-A2000-Embedded + - RTX-A2000-12-GB + - RTX-A2000 + - RTX-A1000-Embedded + - RTX-A500-Embedded + - RTX-A500 + - header: Workstation mobile + members: + - RTX-A5500-Mobile + - RTX-A5500-Max-Q + - RTX-A5000-Mobile + - RTX-A5000-Max-Q + - RTX-A4500-Mobile + - RTX-A4500-Max-Q + - RTX-A4000-Mobile + - RTX-A4000-Max-Q + - RTX-A3000-Mobile-12-GB + - RTX-A3000-Mobile + - RTX-A2000-Mobile + - RTX-A2000-Max-Q + - RTX-A1000-Mobile-6-GB + - RTX-A1000-Mobile + - RTX-A500-Mobile + - RTX-A4-Mobile + - header: Uncategorised members: - - A2 - - A2-PCIe - - A10-PCIe - - A10G - - A10M - - A16-PCIe - - A30-PCIe - - A30X - - A40-PCIe - - A100-PCIe-40-GB - - A100-PCIe-80-GB - - A100-SXM4-40-GB - - A100-SXM4-80-GB - - A100X - A800-PCIe-40-GB - A800-PCIe-80-GB - A800-SXM4-80-GB @@ -36,49 +104,6 @@ sections: - DRIVE-A100-PROD - GeForce-MX570 - GeForce-MX570-A - - GeForce-RTX-2050-Max-Q - - GeForce-RTX-2050-Mobile - - GeForce-RTX-3050-4-GB - - GeForce-RTX-3050-6-GB - - GeForce-RTX-3050-8-GB - - GeForce-RTX-3050-8-GB-GA107 - - GeForce-RTX-3050-Max-Q - - GeForce-RTX-3050-Max-Q-Refresh-4-GB - - GeForce-RTX-3050-Max-Q-Refresh-6-GB - - GeForce-RTX-3050-Mobile - - GeForce-RTX-3050-Mobile-Refresh-4-GB - - GeForce-RTX-3050-Mobile-Refresh-6-GB - - GeForce-RTX-3050-OEM - - GeForce-RTX-3050-Ti-Max-Q - - GeForce-RTX-3050-Ti-Mobile - - GeForce-RTX-3060-8-GB-GA104 - - GeForce-RTX-3060-12-GB - - GeForce-RTX-3060-12-GB-GA104 - - GeForce-RTX-3060-3840SP - - GeForce-RTX-3060-Max-Q - - GeForce-RTX-3060-Mobile - - GeForce-RTX-3060-Ti - - GeForce-RTX-3060-Ti-GA103 - - GeForce-RTX-3060-Ti-GDDR6X - - GeForce-RTX-3070 - - GeForce-RTX-3070-Max-Q - - GeForce-RTX-3070-Mobile - - GeForce-RTX-3070-Ti - - GeForce-RTX-3070-Ti-8-GB-GA102 - - GeForce-RTX-3070-Ti-16-GB - - GeForce-RTX-3070-TiM - - GeForce-RTX-3070-Ti-Max-Q - - GeForce-RTX-3070-Ti-Mobile - - GeForce-RTX-3080 - - GeForce-RTX-3080-12-GB - - GeForce-RTX-3080-Max-Q - - GeForce-RTX-3080-Mobile - - GeForce-RTX-3080-Ti - - GeForce-RTX-3080-Ti-20-GB - - GeForce-RTX-3080-Ti-Max-Q - - GeForce-RTX-3080-Ti-Mobile - - GeForce-RTX-3090 - - GeForce-RTX-3090-Ti - Jetson-AGX-Orin-32-GB - Jetson-AGX-Orin-64-GB - Jetson-Orin-Nano-4-GB @@ -89,34 +114,3 @@ sections: - PG506-217 - PG506-232 - PG506-242 - - RTX-A4-Mobile - - RTX-A500 - - RTX-A500-Embedded - - RTX-A500-Mobile - - RTX-A1000-Embedded - - RTX-A1000-Mobile - - RTX-A1000-Mobile-6-GB - - RTX-A2000 - - RTX-A2000-12-GB - - RTX-A2000-Embedded - - RTX-A2000-Max-Q - - RTX-A2000-Mobile - - RTX-A3000-Mobile - - RTX-A3000-Mobile-12-GB - - RTX-A4000-Max-Q - - RTX-A4000-Mobile - - RTX-A4000H - - RTX-A4500 - - RTX-A4500-Embedded - - RTX-A4500-Max-Q - - RTX-A4500-Mobile - - RTX-A5000 - - RTX-A5000-Max-Q - - RTX-A5000-Mobile - - RTX-A5000-8Q - - RTX-A5000-12Q - - RTX-A5500 - - RTX-A5500-Max-Q - - RTX-A5500-Mobile - - RTX-A6000 - - RTX-A4000 diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml index f9d77e93..3487a3fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 2050 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml index 95018b4a..539ec8af 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 2050 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml index 07f34897..9b53f9bd 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Max-Q Refresh 4 GB isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml index 3aec8106..3888fb6e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Max-Q Refresh 6 GB isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml index 0fe9ef44..cd62b9bb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml index 73a538a4..c80f10d1 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Mobile Refresh 4 GB isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml index 413a36ca..d46e6b3d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Mobile Refresh 6 GB isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml index c0fb6b05..cacd9c41 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml index 1f0fd737..627812db 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Ti Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml index 6c8deaa1..84fa5800 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3050 Ti Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml index da3b0ae3..60d872be 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3060 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml index acf1bcb1..f7729b94 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3060 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml index e00eaa96..670b79d5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3070 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml index 233f29cd..04cdf06a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3070 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml index 1531e07b..b80bf4da 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3070 Ti Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml index 638f1130..340ce3c4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3070 Ti Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml index 152ed78a..2eef9e7f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3080 Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml index c9284fae..a6f257e7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3080 Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml index 7f9bab22..ee557352 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3080 Ti Max-Q isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml index 0be03d81..28fbd839 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml @@ -3,6 +3,7 @@ humanName: GeForce RTX 3080 Ti Mobile isPart: true type: Graphics Card data: + Market: Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml index bbe679eb..e19a7686 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A1000 Embedded isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml index 345e16e2..34bac020 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml @@ -3,6 +3,9 @@ humanName: RTX A1000 Mobile 6 GB isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml index a9c923b9..4325715c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A1000 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml index 51994b83..cdb8e8ca 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 12 GB isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml index 2b9c9ca2..86002680 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 Embedded isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml index 5357ffa1..efa43952 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml @@ -3,6 +3,9 @@ humanName: RTX A2000 Max-Q isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml index 78f6993c..61b603b5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A2000 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml index 7e086c10..946fcbb5 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml @@ -3,6 +3,8 @@ humanName: RTX A2000 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml index 44552b60..3c6a2961 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml @@ -3,6 +3,9 @@ humanName: RTX A3000 Mobile 12 GB isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml index 402714b6..8efafcaa 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A3000 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml index 1057423a..9347f144 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A4 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml index 568cb14a..45a2997d 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml @@ -3,6 +3,9 @@ humanName: RTX A4000 Max-Q isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml index bcc8beb3..8a099801 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A4000 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml index 1aa2d22d..e0c9178e 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml index 476325a4..6ec5b4bf 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml @@ -3,6 +3,8 @@ humanName: RTX A4000H isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml index 3635657d..a9961519 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 Embedded isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml index 1848d491..e5c14ad4 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml @@ -3,6 +3,9 @@ humanName: RTX A4500 Max-Q isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml index 36e6acf8..a85f4a8a 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A4500 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml index 865b2d71..e7db77f6 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml @@ -3,6 +3,8 @@ humanName: RTX A4500 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml index 8a35a2e4..b60235f0 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml @@ -3,6 +3,8 @@ humanName: RTX A500 Embedded isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml index e27d3558..62d5a6a2 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A500 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml index a3029057..a31aa175 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml @@ -3,6 +3,8 @@ humanName: RTX A500 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml index e4e783da..1174f669 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000-12Q isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml index f2440585..c0dd085f 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000-8Q isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml index 4a679935..8a33a3a8 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml @@ -3,6 +3,9 @@ humanName: RTX A5000 Max-Q isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml index bacc16fc..d6490140 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A5000 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml index e3dc3e4b..6565c4ea 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml @@ -3,6 +3,8 @@ humanName: RTX A5000 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml index 2907fb40..8a346be7 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml @@ -3,6 +3,9 @@ humanName: RTX A5500 Max-Q isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml index aed41a26..68c2ac22 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml @@ -3,6 +3,9 @@ humanName: RTX A5500 Mobile isPart: true type: Graphics Card data: + Market: + - Workstation + - Mobile Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml index 61cb842a..5ab051bb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml @@ -3,6 +3,8 @@ humanName: RTX A5500 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml index e96062ef..bbc44989 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml +++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml @@ -3,6 +3,8 @@ humanName: RTX A6000 isPart: true type: Graphics Card data: + Market: + - Workstation Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml index 1c5cc1ed..48e482bb 100644 --- a/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml +++ b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml @@ -6,6 +6,9 @@ topHeader: 'SELECT SERIES:' data: Manufacturer: Nvidia sections: + - header: Ada Lovelace + members: + - Ada-Lovelace-server - header: Ampere members: - Ampere-server diff --git a/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml new file mode 100644 index 00000000..bb9161e1 --- /dev/null +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml @@ -0,0 +1,19 @@ +name: Ada-Lovelace-server +humanName: Ada Lovelace +type: Graphics Architecture +isPart: false +topHeader: 'SELECT CARD:' +data: + Lithography: 5 nm + DirectX Support: '12.2' + Vulkan Support: '1.3' + Release Date: '2022-09-20' + Manufacturer: Nvidia +sections: + - header: WHOLE RANGE + members: + - L4 + - L40 + - L40-CNX + - L40G + - L40S diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml rename to specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml index 2430e72e..a4a25f68 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L4.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml @@ -3,6 +3,7 @@ humanName: L4 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml rename to specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml index 43a836d1..2aac2a58 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40-CNX.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml @@ -3,6 +3,7 @@ humanName: L40 CNX isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml rename to specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40.yaml index 045e2d39..eb052b48 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40.yaml @@ -3,6 +3,7 @@ humanName: L40 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40G.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml rename to specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40G.yaml index 50441942..7f0e35f9 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40G.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40G.yaml @@ -3,6 +3,7 @@ humanName: L40G isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40S.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml rename to specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40S.yaml index 1ddabb32..c422fb95 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/L40S.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40S.yaml @@ -3,6 +3,7 @@ humanName: L40S isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ada Lovelace diff --git a/specs/GPUs-SERVER/Nvidia/Ampere.yaml b/specs/GPUs-SERVER/Nvidia/Ampere.yaml index d5d3b7b7..5827cfd9 100644 --- a/specs/GPUs-SERVER/Nvidia/Ampere.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere.yaml @@ -14,3 +14,19 @@ sections: members: - GRID-A100A - GRID-A100B + - header: AI Data Center + members: + - A2 + - A2-PCIe + - A10-PCIe + - A10G + - A10M + - A16-PCIe + - A30-PCIe + - A30X + - A40-PCIe + - A100-PCIe-40-GB + - A100-PCIe-80-GB + - A100-SXM4-40-GB + - A100-SXM4-80-GB + - A100X diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10-PCIe.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A10-PCIe.yaml index e6421c39..ccdc1941 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10-PCIe.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10-PCIe.yaml @@ -3,6 +3,7 @@ humanName: A10 PCIe isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml index e923f166..184a0e5c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-40-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml @@ -3,6 +3,7 @@ humanName: A100 PCIe 40 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml index d27353a6..3e4903e3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-PCIe-80-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml @@ -3,6 +3,7 @@ humanName: A100 PCIe 80 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml index a28fba90..ade07a78 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-40-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml @@ -3,6 +3,7 @@ humanName: A100 SXM4 40 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml index 4cc1ba21..633bed18 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100-SXM4-80-GB.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml @@ -3,6 +3,7 @@ humanName: A100 SXM4 80 GB isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A100X.yaml index 4c6d6f8f..bbca97fb 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A100X.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100X.yaml @@ -3,6 +3,7 @@ humanName: A100X isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10G.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A10G.yaml index 09a6707e..b920c38b 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10G.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10G.yaml @@ -3,6 +3,7 @@ humanName: A10G isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10M.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A10M.yaml index 9f8dd6c2..fe35e67c 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A10M.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10M.yaml @@ -3,6 +3,7 @@ humanName: A10M isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A16-PCIe.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A16-PCIe.yaml index 166f1ffa..a966f562 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A16-PCIe.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A16-PCIe.yaml @@ -3,6 +3,7 @@ humanName: A16 PCIe isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A2-PCIe.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A2-PCIe.yaml index 74205110..6fbc88da 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2-PCIe.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A2-PCIe.yaml @@ -3,6 +3,7 @@ humanName: A2 PCIe isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A2.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A2.yaml index 9e3b934c..93dc2ccc 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A2.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A2.yaml @@ -3,6 +3,7 @@ humanName: A2 isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A30-PCIe.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A30-PCIe.yaml index 4d32a255..7d584505 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30-PCIe.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A30-PCIe.yaml @@ -3,6 +3,7 @@ humanName: A30 PCIe isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A30X.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A30X.yaml index 9601505e..8f3f6d03 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A30X.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A30X.yaml @@ -3,6 +3,7 @@ humanName: A30X isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A40-PCIe.yaml similarity index 97% rename from specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml rename to specs/GPUs-SERVER/Nvidia/Ampere/A40-PCIe.yaml index 9d1db189..82f400c3 100644 --- a/specs/GPUs-CONSUMER/Nvidia/Ampere/A40-PCIe.yaml +++ b/specs/GPUs-SERVER/Nvidia/Ampere/A40-PCIe.yaml @@ -3,6 +3,7 @@ humanName: A40 PCIe isPart: true type: Graphics Card data: + Market: Data center Manufacturer: Nvidia Vendor: Nvidia Architecture: Ampere diff --git a/specs/readme.md b/specs/readme.md index 9346d9de..5b87c001 100644 --- a/specs/readme.md +++ b/specs/readme.md @@ -2,4 +2,8 @@ missing the following gpus due to no architecture ```json ["NV1","Playstation 2 GPU 65nm","Playstation 2 GPU 90nm","Playstation 2 GPU 180nm","Playstation 2 GPU 250nm","Playstation GPU 600nm","Playstation Portable GPU 65nm","Playstation Portable GPU 90nm","Playstation GPU 350nm","Riva 128 PCI","Riva 128ZX","STG-2000","Velocity 100","Velocity 200","Voodoo2 8 MB","Voodoo2 12 MB","Voodoo3 1000 AGP","Voodoo3 2000 AGP","Voodoo3 2000 PCI","Voodoo3 3000 AGP","Voodoo3 3000 PCI","Riva 128","Voodoo Banshee AGP 16 MB","Voodoo Banshee PCI 16 MB","Voodoo Graphics 4 MB"] -``` \ No newline at end of file +``` + +## potentials to add to row-data.js +`Maximum Streams` (Radeon-Sky-700) +`Hardware Accelerated Media` (Arc-B570) \ No newline at end of file